:root {
  --navy: #050452;
  --navy-deep: #03033d;
  --deep-blue: #0b1f7a;
  --electric: #1c88e4;
  --cyan: #09c0fa;
  --paper: #f7f4ee;
  --sand: #ece4d6;
  --graphite: #23273d;
  --muted: #5a5f78;
  --line: rgba(5, 4, 82, 0.12);
  --line-dark: rgba(255, 255, 255, 0.13);
  --white: #fff;
  --success: #2c7a43;
  --display: "Space Grotesk", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --container: 1200px;
  --header-height: 88px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(5, 4, 82, 0.13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--electric);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.mono {
  font-family: var(--mono);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--electric), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(5, 4, 82, 0.76);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.scrolled {
  background: rgba(5, 4, 82, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(2, 2, 44, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 94px;
  height: 84px;
  object-fit: contain;
}

.footer-brand img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.87rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 160ms ease;
}

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

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-sm {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.82rem;
}

.button-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.button-light:hover {
  background: var(--paper);
}

.button-primary {
  color: var(--white);
  background: var(--electric);
  box-shadow: 0 14px 34px rgba(28, 136, 228, 0.28);
}

.button-primary:hover {
  background: #1479d0;
  box-shadow: 0 18px 38px rgba(28, 136, 228, 0.35);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-dark:hover {
  background: var(--deep-blue);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-nav {
  position: absolute;
  z-index: 999;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100dvh - var(--header-height));
  padding: 34px 24px;
  overflow-y: auto;
  color: var(--white);
  background: var(--navy);
}

.mobile-nav:not([hidden]) {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.mobile-nav > a:not(.button) {
  padding: 13px 2px;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .button {
  margin-top: 20px;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 156px 0 0;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 72% 38%, rgba(28, 136, 228, 0.16), transparent 36%), linear-gradient(130deg, var(--navy) 0%, var(--navy) 56%, var(--deep-blue) 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: 0;
  width: 58%;
  height: 80%;
  content: "";
  opacity: 0.18;
  background: linear-gradient(120deg, transparent 35%, rgba(9, 192, 250, 0.15) 36%, transparent 37%);
  transform: skewX(-12deg);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-one {
  top: 90px;
  right: 16%;
  width: 310px;
  height: 310px;
  background: rgba(28, 136, 228, 0.25);
}

.hero-glow-two {
  right: -90px;
  bottom: 10%;
  width: 270px;
  height: 270px;
  background: rgba(9, 192, 250, 0.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 5vw, 72px);
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 22px;
  gap: 10px;
  color: var(--deep-blue);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--cyan);
}

.hero h1,
.section-heading h2,
.differentials-copy h2,
.reviews-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3rem, 5vw, 4.75rem);
}

.hero h1 > span,
.hero h1 em,
.hero h1 em > span {
  display: block;
}

.hero h1 > span,
.hero h1 em > span {
  white-space: nowrap;
}

h1 em,
h2 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.5vw, 1.17rem);
  line-height: 1.75;
}

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

.review-proof {
  display: inline-flex;
  align-items: center;
  margin-top: 36px;
  padding: 13px 0;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.review-proof .icon {
  width: 17px;
  height: 17px;
  margin-left: 2px;
  transition: transform 160ms ease;
}

.review-proof:hover .icon {
  transform: translate(2px, -2px);
}

.review-score {
  color: var(--white);
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 600;
}

.stars {
  color: #f6c650;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-label strong {
  color: var(--white);
}

.hero-visual {
  position: relative;
  align-self: end;
}

.hero-photo-wrap {
  position: relative;
  width: min(100%, 500px);
  margin-left: auto;
  overflow: hidden;
  background: var(--deep-blue);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.26);
}

.hero-photo-wrap > img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(0.86) contrast(1.04);
}

.hero-photo-shade {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(5, 4, 82, 0.88));
}

.hero-caption {
  position: absolute;
  right: 25px;
  bottom: 24px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  line-height: 1.4;
}

.hero-caption strong {
  color: var(--white);
  font-size: 0.87rem;
  font-weight: 600;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(9, 192, 250, 0.12);
}

