/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --purple-50:  #F3EEFF;
  --purple-100: #E4D6FA;
  --purple-200: #C8ADEC;
  --purple-400: #9B72CF;
  --purple-600: #7B5EA7;
  --purple-800: #4E3571;
  --sage-100:   #DDF0E4;
  --sage-300:   #A8D4B4;
  --sage-500:   #6BAF80;
  --sage-700:   #3D7A54;
  --gold:       #C9A96E;
  --gold-light: #EDD9AA;
  --cream:      #FAFAF6;
  --cream-2:    #F5F0E8;
  --white:      #FFFFFF;
  --ink-900:    #1C1530;
  --ink-700:    #3D3358;
  --ink-500:    #6B5F80;
  --ink-300:    #A89EC0;
  --ink-100:    #E8E4F0;
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --shadow-sm:  0 4px 16px rgba(123,94,167,.08);
  --shadow-md:  0 10px 36px rgba(123,94,167,.14);
  --shadow-lg:  0 20px 64px rgba(123,94,167,.20);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink-700);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--purple-50); }
::-webkit-scrollbar-thumb { background: var(--purple-200); border-radius: 3px; }

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage-700);
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block;
  width: 24px; height: 1px;
  background: var(--sage-500);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.15;
  color: var(--ink-900);
}
.section-title em { font-style: italic; color: var(--purple-600); }
.section-title strong { font-weight: 600; }

.section-sub {
  font-size: .95rem; line-height: 1.8;
  color: var(--ink-500);
  max-width: 540px;
  margin: 0 auto;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: .88rem; font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  transition: transform .25s, box-shadow .25s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(123,94,167,.32);
}
.btn-primary:hover { box-shadow: 0 14px 40px rgba(123,94,167,.44); }
.btn-outline {
  background: transparent;
  color: var(--purple-600);
  border: 1.5px solid var(--purple-200);
}
.btn-outline:hover { background: var(--purple-50); }

/* Fade-in on scroll */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════
   FLOATING CTA
═══════════════════════════════════════ */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.40);
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 36px rgba(37,211,102,.50);
}
.whatsapp-fab svg { width: 30px; height: 30px; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 48px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
#navbar.solid {
  background: rgba(250,250,246,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(123,94,167,.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--purple-600);
  letter-spacing: .02em;
}
.nav-logo img {
  width: 36px; height: 36px;
  object-fit: contain;
}
.nav-logo span {
  font-weight: 300; color: var(--ink-500);
}

.nav-center {
  display: flex; gap: 36px;
}
.nav-center a {
  font-size: .8rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-500);
  transition: color .2s;
}
.nav-center a:hover { color: var(--purple-600); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink-700); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 190;
  background: var(--cream);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300;
  color: var(--ink-900);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--purple-600); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(200,173,236,.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 10% 80%, rgba(168,212,180,.22) 0%, transparent 60%),
    linear-gradient(160deg, #F2ECFC 0%, #EDF5F0 45%, #F8F4EE 100%);
}

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 520px; height: 520px; top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(200,173,236,.45), transparent 70%);
  animation: float 9s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 380px; height: 380px; bottom: -80px; left: -100px;
  background: radial-gradient(circle, rgba(168,212,180,.38), transparent 70%);
  animation: float 12s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
  width: 240px; height: 240px; top: 50%; left: 40%;
  background: radial-gradient(circle, rgba(201,169,110,.18), transparent 70%);
  animation: float 7s ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(24px,32px) scale(1.06); }
}

.hero-dots {
  position: absolute; inset: 0; z-index: 0; opacity: .35;
  background-image: radial-gradient(circle, var(--purple-200) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1140px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.hero-text {}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage-700);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--sage-500);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300; line-height: 1.08;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.hero-h1 em { font-style: italic; color: var(--purple-600); }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300; font-style: italic;
  color: var(--ink-500);
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-bio {
  font-size: .94rem; line-height: 1.85;
  color: var(--ink-500);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.hero-tag {
  font-size: .75rem; font-weight: 500;
  padding: 6px 14px; border-radius: 50px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--purple-200);
  color: var(--purple-600);
  backdrop-filter: blur(8px);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}

