/* ============================================================
   FAST GLOSSÁRIO PRO — THEME CSS
   ============================================================ */

:root {
  --bg: #080f1a;
  --bg-card: #0d1a2e;
  --bg-elevated: #111e32;
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(99,179,237,0.25);
  --blue: #3b82f6;
  --blue-light: #63b3ed;
  --blue-glow: rgba(59,130,246,0.15);
  --green: #10b981;
  --green-glow: rgba(16,185,129,0.15);
  --purple: #8b5cf6;
  --amber: #f59e0b;
  --text: #e8f0fe;
  --text-muted: #94a3b8;
  --gray-600: #64748b;
  --radius: 14px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── NAV ── */
nav.fg-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem clamp(1rem, 5vw, 3rem);
  background: rgba(8,15,26,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.nav-logo span.accent { color: var(--blue-light); }
.nav-badge {
  font-size: 0.65rem; font-weight: 500;
  background: var(--blue-glow); border: 1px solid var(--border-accent);
  color: var(--blue-light); padding: 2px 8px; border-radius: 20px;
}
.nav-cta {
  background: var(--blue); color: #fff;
  padding: 0.55rem 1.2rem; border-radius: 8px;
  font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-light); transform: translateY(-1px); }

/* ── HERO ── */
.fg-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px clamp(1rem, 5vw, 3rem) 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59,130,246,0.18) 0%, transparent 65%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(139,92,246,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue-light);
  background: var(--blue-glow); border: 1px solid var(--border-accent);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 1.5rem;
  position: relative;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.5; transform: scale(1.3); }
}
.fg-hero h1 {
  font-size: clamp(1.7rem, 5vw, 3.4rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 1.2rem; position: relative; max-width: 900px;
}
.highlight {
  background: linear-gradient(135deg, var(--blue-light), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted); max-width: 680px;
  margin: 0 auto 2rem; position: relative;
}

/* ── HERO VIDEO ── */
.hero-video-wrap {
  width: 100%; max-width: 820px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.hero-video-inner {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
  background: var(--bg-card);
  position: relative;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; cursor: pointer;
  background: linear-gradient(135deg, #0d1a2e, #111e32);
}
.video-placeholder:hover .play-btn { transform: scale(1.08); }
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #2563eb);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(59,130,246,0.45);
  transition: transform 0.2s;
}
.video-placeholder p { font-size: 0.9rem; color: var(--text-muted); }
.video-embed { display: none; width: 100%; height: 100%; }
.video-embed iframe { width: 100%; height: 100%; border: none; }
.no-video-space { margin-bottom: 2.5rem; }

/* ── HERO CTA GROUP ── */
.hero-cta-group {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 2rem; position: relative;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--blue), #2563eb);
  color: #fff; padding: 0.9rem 2rem;
  border-radius: var(--radius); font-weight: 600; font-size: 1rem;
  box-shadow: 0 4px 24px rgba(59,130,246,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,130,246,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--text); padding: 0.9rem 1.6rem;
  border-radius: var(--radius); font-weight: 500; font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--border-accent); }
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.2rem;
  position: relative;
}
.trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: var(--text-muted);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── SOCIAL PROOF ── */
.fg-social-proof {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.5rem clamp(1rem, 5vw, 3rem);
}
.stat { text-align: center; padding: 0.8rem 1.5rem; }
.stat-num {
  display: block; font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blue-light), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; margin: 0.5rem 0; }

/* ── SECTIONS COMMON ── */
.fg-section { padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 3rem); }
.fg-container { max-width: 1100px; margin: 0 auto; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-light);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text-muted); font-size: 1rem; max-width: 580px;
  margin-bottom: 3rem;
}

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PROBLEM ── */
.fg-problem { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem; margin-top: 2rem;
}
.problem-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--bg-elevated); border: 1px solid var(--border);
  padding: 1.4rem; border-radius: var(--radius);
}
.problem-icon { font-size: 1.6rem; flex-shrink: 0; }
.problem-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.problem-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ── FEATURES ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem; margin-top: 2rem;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.8rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { font-size: 2rem; margin-bottom: 0.9rem; }
.feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); }
.feature-badge {
  display: inline-block; margin-top: 0.8rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--blue-light);
  background: var(--blue-glow); border: 1px solid var(--border-accent);
  padding: 3px 9px; border-radius: 20px;
}
.feature-badge.new { color: var(--green); background: var(--green-glow); border-color: rgba(16,185,129,0.3); }

/* ── USE CASES ── */
.fg-usecases { background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(139,92,246,0.06)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.usecases-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.usecase-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem; text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.usecase-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.usecase-icon { font-size: 2rem; margin-bottom: 0.7rem; }
.usecase-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
.usecase-card p { font-size: 0.8rem; color: var(--text-muted); }

/* ── HOW IT WORKS ── */
.fg-how { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.step {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--blue), #2563eb);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(59,130,246,0.35);
}
.step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--text-muted); }

