/* ============================================================
   Fill Your Clinic styles
   Brand: FYC navy #212832 + mint #32E1C4 + light #EEEEEE
   Type: Plus Jakarta Sans (Gilroy analogue)
============================================================ */

:root {
  /* brand */
  --navy:        #212832;
  --navy-2:      #393D46;
  --navy-deep:   #161b22;
  --mint:        #32E1C4;
  --mint-soft:   #e6fbf7;
  --light:       #EEEEEE;

  /* neutrals */
  --ink:         #111418;
  --ink-2:       #2a3038;
  --muted:       #6b7280;
  --muted-2:     #94a3b8;
  --line:        rgba(33, 40, 50, .08);
  --line-dark:   rgba(238, 238, 238, .12);

  /* surfaces */
  --bg:          #ffffff;
  --bg-soft:     #f6f7f9;

  /* shadows */
  --shadow-sm:   0 1px 2px rgba(20, 24, 30, .04);
  --shadow:      0 8px 30px rgba(20, 24, 30, .06);
  --shadow-lg:   0 20px 60px rgba(20, 24, 30, .1);

  /* metrics */
  --nav-h:       72px;
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --max:         1200px;
  --gutter:      clamp(20px, 4vw, 40px);
}

@media (max-width: 720px) { :root { --nav-h: 64px; } }

/* ============================================================
   Reset + base
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--mint); color: var(--navy); }

.skip {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip:focus {
  left: 16px; top: 16px; width: auto; height: auto;
  background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================================
   Typography utilities
============================================================ */
.h2 {
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 22px;
}
.h2--light { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--mint-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow--light {
  background: rgba(50, 225, 196, .14);
  color: var(--mint);
}

.section-head { max-width: 760px; margin: 0 0 56px; }
.section-sub {
  font-size: 18px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 620px;
}
.section-sub--light { color: var(--light); opacity: .85; }

.accent { color: var(--mint); }

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn--accent {
  background: var(--mint);
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(50, 225, 196, .35);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}
.btn--block { width: 100%; padding: 16px 22px; }

@media (hover: hover) {
  .btn--accent:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(50, 225, 196, .45); }
  .btn--ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); }
}

/* ============================================================
   Nav
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: env(safe-area-inset-top);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex; align-items: center;
  height: 100%;
}
.nav__logo {
  height: 26px;
  width: auto;
  display: block;
}
.nav__logo--dark { display: none; }
.nav.is-scrolled .nav__logo--light { display: none; }
.nav.is-scrolled .nav__logo--dark  { display: block; }
@media (max-width: 720px) { .nav__logo { height: 22px; } }

.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; font-weight: 500;
}
.nav__links a {
  color: rgba(255, 255, 255, .82);
  transition: color .15s;
  position: relative;
}
.nav.is-scrolled .nav__links a { color: var(--ink-2); }
@media (hover: hover) {
  .nav__links a:not(.nav__cta):hover { color: #fff; }
  .nav.is-scrolled .nav__links a:not(.nav__cta):hover { color: var(--navy); }
}
.nav__cta {
  background: var(--mint);
  color: var(--navy) !important;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .18s, transform .18s, box-shadow .18s;
}
.nav.is-scrolled .nav__cta {
  background: var(--navy);
  color: #fff !important;
}
@media (hover: hover) {
  .nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
  .nav.is-scrolled .nav__cta:hover { background: var(--ink); }
}

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav__burger span {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease, background .25s ease;
}
.nav.is-scrolled .nav__burger span { background: var(--navy); }
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 27px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: calc(var(--nav-h) + env(safe-area-inset-top) + 6px);
  left: 12px;
  right: 12px;
  z-index: 60;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(20, 24, 30, .14);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: navDropdown .22s cubic-bezier(.16, 1, .3, 1);
  transform-origin: top right;
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a {
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  border-radius: 10px;
  transition: background .15s;
  -webkit-tap-highlight-color: transparent;
}
.nav__mobile a:active { background: var(--bg-soft); }
.nav__mobile .nav__cta {
  margin-top: 6px;
  text-align: center;
  padding: 14px 22px;
  font-weight: 600;
  background: var(--navy);
  color: #fff !important;
}
.nav__mobile .nav__cta:active { background: var(--ink); }

/* Force nav opaque when mobile menu is open so the X burger stays legible */
.nav.menu-open {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav.menu-open .nav__logo--light { display: none; }
.nav.menu-open .nav__logo--dark  { display: block; }
.nav.menu-open .nav__burger span { background: var(--navy); }

@keyframes navDropdown {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 100px;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-2) 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero__glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(50, 225, 196, .35), rgba(50, 225, 196, 0) 70%);
  filter: blur(10px);
  z-index: -1;
  animation: float 18s ease-in-out infinite alternate;
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(50, 225, 196, .06) 0, transparent 35%),
    radial-gradient(circle at 88% 78%, rgba(50, 225, 196, .05) 0, transparent 35%);
  z-index: -1;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  z-index: -1;
  opacity: .6;
}

