/* ============================================
   NIMBRO LP — Landing Page de Vendas Arquitetos
   Design: Purple (#8B5CF6) + Cyan (#06B6D4) + Obsidian
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --surface: #0a0a14;
  --surface-low: #111120;
  --surface-card: #17172a;
  --surface-card-hover: #1e1e34;
  --surface-high: #28283f;
  --primary: #8B5CF6;
  --primary-dim: #7C3AED;
  --primary-bright: #A78BFA;
  --secondary: #d0bcff;
  --secondary-container: #571bc1;
  --tertiary: #06B6D4;
  --tertiary-bright: #22D3EE;
  --text: #e3e0f8;
  --text-muted: #a0a3b5;
  --outline: rgba(66, 70, 86, 0.15);
  --green: #25D366;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--surface);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
}
::selection { background: var(--primary); color: white; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--tertiary-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glass {
  background: rgba(42, 42, 66, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--outline);
}

/* ── Background Orbs ── */
.bg-orbs { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: -1; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.2; }
.orb--1 { width: 500px; height: 500px; background: var(--primary); top: -10%; left: -10%; animation: orbFloat 20s ease-in-out infinite alternate; }
.orb--2 { width: 400px; height: 400px; background: var(--secondary-container); bottom: -10%; right: -10%; animation: orbFloat 25s ease-in-out infinite alternate-reverse; }
.orb--3 { width: 300px; height: 300px; background: var(--tertiary); top: 40%; right: 20%; animation: orbFloat 18s ease-in-out infinite alternate; }
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
  100% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Particles */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.particle {
  position: absolute; width: 2px; height: 2px;
  background: rgba(139, 92, 246, 0.4); border-radius: 50%;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s var(--ease);
}
.reveal--visible { opacity: 1; transform: translateY(0); }

/* ══════════ URGENCY BAR ══════════ */
.urgency-bar {
  background: linear-gradient(135deg, var(--primary-dim), var(--secondary-container));
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
  position: sticky;
  top: 0;
  z-index: 200;
}
.urgency-bar strong { color: var(--tertiary-bright); }
.urgency-counter {
  display: inline-block;
  background: #ef4444;
  color: white;
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 15px;
  animation: counterPulse 2s ease-in-out infinite;
  margin: 0 2px;
}
@keyframes counterPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); box-shadow: 0 0 12px rgba(239, 68, 68, 0.5); }
}

/* ══════════ NAVIGATION ══════════ */
.nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  max-width: 900px;
  margin: 12px auto 0;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9999px;
  background: rgba(10, 10, 20, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.4s var(--ease);
}
.nav__logo-text { font-size: 24px; font-weight: 800; color: white; letter-spacing: -0.02em; }
.nav__logo-dot { color: var(--primary); }
.nav__links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav__link {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  transition: color 0.3s; letter-spacing: -0.01em;
}
.nav__link:hover { color: white; }
.nav__cta {
  background: linear-gradient(135deg, var(--primary), var(--tertiary));
  color: white; padding: 10px 24px; border-radius: 9999px;
  font-weight: 700; font-size: 13px; transition: all 0.3s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav__cta:hover { transform: scale(1.05); box-shadow: 0 0 25px rgba(139, 92, 246, 0.4); }
.nav__toggle { display: none; color: white; font-size: 28px; }

/* ══════════ HERO ══════════ */
.hero {
  position: relative; min-height: 90vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 100px 24px 60px; text-align: center; overflow: hidden;
}
.hero__badge {
  display: inline-block; padding: 8px 20px; border-radius: 9999px;
  margin-bottom: 24px; color: var(--tertiary-bright);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
}
.hero__title {
  font-size: clamp(32px, 6vw, 64px); font-weight: 800;
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 24px; max-width: 820px;
}
.hero__subtitle {
  font-size: 17px; color: var(--text-muted); max-width: 600px;
  margin: 0 auto 16px; line-height: 1.7; font-weight: 400;
}
.hero__highlight {
  color: var(--green); font-weight: 800;
}
.hero__price {
  font-size: 15px; color: var(--text-muted); margin-bottom: 32px;
}
.hero__price strong {
  font-size: 28px; font-weight: 800; color: white;
}
.hero__price .old-price {
  text-decoration: line-through; opacity: 0.5; font-size: 16px;
}
.hero__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--green), #128C7E);
  color: white; padding: 18px 44px; border-radius: 9999px;
  font-weight: 800; font-size: 17px; transition: all 0.4s var(--ease);
  position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.4);
}
.btn-ghost {
  padding: 18px 44px; border-radius: 9999px; font-weight: 700;
  font-size: 17px; color: white; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { background: var(--surface-high); }

/* Hero Mockup */
.hero__mockup {
  margin-top: 48px; max-width: 800px; width: 100%;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.15);
  transition: transform 0.6s var(--ease);
}
.hero__mockup:hover { transform: scale(1.02); }
.hero__mockup img { width: 100%; height: auto; }

