:root {
  color-scheme: light;
  --ink: #f7f7f7;
  --muted: #c3c3c3;
  --line: #3d3d45;
  --paper: #ffffff;
  --soft: #202025;
  --dark: #202025;
  --dark-2: #27262d;
  --card-dark: #37373f;
  --brand: #199ba7;
  --brand-2: #1599a6;
  --accent: #fcb727;
  --coral: #ec0d83;
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
  --radius: 10px;
  --container: min(1380px, calc(100vw - 56px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: #ffffff;
  background: var(--dark);
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-band {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(39, 38, 45, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, padding 180ms ease;
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}

.brand img {
  width: 165px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #ffffff;
  font-family: Raleway, Poppins, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0 0 7px;
  border-radius: 0;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand);
  background: transparent;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a:first-child::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  color: #fff;
  background: transparent;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: var(--accent);
  background: transparent;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  flex: 0 0 2px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: 46px 0 88px;
  background:
    radial-gradient(circle at 82% 50%, rgba(25, 155, 167, 0.18), transparent 18%),
    linear-gradient(135deg, #202025 0%, #222228 52%, #1b1b20 100%);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(32, 32, 37, 0), #202025 90%);
  pointer-events: none;
}

.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  width: min(820px, 74vw);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Poppins, Raleway, Arial, sans-serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.35rem, 4.25vw, 4.35rem);
  font-weight: 900;
}

h1 span,
h1 em {
  display: block;
}

h1 span {
  color: #ffffff;
}

h1 .headline-nowrap {
  white-space: nowrap;
}

h1 em {
  margin-top: 6px;
  color: var(--brand);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.95rem);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  margin: 0;
  font-size: 1.35rem;
}

.lead {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-family: Raleway, Poppins, Arial, sans-serif;
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  font-weight: 600;
}

.lead.compact {
  margin-top: 14px;
}

.hero-kicker {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 700;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions .button {
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 20px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.primary {
  color: #fff;
  background: var(--brand);
  border-color: #e8e8e8;
  box-shadow: none;
}

.primary:hover,
.primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.secondary {
  width: fit-content;
  margin-top: 28px;
  color: #202025;
  background: var(--accent);
}

.ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}

.ghost-dark {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}

.teams-button {
  gap: 8px;
  color: #ffffff;
  background: #6264a7;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 26px rgba(98, 100, 167, 0.22);
}

.teams-button:hover,
.teams-button:focus-visible {
  background: #4f52b2;
  border-color: rgba(255, 255, 255, 0.28);
}

.teams-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 36px;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 0 0 0 22px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.trust-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.app-orbit {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  animation: floatApp 5s ease-in-out infinite;
}

.app-orbit::before,
.app-orbit::after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(25, 155, 167, 0.65);
  border-radius: 50%;
  animation: orbitPulse 4s ease-in-out infinite;
}

.app-orbit::after {
  inset: 21%;
  animation-delay: 600ms;
}

.app-orbit img {
  position: relative;
  z-index: 1;
  width: min(350px, 84%);
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.42));
}

.intro,
.feature-strip,
.references,
.team {
  padding: 92px 0;
  background: var(--dark);
  color: #ffffff;
}

.intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 68px;
  align-items: start;
}

.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 800;
}

.section-heading {
  max-width: 900px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.services,
.reviews,
.cta {
  padding: 92px 0;
  background: var(--dark);
  color: #fff;
}

.reviews {
  padding: 72px 0 58px;
}

.quick-services {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding: 0 0 58px;
  background: var(--dark);
  color: #fff;
}

.quick-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: start;
}

.quick-card {
  min-width: 0;
  min-height: 205px;
  padding: 28px 22px;
  text-align: center;
  border-radius: 20px 20px 0 0;
  color: #fff;
  background: rgba(55, 55, 63, 0.18);
  transition: transform 260ms ease, background 260ms ease;
}

.quick-card:hover {
  transform: translateY(-8px);
  background: #303039;
}

.quick-card.featured {
  min-height: 260px;
  background: var(--card-dark);
}

.quick-card h3 {
  font-size: 1.2rem;
  overflow-wrap: anywhere;
}

.quick-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: Raleway, Poppins, Arial, sans-serif;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.service-card,
.reference-card,
.review-card,
.team-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #2a2a30;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.service-card {
  background: #2a2a30;
  color: #fff;
  padding: 26px;
}

.service-card h3 {
  min-height: 2.25em;
  font-size: 1.1rem;
}

.service-card ul {
  color: var(--muted);
}

.service-card:nth-child(2) .service-icon {
  background: rgba(35, 167, 125, 0.12);
  color: #12785a;
}

.service-card:nth-child(3) .service-icon {
  background: rgba(242, 183, 5, 0.17);
  color: #8a6600;
}

