/* ============================================================
   Keepi — Greeting Card Organizer  |  Marketing Site Styles
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --color-bg: #EDEAF5;
  --color-primary: #7B68C8;
  --color-primary-dark: #5548A8;
  --color-headline: #1A1A2E;
  --color-body: #6B7280;
  --color-muted: #9CA3AF;
  --color-card: #FFFFFF;
  --color-border: #D8D2F0;
  --color-section-light: #F8F6FF;
  --color-section-white: #FFFFFF;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-body);
  background-color: var(--color-section-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 68px;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-headline);
  line-height: 1.2;
}

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

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(123, 104, 200, 0.35);
  color: #fff;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #fff;
  transform: scale(1.03);
}

/* ---------- Section Utilities ---------- */
.section-heading {
  font-weight: 700;
  font-size: 40px;
  color: var(--color-headline);
  text-align: center;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

/* ============================================================
   NAV
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  height: 68px;
  border-bottom: 1px solid #eee;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  border-bottom-color: transparent;
}

.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: auto;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--color-headline);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: 32px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--color-body);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-headline);
}

.nav-links .btn-primary {
  display: none;
}

.nav-cta-desktop {
  padding: 10px 24px;
  font-size: 14px;
  flex-shrink: 0;
}

.nav-cta-mobile {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  z-index: 1100;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-headline);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   HERO  —  alternating bg: light lavender
   ============================================================ */
.hero {
  background-color: var(--color-section-light);
  padding: 80px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.hero-content {
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #D6F0D6;
  color: #3D7A3D;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-badge-star {
  color: var(--color-primary);
}

.hero-headline {
  font-weight: 700;
  font-size: 52px;
  line-height: 1.1;
  color: var(--color-headline);
  margin-bottom: 24px;
  animation: heroFadeIn 0.8s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  font-size: 17px;
  color: var(--color-body);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  min-width: 200px;
  text-align: center;
}

.hero-trust {
  margin-top: 20px;
  font-size: 14px;
  color: var(--color-headline);
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 20px;
  background-color: #1A1A2E;
  color: #fff;
  border-radius: 12px;
}

.coming-soon-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.coming-soon-top {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.coming-soon-bottom {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* Single phone mockup — flows naturally, no absolute */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Subtle radial glow behind phone */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 104, 200, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-phone {
  position: relative;
}

/* Scroll indicator */
.scroll-indicator {
  text-align: center;
  margin-top: 40px;
  animation: bounceArrow 2s infinite ease-in-out;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* iPhone frame — real device image overlay */
.iphone-frame {
  width: 280px;
  max-width: 100%;
  margin: 0 auto;
  flex-shrink: 0;
  position: relative;
}

/* The frame image sits on top, defines the size */
.frame-img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* The screenshot sits behind the frame, filling the screen area */
.screen-img {
  position: absolute;
  z-index: 1;
  top: 3%;
  left: 5.2%;
  width: 89.6%;
  height: 94.6%;
  object-fit: cover;
  object-position: top;
  border-radius: 7%;
  background: #fff;
}

/* ============================================================
   SOCIAL PROOF  —  white bg
   ============================================================ */
.social-proof {
  background-color: var(--color-section-white);
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}

.social-proof .container {
  text-align: center;
}

.social-proof-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-body);
  margin-bottom: 20px;
}

.proof-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #F0EDFC;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 20px;
  white-space: nowrap;
}

/* ============================================================
   PROBLEM / NARRATIVE  —  light lavender bg
   ============================================================ */
.problem {
  background-color: var(--color-section-light);
  padding: 80px 0;
}

.problem-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.problem-content h2 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.problem-content p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-body);
}

/* ============================================================
   FEATURES  —  white bg
   ============================================================ */
.features {
  background-color: var(--color-section-white);
  padding: 80px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.feature-card {
  background-color: var(--color-section-light);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.05);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(123, 104, 200, 0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-headline);
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body);
}

/* ============================================================
   HOW IT WORKS (Steps)  —  light lavender bg
   ============================================================ */
.steps {
  background-color: var(--color-section-white);
  padding: 80px 0;
  text-align: center;
}

.step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
  text-align: left;
}

.step:first-of-type {
  margin-top: 60px;
}

/* Alternate: phone left, text right */
.step-reverse {
  flex-direction: row-reverse;
}

.step-text {
  max-width: 320px;
  flex-shrink: 0;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #D6F0D6;
  color: #3D7A3D;
  font-weight: 700;
  font-size: 36px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step-text h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--color-headline);
}

.step-text p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-body);
}

.step-image {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.step-image .iphone-frame {
  width: 280px;
}

/* ============================================================
   APP SHOWCASE  —  white bg
   ============================================================ */
.showcase {
  background-color: var(--color-section-light);
  padding: 80px 0;
  text-align: center;
}

.showcase-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
}

.showcase-phone {
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.showcase-phone .iphone-frame {
  width: 280px;
}

.showcase-phone:nth-child(1) {
  transform: rotate(-4deg);
}

.showcase-phone:nth-child(2) {
  transform: rotate(0deg);
}

.showcase-phone:nth-child(3) {
  transform: rotate(4deg);
}

.showcase-phone:hover {
  transform: rotate(0deg) scale(1.04);
}

.showcase-caption {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-headline);
}

