/* ============================================
   LUANA OLIVEIRA — PSICÓLOGA | Landing Page
   Design system: acolhedor, orgânico, editorial
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  /* Paleta */
  --plum-950: #241726;
  --plum-900: #2f1c34;
  --plum-800: #3d1f47;
  --violet-600: #6b3fa0;
  --violet-500: #8457b8;
  --lilac-200: #e4d3ee;
  --lilac-100: #f2e9f6;
  --blush-400: #e8b4bc;
  --blush-300: #f0cdd3;
  --cream-50: #faf8fb;
  --ink-900: #2b2230;
  --ink-600: #5a4d63;
  --white: #ffffff;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", -apple-system, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 60px -20px rgba(61, 31, 71, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(61, 31, 71, 0.18);

  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 3px solid var(--violet-500);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-600);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--violet-600);
  display: inline-block;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--plum-900);
}
h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}
h3 {
  font-size: 1.35rem;
}
.section-lead {
  max-width: 640px;
  color: var(--ink-600);
  font-size: 1.08rem;
}
.script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--violet-600);
}

/* ============ SCROLL PROGRESS ============ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet-600), var(--blush-400));
  width: 0%;
  z-index: 9999;
  transition: width 0.08s linear;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 248, 251, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(61, 31, 71, 0.08);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 44px;
  height: 44px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--plum-900);
}
.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet-600);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-600);
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav-links li:not(.nav-cta-item) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--violet-600);
  transition: width 0.25s var(--ease);
}
.nav-links li:not(.nav-cta-item) a:hover {
  color: var(--plum-900);
}
.nav-links li:not(.nav-cta-item) a:hover::after {
  width: 100%;
}

.nav-cta-item {
  display: flex;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--plum-900);
  color: var(--white) !important;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease);
}
.nav-cta:hover {
  background: var(--violet-600);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lilac-100);
  color: var(--plum-900);
  font-size: 1.1rem;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}
.nav-toggle:hover {
  background: var(--lilac-200);
}
.nav-toggle.active {
  background: var(--plum-900);
  color: var(--white);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 88px 0 100px;
  overflow: hidden;
}
.hero-bg-line {
  position: absolute;
  top: -40px;
  right: -120px;
  width: 640px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow {
  margin-bottom: 20px;
}
.hero-copy h1 {
  margin-bottom: 22px;
}
.hero-copy p {
  font-size: 1.12rem;
  color: var(--ink-600);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--violet-600);
  color: var(--white);
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.28s var(--ease),
    background 0.28s var(--ease);
}
.btn-primary:hover {
  background: var(--plum-900);
  transform: translateY(-3px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--plum-900);
  padding: 16px 12px;
  font-weight: 700;
  border-bottom: 2px solid var(--blush-400);
  transition: border-color 0.25s var(--ease);
}
.btn-secondary:hover {
  border-color: var(--violet-600);
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-600);
  font-weight: 600;
}
.trust-item i {
  color: var(--violet-600);
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
}
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(61, 31, 71, 0) 55%,
    rgba(36, 23, 38, 0.55) 100%
  );
}
.hero-badge {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 26px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.hero-badge i {
  color: var(--violet-600);
  font-size: 1.4rem;
}
.hero-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--plum-900);
}
.hero-badge span {
  font-size: 0.8rem;
  color: var(--ink-600);
}
.hero-float {
  position: absolute;
  top: -24px;
  right: -24px;
  background: var(--plum-900);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  z-index: 3;
  max-width: 200px;
}
.hero-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.hero-float span {
  font-size: 0.78rem;
  opacity: 0.85;
}

/* ============ SOBRE ============ */
.about {
  padding: 110px 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: calc(var(--radius-lg) - 14px);
  pointer-events: none;
}
.about-copy p {
  color: var(--ink-600);
  margin-bottom: 18px;
  font-size: 1.04rem;
}
.about-copy h2 {
  margin-bottom: 24px;
}
.about-signature {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(61, 31, 71, 0.12);
  display: flex;
  align-items: center;
  gap: 18px;
}
.about-signature strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--plum-900);
}
.about-signature span {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-600);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  text-align: left;
}
.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--violet-600);
}
.stat-card span {
  font-size: 0.82rem;
  color: var(--ink-600);
}

/* ============ SERVIÇOS ============ */
.services {
  padding: 110px 0;
  background: var(--plum-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.services .section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.services .eyebrow {
  color: var(--blush-400);
}
.services .eyebrow::before {
  background: var(--blush-400);
}
.services h2 {
  color: var(--white);
}
.services .section-lead {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--blush-400);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--violet-600), var(--blush-400));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.4rem;
}
.service-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.22rem;
}
.service-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