.service-card:nth-child(4) .service-icon {
  background: rgba(228, 91, 79, 0.13);
  color: #a7352c;
}

.service-card:nth-child(5) .service-icon {
  background: rgba(25, 155, 167, 0.14);
  color: var(--brand);
}

.service-card:nth-child(6) .service-icon {
  background: rgba(236, 13, 131, 0.12);
  color: var(--coral);
}

.service-card:nth-child(7) .service-icon {
  background: rgba(110, 183, 47, 0.13);
  color: #78bd3d;
}

.service-card:nth-child(8) .service-icon {
  background: rgba(252, 183, 39, 0.16);
  color: var(--accent);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--brand);
  background: rgba(20, 104, 179, 0.11);
  border-radius: var(--radius);
  font-weight: 900;
}

.service-card ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.service-card li,
.check-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.service-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--brand-2);
  border-radius: 50%;
}

.feature-item {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
  align-items: center;
}

.support-lottie {
  width: min(430px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.34));
}

.support-lottie-fallback {
  width: min(390px, 100%);
}

.support-lottie svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.feature-item p {
  color: var(--muted);
  font-size: 1.06rem;
}

.network {
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(32, 32, 37, 0.96), rgba(39, 38, 45, 0.95)),
    #202025;
  color: #fff;
}

.network-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 46px;
  align-items: center;
}

.network .eyebrow {
  color: var(--accent);
}

.network p {
  color: rgba(255, 255, 255, 0.82);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.logo-row > img,
.logo-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 185px;
  height: 70px;
  min-height: 70px;
  box-sizing: border-box;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.logo-row .partner-logo-wide {
  width: 260px;
  padding: 6px 12px;
}

.logo-row a {
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.logo-row a:hover,
.logo-row a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(25, 155, 167, 0.5);
}

.logo-row img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.logo-row > img {
  width: auto;
}

.logo-row .partner-logo-wide img {
  width: 100%;
  height: 60px;
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.stats-card {
  overflow: hidden;
  background: var(--card-dark);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.stats-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background:
    radial-gradient(circle at 78% 18%, rgba(25, 155, 167, 0.14), transparent 28%),
    #202025;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #4b4b54;
}

.stats-grid div {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: #2a2a30;
  color: #fff;
}

.stats-grid strong {
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.stats-grid div:nth-child(2) strong::after {
  content: " %";
}

.stats-grid div:not(:nth-child(2)) strong::after {
  content: " +";
  font-size: 0.62em;
}

.stats-grid span {
  color: #c3c3c3;
  font-size: 0.9rem;
  font-weight: 700;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 42px;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 46px;
}

.client-logo-card {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  isolation: isolate;
  padding: 26px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(45, 45, 52, 0.97), rgba(30, 30, 36, 0.98)),
    #2a2a30;
  border: 1px solid rgba(25, 155, 167, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.client-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(25, 155, 167, 0.24), transparent 27%),
    radial-gradient(circle at 86% 82%, rgba(252, 183, 39, 0.12), transparent 28%);
  opacity: 0;
  z-index: -1;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.client-logo-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 220ms ease, background 220ms ease;
}

.client-logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 155, 167, 0.58);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.32);
}

.client-logo-card:hover::before {
  opacity: 1;
}

.client-logo-card:hover::after {
  transform: scaleX(1);
  background: var(--accent);
}

.client-logo {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 18px 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
}

.client-logo img {
  width: min(260px, 100%);
  max-height: 104px;
  object-fit: contain;
}

.client-logo img.logo-wide {
  width: min(420px, 100%);
  max-height: 116px;
}

.client-logo.logo-deep {
  background:
    radial-gradient(circle at 20% 25%, rgba(25, 155, 167, 0.18), transparent 34%),
    #202025;
}

.client-logo.logo-green {
  background:
    radial-gradient(circle at 20% 20%, rgba(252, 183, 39, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(10, 65, 39, 0.75), rgba(20, 32, 28, 0.96));
}

.client-logo.logo-brand {
  background: #405a12;
}

.client-logo.logo-muted {
  background:
    radial-gradient(circle at 24% 24%, rgba(145, 170, 160, 0.2), transparent 38%),
    #22282a;
}

.client-logo.logo-blend {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    #2f3433;
}

.logo-white {
  filter: brightness(0) invert(1);
}

.logo-invert-bg {
  filter: invert(1) grayscale(1) contrast(1.15);
}

.logo-multiply {
  mix-blend-mode: multiply;
  filter: saturate(1.28) brightness(1.5);
}

.client-logo-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  line-height: 1.22;
}

.client-logo-card p {
  margin: 0;
  color: var(--muted);
  font-family: Raleway, Poppins, Arial, sans-serif;
  font-size: 0.95rem;
}

