/* ================================================
   RevBoostApp — components.css
   Nav, buttons, cards, badges, forms,
   mockup, accordion, pricing, footer
   ================================================ */

/* ================================================
   NAVIGATION
   ================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  height: 68px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 18px;
  height: 18px;
  color: white;
}

.nav-logo-text {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.nav-logo-bold   { font-weight: 700; color: var(--text-primary); }
.nav-logo-light  { font-weight: 400; color: var(--text-secondary); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-subtle);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-login {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s ease;
}

.nav-login:hover {
  color: var(--text-primary);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.2s;
}

.nav-hamburger:hover {
  background: var(--bg-subtle);
}

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 16px clamp(16px, 4vw, 40px) 24px;
  z-index: 999;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--text-primary);
}

.mobile-menu .btn-primary {
  width: 100%;
  margin-top: 16px;
  justify-content: center;
}

@media (max-width: 1023px) {
  .nav-links      { display: none; }
  .nav-login      { display: none; }
  .nav-hamburger  { display: flex; }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary:hover {
  color: var(--text-white);
}

.btn-primary--lg {
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
}

.btn-primary--full {
  width: 100%;
  justify-content: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

/* CTA group */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

@media (max-width: 480px) {
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-group .btn-primary,
  .cta-group .btn-secondary,
  .cta-group .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================
   BADGES / PILLS
   ================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 6px 14px;
  border-radius: var(--radius-badge);
}

.badge--green {
  background: var(--accent-light);
  color: var(--accent);
}

.badge--green-dark {
  background: rgba(22, 163, 74, 0.2);
  color: #4ADE80;
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.badge--white {
  background: rgba(255,255,255,0.1);
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ================================================
   CARDS
   ================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-sm);
}

.card-problem {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 3px solid #EF4444;
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-problem:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-problem-icon {
  width: 40px;
  height: 40px;
  background: #FEF2F2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #EF4444;
}

.card-problem h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-problem p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Step cards (How It Works) */
.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  position: relative;
  transition: background 0.25s ease;
}

