/* ═══════════════════════════════════════════════
   FRP SOLUTIONS — LANDING PAGE
   Dark Cyber / Neon Green Theme
   ═══════════════════════════════════════════════ */

:root {
  --neon: #00ff88;
  --neon-dim: #00cc6a;
  --neon-glow: rgba(0, 255, 136, 0.25);
  --neon-glow-soft: rgba(0, 255, 136, 0.08);
  --bg: #050a0e;
  --bg2: #080f14;
  --bg3: #0d1821;
  --surface: #0f1c28;
  --surface2: #152433;
  --border: rgba(0, 255, 136, 0.15);
  --border-bright: rgba(0, 255, 136, 0.35);
  --text: #e0f0e8;
  --text-muted: #7a9e8e;
  --text-dim: #4a6e5e;
  --red: #ff4466;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.neon { color: var(--neon); }
.red  { color: var(--red); }

/* ══════════════════════ HEADER ══════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 10, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.logo-frp {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.4rem;
  color: var(--neon);
  text-shadow: 0 0 12px var(--neon-glow);
  letter-spacing: 2px;
}

.logo-solutions {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}

.logo-by {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: 8px;
  letter-spacing: 1px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

nav a:hover { color: var(--neon); }

.nav-cta {
  background: var(--neon) !important;
  color: var(--bg) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: var(--bg) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--neon-glow);
}

/* ══════════════════════ HERO ══════════════════════ */
#hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-glow-soft);
  border: 1px solid var(--border);
  color: var(--neon);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

#hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

#hero h1 .neon {
  text-shadow: 0 0 30px var(--neon-glow), 0 0 60px rgba(0,255,136,0.1);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 48px;
  display: inline-flex;
}

.stat { text-align: center; padding: 0 32px; }
.stat-num {
  display: block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 0 20px var(--neon-glow);
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ══════════════════════ BUTTONS ══════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--neon);
  color: var(--bg);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(0,255,136,0.3);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,255,136,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.btn-ghost:hover {
  color: var(--neon);
  border-color: var(--border-bright);
  background: var(--neon-glow-soft);
}

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

.btn-xl {
  font-size: 1.2rem;
  padding: 18px 40px;
  border-radius: var(--radius-lg);
}

/* ══════════════════════ SECTION COMMONS ══════════════════════ */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--neon);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--neon-glow-soft);
}

.section-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ══════════════════════ PROBLEMA ══════════════════════ */
#problema {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problema-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
}

.problema-col {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.problema-col.problema-antes {
  border: 1px solid rgba(255, 68, 102, 0.25);
}

.problema-col.problema-depois {
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 40px var(--neon-glow-soft);
}

.problema-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.problema-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problema-col ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 4px;
  border-left: 2px solid transparent;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  line-height: 1.4;
}

.problema-antes ul li { border-left-color: rgba(255,68,102,0.4); }
.problema-depois ul li { border-left-color: rgba(0,255,136,0.4); color: var(--text); }

.problema-vs {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dim);
  align-self: center;
  padding: 16px;
}

/* ══════════════════════ FEATURES ══════════════════════ */
#recursos { background: var(--bg); }

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--neon-glow-soft);
}

.feature-card:hover::before { opacity: 1; }

.feature-card.featured {
  border-color: var(--border-bright);
  background: var(--surface2);
  box-shadow: 0 0 40px var(--neon-glow-soft);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════ COMO FUNCIONA ══════════════════════ */
#como-funciona {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
}

.step-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 2.5rem;
  color: var(--neon);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.8rem;
  color: var(--neon);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ══════════════════════ PARA QUEM ══════════════════════ */
#para-quem { background: var(--bg); }

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

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.audience-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--neon-glow-soft);
}

.audience-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.audience-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════ PRICING ══════════════════════ */
#preco {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px var(--neon-glow-soft), 0 0 120px rgba(0,255,136,0.03);
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(0,255,136,0.3), transparent 50%, rgba(0,255,136,0.1));
  z-index: -1;
}

.pricing-badge {
  display: inline-block;
  background: var(--neon);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pricing-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neon);
  margin-top: 6px;
}

.price-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.price-period {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 6px;
}

.pricing-contact {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.guarantee-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--neon);
  opacity: 0.8;
  text-align: center;
}

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

.pricing-features li {
  font-size: 0.95rem;
  color: var(--text);
  padding: 10px 16px;
  background: rgba(0,255,136,0.04);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 28px;
}

/* ══════════════════════ FAQ ══════════════════════ */
#faq { background: var(--bg); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--border-bright);
  box-shadow: 0 0 20px var(--neon-glow-soft);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

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

.faq-icon {
  font-size: 1.4rem;
  color: var(--neon);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ══════════════════════ CTA FINAL ══════════════════════ */
#cta-final {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,255,136,0.08) 0%, transparent 70%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

#cta-final h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

#cta-final p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-note {
  margin-top: 20px !important;
  font-size: 0.85rem !important;
  color: var(--text-dim) !important;
  margin-bottom: 0 !important;
}

/* ══════════════════════ FOOTER ══════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

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

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-left: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--neon); }

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

/* ══════════════════════ SCREENSHOTS / CAROUSEL ══════════════════════ */
#screenshots {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 60px var(--neon-glow-soft);
  background: var(--surface);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.carousel-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  color: var(--neon);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--neon-glow-soft);
}

.carousel-btn:hover {
  background: var(--neon);
  color: var(--bg);
  box-shadow: 0 0 30px var(--neon-glow);
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-bright);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
  transform: scale(1.3);
}

/* ══════════════════════ WHATSAPP FLOAT ══════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: floatIn 0.6s ease 1s both;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-label {
  white-space: nowrap;
}

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

@media (max-width: 600px) {
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .whatsapp-float-label { display: none; }
}

/* ══════════════════════ SCROLL ANIMATIONS ══════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media (max-width: 900px) {
  nav { display: none; }

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

  .problema-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .problema-vs { text-align: center; padding: 8px; }

  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }

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

  .hero-stats { padding: 20px 24px; }
  .stat { padding: 0 20px; }

  .carousel-btn { width: 40px; height: 40px; font-size: 1.1rem; }
}

@media (max-width: 600px) {
  html, body { overflow-x: hidden; }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 20px; }

  #hero { padding: 110px 0 72px; }
  #hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }

  section { padding: 60px 0; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .hero-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px;
  }
  .stat { padding: 0; width: 100%; text-align: center; }
  .stat-divider { width: 80%; height: 1px; }

  .carousel-wrapper { gap: 8px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1rem; flex-shrink: 0; }

  .section-header h2 { font-size: 1.6rem; }

  .hero-bg-grid { display: none; }

  .step { padding: 24px 20px; }
  .steps-grid { gap: 8px; }

  .audience-card { padding: 28px 20px; }

  .faq-question { font-size: 0.95rem; padding: 16px 18px; }
  .faq-answer p { padding: 0 18px 16px; padding-top: 14px; }

  .whatsapp-float { bottom: 16px; right: 16px; }
}