.hero-photo-frame {
  width: min(360px, 100%);
  aspect-ratio: 3/4;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,.6);
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}

.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid;
  pointer-events: none;
}
.hero-ring-1 {
  width: 110%; height: 110%;
  top: -5%; left: -5%;
  border-color: rgba(200,173,236,.35);
  animation: spin 20s linear infinite;
}
.hero-ring-2 {
  width: 125%; height: 125%;
  top: -12.5%; left: -12.5%;
  border-color: rgba(168,212,180,.25);
  animation: spin 30s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-stat {
  position: absolute;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,173,236,.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  color: var(--purple-600);
  line-height: 1;
}
.hero-stat-label {
  font-size: .72rem; color: var(--ink-500);
  margin-top: 3px; line-height: 1.3;
}
.hero-stat:nth-child(3) { bottom: 10%; left: -18%; }
.hero-stat:nth-child(4) { top: 12%; right: -16%; }

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--purple-400), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-label {
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-300);
}

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
#trust {
  background: var(--white);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  padding: 24px 24px;
}
.trust-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; color: var(--ink-500);
}
.trust-item svg { color: var(--purple-400); flex-shrink: 0; }
.trust-item strong { color: var(--ink-700); font-weight: 600; }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
#servicos {
  padding: 110px 24px;
  background: var(--cream-2);
  position: relative; overflow: hidden;
}
#servicos::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,173,236,.12), transparent 70%);
  pointer-events: none;
}

.services-header {
  text-align: center; margin-bottom: 72px;
}

.therapy-group { margin-bottom: 80px; }
.therapy-group:last-child { margin-bottom: 0; }

.group-label {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 36px;
}
.group-badge {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.group-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400;
  color: var(--ink-900);
}
.group-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--purple-200), transparent);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
}

.service-card {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(200,173,236,.22);
  border-radius: var(--radius-md);
  padding: 30px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,173,236,.4);
}
.service-card:hover::after { opacity: 1; }

.card-purple::after { background: linear-gradient(90deg, var(--purple-400), var(--purple-200)); }
.card-sage::after   { background: linear-gradient(90deg, var(--sage-500),   var(--sage-300)); }
.card-gold::after   { background: linear-gradient(90deg, var(--gold),        var(--gold-light)); }

.card-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 12px; margin-bottom: 14px;
}
.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--ink-900); line-height: 1.25;
}
.card-price-badge {
  font-size: .85rem; font-weight: 600;
  color: var(--purple-600);
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
  padding: 4px 12px; border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.card-desc {
  font-size: .875rem; line-height: 1.75;
  color: var(--ink-500);
  margin-bottom: 20px;
}
.card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic;
  color: var(--purple-400);
  margin-top: 8px;
}
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.card-duration {
  display: flex; align-items: center; gap: 6px;
  font-size: .76rem; color: var(--ink-300);
}
.card-duration svg { flex-shrink: 0; }
.card-cta {
  font-size: .76rem; font-weight: 600;
  color: var(--purple-600);
  letter-spacing: .04em;
  transition: gap .2s;
  display: flex; align-items: center; gap: 4px;
}
.card-cta:hover { gap: 8px; }

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
#como-funciona {
  padding: 110px 24px;
  background: var(--white);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; margin-top: 64px;
}
.step {
  text-align: center; padding: 0 16px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute; top: 32px; right: -16px;
  width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--purple-200), var(--sage-300));
}
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--ink-900); margin-bottom: 10px;
}
.step-desc { font-size: .85rem; line-height: 1.7; color: var(--ink-500); }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
#sobre {
  padding: 110px 24px;
  background: linear-gradient(135deg, var(--purple-800) 0%, #2C1D52 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
#sobre::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,114,207,.25), transparent 70%);
  pointer-events: none;
}
#sobre::after {
  content: '';
  position: absolute; bottom: -150px; right: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,175,128,.15), transparent 70%);
  pointer-events: none;
}

