/* ============================================================
   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: var(--nav-h); left: 0; right: 0;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 20px var(--gutter) calc(20px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 4px;
  z-index: 49;
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a {
  font-size: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile .nav__cta {
  margin-top: 12px;
  text-align: center;
  border-bottom: none !important;
}

@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
============================================================ */
.services {
  padding: 120px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(33, 40, 50, .14);
  }
}
.card__num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--mint);
  background: var(--mint-soft);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 12px;
}
.card p { color: var(--muted); margin: 0 0 18px; line-height: 1.6; }
.card__list { list-style: none; padding: 0; margin: 0; }
.card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 8px;
  font-weight: 500;
}
.card__list li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--mint);
  border-radius: 2px;
}

@media (max-width: 760px) {
  .services { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .card { padding: 28px; }
}

/* ============================================================
   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
============================================================ */
.why {
  padding: 120px 0;
  background: var(--bg);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why__item {
  padding: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
@media (hover: hover) {
  .why__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(33, 40, 50, .14);
    background: #fff;
  }
}
.why__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--mint-soft);
  color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.why__icon svg { width: 22px; height: 22px; }
.why__item h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.why__item p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }

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

/* ============================================================
   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);
}
.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 (Vidalytics facade)
============================================================ */
.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;
}
.vid-card {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  -webkit-tap-highlight-color: transparent;
}
.vid-card__inner {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vid-card__thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.vid-card__shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .25), rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, .28) 100%);
  pointer-events: none;
}
@media (hover: hover) {
  .vid-card:hover .vid-card__inner {
    transform: translateY(-3px);
    border-color: rgba(50, 225, 196, .35);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  }
  .vid-card:hover .vid-card__thumb {
    transform: scale(1.04);
  }
  .vid-card:hover .vid-card__play {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 18px 50px rgba(50, 225, 196, .45);
  }
}
.vid-card:focus-visible .vid-card__inner {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}
.vid-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--navy);
  display: grid; place-items: center;
  box-shadow: 0 12px 36px rgba(50, 225, 196, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.vid-card__play svg { width: 34px; height: 34px; margin-left: 3px; }

.vid-card__caption {
  display: flex; flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}
.vid-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.vid-card__meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .vids { padding: 80px 0; }
  .vids__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
  }
  .vids__grid .vid-card:nth-child(3) { display: none; }
}
@media (max-width: 480px) {
  .vids__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 28px;
  }
  .vids__grid .vid-card:nth-child(3) { display: flex; }
}

/* Modal */
.vid-modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.vid-modal[hidden] { display: none; }
.vid-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 14, 20, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: vmFade .2s ease;
}
.vid-modal__panel {
  position: relative;
  width: min(380px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  animation: vmPop .25s cubic-bezier(.16,1,.3,1);
}
.vid-modal__frame {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: calc(100dvh - 32px);
  border: 0;
  background: #000;
}
.vid-modal__close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .55);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  -webkit-tap-highlight-color: transparent;
  transition: background .15s ease, transform .15s ease;
}
.vid-modal__close svg { width: 18px; height: 18px; }
@media (hover: hover) {
  .vid-modal__close:hover { background: rgba(0, 0, 0, .8); transform: scale(1.05); }
}

@keyframes vmFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes vmPop  { from { opacity: 0; transform: scale(.96) } to { opacity: 1; transform: scale(1) } }

@media (max-width: 480px) {
  .vid-modal__panel {
    width: 100%;
    max-height: 100dvh;
    border-radius: 0;
  }
}

/* ============================================================
   Reveal-on-scroll
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero__glow { animation: none; }
  .hero__eyebrow .dot { animation: none; }
}