.client-logo-card .client-field {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(25, 155, 167, 0.22);
  border: 1px solid rgba(25, 155, 167, 0.34);
  border-radius: var(--radius);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.client-logo-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-logo-card li {
  position: relative;
  padding-left: 18px;
  color: #d8d8df;
  font-family: Raleway, Poppins, Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.45;
}

.client-logo-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(252, 183, 39, 0.1);
}

.client-website-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 6px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(25, 155, 167, 0.18);
  border: 1px solid rgba(25, 155, 167, 0.48);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.client-website-link:hover,
.client-website-link:focus-visible {
  transform: translateY(-1px);
  background: var(--brand);
  border-color: var(--brand);
}

.focus-panel {
  margin-top: 28px;
  padding: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 22%, rgba(25, 155, 167, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(55, 55, 63, 0.95), rgba(32, 32, 37, 0.98));
  border: 1px solid rgba(25, 155, 167, 0.24);
  border-radius: var(--radius);
}

.focus-panel h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.35rem;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.focus-tags span {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(25, 155, 167, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.client-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.client-mini-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: 18px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(45, 45, 52, 0.94), rgba(30, 30, 36, 0.97));
  border: 1px solid rgba(25, 155, 167, 0.16);
  border-radius: var(--radius);
}

.client-mini-card img {
  width: 128px;
  max-height: 78px;
  object-fit: contain;
}

.client-mini-card img.logo-mark {
  width: 78px;
  height: 78px;
  border-radius: var(--radius);
  justify-self: center;
}

.client-mini-card h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
}

.client-mini-card p {
  margin: 0;
  color: var(--muted);
  font-family: Raleway, Poppins, Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.45;
}

.client-mini-services {
  display: grid;
  gap: 3px;
  margin: 8px 0 0;
  padding: 0;
  color: var(--muted);
  font-family: Raleway, Poppins, Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1.3;
  list-style: none;
}

.client-mini-services li {
  position: relative;
  padding-left: 14px;
}

.client-mini-services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: 50%;
}

.client-mini-card .client-website-link {
  min-height: 32px;
  margin-top: 10px;
  padding: 6px 10px;
  font-size: 0.78rem;
}

.client-mini-card > div {
  min-width: 0;
}

.reference-card {
  --reference-image: url("assets/partnernetzwerk.jpg");
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 28px;
  background-image: var(--reference-image);
  background-position: center top;
  background-size: cover;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.reference-fallback {
  --reference-image: url("assets/networking365-dienstleistung.png");
  background-position: center center;
}

.reference-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  background-position: inherit;
  background-size: inherit;
  transition: transform 420ms ease, filter 420ms ease;
}

.reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(32, 32, 37, 0.12) 0%, rgba(32, 32, 37, 0.46) 42%, rgba(32, 32, 37, 0.96) 100%),
    linear-gradient(135deg, rgba(25, 155, 167, 0.25), rgba(0, 0, 0, 0) 46%);
}

.reference-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 155, 167, 0.52);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.reference-card:hover::before {
  transform: scale(1.065);
  filter: saturate(1.08) contrast(1.05);
}

.reference-card h3 {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
}

.reference-card p {
  max-width: 95%;
  color: #d8d8df;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
}

.reference-card span {
  display: inline-flex;
  margin: 5px 4px 0 0;
  padding: 5px 9px;
  color: #ffffff;
  background: rgba(25, 155, 167, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 800;
}

.inline-review-link {
  color: #f5b51b;
  font-weight: 900;
  text-decoration: none;
  text-underline-offset: 5px;
}

.live-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 22px;
  margin-top: 42px;
}