/* ============ BENEFÍCIOS ============ */
.benefits {
  padding: 110px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.benefits-head .eyebrow {
  margin-bottom: 20px;
}
.benefits-head h2 {
  margin-bottom: 20px;
}
.benefits-head p {
  color: var(--ink-600);
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease);
}
.benefit-item:hover {
  transform: translateX(6px);
}
.benefit-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--blush-400);
  min-width: 36px;
}
.benefit-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--plum-900);
}
.benefit-item p {
  color: var(--ink-600);
  font-size: 0.94rem;
}

/* ============ PROVA / DEPOIMENTOS ============ */
.proof {
  padding: 100px 0;
  background: var(--lilac-100);
}
.proof-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.proof-head .eyebrow {
  justify-content: center;
  margin: 0 auto 20px;
}
.stars {
  color: var(--violet-600);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.testimonial-card .stars {
  margin-bottom: 16px;
}
.testimonial-card p {
  color: var(--ink-600);
  font-size: 0.98rem;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-600), var(--blush-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--plum-900);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--ink-600);
}

.marquee {
  margin-top: 56px;
  overflow: hidden;
  border-top: 1px solid rgba(61, 31, 71, 0.12);
  border-bottom: 1px solid rgba(61, 31, 71, 0.12);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--violet-600);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
}
.marquee-track span i {
  color: var(--blush-400);
  font-size: 0.7rem;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============ OBJEÇÕES ============ */
.objections {
  padding: 110px 0;
}
.objections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.objection-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.objection-icon {
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--lilac-100);
  color: var(--violet-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.objection-card h4 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: var(--plum-900);
}
.objection-card p {
  font-size: 0.94rem;
  color: var(--ink-600);
}

/* ============ FAQ ============ */
.faq {
  padding: 100px 0;
  background: var(--lilac-100);
}
.faq-head {
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
}
.faq-head .eyebrow {
  justify-content: center;
  margin: 0 auto 20px;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--plum-900);
  text-align: left;
}
.faq-question i {
  color: var(--violet-600);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer p {
  padding: 0 26px 22px;
  color: var(--ink-600);
  font-size: 0.96rem;
}

/* ============ LOCALIZAÇÃO ============ */
.location {
  padding: 110px 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}
.location-copy-full {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.location-copy-full .location-detail {
  text-align: left;
}
.location-copy h2 {
  margin-bottom: 20px;
}
.location-copy p {
  color: var(--ink-600);
  margin-bottom: 28px;
}
.location-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.location-detail i {
  color: var(--violet-600);
  font-size: 1.1rem;
  margin-top: 3px;
}
.location-detail strong {
  display: block;
  font-size: 0.95rem;
  color: var(--plum-900);
}
.location-detail span {
  font-size: 0.9rem;
  color: var(--ink-600);
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 380px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* ============ CTA FINAL ============ */
.final-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--plum-900);
  color: var(--white);
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(232, 180, 188, 0.18),
    transparent 70%
  );
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta .eyebrow {
  color: var(--blush-400);
  justify-content: center;
  margin: 0 auto 20px;
}
.final-cta .eyebrow::before {
  background: var(--blush-400);
}
.final-cta h2 {
  color: var(--white);
  margin-bottom: 18px;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
  font-size: 1.06rem;
}
.final-cta .btn-primary {
  background: var(--blush-400);
  color: var(--plum-950);
}
.final-cta .btn-primary:hover {
  background: var(--white);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--plum-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  width: 38px;
  height: 38px;
}
.footer-brand strong {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.1rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.92rem;
  transition: color 0.25s var(--ease);
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a {
  font-weight: 700;
  color: var(--blush-400);
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 800;
  animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .benefits-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .service-grid,
  .testimonial-track,
  .objections-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-50);
    padding: 22px 24px 28px;
    gap: 18px;
    box-shadow: var(--shadow-card);
    border-bottom: 1px solid rgba(61, 31, 71, 0.08);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav-links.mobile-open a {
    font-size: 1.02rem;
  }
  .nav-links.mobile-open .nav-cta-item {
    margin-top: 6px;
  }
  .nav-links.mobile-open .nav-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 22px;
  }
  .service-grid,
  .testimonial-track,
  .objections-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }
  .hero-float {
    position: static;
    margin-bottom: 16px;
    display: inline-block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