/* ── COMPARISON ── */
.comparison {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 2rem;
}
.comp-col { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.comp-header {
  padding: 1rem 1.5rem; font-weight: 600; font-size: 0.95rem; text-align: center;
}
.comp-header.bad { background: rgba(239,68,68,0.1); color: #f87171; border-bottom: 1px solid rgba(239,68,68,0.2); }
.comp-header.good { background: rgba(16,185,129,0.1); color: #6ee7b7; border-bottom: 1px solid rgba(16,185,129,0.2); }
.comp-list { padding: 1rem 1.5rem; background: var(--bg-card); }
.comp-item { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.55rem 0; font-size: 0.87rem; border-bottom: 1px solid var(--border); }
.comp-item:last-child { border-bottom: none; }
.comp-icon { flex-shrink: 0; font-weight: 700; }
.comp-icon.bad { color: #f87171; }
.comp-icon.good { color: #6ee7b7; }

/* ── TESTIMONIALS ── */
.fg-testimonials { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.testimonial {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.stars { color: var(--amber); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.a1 { background: linear-gradient(135deg, #3b82f6, #8b5cf6); }
.a2 { background: linear-gradient(135deg, #10b981, #3b82f6); }
.a3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.author-name { font-size: 0.88rem; font-weight: 600; }
.author-role { font-size: 0.75rem; color: var(--text-muted); }

/* ── PRICING ── */
.fg-pricing { background: var(--bg-card); border-top: 1px solid var(--border); }
.pricing-card {
  max-width: 620px; margin: 0 auto;
  background: var(--bg-elevated); border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  box-shadow: 0 0 60px rgba(59,130,246,0.08);
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--blue-light));
}
.pricing-badge {
  display: inline-block; margin-bottom: 1.2rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--amber);
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3);
  padding: 4px 12px; border-radius: 20px;
}
.countdown {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem; flex-wrap: wrap;
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  border-radius: 10px; padding: 0.6rem 1rem; margin-bottom: 1.5rem;
  font-size: 0.85rem; color: #f87171;
}
.countdown-time { font-weight: 700; font-size: 1rem; letter-spacing: 0.05em; }
.pricing-plan { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.price-old { font-size: 1rem; color: var(--gray-600); text-decoration: line-through; margin-bottom: 0.2rem; }
.price-main {
  font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, #fff, var(--blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.price-main sup { font-size: 1.4rem; vertical-align: super; }
.price-note { color: var(--green); font-size: 0.88rem; font-weight: 500; margin: 0.4rem 0; }
.price-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-features {
  list-style: none; text-align: left; margin-bottom: 2rem; display: grid; gap: 0.6rem;
}
.pricing-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--text-muted); }
.pricing-features .icon { color: var(--green); flex-shrink: 0; font-weight: 700; }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: #25d366; color: #fff;
  padding: 0.8rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.92rem; margin-bottom: 0.8rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-buy {
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--blue), #2563eb);
  color: #fff; padding: 1.1rem 2rem;
  border-radius: var(--radius); border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  box-shadow: 0 4px 24px rgba(59,130,246,0.4);
  margin-bottom: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; text-align: center;
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,130,246,0.55); color: #fff; }
.guarantee {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-muted);
}

/* ── FAQ ── */
.fg-faq-wrap { max-width: 720px; margin: 2rem auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.7rem; overflow: hidden; }
.faq-q {
  padding: 1.1rem 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.95rem; font-weight: 500; gap: 1rem;
  transition: background 0.2s;
  -webkit-user-select: none; user-select: none;
}
.faq-q:hover { background: var(--bg-card); }
.faq-chevron { font-size: 1.2rem; color: var(--blue-light); transition: transform 0.3s; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 1.4rem 1.2rem; font-size: 0.87rem; color: var(--text-muted); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ── ABOUT ── */
.fg-about { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.about-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700;
  box-shadow: 0 4px 24px rgba(59,130,246,0.3);
}
.about-inner h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem; }
.about-role { font-size: 0.85rem; color: var(--blue-light); margin-bottom: 1rem; }
.about-inner p { font-size: 0.9rem; color: var(--text-muted); }

/* ── CTA BOTTOM ── */
.fg-cta-bottom {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(59,130,246,0.12) 0%, transparent 70%);
  text-align: center; border-top: 1px solid var(--border);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 3rem);
}
.fg-cta-bottom h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.fg-cta-bottom p { color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-bottom-btn { font-size: 1.1rem; padding: 1rem 2.5rem; }

/* ── FOOTER ── */
.fg-footer {
  text-align: center; padding: 2.5rem clamp(1rem, 5vw, 3rem);
  border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted);
}
.footer-logo { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.7rem; }
.footer-logo span { color: var(--blue-light); }
.fg-footer a { color: var(--blue-light); }
.fg-footer a:hover { text-decoration: underline; }
.glow-line { height: 1px; background: linear-gradient(90deg, transparent, var(--border-accent), transparent); }

/* ── FLOATING BUTTONS ── */
.floating-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  display: flex; flex-direction: column; gap: 0.7rem; z-index: 998;
}
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.whatsapp { background: #25d366; }
.float-btn.buy { background: var(--blue); color: #fff; font-size: 1.4rem; }

/* ============================================================
   MOBILE — 100% OTIMIZADO
   ============================================================ */
@media (max-width: 768px) {
  .stat-divider { display: none; }
  .fg-social-proof { gap: 0; }
  .stat { padding: 0.6rem 1rem; }

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

  .fg-hero { padding-top: 120px; padding-bottom: 60px; }

  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }

  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .usecases-grid { grid-template-columns: 1fr 1fr; }

  .nav-badge { display: none; }

  .pricing-card { padding: 1.5rem 1rem; }

  .faq-q { font-size: 0.88rem; }

  .fg-cta-bottom .cta-bottom-btn { width: 100%; font-size: 0.95rem; padding: 1rem 1.2rem; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }

  .fg-hero h1 { font-size: 1.6rem; }
  .hero-sub { font-size: 0.92rem; }

  .floating-cta { bottom: 1rem; right: 1rem; }
  .float-btn { width: 48px; height: 48px; }

  .comp-item { font-size: 0.82rem; }
}
