/* =========================================================
   FACILITTA AI — Landing Page
   Paleta e tipografia extraídas do app Flutter (facilitta)
   ========================================================= */

:root {
  /* Brand */
  --teal:        #66CDCC;
  --teal-dark:   #3FA8A6;
  --teal-soft:   #B3E6E7;
  --teal-tint:   #EAF8F8;
  --petrol:      #1B3D46;
  --petrol-2:    #143037;

  /* Surfaces */
  --bg:            #FAFBFC;
  --surface:       #FFFFFF;
  --surface-alt:   #F7FAFC;
  --surface-muted: #EDF2F7;

  /* Text */
  --text:    #2D3748;
  --text-2:  #4A5568;
  --muted:   #A0AEC0;
  --on-dark: #E8F1F2;

  /* Lines & status */
  --border:        #E2E8F0;
  --border-subtle: #EDF2F7;
  --success:       #38A169;

  /* Shape & motion */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(27,61,70,.06);
  --shadow-md: 0 10px 30px rgba(27,61,70,.10);
  --shadow-lg: 0 24px 60px rgba(27,61,70,.16);
  --ease: cubic-bezier(.22,.61,.36,1);

  --maxw: 1160px;
  --gut: clamp(20px, 5vw, 40px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.02em; font-weight: 700; color: var(--text); }
strong { font-weight: 700; color: inherit; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.container--narrow { max-width: 820px; }
.section { padding: clamp(48px, 6vw, 84px) 0; }
.section--alt { background: #EDF2F5; }

.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section__head:not(:has(.eyebrow--center)) { margin-inline: 0; }
.section__title { font-size: clamp(28px, 4vw, 44px); text-wrap: balance; }
.section__lead { margin-top: 18px; color: var(--text-2); font-size: clamp(17px, 2vw, 20px); }
.eyebrow--center ~ .section__title, .eyebrow--center ~ .section__lead { text-align: center; }
.section__head:has(.eyebrow--center) { text-align: center; }

/* ---------- Bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-tint);
  border: 1px solid var(--teal-soft);
  padding: 7px 14px; border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.eyebrow--center { margin-inline: auto; }
.eyebrow--light { color: var(--teal); background: rgba(102,205,204,.12); border-color: rgba(102,205,204,.28); }

.text-grad {
  background: linear-gradient(100deg, var(--teal-dark), var(--teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 13px; --pad-x: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 600; font-size: 16px; line-height: 1;
  padding: var(--pad-y) var(--pad-x); border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s, border-color .18s;
}
.btn--sm { --pad-y: 10px; --pad-x: 18px; font-size: 14.5px; }
.btn--lg { --pad-y: 16px; --pad-x: 30px; font-size: 17px; }
.btn--primary {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  color: #fff; box-shadow: 0 8px 22px rgba(63,168,166,.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(63,168,166,.42); }
.btn--ghost { background: var(--surface); color: var(--petrol); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--teal); color: var(--teal-dark); }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--petrol);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.nav.is-scrolled { border-bottom-color: rgba(255,255,255,.12); background: var(--petrol); box-shadow: 0 8px 28px rgba(0,0,0,.22); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { height: 32px; width: auto; filter: brightness(0) invert(1); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 15.5px; font-weight: 500; color: rgba(232,241,242,.82); transition: color .18s; }
.nav__links a:not(.nav__cta):hover { color: #fff; }
.nav__cta { color: #fff; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 110px); overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% -10% auto auto; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle at 70% 30%, rgba(102,205,204,.28), rgba(102,205,204,0) 62%);
  filter: blur(10px); z-index: 0; pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__title { font-size: clamp(34px, 5.4vw, 60px); font-weight: 800; letter-spacing: -.03em; }
.hero__sub { margin-top: 24px; font-size: clamp(17px, 2vw, 20px); color: var(--text-2); max-width: 38ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: var(--text-2); }
.hero__trust svg { width: 18px; height: 18px; color: var(--teal-dark); flex-shrink: 0; }

/* ---------- Phone mockup ---------- */
.hero__visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: min(330px, 78vw); aspect-ratio: 320 / 660;
  background: linear-gradient(160deg, #243f47, var(--petrol));
  border-radius: 44px; padding: 13px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
}
.phone__notch { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 38%; height: 22px; background: var(--petrol-2); border-radius: 0 0 14px 14px; z-index: 3; }
.phone__screen {
  height: 100%; background: linear-gradient(180deg, #fff, var(--surface-alt));
  border-radius: 33px; padding: 30px 16px 18px; overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
}
.appbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.appbar__title { font-weight: 700; font-size: 16px; color: var(--petrol); letter-spacing: -.01em; }
.appbar__chip { font-size: 10.5px; font-weight: 700; color: var(--success); background: #E6F6EC; padding: 4px 9px; border-radius: var(--r-pill); }

.rec-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px; box-shadow: var(--shadow-sm); }
.rec-card--flat { box-shadow: none; }
.rec-card__top { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--text-2); }
.rec-dot { width: 9px; height: 9px; border-radius: 50%; background: #E53E3E; box-shadow: 0 0 0 0 rgba(229,62,62,.5); animation: pulse 1.4s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(229,62,62,0); } 100% { box-shadow: 0 0 0 0 rgba(229,62,62,0); } }
.rec-card__text { margin-top: 11px; font-size: 12.5px; line-height: 1.5; color: var(--text-2); }

.wave { display: flex; align-items: center; gap: 3px; height: 34px; margin-top: 12px; }
.wave span { flex: 1; background: linear-gradient(var(--teal), var(--teal-dark)); border-radius: 3px; height: 30%; animation: wave 1.1s ease-in-out infinite; }
.wave span:nth-child(odd) { animation-delay: .15s; }
.wave span:nth-child(3n) { animation-delay: .35s; }
.wave span:nth-child(4n) { animation-delay: .5s; }
.wave--sm { height: 26px; }
@keyframes wave { 0%,100% { height: 22%; } 50% { height: 96%; } }

.synth-card { margin-top: 2px; background: var(--teal-tint); border: 1px solid var(--teal-soft); border-radius: var(--r-md); padding: 13px 14px; display: flex; flex-direction: column; gap: 8px; }
.synth-card--flat { background: var(--surface); border-color: var(--border); }
.synth-card__head { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--teal-dark); margin-bottom: 3px; }
.synth-card__head svg { width: 15px; height: 15px; }
.skeleton { display: block; height: 8px; border-radius: var(--r-pill); background: linear-gradient(90deg, rgba(63,168,166,.22), rgba(63,168,166,.10)); }
.synth-card--flat .skeleton { background: linear-gradient(90deg, var(--surface-muted), var(--border-subtle)); }

.patient-row { display: flex; align-items: center; gap: 11px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 10px 12px; }
.patient-row + .patient-row { margin-top: 8px; }
.patient-row--flat { box-shadow: none; }
.patient-row strong { font-size: 13px; color: var(--petrol); display: block; }
.patient-row small { font-size: 11px; color: var(--muted); }
.patient-row > div { flex: 1; line-height: 1.3; }
.patient-row > svg { width: 18px; height: 18px; }
.avatar-mono { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; font-size: 12.5px; font-weight: 700; color: #fff; background: var(--mono, var(--teal)); flex-shrink: 0; }
.pill { font-size: 10.5px; font-weight: 700; padding: 4px 9px; border-radius: var(--r-pill); }
.pill--ok { color: var(--success); background: #E6F6EC; }

.floating-badge {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-md);
  padding: 10px 14px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 600; color: var(--petrol);
  animation: float 4s ease-in-out infinite;
}
.floating-badge svg { width: 17px; height: 17px; color: var(--teal-dark); }
.floating-badge--1 { top: 16%; left: -4%; }
.floating-badge--2 { bottom: 13%; right: -6%; animation-delay: 1.2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* =========================================================
   PROOF STRIP
   ========================================================= */
.proof { border-block: 1px solid var(--border); background: var(--surface); }
.proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof__item { padding: clamp(28px, 4vw, 44px) 20px; text-align: center; }
.proof__item + .proof__item { border-left: 1px solid var(--border); }
.proof__num { display: block; font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.03em; color: var(--petrol); }
.proof__den { font-size: .5em; color: var(--muted); font-weight: 700; }
.proof__label { display: block; margin-top: 6px; font-size: 14px; color: var(--text-2); max-width: 22ch; margin-inline: auto; }

/* =========================================================
   FEATURES (alternating)
   ========================================================= */
.features { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 64px); }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.feature--reverse .feature__text { order: 2; }
.feature__kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: linear-gradient(120deg, var(--teal-dark), var(--teal)); border: 0; padding: 8px 15px; border-radius: var(--r-pill); margin-bottom: 18px; box-shadow: 0 6px 16px rgba(63,168,166,.30); }
.feature__kicker svg { width: 16px; height: 16px; }
.feature__text h3 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
.feature__text p { color: var(--text-2); font-size: 17.5px; }

.ticks { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.ticks li { display: flex; align-items: flex-start; gap: 11px; color: var(--text); font-size: 16px; }
.ticks li::before {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%;
  background: var(--teal-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%233FA8A6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 14px no-repeat;
  border: 1px solid var(--teal-soft);
}
.ticks--lg li { font-size: 17px; margin-bottom: 2px; }

.feature__media { display: flex; justify-content: center; }
.media-card {
  width: 100%; max-width: 440px; background: linear-gradient(150deg, #CFEFEF, #EAF9F9);
  border: 1px solid #A6DEDE; border-radius: var(--r-xl); padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 26px 55px -18px rgba(63,168,166,.48);
}
.media-card--center { display: flex; justify-content: center; background: linear-gradient(150deg, var(--teal), var(--teal-dark)); border-color: transparent; box-shadow: 0 30px 60px -18px rgba(27,61,70,.45); }

/* Spotlight: destaca a feature "Pensado para o mobile" */
.feature--spotlight { background: linear-gradient(150deg, var(--petrol), var(--petrol-2)); border-radius: var(--r-xl); padding: clamp(30px, 5vw, 60px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.feature--spotlight .feature__kicker { color: var(--teal); background: rgba(102,205,204,.16); border: 1px solid rgba(102,205,204,.40); box-shadow: none; }
.feature--spotlight .feature__text h3 { color: #fff; }
.feature--spotlight .feature__text p { color: rgba(232,241,242,.84); }
.feature--spotlight .ticks li { color: var(--on-dark); }
.feature--spotlight .media-card--center { box-shadow: 0 26px 55px -14px rgba(0,0,0,.40); }
.media-card__line { margin-top: 14px; font-size: 14px; color: var(--text-2); font-style: italic; }
.media-card .synth-card { margin-top: 0; }

.phone--mini { width: 230px; aspect-ratio: 300 / 560; border-radius: 34px; padding: 9px; }
.phone--mini .phone__screen { border-radius: 26px; padding: 20px 12px 14px; }

/* =========================================================
   PILLARS
   ========================================================= */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-soft); }
.pillar__icon {
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: var(--r-md);
  background: linear-gradient(150deg, var(--teal-tint), #fff); border: 1px solid var(--teal-soft);
  color: var(--teal-dark); margin-bottom: 22px;
}
.pillar__icon svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 22px; margin-bottom: 12px; }
.pillar p { color: var(--text-2); font-size: 16px; }

/* =========================================================
   PHILOSOPHY (dark)
   ========================================================= */
.philosophy { position: relative; background: linear-gradient(160deg, var(--petrol), var(--petrol-2)); color: var(--on-dark); padding: clamp(56px, 7vw, 96px) 0; overflow: hidden; }
.philosophy::before { content: ""; position: absolute; inset: auto auto -30% -10%; width: 50vw; height: 50vw; max-width: 600px; max-height: 600px; background: radial-gradient(circle, rgba(102,205,204,.18), transparent 65%); }
.philosophy__inner { position: relative; max-width: 880px; margin-inline: auto; text-align: center; }
.philosophy__title { color: #fff; font-size: clamp(28px, 4.4vw, 50px); font-weight: 800; }
.philosophy__text { margin-top: 26px; font-size: clamp(17px, 2vw, 21px); color: rgba(232,241,242,.82); }
.philosophy__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 38px; }
.philosophy__tags span {
  font-size: 14.5px; font-weight: 600; color: #EAFBFB;
  border: 1px solid rgba(102,205,204,.55); background: rgba(102,205,204,.20);
  padding: 9px 18px; border-radius: var(--r-pill);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { color: #F6B100; letter-spacing: 3px; font-size: 16px; }
.tcard blockquote { font-size: 16.5px; color: var(--text); line-height: 1.6; }
.tcard figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 4px; }
.tcard figcaption strong { display: block; font-size: 15px; color: var(--petrol); }
.tcard figcaption small { font-size: 12.5px; color: var(--muted); }

/* =========================================================
   SECURITY
   ========================================================= */
.security { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.security__badges { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.badge-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  aspect-ratio: 1 / .82; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); color: var(--petrol); transition: transform .25s var(--ease), border-color .25s;
}
.badge-tile:hover { transform: translateY(-4px); border-color: var(--teal-soft); }
.badge-tile svg { width: 38px; height: 38px; color: var(--teal-dark); }
.badge-tile span { font-weight: 700; font-size: 15px; letter-spacing: .02em; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item[open] { border-color: var(--teal-soft); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; font-size: 17.5px; color: var(--petrol);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { width: 22px; height: 22px; color: var(--teal-dark); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__body { padding: 0 24px 22px; color: var(--text-2); font-size: 16.5px; }
.faq__body p { max-width: 64ch; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.cta { position: relative; background: linear-gradient(155deg, var(--petrol), var(--petrol-2)); color: #fff; padding: clamp(56px, 7vw, 100px) 0; overflow: hidden; text-align: center; }
.cta__glow { position: absolute; inset: -20% 0 auto 0; height: 70%; background: radial-gradient(ellipse at 50% 0%, rgba(102,205,204,.25), transparent 60%); }
.cta__inner { position: relative; max-width: 760px; margin-inline: auto; }
.cta__logo { height: 36px; width: auto; margin: 0 auto 30px; filter: brightness(0) invert(1); opacity: .95; }
.cta__title { color: #fff; font-size: clamp(26px, 3.8vw, 44px); font-weight: 800; }
.cta__sub { margin-top: 22px; font-size: clamp(17px, 2vw, 20px); color: rgba(232,241,242,.82); }

/* App store badges */
.stores { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 38px; }
.store {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: #fff; color: var(--petrol); border-radius: 14px; padding: 13px 26px; min-width: 220px;
  box-shadow: var(--shadow-md); transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.store:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(0,0,0,.28); }
.store svg { width: 28px; height: 28px; flex-shrink: 0; }
.store span { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store small { font-size: 11px; font-weight: 500; color: var(--text-2); letter-spacing: .02em; }
.store strong { font-size: 18px; font-weight: 700; }
.cta__fineprint { margin-top: 22px; font-size: 14px; color: rgba(232,241,242,.6); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #fff; border-top: 1px solid var(--border); padding: clamp(48px, 6vw, 72px) 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer__logo { height: 28px; width: auto; margin-bottom: 16px; }
.footer__brand p { color: var(--text-2); font-size: 14.5px; max-width: 30ch; }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 16px; font-weight: 700; }
.footer__col > a { display: block; color: var(--text-2); font-size: 15px; padding: 5px 0; transition: color .18s; }
.footer__col > a:hover { color: var(--teal-dark); }
.stores--mini { flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 4px; }
.store--mini { background: var(--surface-alt); border: 1px solid var(--border); box-shadow: none; padding: 11px 18px; min-width: 190px; }
.store--mini svg { width: 22px; height: 22px; }
.store--mini strong { font-size: 14px; }
.store--mini small { font-size: 10px; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--muted); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .wave span, .rec-dot, .floating-badge { animation: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { max-width: 640px; margin-inline: auto; }
  .hero__sub { max-width: none; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__visual { margin-top: 16px; }
  .feature, .feature--reverse { grid-template-columns: 1fr; gap: 28px; }
  .feature--reverse .feature__text { order: 0; }
  .feature__text { text-align: center; max-width: 600px; margin-inline: auto; }
  .feature__kicker { justify-content: center; }
  .ticks { max-width: 420px; margin-inline: auto; text-align: left; }
  .security { grid-template-columns: 1fr; text-align: center; }
  .security .eyebrow { margin-inline: auto; }
  .security__copy .section__title, .security__copy .section__lead { text-align: center; }
  .ticks--lg { max-width: 440px; margin-inline: auto; }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(20,48,55,.98); border-bottom: 1px solid rgba(255,255,255,.08); padding: 16px var(--gut) 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .28s var(--ease), opacity .28s;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 12px 4px; font-size: 17px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav__cta { margin-top: 10px; justify-content: center; border-bottom: 0 !important; }
  .nav__toggle { display: flex; }
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .proof__item:nth-child(3) { border-left: 0; }
  .proof__item:nth-child(odd) { border-left: 0; }
  .proof__item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .pillars { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .security__badges { max-width: 380px; margin-inline: auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .floating-badge--1 { left: 0; }
  .floating-badge--2 { right: 0; }
}

@media (max-width: 440px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .stores { flex-direction: column; align-items: stretch; }
  .store { justify-content: center; }
}