.about-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-quote-block {}
.about-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem; font-weight: 700;
  color: var(--purple-400); opacity: .4;
  line-height: .5;
  margin-bottom: 12px;
}
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300; font-style: italic;
  line-height: 1.45;
  color: var(--white);
}
.about-quote em {
  color: var(--gold-light);
  font-style: italic;
}

.about-content {}
.about-content .eyebrow { color: var(--sage-300); }
.about-content .eyebrow::before,
.about-content .eyebrow::after { background: var(--sage-500); }
.about-content .section-title { color: var(--white); }
.about-content .section-title em { color: var(--gold-light); }
.about-body {
  font-size: .94rem; line-height: 1.9;
  color: rgba(255,255,255,.72);
  margin-top: 28px;
}
.about-body p + p { margin-top: 16px; }

.about-signature {
  margin-top: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-style: italic;
  color: var(--gold-light);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
#depoimentos {
  padding: 110px 24px;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 64px;
  align-items: start;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 16px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 700;
  color: var(--purple-100);
  line-height: 1;
}
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 16px;
}
.star { color: var(--gold); font-size: 1rem; }
.testimonial-text {
  font-size: .875rem; line-height: 1.8;
  color: var(--ink-500);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .88rem; color: var(--ink-900); }
.testimonial-therapy { font-size: .76rem; color: var(--ink-300); margin-top: 2px; }

.testimonials-pending {
  text-align: center; padding: 64px 24px;
  border: 2px dashed var(--purple-200); border-radius: var(--radius-lg);
  margin-top: 64px;
}
.testimonials-pending-icon { font-size: 2.5rem; margin-bottom: 16px; }
.testimonials-pending p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-style: italic;
  color: var(--ink-300);
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
#faq {
  padding: 110px 24px;
  background: var(--cream-2);
}
.faq-grid {
  max-width: 760px; margin: 64px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--ink-100);
}
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 16px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--ink-900); text-align: left;
}
.faq-q svg {
  flex-shrink: 0; transition: transform .3s;
  color: var(--purple-400);
}
.faq-q.open svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-a p { font-size: .9rem; line-height: 1.8; color: var(--ink-500); }

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
#agendar {
  padding: 110px 24px;
  text-align: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(200,173,236,.22) 0%, transparent 70%),
    linear-gradient(160deg, #F2ECFC 0%, #EDF5F0 60%, #F8F4EE 100%);
}

.cta-badge {
  display: inline-block;
  margin-bottom: 24px;
}
.cta-badge img {
  width: 100px; height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(123,94,167,.28));
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300; line-height: 1.2;
  color: var(--ink-900);
  margin-bottom: 18px;
}
.cta-title em { font-style: italic; color: var(--purple-600); }
.cta-sub {
  font-size: .97rem; line-height: 1.8;
  color: var(--ink-500);
  max-width: 480px; margin: 0 auto 44px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.45);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px; align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { font-size: 1.5rem; color: rgba(255,255,255,.85); margin-bottom: 10px; }
.footer-brand p { font-size: .83rem; line-height: 1.7; max-width: 340px; }
.footer-links {
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-end;
}
.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  max-width: 1140px; margin: 24px auto 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .76rem;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  #navbar { padding: 0 24px; }
  .nav-center, .nav-right .btn { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-bio { margin: 0 auto 36px; }
  .hero-tags { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-visual { order: -1; }
  .hero-photo-frame { width: min(280px, 80vw); }
  .hero-stat:nth-child(3) { bottom: 5%; left: -8%; }
  .hero-stat:nth-child(4) { top: 5%; right: -8%; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-quote-block { text-align: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .step:not(:last-child)::after { display: none; }
}

@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 24px; }
  .hero-stat { padding: 12px 16px; }
  .hero-stat-num { font-size: 1.4rem; }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-card { text-align: center; }
  .testimonial-stars { justify-content: center; }
  .testimonial-author { justify-content: center; }
}