/* ══════════ STATS ══════════ */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 700px; width: 100%;
  margin: 48px auto 0; padding-bottom: 20px;
}
.stat { text-align: center; }
.stat__number { font-size: 32px; font-weight: 800; color: white; }
.stat__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-muted); margin-top: 4px;
}

/* ══════════ SOCIAL PROOF / CASE STUDY ══════════ */
.social-proof { padding: 80px 0 40px; }
.case-study {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 40px; align-items: center;
  padding: 48px 40px; border-radius: 24px;
  max-width: 900px; margin: 0 auto;
  border: 1px solid rgba(139, 92, 246, 0.15);
}
.case-study__photo img {
  width: 160px; height: 160px; object-fit: cover;
  border-radius: 50%; border: 3px solid var(--primary);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}
.case-study__title {
  font-size: clamp(20px, 3vw, 28px); font-weight: 800;
  color: white; line-height: 1.3; margin-bottom: 12px;
}
.case-study__hero-value {
  margin-bottom: 20px; padding: 24px; text-align: center;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 16px;
}
.case-study__hero-label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--green); margin-bottom: 4px;
}
.case-study__hero-number {
  font-size: clamp(48px, 8vw, 72px); font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--green), var(--tertiary-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(37, 211, 102, 0.3));
}
.case-study__quote {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  font-style: italic; margin-bottom: 16px;
  border-left: 3px solid var(--primary); padding-left: 16px;
}
.case-study__author { margin-bottom: 20px; }
.case-study__author strong {
  color: white; font-size: 15px; display: block;
}
.case-study__author span {
  color: var(--text-muted); font-size: 12px;
}
.case-study__results {
  display: flex; gap: 16px; margin-bottom: 16px;
}
.case-result {
  text-align: center; flex: 1;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px; padding: 20px 16px;
}
.case-result__number {
  font-size: 36px; font-weight: 900; display: block; line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--tertiary-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 6px;
}
.case-result__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted);
}
.case-result--hero {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.3);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.1);
}
.case-result--hero .case-result__number {
  font-size: 48px;
  background: linear-gradient(135deg, var(--green), var(--tertiary-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-study__link {
  display: inline-block; font-size: 13px; font-weight: 700;
  color: var(--tertiary-bright); transition: color 0.3s;
}
.case-study__link:hover { color: white; }
.social-proof__tagline {
  text-align: center; margin-top: 40px;
  font-size: 18px; color: var(--text-muted);
}
.social-proof__tagline strong { color: white; }

/* ══════════ FEATURES ══════════ */
.features { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--primary-bright); margin-bottom: 12px; display: block;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  letter-spacing: -0.03em; color: white;
}
.section-subtitle {
  color: var(--text-muted); max-width: 500px; margin: 12px auto 0; font-size: 15px;
}
.features__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 900px; margin: 0 auto;
}
.feature-card {
  padding: 40px 32px; border-radius: 20px;
  transition: all 0.5s var(--ease); border: 1px solid transparent;
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
  transform: translateY(-4px);
}
.feature-card__icon {
  font-size: 36px; margin-bottom: 20px; display: block;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), transparent);
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px; border: 1px solid rgba(139, 92, 246, 0.2);
}
.feature-card__title {
  font-size: 20px; font-weight: 700; color: white; margin-bottom: 10px;
}
.feature-card__desc {
  font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 400;
}
.feature-card__highlight {
  display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 700;
  color: var(--tertiary-bright); letter-spacing: 0.05em;
}

/* ══════════ CTA SECTION ══════════ */
.cta-section {
  padding: 80px 24px; text-align: center;
  background: var(--surface-low);
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
}
.cta-section__title {
  font-size: clamp(24px, 4vw, 36px); font-weight: 800;
  color: white; margin-bottom: 8px;
}
.cta-section__subtitle {
  color: var(--text-muted); margin-bottom: 32px; font-size: 15px;
}

