/* ===================================================
   MopiClean Landing — Design System Aligned Styles
   =================================================== */

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

:root {
  /* Colors */
  --primary: #0284c7;
  --primary-light: #0ea5e9;
  --primary-gradient: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  --yellow: #f5c518;
  --yellow-light: #fef9e7;
  --dark: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --subtle: #94a3b8;
  --border: #e2e8f0;
  --surface: #f8fafc;
  --bg-start: #f0f9ff;
  --bg-end: #fefce8;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-elevated: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-btn: 0 4px 14px rgba(2, 132, 199, 0.25);

  /* Radius */
  --radius-btn: 12px;
  --radius-card: 14px;
  --radius-badge: 20px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: light;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   1. HEADER
   =================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  height: 64px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { width: 40px; height: 40px; object-fit: contain; }

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

.nav-link {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--text);
  background: rgba(2, 132, 199, 0.06);
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border-radius: var(--radius-btn);
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.nav-pill:hover { background: var(--primary-light); }
.nav-pill:active { transform: scale(0.98); }

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover { background: rgba(2, 132, 199, 0.06); }

/* ===================================================
   2. HERO
   =================================================== */
.hero {
  min-height: calc(100vh - 64px);
  padding: 60px 24px 80px;
  background: linear-gradient(180deg, var(--bg-start) 0%, var(--surface) 50%, var(--bg-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  max-width: 1120px;
  width: 100%;
  align-items: center;
}

.hero-copy { min-width: 0; }

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow.center { display: block; text-align: center; }

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
}

.hero-text {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

/* --- Buttons --- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.button:active { transform: scale(0.98); }

.button.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.button.primary:hover {
  background: var(--primary-light);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.3);
}

.button.outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.button.outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(2, 132, 199, 0.04);
}

.button.yellow {
  background: var(--yellow);
  color: var(--dark);
}
.button.yellow:hover { background: #e6b800; }

.button--large {
  min-height: 56px;
  padding: 0 32px;
  font-size: 1rem;
}

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 520px;
}

.stat-card {
  padding: 16px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.stat-card dt {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
}
.stat-card dd {
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* --- Phone Frame --- */
.phone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  margin: 0 auto;
  border-radius: 36px;
  background: #1e293b;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.phone-frame--large {
  width: 300px;
  height: 610px;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #1e293b;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
}

.phone-screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.phone-screenshot.active { opacity: 1; }

.phone-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 4px;
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--subtle);
  cursor: pointer;
  transition: all 0.3s;
}
.phone-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

.hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===================================================
   SECTION UTILITIES
   =================================================== */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  margin-bottom: 40px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.section-title.center { text-align: center; }

/* ===================================================
   3. DUAL PATH
   =================================================== */
.dual-path {
  background: #fff;
}

.dual-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dual-card {
  padding: 36px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}
.dual-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.dual-card--client { border-top: 3px solid var(--primary); }
.dual-card--pro { border-top: 3px solid var(--yellow); }

.dual-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(2, 132, 199, 0.08);
  margin-bottom: 20px;
}
.dual-card__icon--yellow {
  background: rgba(245, 197, 24, 0.12);
}

.dual-card h3 {
  margin-bottom: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.dual-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.dual-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===================================================
   4. PHONE SHOWCASE
   =================================================== */
.phone-showcase {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-start) 100%);
}

.showcase-content {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}

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

.showcase-captions {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.showcase-caption {
  display: none;
  flex-direction: column;
  gap: 8px;
}
.showcase-caption.active { display: flex; }

.showcase-caption__number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.showcase-caption h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

.showcase-caption p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 400px;
}

/* ===================================================
   5. HOW IT WORKS
   =================================================== */
.how-it-works {
  background: #fff;
}

.how-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.how-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius-btn);
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.how-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.how-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.how-tab.active svg { stroke: #fff; }

/* Timeline */
.timeline {
  display: none;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 72px;
}
.timeline.active { display: block; }

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  border-radius: 1px;
}

.timeline--pro::before {
  background: linear-gradient(180deg, var(--yellow), #fde68a);
}

.timeline__item {
  position: relative;
  margin-bottom: 40px;
}
.timeline__item:last-child { margin-bottom: 0; }

.timeline__icon {
  position: absolute;
  left: -72px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(2, 132, 199, 0.08);
}
.timeline__icon--yellow {
  background: rgba(245, 197, 24, 0.12);
}

.timeline__step {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.timeline--pro .timeline__step { color: #b8860b; }

.timeline__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.timeline__content p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 500px;
}

/* ===================================================
   6. TESTIMONIALS
   =================================================== */
.testimonials {
  background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Carousel */
.testimonial-carousel {
  position: relative;
  margin-bottom: 48px;
}
.testimonial-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-card);
}
.testimonial-carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.testimonial-carousel__track .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  margin-right: 24px;
  min-width: 0;
}

/* Arrows */
.testimonial-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-elevated);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.testimonial-carousel__arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-btn);
}
.testimonial-carousel__arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.testimonial-carousel__arrow--prev {
  left: -22px;
}
.testimonial-carousel__arrow--next {
  right: -22px;
}
.testimonial-carousel__arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Dots */
.testimonial-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testimonial-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.testimonial-carousel__dot.active {
  background: var(--primary);
  width: 28px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
  min-height: 280px;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-avatar--yellow {
  background: rgba(245, 197, 24, 0.15);
  color: #b8860b;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: var(--radius-badge);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge--client {
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary);
}
.badge--pro {
  background: rgba(245, 197, 24, 0.15);
  color: #b8860b;
}
.badge--verified {
  background: rgba(34, 197, 94, 0.08);
  color: #16a34a;
  gap: 4px;
}

