/* ================================================================
   DEPUTY CARE — Apple / shadcn / Untitled UI aesthetic
   ================================================================ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Brand — #00a76f green */
  --brand-50:  #e6f7f0;
  --brand-100: #b3e8d4;
  --brand-200: #80d9b8;
  --brand-400: #33bf8f;
  --brand-500: #00a76f;
  --brand-600: #00a76f;
  --brand-700: #008c5d;
  --brand-900: #005c3d;

  /* Neutrals (shadcn-style) */
  --gray-25:  #fcfcfd;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #98a2b3;
  --gray-500: #667085;
  --gray-600: #475467;
  --gray-700: #344054;
  --gray-800: #1d2939;
  --gray-900: #101828;

  /* Semantic */
  --success: #12b76a;
  --error:   #f04438;
  --warning: #f79009;

  /* Shadows (Apple-style — soft, diffused, layered) */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.03);
  --shadow-sm:  0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.02);
  --shadow-md:  0 2px 8px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.03);
  --shadow-lg:  0 2px 4px rgba(0,0,0,.02), 0 8px 24px rgba(0,0,0,.04), 0 16px 40px rgba(0,0,0,.03);
  --shadow-xl:  0 2px 8px rgba(0,0,0,.02), 0 12px 32px rgba(0,0,0,.05), 0 24px 56px rgba(0,0,0,.04);
  --shadow-2xl: 0 4px 12px rgba(0,0,0,.02), 0 16px 40px rgba(0,0,0,.05), 0 32px 72px rgba(0,0,0,.06);
  --shadow-3xl: 0 4px 16px rgba(0,0,0,.02), 0 24px 48px rgba(0,0,0,.05), 0 48px 96px rgba(0,0,0,.06);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;

  /* Spacing scale */
  --section-py: clamp(80px, 10vw, 128px);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
  font-optical-sizing: auto;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .15s; }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }
strong { font-weight: 600; }

/* ─── LAYOUT ─── */
.container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 24px;
}

.hide-mobile { }

/* ─── TYPOGRAPHY ─── */
.h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  max-width: 720px;
}

.text-brand { color: var(--brand-600); }

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .h2 {
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ─── PILL / BADGE ─── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-600);
  background: var(--brand-50);
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-700);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-full);
}

/* ─── BUTTONS (shadcn-inspired) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn svg { flex-shrink: 0; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--brand-600);
  color: #fff;
  border-color: var(--brand-600);
  box-shadow: 0 1px 2px rgba(16,24,40,.05);
}
.btn--primary:hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
  box-shadow: var(--shadow-sm);
}

.btn--secondary {
  background: #fff;
  color: var(--gray-700);
  border-color: var(--gray-300);
  box-shadow: var(--shadow-xs);
}
.btn--secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

.btn--ghost-brand {
  background: transparent;
  color: var(--brand-600);
  padding: 10px 4px;
}
.btn--ghost-brand:hover { color: var(--brand-700); }

.btn--white {
  background: #fff;
  color: var(--brand-700);
  border-color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--white:hover {
  background: var(--brand-50);
  box-shadow: var(--shadow-md);
}

.btn--nav { padding: 9px 18px; font-size: 0.875rem; border-radius: var(--radius-md); }
.btn--xl { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius-lg); }

/* ─── CARD (shared) ─── */
.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon-wrap--red    { background: #fef3f2; color: var(--error); }
.card__icon-wrap--amber  { background: #fffaeb; color: var(--warning); }
.card__icon-wrap--purple { background: #e6f7f0; color: #00a76f; }

.card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-500);
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--gray-200);
}

.nav__inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo img { height: 28px; }

.nav__center {
  display: flex;
  gap: 4px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: all .15s;
}
.nav__link:hover {
  color: var(--gray-900);
  background: var(--gray-50);
}
.nav__link--active,
.nav__link--active:hover {
  color: var(--brand-600);
  font-weight: 600;
}
.nav__link--login { margin-right: 4px; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  color: var(--gray-700);
  padding: 8px;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--gray-100);
}
.nav__mobile a {
  display: block;
  padding: 10px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-md);
}
.nav__mobile a:hover { background: var(--gray-50); }
.nav__mobile hr {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin: 4px 0;
}