.insight-card {
  position: absolute;
  bottom: 106px;
  left: -68px;
  display: flex;
  align-items: center;
  min-width: 240px;
  padding: 15px 18px;
  gap: 12px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.insight-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--electric);
  background: rgba(28, 136, 228, 0.1);
  border-radius: 50%;
}

.insight-card span:last-child {
  display: flex;
  flex-direction: column;
}

.insight-card small {
  color: var(--muted);
  font-size: 0.68rem;
}

.insight-card strong {
  font-family: var(--display);
  font-size: 0.89rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-strip > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-strip > span:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-strip .icon {
  color: var(--cyan);
}

.section-heading h2,
.differentials-copy h2,
.reviews-heading h2,
.final-cta h2 {
  color: var(--navy);
  font-size: clamp(2.35rem, 4.3vw, 4.25rem);
}

.section-heading h2 em,
.differentials-copy h2 em {
  color: var(--electric);
}

.section-about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 130px);
}

.about-copy {
  padding-top: 52px;
}

.about-copy p {
  max-width: 650px;
  margin: 0 0 20px;
  color: var(--muted);
}

.about-copy .lead {
  color: var(--graphite);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 500;
  line-height: 1.42;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  gap: 8px;
  color: var(--deep-blue);
  font-size: 0.87rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(11, 31, 122, 0.25);
}

.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 160ms ease;
}

.text-link:hover .icon {
  transform: translate(3px, 3px);
}

.about-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(460px, 1.22fr);
  gap: 28px;
  margin-top: 76px;
}

.about-photo {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--sand);
  border-radius: var(--radius-lg);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.photo-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 17px 20px;
  color: var(--white);
  background: rgba(5, 4, 82, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  backdrop-filter: blur(12px);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.principle-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.principle-card .number,
.service-index {
  color: var(--electric);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.principle-card h3 {
  margin: auto 0 8px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.25;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.principle-card-wide {
  grid-column: 1 / -1;
  min-height: 320px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  border-color: transparent;
  box-shadow: var(--shadow);
}

.principle-card-wide h3,
.principle-card-wide .number {
  color: var(--white);
}

.principle-card-wide p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
  padding-top: 24px;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
}

.metric-row span {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
}

.metric-row strong {
  color: var(--cyan);
  font-size: 1.75rem;
}

.section-audience {
  background: var(--white);
}

.section-heading-center {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
}

.section-heading-center > p:last-child {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  gap: 14px;
}

.audience-card {
  display: flex;
  min-height: 142px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--display);
  font-size: 1.07rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.audience-card .icon {
  width: 28px;
  height: 28px;
  color: var(--electric);
}

.audience-card:hover {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(5, 4, 82, 0.14);
  transform: translateY(-4px);
}

.audience-card:hover .icon {
  color: var(--cyan);
}

.audience-card-wide {
  grid-column: span 2;
  background: var(--sand);
}

.section-services {
  color: var(--white);
  background: var(--navy);
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 100px;
}

.section-heading-split h2,
.reviews-heading h2,
.final-cta h2 {
  color: var(--white);
}

.section-heading-split > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.65);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 30px;
  background: #08075b;
  transition: background 180ms ease;
}

.service-card:hover {
  background: var(--deep-blue);
}

