:root {
  --blue-950: #032c67;
  --blue-900: #063b82;
  --blue-850: #06448f;
  --blue-800: #084b9a;
  --blue-700: #0a5cab;
  --blue-soft: #eaf4ff;
  --teal-750: #087fae;
  --teal-700: #0988b8;
  --teal-600: #0898ca;
  --yellow-500: #ffc02e;
  --yellow-450: #ffca42;
  --yellow-600: #f5ae18;
  --ink: #0d2e5d;
  --white: #ffffff;
  --cream: #fffaf1;
  --shadow-blue: 0 24px 60px rgba(3, 44, 103, .25);
  --shadow-card: 0 18px 40px rgba(4, 48, 100, .18);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --container: 1120px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow-500) var(--blue-950);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 192, 46, .18), transparent 25%),
    linear-gradient(180deg, #f5fbff 0%, #ffffff 46%, #eef8ff 100%);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: var(--blue-950);
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--yellow-450), var(--yellow-600));
  border-radius: 999px;
  border: 2px solid var(--blue-950);
}

body::-webkit-scrollbar-thumb:hover {
  background: #ffd76b;
}

img,
iframe,
svg {
  max-width: 100%;
}

section {
  scroll-margin-top: 84px;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--yellow-500);
  color: var(--blue-950);
  font-weight: 800;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(5, 63, 137, .1);
  box-shadow: 0 14px 28px rgba(3, 44, 103, .08);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 185px;
  transition: transform .22s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--blue-900);
  font-weight: 800;
  letter-spacing: .01em;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  padding: 12px 0;
  transition: color .22s ease, transform .22s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-700);
  transform: translateY(-1px);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--blue-900);
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 10px 24px rgba(4, 54, 118, .22);
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-blue {
  background:
    radial-gradient(circle at 70% 38%, rgba(13, 116, 202, .7), transparent 30%),
    radial-gradient(circle at 23% 20%, rgba(255, 192, 46, .15), transparent 22%),
    linear-gradient(135deg, var(--blue-950) 0%, var(--blue-900) 50%, var(--blue-800) 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  color: var(--white);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -110px -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 192, 46, .08);
  filter: blur(12px);
}

.hero::after {
  inset: 50px -140px auto auto;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, .08);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
  opacity: .7;
}

.hero-glow-one {
  right: 20%;
  top: 20%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,.2), transparent 70%);
}

.hero-glow-two {
  left: 0;
  bottom: 0;
  width: 360px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(255,192,46,.18), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: 30px;
  align-items: center;
  min-height: 480px;
  padding: 54px 0 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 545px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--yellow-500);
  font-weight: 900;
  letter-spacing: .02em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow-500);
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.47rem, 3.01vw, 3.43rem);
  line-height: .98;
  letter-spacing: -.055em;
  color: #fff;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--yellow-500);
  letter-spacing: -.035em;
}

.hero h1 strong {
  color: var(--yellow-450);
}

.hero-subtitle {
  margin: 22px 0 28px;
  max-width: 520px;
  color: rgba(255, 255, 255, .93);
  font-size: clamp(1.05rem, 1.7vw, 1.42rem);
  line-height: 1.46;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.01em;
  border: 0;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
}

.btn-primary,
.btn-small {
  color: var(--blue-950);
  background: linear-gradient(180deg, #ffd35d, var(--yellow-500) 58%, #f6ab11 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .48), 0 16px 34px rgba(255, 173, 21, .25);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-small:hover,
.btn-small:focus-visible {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .58), 0 21px 44px rgba(255, 173, 21, .38);
}

.hero-media {
  position: relative;
  align-self: end;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 9%;
  width: min(460px, 82%);
  height: 78%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .65) 0%, rgba(143, 205, 255, .38) 26%, rgba(60, 144, 227, .16) 54%, transparent 74%);
  filter: blur(12px);
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  left: 19%;
  right: 19%;
  bottom: -10px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .22), transparent 72%);
  filter: blur(10px);
  z-index: 0;
}

.hero-media img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(500px, 100%);
  height: auto;
  margin-bottom: -12px;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, .22));
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, rgba(0, 0, 0, .88) 88%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, rgba(0, 0, 0, .88) 88%, transparent 100%);
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  bottom: 16px;
  right: 1%;
  animation: rotateSoft 18s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow-500);
  box-shadow: 0 0 18px rgba(255, 192, 46, .8);
}

.hero-orbit::before {
  top: 54px;
  left: 74px;
}

.hero-orbit::after {
  right: 60px;
  bottom: 76px;
}