.showcase-tagline {
  margin-top: 60px;
}

.showcase-tagline h3 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
}

.showcase-tagline p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-body);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   FAQ  —  light lavender bg
   ============================================================ */
.faq {
  background-color: var(--color-section-white);
  padding: 80px 0;
  text-align: center;
}

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.faq-item {
  background-color: var(--color-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(123, 104, 200, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  font-weight: 600;
  font-size: 17px;
  color: var(--color-headline);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  gap: 16px;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
  stroke: var(--color-muted);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  stroke: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body);
}

/* ============================================================
   FINAL CTA  —  purple gradient
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, #7B68C8, #9B8AE8);
  padding: 80px 0;
  overflow: hidden;
}

.final-cta .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.final-cta-content {
  text-align: left;
}

.final-cta-content h2 {
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}

.final-cta-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.6;
}

.final-cta-note {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}

.app-store-badge {
  display: inline-block;
  transition: transform 0.25s ease;
}

.app-store-badge:hover {
  transform: scale(1.05);
}

.final-cta-phone {
  display: flex;
  justify-content: center;
}

.final-cta-phone .iphone-frame {
  width: 280px;
}

/* ============================================================
   FOOTER  —  dark bg
   ============================================================ */
.footer {
  background-color: #1A1A2E;
  padding: 60px 0 36px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.3px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 260px;
  line-height: 1.5;
}

.footer-columns {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  padding: 5px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-badge {
  flex-shrink: 0;
}

.footer-badge:hover {
  opacity: 0.8;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .section-heading {
    font-size: 36px;
  }

  /* Hero */
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-headline {
    font-size: 42px;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust {
    text-align: center;
  }

  .iphone-frame {
    width: 260px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    gap: 32px;
  }

  /* Steps */
  .step {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    margin-top: 60px;
  }

  .step-reverse {
    flex-direction: column;
  }

  .step .step-text,
  .step-reverse .step-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .step-image {
    order: -1;
  }

  .step-image .iphone-frame {
    width: 260px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-columns {
    gap: 60px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (max 767px)
   ============================================================ */
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 20px;
  }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 1060;
    padding: 80px 28px 40px;
    flex-direction: column;
    gap: 0;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid #f0f0f0;
  }

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

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-headline);
  }

  .nav-links a:hover {
    color: var(--color-primary);
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-mobile {
    display: block;
    border-bottom: none !important;
    margin-top: 24px;
  }

  .nav-cta-mobile .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 32px;
    font-size: 16px;
  }

  .hamburger {
    display: flex;
  }

  .nav-overlay {
    display: block;
  }

  /* Sections */
  .section-heading {
    font-size: 28px;
  }

  /* Hero */
  .hero {
    padding: 60px 0;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-description {
    font-size: 17px;
  }

  .iphone-frame {
    width: 240px;
  }

  /* Social Proof */
  .social-proof {
    padding: 32px 0;
  }

  .pill {
    font-size: 13px;
    padding: 8px 16px;
  }

  /* Problem */
  .problem {
    padding: 60px 0;
  }

  .problem-content h2 {
    font-size: 28px;
  }

  /* Features */
  .features {
    padding: 60px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  /* Steps */
  .steps {
    padding: 60px 0;
  }

  .step {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    margin-top: 60px;
  }

  .step:first-of-type {
    margin-top: 48px;
  }

  .step-reverse {
    flex-direction: column;
  }

  .step .step-text,
  .step-reverse .step-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .step-text h3 {
    font-size: 24px;
  }

  .step-image {
    order: -1;
  }

  .step-image .iphone-frame {
    width: 240px;
  }

  /* Showcase — horizontal scroll */
  .showcase {
    padding: 60px 0;
  }

  .showcase-phones {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    padding: 20px;
    margin: 40px -20px 0;
  }

  .showcase-phone {
    scroll-snap-align: center;
  }

  .showcase-phone .iphone-frame {
    width: 240px;
  }

  .showcase-phone:nth-child(1),
  .showcase-phone:nth-child(2),
  .showcase-phone:nth-child(3) {
    transform: rotate(0deg);
  }

  .showcase-phones::-webkit-scrollbar {
    display: none;
  }

  .showcase-phones {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* FAQ */
  .faq {
    padding: 60px 0;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.open .faq-answer {
    padding: 0 20px 20px;
  }

  /* Final CTA */
  .final-cta {
    padding: 60px 0;
  }

  .final-cta .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta-content {
    text-align: center;
  }

  .final-cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta-content h2 {
    font-size: 28px;
  }

  .final-cta-phone {
    display: none;
  }

  /* Footer */
  .footer {
    padding: 48px 0 28px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-columns {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .navbar,
  .scroll-indicator,
  .hamburger,
  .nav-overlay {
    display: none !important;
  }

  body {
    padding-top: 0;
    color: #000;
    background: #fff;
  }
}

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

  .hero-headline {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .fade-in-up {
    opacity: 1;
    transform: none;
  }
}