.service-card-featured {
  background: linear-gradient(145deg, var(--deep-blue), #106ec9);
}

.service-card-double {
  grid-column: span 2;
  min-height: 310px;
  background: linear-gradient(145deg, #08075b, var(--deep-blue));
}

.service-card-double p {
  max-width: 760px;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.service-index {
  position: absolute;
  top: 32px;
  right: 32px;
  color: rgba(255, 255, 255, 0.38);
}

.service-card h3 {
  max-width: 250px;
  margin: auto 0 10px;
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.25;
}

.service-card.service-card-double h3 {
  max-width: 520px;
  margin: 48px 0 12px;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
}

.service-card > a {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card:hover > a,
.service-card > a:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card > a:hover {
  color: var(--navy);
  background: var(--cyan);
}

.service-card-wide {
  grid-column: span 3;
  min-height: 180px;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.service-card-wide h3 {
  margin: 0 0 6px;
}

.service-card-wide .service-index {
  position: static;
}

.service-card-wide > a {
  position: static;
  margin-left: auto;
  opacity: 1;
  transform: none;
}

.section-differentials {
  background: var(--sand);
}

.differentials-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 10vw, 140px);
}

.differentials-copy {
  position: sticky;
  top: 140px;
  align-self: start;
}

.differentials-copy > p:not(.eyebrow) {
  margin: 26px 0 32px;
  color: var(--muted);
}

.differentials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.differential-item {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(5, 4, 82, 0.09);
  border-radius: var(--radius-sm);
  transition: background 180ms ease, transform 180ms ease;
}

.differential-item:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.differential-item > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 50px;
  place-items: center;
  color: var(--electric);
  background: rgba(28, 136, 228, 0.1);
  border-radius: 50%;
}

.differential-item h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.12rem;
}

.differential-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-process {
  background: var(--paper);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 68px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  content: "";
  background: var(--line);
}

.process-list li {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.process-number {
  display: block;
  margin-bottom: 20px;
  color: var(--electric);
  font-size: 0.72rem;
}

.process-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 26px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(5, 4, 82, 0.08);
}

.process-list h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.35;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-reviews {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #07126a 58%, var(--deep-blue));
  overflow: hidden;
}

.section-reviews .container {
  --container: 1400px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.62fr) minmax(760px, 1.38fr);
  align-items: center;
  gap: clamp(36px, 3.2vw, 52px);
}

.reviews-heading {
  min-width: 0;
}

.reviews-heading h2 {
  max-width: 500px;
  font-size: clamp(2.65rem, 4vw, 4rem);
}

.reviews-heading h2 em {
  color: var(--cyan);
}

.reviews-intro {
  max-width: 390px;
  margin: 30px 0 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
}

.text-link-light {
  color: var(--cyan);
  border-bottom-color: rgba(9, 192, 250, 0.3);
}

.reviews-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 18px;
}

.trustindex-panel {
  overflow: hidden;
  padding: 18px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.trustindex-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 16px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trustindex-widget {
  min-height: 250px;
}

.trustindex-widget [class*="ti-review"],
.trustindex-widget [class*="ti-widget"] {
  max-width: none;
}

.trustindex-widget noscript a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-weight: 700;
}

.review-card {
  min-height: 360px;
  margin: 0;
  padding: 30px;
  color: var(--graphite);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.review-card-offset {
  margin-top: 60px;
}

.quote-mark {
  height: 70px;
  color: var(--electric);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.review-card blockquote {
  margin: 20px 0 40px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.5;
}

.review-card figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-top: auto;
  gap: 12px;
}

.review-card figcaption > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.review-card figcaption strong {
  color: var(--navy);
  font-size: 0.78rem;
}

.review-card figcaption small {
  color: var(--muted);
  font-size: 0.65rem;
}

.review-card figcaption .stars {
  grid-column: 2;
  font-size: 0.68rem;
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: span 2;
  place-items: center;
  color: var(--white);
  background: var(--electric);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 700;
}

.review-avatar-alt {
  background: var(--deep-blue);
}

.section-faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.faq-heading {
  position: sticky;
  top: 140px;
}

.faq-heading > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  gap: 24px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--electric);
  background: rgba(28, 136, 228, 0.08);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 56px 26px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  padding-top: 0;
  background: var(--white);
}

.final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  padding: clamp(50px, 7vw, 84px);
  gap: 80px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.final-glow {
  position: absolute;
  z-index: -1;
  right: -80px;
  bottom: -120px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(9, 192, 250, 0.3), transparent 67%);
  border-radius: 50%;
}

.final-cta-copy p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding: 88px 0 0;
  color: var(--white);
  background: var(--navy-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 1fr;
  padding-bottom: 62px;
  gap: clamp(50px, 9vw, 130px);
}

.footer-brand p {
  max-width: 280px;
  margin: 20px 0 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

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

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  color: var(--navy);
  background: var(--cyan);
  border-color: var(--cyan);
}