@keyframes rotateSoft {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.process-wrap {
  position: relative;
  z-index: 5;
  margin-top: -34px;
  padding-bottom: 44px;
}

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

.process-card {
  min-height: 112px;
  padding: 18px 17px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffca42 0%, var(--yellow-500) 100%);
  color: var(--blue-950);
  box-shadow: 0 18px 34px rgba(4, 53, 116, .16);
  border: 1px solid rgba(255, 255, 255, .32);
  transition: transform .24s ease, box-shadow .24s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(4, 53, 116, .22);
}

.process-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 950;
}

.process-card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.25;
  font-weight: 600;
}

.segments {
  position: relative;
  padding: 8px 0 64px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 192, 46, .09), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.section-title {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(1.65rem, 3.4vw, 2.65rem);
  line-height: 1.18;
  letter-spacing: -.035em;
  font-weight: 600;
}

.section-title strong,
.section-title span {
  font-weight: 950;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 54px;
  max-width: 1000px;
  margin-inline: auto;
}

.segment-card {
  position: relative;
  isolation: isolate;
  min-height: 350px;
  border-radius: var(--radius-lg);
  padding: 30px 22px 22px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, .16), transparent 32%),
    linear-gradient(180deg, var(--blue-900), #073979 100%);
  color: #fff;
  box-shadow:
    0 22px 48px rgba(3, 44, 103, .28),
    0 10px 22px rgba(8, 75, 154, .22),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
  transition: transform .26s ease, box-shadow .26s ease, background .26s ease;
}

.segment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 192, 46, .16), transparent 32%, rgba(17, 129, 190, .2));
  opacity: 0;
  transition: opacity .26s ease;
}

.segment-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 30px 64px rgba(3, 44, 103, .36),
    0 14px 30px rgba(8, 75, 154, .28),
    0 0 0 1px rgba(255, 192, 46, .18),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.segment-card:hover::before {
  opacity: 1;
}

.segment-card:hover .segment-image img {
  transform: translateY(-6px) scale(1.045);
}

.segment-image {
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.segment-image img {
  display: block;
  max-width: 168px;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .22));
  transition: transform .28s ease, filter .28s ease;
}

.segment-card:nth-child(3) .segment-image img,
.segment-card:nth-child(11) .segment-image img {
  max-height: 176px;
}

.segment-card h3 {
  min-height: 54px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -.02em;
}

.btn-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: .94rem;
}

.section-teal {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 192, 46, .15), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.14), transparent 28%),
    linear-gradient(180deg, var(--teal-700) 0%, #087fad 68%, #0474a3 100%);
}

.about {
  position: relative;
  overflow: hidden;
  padding: 58px 0 54px;
  color: #fff;
}

.about-soft-top {
  position: absolute;
  top: -84px;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(247,251,255,1), rgba(247,251,255,0));
  pointer-events: none;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  gap: 50px;
  align-items: center;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--yellow-500);
  font-weight: 950;
  text-align: center;
}

.about h2 {
  margin: 0 0 18px;
  font-size: clamp(1.36rem, 2.1vw, 1.75rem);
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

.about-copy > p:not(.section-kicker) {
  margin: 0 auto 24px;
  max-width: 610px;
  color: rgba(255, 255, 255, .94);
  font-size: 1rem;
  line-height: 1.55;
  text-align: center;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  color: #fff;
}

.feature-list span {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-500);
  background: var(--blue-900);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 10px 20px rgba(0,0,0,.14);
}

.btn-about {
  min-height: 44px;
  padding-inline: 22px;
}

.video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(4, 40, 88, .28);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .23);
  border: 1px solid rgba(255, 255, 255, .16);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24);
  z-index: 2;
}

.video-card iframe,
.video-poster {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-poster {
  position: relative;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  background: #003f8e;
  color: #ffffff;
}

.video-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(0, 65, 143, .38), rgba(0, 25, 62, .22)),
    url("https://i.ytimg.com/vi/nOqate63bzE/hqdefault.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .35s ease, filter .35s ease;
}

.video-poster:hover .video-bg,
.video-poster:focus-visible .video-bg {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

.video-play svg {
  width: 76px;
  height: auto;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.28));
  transition: transform .25s ease, filter .25s ease;
}

.video-play path:first-child {
  fill: #ff0033;
}

.video-play-triangle {
  fill: #ffffff;
}

.video-poster:hover .video-play svg,
.video-poster:focus-visible .video-play svg {
  transform: scale(1.08);
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.34));
}

.video-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  text-align: left;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

.video-open-link {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #003f8e;
  background: rgba(255, 190, 42, .96);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0,0,0,.20);
}

.video-open-link:hover,
.video-open-link:focus-visible {
  transform: translateY(-1px);
  background: #ffd45f;
}

.quote-band {
  margin-top: 48px;
  text-align: center;
}

.quote-band a {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  transition: transform .22s ease;
}