.nav.open .nav__mobile { display: flex; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  padding: 80px 0 80px;
  overflow: visible;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(0,167,111,.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 10%, rgba(0,196,140,.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container { position: relative; }

.hero__badge {
  margin-bottom: 24px;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 0s;
}

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--gray-900);
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .07s;
}

.hero__accent {
  background: linear-gradient(135deg, var(--brand-600) 0%, #00c48c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .14s;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .21s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero__visual {
  max-width: 960px;
  margin: 0 auto;
  perspective: 1200px;
}

/* ─── Stage (contains orbs + image + floats) ─── */
.hero__stage {
  position: relative;
  animation: heroEntry 1.2s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .3s;
}

@keyframes heroEntry {
  from {
    opacity: 0;
    transform: translateY(60px) rotateX(6deg) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

/* ─── Glow orbs ─── */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: orbFadeIn 1.5s ease both;
}

.hero__orb--1 {
  width: 380px;
  height: 380px;
  background: rgba(0,167,111,.12);
  top: -8%;
  left: -8%;
  animation: orbFadeIn 1.5s ease both, orbDrift1 12s ease-in-out infinite;
  animation-delay: .6s, 2s;
}

.hero__orb--2 {
  width: 280px;
  height: 280px;
  background: rgba(0,196,140,.10);
  bottom: 0;
  right: -4%;
  animation: orbFadeIn 1.5s ease both, orbDrift2 14s ease-in-out infinite;
  animation-delay: .9s, 2.3s;
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: rgba(0,167,111,.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFadeIn 1.5s ease both, orbPulse 8s ease-in-out infinite;
  animation-delay: 1.2s, 2.5s;
}

@keyframes orbFadeIn {
  from { opacity: 0; transform: scale(.6); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(25px, -15px); }
  66%      { transform: translate(-10px, 10px); }
}

@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(-20px, 12px); }
  66%      { transform: translate(15px, -8px); }
}

@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .6; }
  50%      { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* ─── Main image ─── */
.hero__img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: none;
  border: none;
  background: transparent;
}

.hero__img {
  width: 100%;
  display: block;
}

/* ─── Floating notification cards ─── */
.hero__float {
  position: absolute;
  z-index: 2;
}

.hero__float-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 100px;
  box-shadow:
    0 1px 4px rgba(0,0,0,.03),
    0 6px 20px rgba(0,0,0,.04),
    0 16px 40px rgba(0,0,0,.03);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  white-space: nowrap;
}

.hero__float-card strong {
  font-weight: 700;
  color: var(--gray-900);
}

.hero__float-card--accent {
  background: var(--brand-600);
  border-color: var(--brand-500);
  color: #fff;
}
.hero__float-card--accent strong { color: #fff; }

.hero__float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__float-dot--green {
  background: var(--brand-600);
  box-shadow: 0 0 0 3px rgba(0,167,111,.2);
}
.hero__float-dot--blue {
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.2);
}

.hero__float--1 {
  top: 12%;
  left: -6%;
  animation: floatSlideIn 1s cubic-bezier(.16,1,.3,1) both, floatHover1 7s ease-in-out infinite;
  animation-delay: .9s, 2.2s;
}

.hero__float--2 {
  bottom: 28%;
  right: -5%;
  animation: floatSlideIn 1s cubic-bezier(.16,1,.3,1) both, floatHover2 8s ease-in-out infinite;
  animation-delay: 1.15s, 2.5s;
}

.hero__float--3 {
  bottom: 10%;
  left: -3%;
  animation: floatSlideIn 1s cubic-bezier(.16,1,.3,1) both, floatHover3 9s ease-in-out infinite;
  animation-delay: 1.4s, 2.8s;
}

@keyframes floatSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.9);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes floatHover1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(6px, -10px); }
}

@keyframes floatHover2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-8px, 8px); }
}

@keyframes floatHover3 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(10px, -6px); }
}

/* ================================================================
   SOCIAL PROOF BAR
   ================================================================ */
.proof {
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}

.proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof__item { text-align: center; }

.proof__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.proof__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 2px;
}

.proof__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* ================================================================
   SOUND FAMILIAR
   ================================================================ */
.familiar {
  padding: var(--section-py) 0;
}

.familiar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ================================================================
   BEFORE & AFTER
   ================================================================ */