.step-card:hover {
  background: rgba(255,255,255,0.07);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.step-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(22, 163, 74, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #4ADE80;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-white-dim);
  line-height: 1.65;
}

/* Testimonial cards */
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

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

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-subtle);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.avatar--lg {
  width: 52px;
  height: 52px;
  font-size: 1rem;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Featured testimonial */
.testimonial-featured {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.testimonial-featured-quote-mark {
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: var(--font-body);
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-light);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.testimonial-featured-content {
  position: relative;
  z-index: 1;
}

.testimonial-featured blockquote {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.testimonial-stat {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

/* ================================================
   STARS ROW
   ================================================ */
.stars-row {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 12px;
}

.star-icon {
  font-size: 1rem;
  line-height: 1;
}

/* ================================================
   PLATFORM LOGOS
   ================================================ */
.platform-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.platform-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.platform-logo-icon {
  width: 24px;
  height: 24px;
  opacity: 0.5;
}

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar {
  background: var(--bg-dark);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.stats-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stat-item {
  padding: 8px 32px;
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-value {
  font-family: var(--font-mono);
  font-size: var(--text-stat);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-white-dim);
  line-height: 1.45;
  max-width: 160px;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .stat-item:nth-child(odd)::before {
    display: none;
  }
}

/* ================================================
   TRUST ROW
   ================================================ */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-check {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ================================================
   AVATAR STACK
   ================================================ */
.avatar-stack {
  display: flex;
  align-items: center;
  gap: 4px;
}

.avatar-stack-item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  margin-left: -8px;
  flex-shrink: 0;
}

.avatar-stack-item:first-child {
  margin-left: 0;
}

.avatar-stack + span {
  font-size: 0.875rem;
  color: var(--text-white-dim);
  margin-left: 4px;
}

/* ================================================
   PROBLEM SECTION — BAR VISUALIZATION
   ================================================ */
.problem-bar-wrap {
  margin-top: 24px;
}

.problem-bar-item {
  margin-bottom: 12px;
}

.problem-bar-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.problem-bar-label span:last-child {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-primary);
}

.problem-bar-track {
  height: 8px;
  background: var(--bg-subtle);
  border-radius: 100px;
  overflow: hidden;
}

.problem-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--text-muted);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0;
}

.problem-bar-fill.accent {
  background: var(--accent);
}

.problem-bar-fill.animated {
  /* width set by JS */
}

/* Big stat display */
.problem-big-stat {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.problem-big-label {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================
   HOW IT WORKS — FLOW ARROWS
   ================================================ */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how-it-works-grid .step-card {
  margin: 0 8px;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  position: absolute;
  top: 40px;
  width: 24px;
}

@media (max-width: 1023px) {
  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .how-it-works-grid .step-card {
    margin: 0;
  }
}

@media (max-width: 640px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   FEATURES — ALTERNATING ROWS
   ================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.flipped .feature-text {
  order: 2;
}

.feature-row.flipped .feature-visual {
  order: 1;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  transition: background 0.2s ease, transform 0.2s ease;
}

.feature-row:hover .feature-icon-wrap {
  background: var(--accent);
  color: white;
  transform: scale(1.08);
}

.feature-text h3 {
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.feature-visual {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-subtle);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 767px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-row.flipped .feature-text { order: 1; }
  .feature-row.flipped .feature-visual { order: 2; }
}

/* ================================================
   QR CARD MOCKUP
   ================================================ */
.qr-card-mockup {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  text-align: center;
  margin-inline: auto;
  position: relative;
}

.qr-card-header {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.qr-card-restaurant {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.qr-code-block {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  background: white;
  border: 3px solid var(--text-primary);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CSS QR code pattern approximation */
.qr-code-block svg {
  width: 100%;
  height: 100%;
}

.qr-card-cta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.qr-card-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: 8px;
  color: var(--star);
  font-size: 0.9rem;
}

/* ================================================
   PRICING SECTION
   ================================================ */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
}

.pricing-toggle-label.active {
  color: var(--text-primary);
  font-weight: 600;
}

.pricing-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
  flex-shrink: 0;
}

.pricing-toggle.yearly {
  background: var(--accent);
}

.pricing-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.pricing-toggle.yearly::after {
  transform: translateX(22px);
}

.save-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 8px;
  border-radius: 100px;
}

/* Pricing card */
.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: clamp(28px, 4vw, 48px);
  max-width: 480px;
  margin-inline: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.pricing-card-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: white;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px;
}

.pricing-card-body {
  padding-top: 16px;
}

.pricing-price-wrap {
  margin: 20px 0 8px;
}

.pricing-price {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-billed-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pricing-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.95rem;
}

.pricing-no-card {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.pricing-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Trust badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 640px;
  margin-inline: auto;
}

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

.trust-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--accent);
}

.trust-badge-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.trust-badge-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .trust-badges {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.faq-list {
  background: var(--bg-white);
  border-radius: var(--radius-large);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

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

.faq-item.open .faq-question {
  color: var(--accent);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.faq-support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 20px;
  transition: gap 0.2s ease;
}

.faq-support-link:hover {
  gap: 10px;
}

@media (max-width: 767px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   PLATFORM PROOF ROW
   ================================================ */
.platform-proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.platform-proof-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 500;
  width: 100%;
  text-align: center;
  margin-bottom: -16px;
}

.platform-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.platform-proof-rating {
  color: var(--star);
  font-weight: 600;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--bg-dark);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-white-dim);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 280px;
}

.footer-email {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-email:hover {
  color: white;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-white-dim);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ================================================
   DASHBOARD MOCKUP
   ================================================ */
.mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.mockup-dashboard {
  background: #111827;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-product);
  transform: rotate(-1deg);
  width: 100%;
  max-width: 520px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Mockup header bar */
.mockup-topbar {
  background: #0D1117;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot.red   { background: #FF5F57; }
.mockup-dot.yellow { background: #FFBD2E; }
.mockup-dot.green { background: #28CA41; }

.mockup-title-bar {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  height: 18px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.mockup-title-text {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-mono);
}

/* Mockup body */
.mockup-body {
  padding: 18px;
}

/* Nav row inside mockup */
.mockup-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mockup-brand {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.mockup-nav-links {
  display: flex;
  gap: 12px;
}

.mockup-nav-links span {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  cursor: default;
}

.mockup-avatar-placeholder {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: white;
}

/* Mockup stats row */
.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.mockup-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px;
}

.mockup-stat-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  display: block;
}

.mockup-stat-value {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  display: block;
}

.mockup-stat-value.green {
  color: #4ADE80;
}

.mockup-stat-trend {
  font-size: 0.55rem;
  color: #4ADE80;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 3px;
}

/* Mockup chart */
.mockup-chart-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 12px;
}

.mockup-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mockup-chart-title {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockup-chart-period {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.25);
}

.mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
}

.mockup-bar {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 3px 3px 0 0;
  min-height: 4px;
  position: relative;
}

.mockup-bar.accent {
  background: var(--accent);
}

/* Mockup reviews list */
.mockup-reviews-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-review-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 7px 10px;
}

.mockup-review-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}

.mockup-review-content {
  flex: 1;
  min-width: 0;
}

.mockup-review-name {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2px;
}

.mockup-review-text {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-review-stars {
  display: flex;
  gap: 1px;
  color: var(--star);
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* New review today badge */
.mockup-badge-today {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ADE80;
  margin-bottom: 10px;
}

.mockup-live-dot {
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Floating review notification card */
.floating-review-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  z-index: 10;
  transform: rotate(1deg);
}

.floating-review-stars {
  color: var(--star);
  font-size: 0.75rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}

.floating-review-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.floating-review-time {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.floating-review-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

/* ================================================
   FINAL CTA SECTION
   ================================================ */
.cta-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(22,163,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ================================================
   FEATURE PHONE MOCKUP
   ================================================ */
.phone-mockup-wrap {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}

.phone-mockup {
  background: #111827;
  border-radius: 24px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 8px;
  width: 160px;
  box-shadow: var(--shadow-lg);
}

.phone-screen {
  background: #1A1A2E;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.phone-screen-content {
  padding: 14px 12px;
}

.phone-header {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-rating-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.phone-star {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.phone-star.selected {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--star);
  transform: scale(1.1);
}

.phone-redirect-box {
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.phone-redirect-text {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 8px;
}

.phone-redirect-btn {
  background: var(--accent);
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
}

.phone-negative-box {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  padding: 10px;
}

.phone-negative-title {
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.phone-negative-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  height: 40px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 5px;
}

.phone-negative-textarea span {
  font-size: 0.52rem;
  color: rgba(255,255,255,0.25);
}

.phone-label {
  font-size: 0.55rem;
  text-align: center;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Analytics mockup */
.analytics-mockup {
  background: #111827;
  border-radius: var(--radius-large);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.06);
}

.analytics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.analytics-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.analytics-rating-big {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: #4ADE80;
  line-height: 1;
}

.analytics-line-chart {
  height: 70px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-bottom: 14px;
}

.analytics-line-bar {
  flex: 1;
  background: rgba(22, 163, 74, 0.2);
  border-radius: 2px 2px 0 0;
}

.analytics-line-bar.highlight {
  background: var(--accent);
}

.analytics-review-feed {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.analytics-review-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.analytics-review-row .stars {
  color: var(--star);
  font-size: 0.55rem;
}

.analytics-review-row span {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
}

/* Email mockup */
.email-mockup {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.email-header-bar {
  background: var(--bg-subtle);
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}

.email-from, .email-subject {
  font-size: 0.7rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.email-from strong, .email-subject strong {
  color: var(--text-primary);
}

.email-body {
  padding: 20px 16px;
}

.email-greeting {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.6;
}

.email-body-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.email-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
}

.email-footer-note {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}