.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: var(--display);
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  transition: color 160ms ease;
}

.footer-nav a:hover {
  color: var(--cyan);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact a,
.footer-contact p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.6;
}

.footer-contact a:hover strong {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 990;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 20px;
  gap: 9px;
  color: var(--white);
  background: var(--success);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(18, 92, 45, 0.3);
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 20px 46px rgba(18, 92, 45, 0.4);
  transform: translateY(-3px);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1360px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .reviews-heading {
    max-width: 760px;
  }

  .reviews-heading h2 {
    max-width: 760px;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 78px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 5.8vw, 4.25rem);
  }

  .hero-photo-wrap > img {
    height: 540px;
  }

  .insight-card {
    left: -36px;
  }

  .about-showcase {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .service-card-double {
    grid-column: span 2;
  }

  .differentials-grid,
  .faq-grid {
    gap: 70px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .reviews-heading {
    max-width: 720px;
  }

  .review-card {
    padding: 24px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 84px 0;
  }

  .hero-grid,
  .about-grid,
  .section-heading-split,
  .differentials-grid,
  .reviews-grid,
  .faq-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .hero-photo-wrap {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
  }

  .trust-strip > span:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust-strip > span:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .about-copy {
    padding-top: 0;
  }

  .about-showcase {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 580px;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading-split {
    gap: 26px;
  }

  .section-heading-split > p {
    max-width: 620px;
  }

  .differentials-copy,
  .faq-heading {
    position: static;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 0;
  }

  .process-list::before {
    display: none;
  }

  .reviews-cards {
    max-width: 700px;
  }

  .trustindex-panel {
    max-width: 760px;
  }

  .review-card-offset {
    margin-top: 34px;
  }

  .final-cta-inner {
    align-items: start;
    gap: 32px;
  }

  .final-cta-copy {
    max-width: 620px;
  }

  .footer-main {
    grid-template-columns: 1fr 0.8fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .brand img {
    width: 82px;
    height: 72px;
  }

  .footer-brand img {
    width: 132px;
    height: 132px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.2vw, 2.8rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .review-proof {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    width: 100%;
    gap: 8px;
  }

  .review-label {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
  }

  .hero-photo-wrap > img {
    height: 500px;
  }

  .insight-card {
    bottom: 92px;
    left: -8px;
    min-width: 222px;
  }

  .trust-strip > span {
    min-height: 70px;
    padding: 10px;
    font-size: 0.68rem;
    text-align: center;
  }

  .section-heading h2,
  .differentials-copy h2,
  .reviews-heading h2,
  .final-cta h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .about-grid {
    gap: 34px;
  }

  .about-showcase {
    margin-top: 52px;
  }

  .about-photo {
    min-height: 470px;
  }

  .principles-grid,
  .audience-grid,
  .services-grid,
  .differentials-list,
  .process-list,
  .reviews-cards {
    grid-template-columns: 1fr;
  }

  .principle-card-wide,
  .audience-card-wide,
  .service-card-double,
  .service-card-wide {
    grid-column: auto;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    margin-top: 48px;
  }

  .audience-card {
    min-height: 120px;
  }

  .services-grid {
    gap: 1px;
  }

  .service-card {
    min-height: 280px;
  }

  .service-card-wide {
    min-height: 300px;
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card-wide h3 {
    margin-top: 52px;
  }

  .service-card-wide > a {
    position: absolute;
  }

  .process-list {
    gap: 42px;
  }

  .process-list li {
    padding: 0 18px 42px;
    border-bottom: 1px solid var(--line);
  }

  .review-card,
  .review-card-offset {
    min-height: 320px;
    margin-top: 0;
  }

  .trustindex-panel {
    padding: 12px;
    border-radius: 16px;
  }

  .trustindex-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .faq-list summary {
    padding: 20px 0;
    font-size: 0.96rem;
  }

  .final-cta {
    padding-top: 0;
  }

  .final-cta-inner {
    width: calc(100% - 24px);
    padding: 42px 28px;
    border-radius: 22px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    gap: 4px;
  }

  .footer-bottom p {
    margin: 0;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