.compare {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.compare__col {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.compare__col--before { background: #fff; }
.compare__col--after  { background: var(--brand-50); border-color: var(--brand-200); }

.compare__col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare__col-header--before {
  background: #fef3f2;
  color: var(--error);
  border-bottom: 1px solid #fecaca;
}

.compare__col-header--after {
  background: #ecfdf5;
  color: #059669;
  border-bottom: 1px solid #a7f3d0;
}

.compare__list {
  list-style: none;
  padding: 8px 0;
}

.compare__list li {
  padding: 14px 24px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}

.compare__col--after .compare__list li {
  border-bottom-color: rgba(0,167,111,.08);
  color: var(--gray-800);
}

.compare__list li:last-child { border-bottom: none; }

.compare__col--before .compare__list li {
  color: var(--gray-500);
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how {
  padding: var(--section-py) 0;
}

.how__grid {
  max-width: 520px;
  margin: 0 auto 56px;
}

.how__step {
  display: flex;
  gap: 20px;
}

.how__num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.how__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-600);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how__line {
  width: 2px;
  flex: 1;
  background: var(--gray-200);
  margin: 8px 0;
  min-height: 24px;
}

.how__content {
  padding-bottom: 32px;
}

.how__content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.how__content p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.how__visual {
  text-align: center;
  margin-bottom: 48px;
  perspective: 1000px;
}

.how__stage {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

/* Glow behind dashboard */
.how__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,167,111,.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.how__img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: none;
  box-shadow: none;
}

.how__img {
  width: 100%;
  display: block;
}

/* ─── Floating pills for How section ─── */
.how__pill {
  position: absolute;
  z-index: 2;
}

.how__pill-card {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 100px;
  box-shadow:
    0 1px 4px rgba(0,0,0,.03),
    0 6px 20px rgba(0,0,0,.04),
    0 16px 40px rgba(0,0,0,.03);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  white-space: nowrap;
}

.how__pill-card--accent {
  background: var(--brand-600);
  border-color: var(--brand-500);
  color: #fff;
}

.how__pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.how__pill-dot--green {
  background: var(--brand-600);
  box-shadow: 0 0 0 3px rgba(0,167,111,.2);
}
.how__pill-dot--blue {
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.2);
}

.how__pill--1 {
  top: 8%;
  right: -4%;
}

.how__pill--2 {
  top: 45%;
  left: -5%;
}

.how__pill--3 {
  bottom: 8%;
  right: -2%;
}

.how__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   CALCULATOR
   ================================================================ */
.calc {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.calc__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.calc__left .h2 { text-align: left; }

.calc__desc {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 28px;
}

.calc__book { margin-top: 4px; }

.calc__card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.calc__field {
  margin-bottom: 20px;
}

.calc__field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 14px;
  color: var(--gray-400);
  font-weight: 500;
  font-size: 0.9375rem;
  pointer-events: none;
}

.input-wrap input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-900);
  background: #fff;
  transition: all .15s;
  box-shadow: var(--shadow-xs);
  -moz-appearance: textfield;
}

.input-wrap input::-webkit-inner-spin-button,
.input-wrap input::-webkit-outer-spin-button { -webkit-appearance: none; }

.input-wrap .input-prefix + input { padding-left: 30px; }

.input-wrap input:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(0,167,111,.12), var(--shadow-xs);
}

.calc__divider {
  height: 1px;
  background: var(--gray-200);
  margin: 24px 0;
}

.calc__result { text-align: center; }

.calc__result-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.calc__result-value {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--brand-600) 0%, #00c48c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  padding: var(--section-py) 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tcard {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.tcard:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.tcard__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.tcard__quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 24px;
  font-style: normal;
  border: none;
  padding: 0;
}
.tcard__quote strong { color: var(--gray-900); }

.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.tcard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tcard__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}

.tcard__meta {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.final-cta__inner {
  position: relative;
  background: var(--gray-900);
  border-radius: var(--radius-2xl);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
}

.final-cta__glow {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse 50% 50% at 50% 30%, rgba(0,167,111,.2) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__title {
  position: relative;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}

.final-cta__sub {
  position: relative;
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn { position: relative; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--gray-200);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 24px;
}

.footer__brand img { height: 26px; margin-bottom: 12px; }
.footer__tagline {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer__cols {
  display: flex;
  gap: 64px;
}

.footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-500);
  padding: 4px 0;
  transition: color .15s;
}
.footer__col a:hover { color: var(--gray-900); }

.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}

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

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: .08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: .16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: .24s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .familiar__grid      { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .compare__grid        { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials__grid   { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .calc__wrapper        { grid-template-columns: 1fr; gap: 40px; }
  .calc__left .h2       { text-align: center; margin: 0 auto; }
  .calc__desc           { text-align: center; }
  .calc__left           { text-align: center; }
  .footer__cols         { gap: 40px; }
}

@media (max-width: 768px) {
  .nav__center   { display: none; }
  .nav__right    { display: none; }
  .nav__burger   { display: block; }
  .hide-mobile   { display: none; }

  .hero { padding-top: 48px; }
  .hero__title { font-size: clamp(1.875rem, 7vw, 2.5rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
  .hero__float { display: none; }
  .hero__orb--3 { display: none; }
  .how__pill { display: none; }
  .hero__orb--1 { width: 250px; height: 250px; }
  .hero__orb--2 { width: 180px; height: 180px; }

  .proof__inner { flex-direction: column; gap: 24px; }
  .proof__divider { width: 48px; height: 1px; }

  .how__grid { max-width: 100%; }

  .footer__top { flex-direction: column; gap: 32px; }
  .footer__cols { gap: 32px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__img-wrap { border-radius: var(--radius-lg); }
  .calc__card { padding: 24px; }
  .tcard { padding: 24px; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