.quote-band a:hover {
  transform: translateY(-2px);
}

.quote-band strong {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 950;
  letter-spacing: -.035em;
}

.quote-band span {
  font-size: clamp(1.22rem, 2.8vw, 2.05rem);
  line-height: 1.2;
}


.testimonials,
.reviews-section {
  position: relative;
  padding: 78px 0 68px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 192, 46, .14), transparent 22%),
    radial-gradient(circle at 14% 0%, rgba(8, 75, 154, .09), transparent 26%),
    linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
  overflow: hidden;
}

.reviews-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.reviews-heading h2 {
  max-width: 780px;
  margin: 16px 0 18px;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  color: var(--blue-950);
  font-weight: 950;
}

.reviews-heading p {
  max-width: 720px;
  color: rgba(13, 46, 93, .72);
  font-size: 1.06rem;
  line-height: 1.68;
  margin: 0;
}

.reviews-heading .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--blue-900);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .86rem;
}

.reviews-heading .section-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow-500);
}

.google-badge {
  width: 164px;
  height: auto;
  padding: 16px;
  border-radius: 24px;
  background: #0d0d0b;
  box-shadow: 0 24px 70px rgba(3, 44, 103, .18);
}

.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 42px;
}

.reviews-marquee::before,
.reviews-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 13vw;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f8fcff, transparent);
}

.reviews-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #eef8ff, transparent);
}

.reviews-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  animation: scrollReviews 210s linear infinite;
  will-change: transform;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: running;
}

@keyframes scrollReviews {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.review-card {
  width: 320px;
  min-width: 320px;
  flex: 0 0 320px;
  min-height: 238px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,251,255,.9));
  border: 1px solid rgba(8, 75, 154, .14);
  box-shadow: 0 22px 60px rgba(3, 44, 103, .10), inset 0 1px 0 rgba(255,255,255,.88);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 192, 46, .58);
  box-shadow: 0 32px 72px rgba(3, 44, 103, .16);
}

.review-card.has-text {
  width: 380px;
  min-width: 380px;
  flex: 0 0 380px;
  background: linear-gradient(180deg, #fff, rgba(243,249,255,.96));
}

.review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar-img {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border: 3px solid rgba(255, 255, 255, .86);
  box-shadow: 0 12px 24px rgba(3,44,103,.18);
  overflow: visible;
  color: #fff;
  font-weight: 950;
}

.review-avatar-img::before {
  content: attr(data-initial);
  font-size: 1rem;
}

.review-avatar-img::after {
  content: "G";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #4285f4;
  background: #fff;
  font-weight: 950;
  box-shadow: 0 3px 7px rgba(0,0,0,.15);
}

.review-avatar-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.stars {
  color: #ffb400;
  font-size: 1.05rem;
  letter-spacing: .06em;
  white-space: nowrap;
}

.review-card blockquote {
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: -.02em;
  color: var(--blue-950);
  margin: 0 0 28px;
  font-weight: 750;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.48;
  color: rgba(13, 46, 93, .72);
  margin: 0 0 28px;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-card footer strong {
  font-size: .98rem;
  color: var(--blue-950);
  line-height: 1.2;
}

.review-card footer span {
  font-size: .78rem;
  color: rgba(13, 46, 93, .64);
}

.reviews-cta {
  text-align: center;
  margin-top: 6px;
}

.btn-outline {
  min-height: 54px;
  padding-inline: 30px;
  color: var(--blue-950);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(8, 75, 154, .18);
  box-shadow: 0 16px 34px rgba(3, 44, 103, .08), inset 0 1px 0 rgba(255,255,255,.88);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 192, 46, .62);
  box-shadow: 0 22px 46px rgba(3, 44, 103, .14), inset 0 1px 0 rgba(255,255,255,.94);
}

.contact {
  padding: 58px 0 42px;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1fr;
  align-items: center;
  gap: 60px;
}

.contact-logo {
  display: flex;
  justify-content: center;
}

.contact-logo img {
  width: min(430px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(4, 53, 116, .12));
}

.contact-info h2 {
  margin: 0 0 18px;
  color: var(--blue-900);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  letter-spacing: -.04em;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 17px;
  text-decoration: none;
  color: var(--blue-900);
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  line-height: 1.25;
}

.contact-item strong {
  font-weight: 950;
}

.contact-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 950;
  font-size: 1.1rem;
  box-shadow: 0 14px 26px rgba(5, 63, 137, .18);
}