.live-review-card {
  min-width: 0;
  overflow: hidden;
  padding: 20px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 16%, rgba(25, 155, 167, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(42, 42, 48, 0.96), rgba(31, 31, 37, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.google-live-card {
  background:
    linear-gradient(90deg, #4285f4 0 25%, #ea4335 25% 50%, #fbbc05 50% 75%, #34a853 75% 100%) top / 100% 4px no-repeat,
    radial-gradient(circle at 12% 16%, rgba(66, 133, 244, 0.15), transparent 30%),
    linear-gradient(145deg, rgba(42, 42, 48, 0.96), rgba(31, 31, 37, 0.98));
}

.trustpilot-live-card {
  background:
    linear-gradient(90deg, #00b67a 0 55%, #073b33 55% 100%) top / 100% 4px no-repeat,
    radial-gradient(circle at 18% 16%, rgba(0, 182, 122, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(42, 42, 48, 0.96), rgba(31, 31, 37, 0.98));
}

.live-review-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.live-review-head h3 {
  margin-top: 12px;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

.review-source-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(25, 155, 167, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}

.trustindex-frame {
  width: 100%;
  min-height: 740px;
  display: block;
  background: #ffffff;
  border: 0;
  border-radius: var(--radius);
}

.trustpilot-brand {
  width: fit-content;
  padding: 8px 12px;
  color: #ffffff;
  background: #00b67a;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
}

.trustpilot-widget-slot {
  min-height: 240px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 22px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(0, 182, 122, 0.45);
  border-radius: var(--radius);
}

.trustpilot-widget-slot p {
  margin: 0;
}

.reviews .live-review-grid,
.reviews .review-fallback {
  display: none;
}

.reviews .container {
  width: min(1500px, calc(100vw - 40px));
  max-width: none;
  margin-inline: auto;
}

.trustindex-plugin-embed {
  width: min(100%, 1500px);
  margin: 34px auto 0;
}

.trustindex-plugin-embed .ti-widget {
  max-width: 100%;
}

.trustindex-plugin-embed pre {
  margin: 0;
}

.trustindex-review-widget {
  position: relative;
  left: auto;
  width: 100%;
  max-width: 1500px;
  margin: 34px auto 0;
  padding: 0 26px 34px;
  color: #ffffff;
  transform: none;
  box-sizing: border-box;
}

.trustindex-summary {
  display: grid;
  justify-items: center;
  justify-content: center;
  gap: 7px;
  width: min(100%, 520px);
  margin-inline: auto;
  padding: 24px 18px 22px;
  text-align: center;
}

.trustindex-summary::before {
  content: "";
  width: 170px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--brand);
}

.trustindex-summary strong {
  color: #ffffff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
}

.trustindex-summary .google-brand {
  margin-top: 4px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.trustindex-summary .review-stars {
  color: #fbbc05;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  letter-spacing: 2px;
  text-shadow: none;
}

.trustindex-summary p {
  margin: 0;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
}

.trustindex-summary p b {
  color: #ffffff;
}

.trustindex-slider {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
}

.trustindex-review-list {
  min-width: 0;
  display: flex;
  gap: 16px;
  padding: 0 0 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
  scrollbar-width: thin;
}

.trustindex-nav {
  z-index: 2;
  width: 44px;
  height: 74px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.trustindex-nav:hover,
.trustindex-nav:focus-visible {
  color: #ffffff;
  background: rgba(25, 155, 167, 0.2);
  border-color: rgba(25, 155, 167, 0.7);
  transform: translateY(-1px);
}

.trustindex-nav:disabled {
  opacity: 0.32;
  cursor: default;
  transform: none;
}

.trustindex-review-card {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
  position: relative;
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 184px;
  max-height: 228px;
  padding: 20px 20px 18px;
  color: #ffffff;
  background: rgba(27, 28, 31, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  scroll-snap-align: start;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.trustindex-review-card:hover,
.trustindex-review-card:focus-within {
  transform: translateY(-6px);
  background: rgba(37, 38, 43, 0.98);
  border-color: rgba(25, 155, 167, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(25, 155, 167, 0.1);
}

.trustindex-review-card::before {
  content: "\2605\2605\2605\2605\2605";
  color: #fbbc05;
  font-size: 1.02rem;
  letter-spacing: 1px;
  line-height: 1;
  order: 2;
}

.trustindex-review-card::after {
  content: "\2713";
  position: absolute;
  left: 114px;
  top: 79px;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  color: #ffffff;
  background: #4285f4;
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 900;
}

.trustindex-review-card.negative::before {
  content: "\2605\2606\2606\2606\2606";
  color: #fbbc05;
}

.trustindex-review-head {
  position: relative;
  display: grid;
  min-height: 44px;
  align-content: center;
  gap: 3px;
  padding-left: 60px;
  order: 1;
}

.trustindex-review-head::before {
  content: attr(data-initial);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: #f05a28;
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 800;
}

.trustindex-review-card:nth-child(2n) .trustindex-review-head::before {
  background: #3f7fd5;
}

.trustindex-review-card:nth-child(3n) .trustindex-review-head::before {
  background: #a43632;
}

.trustindex-review-card:nth-child(4n) .trustindex-review-head::before {
  background: #7a3d1d;
}

.trustindex-review-head strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
}

.trustindex-review-head span {
  color: #aeb4bd;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 500;
}

.trustindex-note {
  display: none;
}

.trustindex-review-card p {
  margin: 0;
  color: #ffffff;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-family: Raleway, Poppins, Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.42;
  order: 3;
}

.trustindex-review-card .trustindex-note {
  display: none;
}

.trustindex-read-more {
  width: fit-content;
  margin-top: -2px;
  padding: 0;
  color: #9ea4ad;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  order: 4;
  transition: color 180ms ease;
}

.trustindex-read-more:hover,
.trustindex-read-more:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.review-modal[hidden] {
  display: none;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(12, 13, 16, 0.74);
  backdrop-filter: blur(8px);
}

.review-modal-panel {
  width: min(640px, 100%);
  max-height: min(680px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 28px;
  color: #ffffff;
  background: #1b1c20;
  border: 1px solid rgba(25, 155, 167, 0.55);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
}

.review-modal-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.review-modal-head strong {
  font-size: 1.2rem;
}

.review-modal-head span {
  color: #aeb4bd;
  font-size: 0.94rem;
}

.review-modal-stars {
  color: #fbbc05;
  letter-spacing: 1px;
}

.review-modal-text {
  margin: 0;
  color: #ffffff;
  font-family: Raleway, Poppins, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
}

.review-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.review-modal-close {
  min-height: 40px;
  padding: 8px 14px;
  color: #ffffff;
  background: rgba(25, 155, 167, 0.2);
  border: 1px solid rgba(25, 155, 167, 0.7);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.review-modal-close:hover,
.review-modal-close:focus-visible {
  background: var(--brand);
}

.trustindex-verified {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.trustindex-verified strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 10px;
  color: #ffffff;
  background: #009a6a;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  cursor: help;
  outline: none;
}

.trustindex-verified strong:hover,
.trustindex-verified strong:focus-visible {
  background: #00ad77;
}

.trustindex-verified strong::after {
  content: "i";
  display: grid;
  place-items: center;
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.68rem;
}

.trustindex-verified p {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 5;
  width: min(360px, calc(100vw - 48px));
  margin: 0;
  padding: 14px 16px;
  color: #202025;
  background: #ffffff;
  border: 1px solid rgba(25, 155, 167, 0.32);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  font-family: Raleway, Poppins, Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.trustindex-verified p::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-right: 1px solid rgba(25, 155, 167, 0.32);
  border-bottom: 1px solid rgba(25, 155, 167, 0.32);
  transform: rotate(45deg);
}

.trustindex-verified:hover p,
.trustindex-verified:focus-within p {
  opacity: 1;
  transform: translateY(0);
}

.review-widget {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 42px;
  padding: 22px;
  background:
    radial-gradient(circle at 14% 18%, rgba(252, 183, 39, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(42, 42, 48, 0.92), rgba(32, 32, 37, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.review-widget > * {
  min-width: 0;
}

.review-summary {
  position: relative;
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  color: #ffffff;
  background:
    linear-gradient(90deg, #4285f4 0 25%, #ea4335 25% 50%, #fbbc05 50% 75%, #34a853 75% 100%) top / 100% 4px no-repeat,
    radial-gradient(circle at 18% 16%, rgba(66, 133, 244, 0.16), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(52, 168, 83, 0.13), transparent 32%),
    linear-gradient(145deg, rgba(48, 48, 56, 0.98), rgba(31, 31, 37, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.google-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  font-family: Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1;
}

.google-brand span:nth-child(1),
.google-brand span:nth-child(4) {
  color: #4285f4;
}

.google-brand span:nth-child(2),
.google-brand span:nth-child(6) {
  color: #ea4335;
}

.google-brand span:nth-child(3) {
  color: #fbbc05;
}

.google-brand span:nth-child(5) {
  color: #34a853;
}

.review-rating-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.review-rating-head span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 4px 10px;
  color: #202025;
  background: #fbbc05;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.review-badge {
  max-width: 100%;
  width: fit-content;
  padding: 6px 10px;
  color: #202025;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.review-rating-head strong {
  max-width: 100%;
  color: #ffffff;
  font-size: clamp(1.28rem, 2.2vw, 1.75rem);
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.review-stars {
  max-width: 100%;
  color: #fbbc05;
  font-size: clamp(1.05rem, 3vw, 1.22rem);
  letter-spacing: 1px;
  line-height: 1;
  overflow-wrap: normal;
  text-shadow: 0 0 18px rgba(251, 188, 5, 0.24);
}

.review-summary p {
  max-width: 100%;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.review-summary p b {
  color: #ffffff;
}

.google-review-link {
  max-width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: auto;
  padding: 10px 14px;
  color: #202025;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.google-review-link:hover,
.google-review-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(66, 133, 244, 0.65);
  box-shadow: 0 18px 34px rgba(66, 133, 244, 0.16);
}

.google-g {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  color: #4285f4;
  background:
    conic-gradient(from -35deg, #4285f4 0 25%, #34a853 25% 43%, #fbbc05 43% 64%, #ea4335 64% 82%, #4285f4 82% 100%);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 7px #ffffff;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.review-card {
  min-width: 0;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(49, 49, 57, 0.98), rgba(35, 35, 42, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: none;
  scroll-snap-align: start;
}

.review-card div {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.review-card strong {
  display: block;
  color: #ffffff;
}

.review-card span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-family: Raleway, Poppins, Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.review-card::before {
  content: "\2605\2605\2605\2605\2605";
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  letter-spacing: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.team-card {
  overflow: hidden;
  padding: 24px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  margin: -24px -24px 22px;
  max-width: calc(100% + 48px);
}

.team-card .role {
  margin: 8px 0 12px;
  color: var(--brand);
  font-weight: 800;
}

.team-card p:not(.role) {
  color: var(--muted);
}

.hiring {
  display: grid;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(25, 155, 167, 0.94), rgba(39, 38, 45, 0.94)),
    var(--brand);
  color: #fff;
}

.hiring p {
  color: rgba(255, 255, 255, 0.86) !important;
}

.hiring .ghost-dark {
  width: fit-content;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.social-row a {
  padding: 7px 10px;
  color: var(--brand);
  background: rgba(20, 104, 179, 0.08);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
}

.cta {
  background:
    linear-gradient(135deg, #202025 0%, #27262d 100%);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.cta p {
  color: #c3c3c3;
  font-size: 1.08rem;
}

.contact-card {
  padding: 30px;
}

.contact-card a:not(.button) {
  display: block;
  margin-top: 8px;
  color: var(--brand);
  font-weight: 800;
}

.site-footer {
  padding: 44px 0 22px;
  color: #dce7f4;
  background: #202025;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-grid img {
  width: 160px;
  padding: 10px;
  background: transparent;
  border-radius: var(--radius);
}

.footer-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

.footer-grid a {
  display: block;
  margin-top: 6px;
  color: #dce7f4;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  width: 42px;
  height: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 0;
  padding: 0;
  color: #ffffff;
  background: rgba(25, 155, 167, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.social-links svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: currentColor;
}

.social-links .social-facebook {
  background: #1877f2;
  border-color: rgba(255, 255, 255, 0.18);
}

.social-links .social-instagram {
  background:
    radial-gradient(circle at 28% 112%, #fdf497 0 16%, #fd5949 42%, #d6249f 62%, #285aeb 100%);
  border-color: rgba(255, 255, 255, 0.18);
}

.social-links .social-youtube {
  background: #ff0033;
  border-color: rgba(255, 255, 255, 0.18);
}

.copyright {
  width: var(--container);
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9fb2c8;
}

.legal-main {
  padding: 88px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(25, 155, 167, 0.12), transparent 28%),
    var(--dark);
}

.legal-card {
  max-width: 1060px;
  padding: 38px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(42, 42, 48, 0.96), rgba(31, 31, 37, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.legal-card h3 {
  margin-top: 24px;
  font-size: 1.12rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-family: Raleway, Poppins, Arial, sans-serif;
}

.legal-card a {
  color: var(--brand);
  font-weight: 800;
}

.legal-card ul {
  padding-left: 22px;
}

.legal-meta {
  color: var(--brand);
  font-weight: 900;
}

.cookie-consent {
  position: fixed;
  inset: auto 18px 18px 18px;
  z-index: 90;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent-panel {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(42, 42, 48, 0.98), rgba(32, 32, 37, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  pointer-events: auto;
}

.cookie-consent h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
}

.cookie-consent p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-consent .eyebrow {
  margin: 0 0 4px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .button,
.cookie-settings-actions .button,
.consent-placeholder .button {
  width: auto;
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.82rem;
}

.cookie-settings {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-settings[hidden] {
  display: none;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option small {
  margin-top: 2px;
  color: var(--muted);
  line-height: 1.35;
}

.cookie-option input {
  width: 42px;
  height: 22px;
  accent-color: var(--brand);
}

.cookie-option.is-disabled {
  opacity: 0.78;
}

.cookie-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-settings-actions a {
  color: var(--brand);
  font-weight: 800;
}

.cookie-settings-button {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 44;
  min-height: 38px;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(42, 42, 48, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.cookie-settings-button:hover,
.cookie-settings-button:focus-visible {
  background: var(--brand);
}

.consent-placeholder {
  display: grid;
  gap: 10px;
  margin: 24px auto 0;
  padding: 22px;
  max-width: 760px;
  color: #ffffff;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.consent-placeholder[hidden],
.consent-reviews-enabled .consent-placeholder {
  display: none;
}

.consent-placeholder strong {
  font-size: 1.05rem;
}

.consent-placeholder p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
}

.consent-placeholder.compact {
  margin: 16px 0 0;
  padding: 18px;
  max-width: none;
}

.trustindex-frame:not([src]) {
  display: none;
}

.floating-action {
  position: fixed;
  right: 18px;
  z-index: 45;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 0;
  color: #fff;
  box-shadow: 0 14px 26px rgba(17, 24, 39, 0.18);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-2px);
}

.floating-action svg,
.floating-action img {
  width: 25px;
  height: 25px;
}

.floating-action svg {
  fill: currentColor;
}

.floating-phone {
  bottom: 146px;
  background: var(--brand);
}

.floating-teams {
  bottom: 84px;
  background: #ffffff;
  border: 1px solid rgba(98, 100, 167, 0.28);
  box-shadow: 0 14px 26px rgba(98, 100, 167, 0.22);
}

.floating-teams:hover,
.floating-teams:focus-visible {
  background: #f2f3ff;
}

.to-top {
  bottom: 22px;
  background: var(--brand);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  --reveal-x: 0;
  --reveal-y: 92px;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(0.96);
  filter: none;
  transition:
    opacity 360ms ease-out,
    transform 1080ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js .hero-copy.reveal {
  --reveal-x: -120px;
  --reveal-y: 0;
}

.js .hero-visual.reveal,
.js .stats-card.reveal {
  --reveal-x: 120px;
  --reveal-y: 0;
}

.js .section-heading.reveal,
.js .intro-copy.reveal,
.js .feature-item.reveal,
.js .network-grid > .reveal:first-child {
  --reveal-x: -96px;
  --reveal-y: 0;
}

.js .quick-card.reveal,
.js .service-card.reveal,
.js .client-logo-card.reveal,
.js .client-mini-card.reveal,
.js .review-card.reveal,
.js .team-card.reveal {
  --reveal-x: 0;
  --reveal-y: 104px;
}

.js .quick-services .quick-card.reveal {
  opacity: 1;
  transform: none;
}

.js .quick-card.reveal:nth-child(2),
.js .service-card.reveal:nth-child(2),
.js .client-logo-card.reveal:nth-child(2),
.js .client-mini-card.reveal:nth-child(2),
.js .review-card.reveal:nth-child(2),
.js .team-card.reveal:nth-child(2) {
  --reveal-delay: 90ms;
}

.js .quick-card.reveal:nth-child(3),
.js .service-card.reveal:nth-child(3),
.js .client-logo-card.reveal:nth-child(3),
.js .client-mini-card.reveal:nth-child(3),
.js .review-card.reveal:nth-child(3),
.js .team-card.reveal:nth-child(3) {
  --reveal-delay: 160ms;
}

.js .quick-card.reveal:nth-child(4),
.js .service-card.reveal:nth-child(4),
.js .client-logo-card.reveal:nth-child(4),
.js .client-mini-card.reveal:nth-child(4),
.js .review-card.reveal:nth-child(4),
.js .team-card.reveal:nth-child(4) {
  --reveal-delay: 230ms;
}

.js .quick-card.reveal:nth-child(5),
.js .service-card.reveal:nth-child(5),
.js .client-logo-card.reveal:nth-child(5) {
  --reveal-delay: 300ms;
}

.js .service-card.reveal:nth-child(6),
.js .client-logo-card.reveal:nth-child(6) {
  --reveal-delay: 370ms;
}

.js .service-card.reveal:nth-child(7),
.js .client-logo-card.reveal:nth-child(7) {
  --reveal-delay: 440ms;
}

.js .service-card.reveal:nth-child(8),
.js .client-logo-card.reveal:nth-child(8) {
  --reveal-delay: 510ms;
}

.js .quick-card.reveal.is-visible:hover {
  transform: translateY(-8px) scale(1);
}

.js .client-logo-card.reveal.is-visible:hover {
  transform: translateY(-6px) scale(1);
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 18px;
    font-size: 0.98rem;
    letter-spacing: 2px;
  }

  .hero-grid,
  .intro,
  .feature-item,
  .network-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .reference-grid,
  .client-logo-grid,
  .client-mini-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-widget {
    grid-template-columns: 1fr;
  }

  .live-review-grid {
    grid-template-columns: 1fr;
  }

  .trustindex-review-list {
    grid-template-columns: none;
  }

  .trustindex-review-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .review-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .quick-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .quick-card {
    min-height: 180px;
    padding: 22px 14px;
  }

  .quick-card.featured {
    min-height: 220px;
  }

  .quick-card h3 {
    font-size: 1rem;
  }

  .quick-card p {
    font-size: 0.82rem;
  }
}

@media (min-width: 1041px) and (max-height: 820px) {
  .site-header {
    padding: 10px 0;
  }

  .brand img {
    width: 148px;
  }

  .main-nav {
    gap: 20px;
    font-size: 1.05rem;
    letter-spacing: 2.5px;
  }

  .hero {
    padding: 28px 0 72px;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: clamp(2.2rem, 3.6vw, 3.75rem);
  }

  h1 em {
    font-size: clamp(1.55rem, 2.45vw, 2.35rem);
  }

  .hero-kicker {
    margin-bottom: 10px;
    font-size: 1.18rem;
  }

  .lead {
    margin-top: 12px;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .trust-list {
    gap: 6px;
    margin: 14px 0 32px;
  }

  .app-orbit {
    width: min(360px, 100%);
  }

  .app-orbit img {
    width: min(288px, 82%);
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(1160px, calc(100vw - 32px));
  }

  .site-header {
    padding: 10px 0;
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 66px 14px auto 14px;
    display: grid;
    gap: 4px;
    padding: 14px;
    background: #2a2a30;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 76px;
  }

  h1 {
    font-size: 2.08rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  h1 .headline-nowrap {
    white-space: normal;
  }

  h1 em {
    font-size: 1.34rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-kicker {
    margin-bottom: 10px;
    font-size: 1.08rem;
  }

  .lead {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .lead.compact {
    margin-top: 10px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 10px 14px;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
  }

  .trust-list {
    gap: 6px;
    margin: 14px 0 32px;
  }

  .app-orbit {
    width: min(280px, 76vw);
  }

  .app-orbit img {
    width: min(220px, 78%);
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.55rem);
    overflow-wrap: anywhere;
  }

  .section-heading {
    max-width: 100%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
  }

  .intro,
  .feature-strip,
  .references,
  .team,
  .services,
  .network,
  .reviews,
  .cta {
    padding: 64px 0;
  }

  .service-grid,
  .review-widget,
  .reference-grid,
  .client-logo-grid,
  .client-mini-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .client-logo-card {
    min-height: 0;
    padding: 22px;
  }

  .client-logo {
    min-height: 118px;
  }

  .focus-panel {
    padding: 22px;
  }

  .client-mini-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .client-mini-card img {
    width: min(190px, 100%);
    justify-self: start;
  }

  .review-list {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .reviews .section-heading,
  .reviews .review-widget,
  .reviews .live-review-grid {
    width: min(100%, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    margin-inline: auto;
  }

  .reviews h2 {
    font-size: clamp(1.85rem, 7.2vw, 2.18rem);
  }

  .reviews h2 span {
    display: block;
  }

  .review-widget {
    max-width: 100%;
    min-width: 0;
    padding: 14px;
    gap: 14px;
    width: 100%;
    overflow: hidden;
  }

  .trustindex-review-widget {
    left: auto;
    width: min(100%, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    margin: 30px auto 0;
    padding: 0 4px 34px;
    transform: none;
  }

  .trustindex-summary {
    padding: 18px 10px 24px;
  }

  .trustindex-slider {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 6px;
  }

  .trustindex-nav {
    width: 34px;
    height: 58px;
    font-size: 2.35rem;
  }

  .trustindex-review-list {
    grid-template-columns: none;
    gap: 14px;
  }

  .trustindex-review-card {
    flex-basis: min(78vw, 318px);
    min-height: 0;
    max-height: 206px;
    padding: 20px;
  }

  .live-review-grid {
    gap: 14px;
  }

  .live-review-card {
    padding: 14px;
  }

  .live-review-head {
    display: grid;
  }

  .trustindex-frame {
    min-height: 620px;
  }

  .review-summary {
    max-width: 100%;
    min-width: 0;
    padding: 20px;
    width: 100%;
  }

  .google-review-link {
    justify-self: center;
    width: min(100%, 280px);
    min-height: 46px;
    padding-inline: 10px;
    font-size: 0.95rem;
  }

  .review-rating-head {
    align-items: flex-start;
  }

  .review-list,
  .review-card {
    max-width: 100%;
    min-width: 0;
  }

  .review-list {
    justify-items: center;
  }

  .review-card {
    width: min(100%, 314px);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .floating-action {
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .cookie-consent {
    inset: auto 12px 12px 12px;
  }

  .cookie-consent-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 18px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button,
  .cookie-settings-actions .button,
  .consent-placeholder .button {
    width: 100%;
  }

  .cookie-option {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-settings-actions {
    display: grid;
    justify-items: start;
  }

  .cookie-settings-button {
    left: 12px;
    bottom: 12px;
    max-width: calc(100vw - 88px);
    font-size: 0.72rem;
  }

  .floating-action svg {
    width: 23px;
    height: 23px;
  }

  .floating-phone {
    bottom: 134px;
  }

  .floating-teams {
    bottom: 78px;
  }

  .quick-services {
    margin-top: -28px;
    overflow: hidden;
  }

  .quick-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 74vw);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .quick-card,
  .quick-card.featured {
    min-height: 178px;
    border-radius: 12px;
    background: #2a2a30;
    scroll-snap-align: start;
  }

  .js .hero-copy.reveal,
  .js .section-heading.reveal,
  .js .intro-copy.reveal,
  .js .feature-item.reveal,
  .js .network-grid > .reveal:first-child {
    --reveal-x: -32px;
  }

  .js .hero-visual.reveal,
  .js .stats-card.reveal {
    --reveal-x: 32px;
  }
}

@media (min-width: 761px) {
  .nav-toggle {
    display: none;
  }
}

@keyframes floatApp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