/* Trustpilot badge */
.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-badge);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  margin: 0 auto 36px;
}
.trustpilot-badge:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-1px);
}
.trustpilot-badge:active {
  transform: scale(0.98);
}
.trustpilot-badge svg:last-child {
  color: var(--muted);
  flex-shrink: 0;
}
.trustpilot-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

/* Stats strip */
.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 40px;
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stats-strip__item strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}
.stats-strip__item span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.stats-strip__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===================================================
   6b. PRESS / MEDIA COVERAGE
   =================================================== */
.press {
  background: #fff;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.press-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: var(--radius-card);
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.press-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
  border-color: var(--primary);
}
.press-card:active {
  transform: scale(0.99);
}

.press-card__source {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.press-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.press-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.press-card__meta strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}
.press-card__meta span {
  font-size: 0.78rem;
  color: var(--muted);
}

.press-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 12px;
}

.press-card__excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.press-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.press-card__date {
  font-size: 0.78rem;
  color: var(--subtle);
  font-weight: 500;
}
.press-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}
.press-card:hover .press-card__link {
  gap: 8px;
}

/* ===================================================
   7. TRUST SIGNALS
   =================================================== */
.trust-signals {
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.trust-item:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.trust-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(2, 132, 199, 0.08);
  margin-bottom: 16px;
}

.trust-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===================================================
   8. FAQ
   =================================================== */
.faq {
  background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto 24px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  margin-bottom: 8px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item[open] {
  box-shadow: var(--shadow-elevated);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item summary:hover { color: var(--primary); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 20px;
}
.faq-answer p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-more {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.faq-more a {
  color: var(--primary);
  font-weight: 600;
  transition: color 0.2s;
}
.faq-more a:hover { color: var(--primary-light); }

/* ===================================================
   9. FINAL CTA
   =================================================== */
.final-cta {
  background: var(--primary-gradient);
  padding: 80px 24px;
}

.final-cta__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

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

.final-cta .button.primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.final-cta .button.primary:hover {
  background: var(--surface);
}

.final-cta .button.yellow {
  background: var(--yellow);
  color: var(--dark);
}
.final-cta .button.yellow:hover { background: #e6b800; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--dark);
  padding: 32px 24px;
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer .brand {
  color: #fff;
}
.site-footer .brand img {
  width: 32px;
  height: 32px;
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--subtle);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-copy {
  font-size: 0.8rem;
  color: var(--subtle);
}

/* ===================================================
   RESPONSIVE
   =================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .stats { margin: 0 auto; }

  .hero-phone { order: -1; }
  .phone-frame { width: 240px; height: 490px; }
  .phone-frame--large { width: 260px; height: 530px; }

  .showcase-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .showcase-caption p { margin: 0 auto; }

  .dual-cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  /* Carousel: 2 cards per view on tablet */
  .testimonial-carousel__track .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
  .testimonial-carousel__arrow--prev { left: -8px; }
  .testimonial-carousel__arrow--next { right: -8px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; }

  .top-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease-out);
  }
  .top-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { padding: 12px 16px; width: 100%; }
  .nav-pill { width: 100%; text-align: center; }

  .hero {
    min-height: auto;
    padding: 40px 20px 60px;
  }
  h1 { font-size: 2rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }

  .stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-card { padding: 12px; }
  .stat-card dt { font-size: 1.1rem; }
  .stat-card dd { font-size: 0.7rem; }

  .phone-frame { width: 220px; height: 450px; }
  .phone-frame--large { width: 220px; height: 450px; }

  .section-inner { padding: 60px 20px; }

  .how-tabs { flex-direction: column; align-items: center; }

  .timeline { padding-left: 60px; }
  .timeline::before { left: 22px; }
  .timeline__icon { left: -60px; width: 48px; height: 48px; }
  .timeline__icon svg { width: 24px; height: 24px; }

  /* Carousel: 1 card per view on mobile */
  .testimonial-carousel__track .testimonial-card {
    flex: 0 0 100%;
    margin-right: 0;
  }
  .testimonial-carousel__arrow {
    width: 36px;
    height: 36px;
  }
  .testimonial-carousel__arrow--prev { left: 4px; }
  .testimonial-carousel__arrow--next { right: 4px; }

  .stats-strip {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  .stats-strip__divider {
    width: 60px;
    height: 1px;
  }

  .trust-grid { grid-template-columns: 1fr; }

  .press-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .press-card { padding: 24px; }

  .final-cta__actions { flex-direction: column; }
  .final-cta__actions .button { width: 100%; }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .site-header { padding: 0 16px; }
  .hero { padding: 32px 16px 48px; }
  .section-inner { padding: 48px 16px; }

  .dual-card { padding: 24px; }

  .phone-frame { width: 200px; height: 410px; }
  .phone-frame--large { width: 200px; height: 410px; }

  .stats { grid-template-columns: 1fr; gap: 8px; }
}

/* ===================================================
   COUNTER ANIMATION HELPER
   =================================================== */
.counter-animated {
  display: inline-block;
  min-width: 2ch;
}