/* ══════════ DEMO PREVIEW ══════════ */
.demo-preview { padding: 100px 0; }
.demo-preview__wrapper {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.demo-preview__content { position: relative; }
.demo-preview__img {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border: 1px solid var(--outline);
  transition: transform 0.4s var(--ease);
}
.demo-preview__img:hover { transform: scale(1.02); }
.demo-preview__img img { width: 100%; height: auto; }
.demo-preview__list {
  list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px;
}
.demo-preview__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted);
}
.demo-preview__list li::before {
  content: '✓'; color: var(--green); font-weight: 700; font-size: 16px;
}

/* ══════════ HOW IT WORKS ══════════ */
.how-it-works { padding: 100px 0; background: var(--surface-low); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 900px; margin: 0 auto;
}
.step { text-align: center; padding: 32px 24px; }
.step__number {
  font-size: 48px; font-weight: 900; color: var(--primary);
  opacity: 0.3; margin-bottom: 12px;
}
.step__title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 8px; }
.step__desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ══════════ PRICING ══════════ */
.pricing { padding: 100px 24px; }
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1000px; margin: 0 auto; align-items: center;
}
.price-card {
  padding: 40px 32px; border-radius: 20px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-8px); }
.price-card--featured {
  background: var(--surface-card-hover);
  border: 1px solid var(--primary);
  box-shadow: 0 0 50px rgba(139, 92, 246, 0.15);
  transform: scale(1.05); position: relative; z-index: 5;
}
.price-card--featured:hover { transform: scale(1.05) translateY(-8px); }
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; background: linear-gradient(135deg, var(--primary), var(--tertiary));
  color: white; font-size: 10px; font-weight: 800;
  text-transform: uppercase; border-radius: 9999px; white-space: nowrap;
}
.price-card__tier {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 12px; color: var(--primary-bright);
}
.price-card__amount { font-size: 44px; font-weight: 900; color: white; margin-bottom: 4px; }
.price-card__amount span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.price-card__billing { font-size: 12px; color: var(--text-muted); opacity: 0.7; margin-bottom: 24px; }
.price-card__features { list-style: none; flex-grow: 1; margin-bottom: 24px; }
.price-card__features li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; font-size: 14px; color: var(--text-muted);
}
.price-card__features li::before {
  content: '✓'; color: var(--primary-bright); font-weight: 700;
}
.price-card__guarantee {
  text-align: center; font-size: 11px; color: var(--text-muted);
  margin-top: 12px; opacity: 0.7;
}
.price-card__btn {
  width: 100%; padding: 14px; border-radius: 9999px;
  font-weight: 700; font-size: 14px; border: none;
  cursor: pointer; transition: all 0.3s;
}
.price-card__btn--primary {
  background: linear-gradient(135deg, var(--green), #128C7E);
  color: white;
}
.price-card__btn--primary:hover { box-shadow: 0 0 25px rgba(37, 211, 102, 0.4); }
.price-card__btn--ghost {
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.1);
}
.price-card__btn--ghost:hover { background: white; color: var(--surface); }

/* ══════════ FAQ ══════════ */
.faq { padding: 100px 24px; background: var(--surface-low); }
.faq__list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--outline); border-radius: 12px;
  overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(139, 92, 246, 0.3); }
.faq-item__question {
  width: 100%; padding: 20px 24px; display: flex;
  align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 600; color: white;
  text-align: left; background: var(--surface-card);
  cursor: pointer; transition: background 0.3s;
}
.faq-item__question:hover { background: var(--surface-card-hover); }
.faq-item__icon {
  font-size: 18px; color: var(--primary-bright);
  transition: transform 0.3s;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s;
  padding: 0 24px; font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-item__answer {
  max-height: 300px; padding: 0 24px 20px;
}

/* ══════════ FOUNDER ══════════ */
.founder-section { padding: 80px 0; }
.founder {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 32px; align-items: center;
  padding: 40px 36px; border-radius: 24px;
  max-width: 800px; margin: 0 auto;
  border: 1px solid rgba(6, 182, 212, 0.15);
}
.founder__photo img {
  width: 140px; height: 140px; object-fit: cover;
  border-radius: 50%; border: 3px solid var(--tertiary);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.15);
}
.founder__name {
  font-size: 22px; font-weight: 800; color: white; margin-bottom: 2px;
}
.founder__role {
  font-size: 13px; color: var(--tertiary-bright); font-weight: 600; margin-bottom: 12px;
}
.founder__quote {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  font-style: italic; margin-bottom: 16px;
  border-left: 3px solid var(--tertiary); padding-left: 16px;
}
.founder__social { display: flex; gap: 10px; }
.founder__social-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 10px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08); color: var(--text-muted);
  transition: all 0.3s; text-decoration: none; font-size: 13px;
}
.founder__social-link svg { flex-shrink: 0; }
.founder__social-link:hover { color: white; border-color: var(--tertiary); }