.whatsapp-icon {
  background: linear-gradient(135deg, #4df188, #25d366);
}

.pin-icon {
  background: linear-gradient(135deg, #0a99cd, var(--blue-900));
}

.footer {
  padding: 0 0 42px;
  color: var(--blue-900);
  background: #ffffff;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.46));
  border: 1px solid rgba(255,255,255,.8);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -1px 0 rgba(255,255,255,.28),
    0 24px 60px rgba(4,53,116,.12);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  position: relative;
  overflow: hidden;
}

.footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,192,46,.45), rgba(255,255,255,.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.footer small {
  font-size: 13px;
  position: relative;
  z-index: 1;
  font-weight: 650;
}

.footer a {
  color: #b8860b;
  text-decoration: none;
  font-weight: 950;
}

.footer a:hover,
.footer a:focus-visible {
  color: #b8860b;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 57.6px;
  height: 57.6px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #66f59a 0%, #3edd74 34%, #25d366 66%, #17b652 100%);
  border: 2px solid rgba(255,255,255,0.16);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.22), inset 0 -3px 7px rgba(0,0,0,0.14), 0 18px 36px rgba(0,0,0,0.28), 0 0 0 5px rgba(37, 211, 102, 0.18);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
  z-index: 61;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.24), inset 0 -3px 7px rgba(0,0,0,0.14), 0 22px 42px rgba(0,0,0,0.32), 0 0 0 6px rgba(37, 211, 102, 0.22);
  filter: saturate(1.06);
}

.whatsapp-float svg {
  width: 46px;
  height: 46px;
  display: block;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .reviews-track {
    animation-name: scrollReviews !important;
    animation-duration: 210s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 70px 18px auto;
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 26px 60px rgba(3,44,103,.22);
    border: 1px solid rgba(5,63,137,.1);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

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

  .main-nav a {
    padding: 12px 14px;
    border-radius: 13px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: var(--blue-soft);
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 8px;
    padding-top: 44px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-media {
    min-height: 410px;
    margin-top: -10px;
  }

  .hero-media img {
    width: min(420px, 82vw);
  }

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

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

  .reviews-heading {
    align-items: flex-start;
  }

  .about-copy,
  .contact-info {
    text-align: center;
  }

  .feature-list {
    max-width: 560px;
    margin-inline: auto;
    text-align: left;
  }

  .contact-grid {
    gap: 28px;
  }

  .contact-item {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-shell {
    min-height: 64px;
  }

  .brand {
    width: 154px;
  }

  .main-nav {
    inset: 64px 14px auto;
  }

  .hero {
    min-height: auto;
  }

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

  .eyebrow {
    font-size: .86rem;
    line-height: 1.25;
  }

  .eyebrow::before {
    width: 22px;
  }

  .hero h1 {
    font-size: clamp(1.44rem, 7.56vw, 2.39rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-media {
    min-height: 302px;
    margin-top: -2px;
  }

  .hero-media img {
    width: min(320px, 88vw);
    margin-bottom: -4px;
  }

  .hero-orbit {
    width: 310px;
    height: 310px;
    right: 50%;
    transform: translateX(50%);
    animation: none;
  }

  .process-wrap {
    margin-top: 0;
    padding: 16px 0 34px;
    background: #f7fbff;
  }

  .process-grid,
  .segments-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
  }

  .segments {
    padding-bottom: 44px;
  }

  .section-title {
    margin-bottom: 22px;
  }

  .segments-grid {
    max-width: 360px;
    margin-inline: auto;
  }

  .segment-card {
    min-height: 318px;
    padding-top: 24px;
  }

  .segment-image {
    height: 148px;
  }

  .segment-image img {
    max-height: 142px;
  }

  .about {
    padding: 44px 0;
  }

  .about-grid {
    gap: 32px;
  }

  .quote-band {
    margin-top: 34px;
  }

  .testimonials,
  .reviews-section {
    padding: 54px 0 52px;
  }

  .reviews-heading {
    display: grid;
    gap: 18px;
    margin-bottom: 30px;
  }

  .reviews-heading h2 {
    font-size: clamp(1.95rem, 8.4vw, 2.75rem);
  }

  .google-badge {
    width: 150px;
  }

  .reviews-marquee::before,
  .reviews-marquee::after {
    width: 48px;
  }

  .reviews-track {
    animation-duration: 230s;
    gap: 14px;
  }

  .review-card,
  .review-card.has-text {
    width: 292px;
    min-width: 292px;
    flex: 0 0 292px;
    min-height: 246px;
    padding: 22px;
  }

  .review-card blockquote {
    font-size: .96rem;
  }

  .contact {
    padding-top: 46px;
  }

  .contact-logo img {
    width: min(310px, 100%);
  }

  .contact-info h2 {
    margin-bottom: 16px;
  }

  .contact-item {
    font-size: 1.08rem;
    gap: 12px;
  }

  .contact-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .footer-shell {
    border-radius: 28px;
    text-align: center;
    justify-content: center;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float svg {
    width: 42px;
    height: 42px;
  }
}