@keyframes float {
  from { transform: translate(0, 0); }
  to   { transform: translate(-60px, 60px); }
}

.hero__inner { position: relative; max-width: 980px; text-align: center; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--light);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(50, 225, 196, .22);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(50, 225, 196, .22); }
  50%      { box-shadow: 0 0 0 7px rgba(50, 225, 196, .08); }
}

.hero__title {
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 800;
  margin: 0 auto;
  max-width: 16ch;
  hyphens: none;
  -webkit-hyphens: none;
  text-wrap: balance;
}
@media (max-width: 560px) {
  .hero__title { font-size: clamp(36px, 11vw, 52px); max-width: 14ch; }
}

.hero__sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: rgba(238, 238, 238, .82);
  margin: 24px auto 36px;
  max-width: 64ch;
}

.hero__cta {
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero__proof {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  padding: 28px 40px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
}
.proof__stat { text-align: center; }
.proof__num {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.proof__lbl {
  margin-top: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}
.proof__div {
  width: 1px; height: 36px;
  background: rgba(255, 255, 255, .12);
}

@media (max-width: 760px) {
  .hero__proof {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding: 24px 20px;
  }
  .proof__div { display: none; }
}

/* ============================================================
   Marquee
============================================================ */
.marquee {
  background: var(--navy);
  color: var(--light);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(33, 40, 50, 0) 100%);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy) 0%, rgba(33, 40, 50, 0) 100%);
}
.marquee__track {
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .marquee::before,
  .marquee::after { width: 60px; }
}
.marquee__dot { color: var(--mint); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Positioning
============================================================ */
.positioning {
  padding: 120px 0;
  background: var(--bg);
}
.positioning__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.positioning__grid > div:first-child { position: sticky; top: 120px; }

.positioning__body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.lede {
  font-size: 22px !important;
  font-weight: 500;
  color: var(--navy) !important;
  line-height: 1.5 !important;
}

@media (max-width: 880px) {
  .positioning { padding: 80px 0; }
  .positioning__grid { grid-template-columns: 1fr; gap: 32px; }
  .positioning__grid > div:first-child { position: static; }
}

/* Services section removed; the pillars block below took its place. */

/* ============================================================
   How it works (dark)
============================================================ */
.how {
  padding: 120px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 10%, rgba(50, 225, 196, .12), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(50, 225, 196, .08), transparent 40%);
  pointer-events: none;
}
.how > .container { position: relative; }

.steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: steps;
}
.step {
  position: relative;
  padding: 32px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
@media (hover: hover) {
  .step:hover {
    transform: translateY(-3px);
    border-color: rgba(50, 225, 196, .3);
    background: rgba(255, 255, 255, .05);
  }
}
.step__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--mint);
  margin-bottom: 18px;
}
.step h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.step p { color: rgba(238, 238, 238, .7); font-size: 15px; line-height: 1.6; margin: 0; }

@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .how { padding: 80px 0; }
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   Why (editorial pillars layout)
============================================================ */
.why {
  padding: 120px 0;
  background: var(--bg);
}
.pillars {
  display: grid;
  gap: 64px;
  max-width: 820px;
  margin: 0 auto;
}
.pillar {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: start;
}
.pillar__num {
  font-size: 64px;
  font-weight: 800;
  color: var(--mint);
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.pillar__title {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 14px;
}
.pillar__body {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 720px) {
  .why { padding: 80px 0; }
  .pillars { gap: 48px; }
  .pillar {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pillar__num { font-size: 40px; }
  .pillar__body { font-size: 16px; }
}

/* ============================================================
   Founder
============================================================ */
.founder {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 70%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, rgba(50, 225, 196, .14), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.founder > .container { position: relative; }

.founder__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}
.founder__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-2);
}
.founder__photo > img:first-of-type {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.founder__photo-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: block;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .4);
}

