/* ==========================================================================
   2R SALES (2R GROWTH) - DESIGN SYSTEM & STYLESHEET
   Estilo: High-Tech Dark Mode (Inspiração: Ticto.com.br & Mockup Solar Amber)
   ========================================================================== */

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

:root {
  /* Cores Base Escuras */
  --bg-dark: #070A0F;
  --bg-dark-surface: #0D121D;
  --bg-card: #131A29;
  --bg-card-hover: #1A2438;
  --bg-input: #0B0F17;

  /* Bordas e Linhas */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-solar: rgba(255, 107, 0, 0.4);
  --border-blue: rgba(0, 210, 255, 0.4);

  /* Paleta Solar & IA (Inspirada no briefing e imagem) */
  --primary-solar: #FF6B00;
  --solar-hover: #E05D00;
  --solar-gold: #FFA800;
  --primary-blue: #0066FF;
  --cyan-accent: #00D2FF;
  --success-green: #10B981;

  /* Tipografia */
  --text-white: #FFFFFF;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-dark: #070A0F;

  --font-title: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Efeitos e Sombras */
  --glow-solar: 0 0 25px rgba(255, 107, 0, 0.35);
  --glow-blue: 0 0 25px rgba(0, 210, 255, 0.3);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: radial-gradient(circle at 50% 0%, #151D2F 0%, #070A0F 70%);
  background-attachment: fixed;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition-normal);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
  background: rgba(7, 10, 15, 0.85);
  padding: 0.85rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo img {
  height: 42px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-solar {
  background: linear-gradient(135deg, var(--primary-solar) 0%, var(--solar-gold) 100%);
  color: var(--text-white);
  box-shadow: var(--glow-solar);
}

.btn-solar:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 107, 0, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--border-medium);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--cyan-accent);
  color: var(--cyan-accent);
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid var(--border-solar);
  color: var(--solar-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-solar);
  box-shadow: 0 0 10px var(--primary-solar);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.text-gradient-solar {
  background: linear-gradient(135deg, #FF6B00 0%, #FFA800 50%, #FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #00D2FF 0%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-features-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.hero-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-features-list svg {
  color: var(--cyan-accent);
}

/* ==========================================================================
   HERO MOCKUP (INTERACTIVE AI SIMULATOR CHAT)
   ========================================================================== */
.hero-mockup-wrapper {
  position: relative;
}

.hero-mockup-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), var(--glow-blue);
  overflow: hidden;
  position: relative;
}

.mockup-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.mockup-header-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.ai-avatar-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-solar), var(--primary-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--success-green);
  font-weight: 600;
}

.mockup-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 380px;
}

.chat-bubble {
  max-width: 88%;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.45;
  animation: fadeInMsg 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.chat-bubble.ai {
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.2);
  color: var(--text-primary);
  align-self: flex-start;
  border-top-left-radius: 4px;
}

.chat-bubble.user {
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--text-white);
  align-self: flex-end;
  border-top-right-radius: 4px;
}

.solar-result-card {
  background: rgba(7, 10, 15, 0.7);
  border: 1px solid var(--border-solar);
  border-radius: 12px;
  padding: 0.9rem;
  margin-top: 0.5rem;
}

.solar-metric-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
}

.solar-metric-row span:last-child {
  font-weight: 700;
  color: var(--solar-gold);
}

.handoff-banner {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(0, 210, 255, 0.2));
  border: 1px solid var(--success-green);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
  margin-top: 0.4rem;
}

/* Float Floating Badge on Mockup */
.floating-stat-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.stat-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid var(--primary-solar);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-solar);
}

.stat-info .stat-num {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-white);
  line-height: 1.1;
}

.stat-info .stat-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   METRICS COUNTER BAR
   ========================================================================== */
.metrics-section {
  padding: 3.5rem 0;
  border-y: 1px solid var(--border-light);
  background: rgba(13, 18, 29, 0.5);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric-card {
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.metric-card:hover {
  border-color: var(--border-solar);
  transform: translateY(-4px);
  background: rgba(255, 107, 0, 0.04);
}

.metric-value {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   ANTES VS DEPOIS (O GARGALO DA ENERGIA SOLAR)
   ========================================================================== */
.comparison-section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.comp-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.comp-card.old-way {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.comp-card.new-way {
  background: rgba(0, 210, 255, 0.05);
  border: 1px solid var(--border-blue);
  box-shadow: var(--glow-blue);
}

.comp-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.comp-card.old-way .comp-badge {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}

.comp-card.new-way .comp-badge {
  background: rgba(0, 210, 255, 0.15);
  color: var(--cyan-accent);
}

.comp-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
}

.comp-list svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.comp-card.old-way svg { color: #EF4444; }
.comp-card.new-way svg { color: var(--success-green); }

/* ==========================================================================
   COMO FUNCIONA (FLUXO EM 4 PASSOS)
   ========================================================================== */
.how-it-works-section {
  padding: 6rem 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition-normal);
}

.step-card:hover {
  border-color: var(--border-solar);
  transform: translateY(-6px);
}

.step-num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  line-height: 1;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid var(--border-solar);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-solar);
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   SIMULADOR INTERATIVO (DEMO AO VIVO DA IA)
   ========================================================================== */
.simulator-section {
  padding: 6rem 0;
}

.sim-box {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.sim-controls {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.input-control {
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--text-white);
  outline: none;
  transition: var(--transition-fast);
}

.input-control:focus {
  border-color: var(--primary-solar);
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.25);
}

.sim-result-box {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==========================================================================
   GRID DE RECURSOS / FEATURES
   ========================================================================== */
.features-section {
  padding: 6rem 0;
  background: rgba(13, 18, 29, 0.3);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  transition: var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--cyan-accent);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-accent);
  margin-bottom: 1.25rem;
}

.feature-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   FORMULÁRIO DE CAPTAÇÃO / LEAD (HOSTINGER READY)
   ========================================================================== */
.cta-form-section {
  padding: 6rem 0;
  position: relative;
}

.cta-card {
  background: linear-gradient(135deg, #0F172A 0%, #070A0F 100%);
  border: 1px solid var(--border-solar);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: var(--shadow-card), var(--glow-solar);
}

.cta-info h2 {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

.cta-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cta-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.cta-benefits-list svg {
  color: var(--primary-solar);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-feedback {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-feedback.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--success-green);
  color: var(--success-green);
  display: block;
}

.form-feedback.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #EF4444;
  color: #EF4444;
  display: block;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 1.4rem 1.8rem;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  font-size: 1.4rem;
  transition: var(--transition-fast);
  color: var(--primary-solar);
}

.faq-answer {
  padding: 0 1.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: var(--border-solar);
}

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

.faq-item.active .faq-answer {
  padding-bottom: 1.4rem;
  max-height: 300px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 4rem 0 2rem 0;
  background: #040609;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-white);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .comparison-grid, .sim-box, .cta-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .hero-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .steps-grid, .features-grid, .metrics-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-stat-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 1rem;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }
}