/* ══════════ FINAL CTA ══════════ */
.final-cta {
  padding: 80px 24px; text-align: center;
}
.final-cta__title {
  font-size: clamp(24px, 4vw, 40px); font-weight: 800;
  color: white; margin-bottom: 12px;
}
.final-cta__subtitle { color: var(--text-muted); margin-bottom: 32px; font-size: 15px; }

/* ══════════ FOOTER ══════════ */
.footer {
  padding: 48px 24px; text-align: center;
  border-top: 1px solid var(--outline);
}
.footer__brand { font-size: 20px; font-weight: 800; color: white; margin-bottom: 12px; }
.footer__brand-dot { color: var(--primary); }
.footer__links {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 12px;
}
.footer__social {
  color: var(--text-muted); transition: color 0.3s;
  display: flex; align-items: center;
}
.footer__social:hover { color: var(--primary-bright); }
.footer__link {
  font-size: 13px; color: var(--text-muted); transition: color 0.3s;
}
.footer__link:hover { color: white; }
.footer__copy { font-size: 11px; color: var(--text-muted); opacity: 0.5; margin-bottom: 4px; }
.footer__cnpj { font-size: 10px; color: var(--text-muted); opacity: 0.35; }

/* ══════════ WHATSAPP FLOAT ══════════ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 999; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s; animation: waBounce 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; }
  .price-card--featured { transform: none; order: -1; }
  .price-card--featured:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  /* Global mobile fix */
  .container { padding: 0 16px; }

  /* Nav */
  .nav { margin: 8px 12px 0; padding: 10px 16px; top: 42px; max-width: calc(100% - 24px); }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__cta { padding: 8px 14px; font-size: 11px; white-space: nowrap; }

  /* Urgency bar */
  .urgency-bar { font-size: 12px; padding: 10px 12px; white-space: normal; word-break: break-word; }

  /* Hero */
  .hero { padding: 70px 16px 40px; min-height: auto; }
  .hero__badge { font-size: 10px; padding: 6px 14px; letter-spacing: 0.08em; }
  .hero__title { font-size: clamp(22px, 6.5vw, 36px); word-break: break-word; }
  .hero__title br { display: none; }
  .hero__subtitle { font-size: 14px; }
  .hero__subtitle br { display: none; }
  .hero__price strong { font-size: 22px; }
  .hero__mockup { margin-top: 32px; max-width: 100%; }
  .btn-primary { font-size: 15px; padding: 14px 24px; }
  .btn-ghost { font-size: 14px; padding: 14px 24px; }

  /* Stats */
  .stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat__number { font-size: 20px; }
  .stat__label { font-size: 9px; letter-spacing: 0.08em; }

  /* Sections */
  section { overflow: hidden; }
  .section-eyebrow { font-size: 10px; }
  .section-title { font-size: clamp(20px, 5vw, 30px); }

  /* Features */
  .features__grid { grid-template-columns: 1fr; max-width: 100%; margin: 0 auto; }
  .feature-card { padding: 24px 20px; }

  /* Demo preview */
  .demo-preview__wrapper { grid-template-columns: 1fr; text-align: center; }

  /* Steps */
  .steps { grid-template-columns: 1fr; max-width: 100%; }

  /* Case study */
  .case-study { grid-template-columns: 1fr; text-align: center; padding: 24px 20px; }
  .case-study__photo { justify-self: center; }
  .case-study__quote { border-left: none; padding-left: 0; border-top: 3px solid var(--primary); padding-top: 16px; }
  .case-study__results { justify-content: center; flex-wrap: wrap; }

  /* Founder */
  .founder { grid-template-columns: 1fr; text-align: center; padding: 24px 20px; }
  .founder__photo { justify-self: center; }
  .founder__photo img { width: 100px; height: 100px; }
  .founder__quote { border-left: none; padding-left: 0; border-top: 3px solid var(--tertiary); padding-top: 16px; font-size: 13px; }
  .founder__social { justify-content: center; }
  .founder-section { padding: 40px 0; }

  /* Final CTA */
  .final-cta { padding: 48px 16px; }
}

@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .urgency-bar { font-size: 11px; padding: 8px 10px; }
  .hero__title { font-size: 22px; }
  .hero__subtitle { font-size: 13px; }
  .nav__logo-text { font-size: 18px; }
  .stat__number { font-size: 18px; }
  .founder__name { font-size: 18px; }
  .founder__role { font-size: 12px; }
  .case-study__revenue { font-size: clamp(36px, 12vw, 60px); }
}