.founder__quote {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
  color: rgba(238, 238, 238, .85);
  margin: 0 0 18px;
}
.founder__sig {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-direction: column;
}
.founder__name {
  font-size: 18px; font-weight: 700; color: #fff;
}
.founder__role {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--mint);
  margin-top: 4px;
}

@media (max-width: 880px) {
  .founder { padding: 80px 0; }
  .founder__grid { grid-template-columns: 1fr; gap: 40px; }
  .founder__photo { max-width: 320px; margin: 0 auto; }
}

/* ============================================================
   Contact
============================================================ */
.contact {
  padding: 120px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.contact__lede {
  font-size: 18px;
  color: var(--muted);
  margin: 16px 0 32px;
  line-height: 1.6;
}
.contact__bullets {
  list-style: none;
  padding: 0; margin: 0;
}
.contact__bullets li {
  display: flex; gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 16px;
  color: var(--ink-2);
}
.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--navy);
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 700;
  flex: none;
}

.contact__form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.field input, .field textarea {
  font: inherit;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(50, 225, 196, .15);
}
/* intl-tel-input integration with .field styling */
.field .iti { width: 100%; display: block; }
.field .iti__country-list {
  border-color: var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 14px;
}
.field .iti__selected-flag {
  border-top-left-radius: var(--radius-sm);
  border-bottom-left-radius: var(--radius-sm);
}
.field .iti--separate-dial-code .iti__selected-dial-code {
  font-weight: 500;
  color: var(--navy);
}
.field--row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 0;
}
.field--row .field { margin-bottom: 16px; }
.field textarea { resize: vertical; min-height: 96px; }

.contact__fineprint {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}

.contact__error {
  margin: 12px 0 0;
  padding: 12px 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}
.contact__success {
  margin-top: 24px;
  padding: 20px;
  background: var(--mint-soft);
  border: 1px solid rgba(50, 225, 196, .35);
  border-radius: var(--radius);
  display: flex; gap: 14px;
  align-items: flex-start;
}
.contact__success-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--navy);
  display: grid; place-items: center;
  flex: none;
}
.contact__success-icon svg { width: 20px; height: 20px; }
.contact__success strong { color: var(--navy); font-size: 15px; display: block; margin-bottom: 4px; }
.contact__success p { margin: 0; font-size: 14px; color: var(--ink-2); }
.contact__success a { color: var(--navy); text-decoration: underline; font-weight: 600; }

@media (max-width: 980px) {
  .contact { padding: 80px 0; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__form { padding: 28px; }
  .field--row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   Footer
============================================================ */
.foot {
  background: var(--navy-deep);
  color: var(--light);
  padding: 60px 0 40px;
  padding-bottom: calc(40px + env(safe-area-inset-bottom));
}
.foot__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.foot__brand { display: flex; align-items: center; }
.foot__logo { height: 28px; width: auto; display: block; }

.foot__nav {
  display: flex; justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}
.foot__nav a { color: rgba(238, 238, 238, .7); transition: color .15s; }
@media (hover: hover) {
  .foot__nav a:hover { color: var(--mint); }
}

.foot__social { display: flex; gap: 8px; }
.foot__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  display: grid; place-items: center;
  color: var(--light);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.foot__social svg { width: 18px; height: 18px; }
@media (hover: hover) {
  .foot__social a:hover {
    background: var(--mint);
    color: var(--navy);
    border-color: var(--mint);
  }
}

.foot__legal {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: rgba(238, 238, 238, .45);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px;
  margin-top: 24px;
}

@media (max-width: 760px) {
  .foot__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .foot__brand { justify-content: center; }
  .foot__nav { flex-wrap: wrap; justify-content: center; }
  .foot__social { justify-content: center; }
}

/* ============================================================
   Testimonials (inline Vidalytics player)
============================================================ */
.vids {
  padding: 120px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.vids__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.vids__card {
  display: flex;
  flex-direction: column;
}
.vids__player {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.vids__player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.vids__caption {
  text-align: center;
  margin-top: 18px;
}
.vids__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.vids__meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .vids__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
    gap: 28px;
  }
  .vids__grid .vids__card:nth-child(3) { display: none; }
}
@media (max-width: 540px) {
  .vids { padding: 80px 0; }
  .vids__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 32px;
  }
  .vids__grid .vids__card:nth-child(3) { display: flex; }
}

/* ============================================================
   Reveal-on-scroll
============================================================ */
.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .hero__glow { animation: none; }
  .hero__eyebrow .dot { animation: none; }
}
