/* ============================================================
   DO ZERO AO BRIQUE — Landing Page Styles
   Brand: #2152FD (blue) → #4f46e5 → #818cf8
   Font: Poppins
   ============================================================ */

:root {
  --primary:       #2152FD;
  --primary-dark:  #1640d4;
  --secondary:     #818cf8;
  --gold:          #f59e0b;
  --gold-dark:     #b45309;
  --slate-900:     #0f172a;
  --slate-800:     #1e293b;
  --slate-700:     #334155;
  --slate-600:     #475569;
  --slate-500:     #64748b;
  --slate-50:      #f8fafc;
  --radius:        20px;
  --shadow:        0 24px 48px -20px rgba(15,23,42,0.35);
  --shadow-brand:  0 20px 40px -18px rgba(33,82,253,0.55);
  --grad:          linear-gradient(135deg, #2152FD 0%, #4f46e5 55%, #818cf8 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--slate-900);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1),
              transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal.revealed { opacity: 1; transform: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.m-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease,
              border-color 0.4s ease, backdrop-filter 0.4s ease;
}
.m-nav-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px -24px rgba(15,23,42,0.35);
  border-bottom-color: rgba(33,82,253,0.12);
}


/* Garante que o ícone nunca estoure o tamanho da navbar */
.m-nav img { height: 36px; width: auto; display: block; flex-shrink: 0; }

/* Ícone branco sobre o hero azul */
.m-nav:not(.m-nav-scrolled) img[alt="Brique"] {
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

/* Links e brand brancos quando nav transparente (sobre hero) */
.m-nav:not(.m-nav-scrolled) .m-nav-link { color: rgba(255,255,255,0.85); }
.m-nav:not(.m-nav-scrolled) .m-nav-link:hover { color: #fff; }
.m-nav:not(.m-nav-scrolled) .m-nav-brand-prefix { color: rgba(255,255,255,0.9); }
.m-nav:not(.m-nav-scrolled) .m-nav-brand-name {
  background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.m-nav:not(.m-nav-scrolled) .m-btn-primary {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: none;
  color: #fff;
}
.m-nav:not(.m-nav-scrolled) .m-btn-primary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
/* Mobile menu button branco quando nav transparente */
.m-nav:not(.m-nav-scrolled) #mobileMenuBtn {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.m-nav-brand { line-height: 1.2; }
.m-nav-brand-inline {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
}
.m-nav-brand-prefix { color: #0f172a; }
.m-nav-brand-name {
  background: linear-gradient(135deg, #2152FD 0%, #4f46e5 60%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.m-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  position: relative;
  transition: color 0.25s ease;
  padding-bottom: 2px;
}
.m-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width 0.3s ease;
}
.m-nav-link:hover { color: var(--primary); }
.m-nav-link:hover::after { width: 100%; }

/* ============================================================
   BUTTONS
   ============================================================ */
.m-btn-primary,
.m-btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  letter-spacing: 0.01em;
}
.m-btn-primary {
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
  box-shadow: 0 14px 28px -14px rgba(33,82,253,0.6);
}
.m-btn-primary-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  box-shadow: 0 18px 36px -16px rgba(33,82,253,0.6);
}
.m-btn-primary:hover,
.m-btn-primary-lg:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 24px 44px -16px rgba(33,82,253,0.75);
}

.m-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 14px 28px -14px rgba(37,211,102,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.m-btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -14px rgba(37,211,102,0.65);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.m-mobile-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,23,42,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 16px;
}
.m-mobile-open { opacity: 1; }
.m-mobile-panel {
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  border-radius: 26px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 64px -24px rgba(15,23,42,0.55);
  transform: translateX(-110%);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
  overflow-y: auto;
}
.m-mobile-panel-open { transform: none; }
.m-mobile-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  color: var(--slate-700);
  background: var(--slate-50);
  border: 1px solid rgba(148,163,184,0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.m-mobile-link:hover {
  transform: translateX(5px);
  border-color: rgba(33,82,253,0.25);
  background: #eef2ff;
}

/* ============================================================
   HERO
   ============================================================ */
.m-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 68px;
}
.m-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #0a1235 0%, #0d1d6b 32%, #1640d4 65%, #2152FD 100%);
  z-index: 0;
}
.m-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 5% 15%,  rgba(255,255,255,0.07), transparent 55%),
    radial-gradient(ellipse 50% 55% at 95% 85%, rgba(255,255,255,0.05), transparent 55%);
  pointer-events: none;
}
.m-hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(33,82,253,0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}
.m-hero-title-break {
  display: block;
  margin-bottom: 0.55em;
}
.m-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}
.m-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #cbd5e1;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Gradient texts */
.m-gradient-text {
  background: linear-gradient(90deg, #93c5fd 0%, #818cf8 45%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.m-gradient-text-dark {
  background: linear-gradient(90deg, #2152FD 0%, #4f46e5 55%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.m-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(33,82,253,0.18);
  border: 1px solid rgba(33,82,253,0.35);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.m-hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.8);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 6px rgba(74,222,128,0.8); }
  50%       { box-shadow: 0 0 14px rgba(74,222,128,1); }
}

.m-hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.m-bullet {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(33,82,253,0.2);
  border: 1px solid rgba(33,82,253,0.3);
  color: #bfdbfe;
  font-size: 0.82rem;
  font-weight: 500;
}
.m-bullet i { color: #93c5fd; font-size: 0.9rem; }

/* Hero CTAs */
.m-cta-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 20px 40px -14px rgba(33,82,253,0.75);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  white-space: nowrap;
}
.m-cta-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 28px 50px -14px rgba(33,82,253,0.88);
}
.m-cta-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  transition: transform 0.28s ease, background 0.28s ease;
  white-space: nowrap;
}
.m-cta-hero-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.18);
}

.m-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  color: #94a3b8;
  font-size: 0.82rem;
}
.m-trust-sep {
  width: 1px; height: 14px;
  background: rgba(148,163,184,0.35);
}

/* Hero floating cards */
/* ── Hero grid layout ── */
.m-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  width: 100%;
  min-width: 0;
}
.m-hero-grid > * {
  min-width: 0;
  max-width: 100%;
}
@media (max-width: 900px) {
  .m-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .m-hero-visual { padding: 1.5rem 0.5rem; overflow: hidden; }
  .m-mock-badge { display: none; }
}

/* ── Hero visual column ── */
.m-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  align-self: center;
  margin-top: -3rem;
}

/* ── Dashboard device frame ── */
.m-mock-device {
  width: 100%;
  max-width: 380px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 1.5rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.18);
  animation: float1 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* App window header dots */
.m-mock-app-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.m-mock-app-dots {
  display: flex;
  gap: 5px;
}
.m-mock-app-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.m-mock-app-dots span:nth-child(1) { background: rgba(255,100,100,0.6); }
.m-mock-app-dots span:nth-child(2) { background: rgba(255,200,50,0.6); }
.m-mock-app-dots span:nth-child(3) { background: rgba(50,210,130,0.6); }
.m-mock-app-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-1.5rem);
}

/* Balance */
.m-mock-balance { margin-bottom: 1rem; }
.m-mock-bal-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.m-mock-bal-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.m-mock-bal-growth {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.35rem;
  padding: 0.2rem 0.6rem;
  background: rgba(52,211,153,0.15);
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #34d399;
}

/* Chart */
.m-mock-chart-wrap {
  margin: 0 -0.25rem 1rem;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,0.15);
  padding: 0.5rem 0.25rem 0;
}
.m-mock-chart-svg {
  width: 100%;
  height: 90px;
  display: block;
}
.m-chart-line {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: drawChart 2s ease-out 0.6s forwards;
}
.m-chart-area {
  opacity: 0;
  animation: fadeInChart 1.5s ease-out 0.8s forwards;
}
.m-chart-dot {
  opacity: 0;
  animation: fadeInChart 0.5s ease-out 2.4s forwards;
}
.m-chart-dot-pulse {
  opacity: 0;
  animation: pulseDot 2s ease-out 2.4s infinite;
}
@keyframes drawChart {
  to { stroke-dashoffset: 0; }
}
@keyframes fadeInChart {
  to { opacity: 1; }
}
@keyframes pulseDot {
  0%   { opacity: 0.8; r: 5px; }
  50%  { opacity: 0; r: 12px; }
  100% { opacity: 0; r: 14px; }
}
.m-mock-chart-axis {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0.5rem 0.5rem;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

/* Stats */
.m-mock-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.6rem;
}
.m-mock-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.7rem 0.5rem;
  text-align: center;
}
.m-mock-stat-icon {
  width: 2rem; height: 2rem;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.4rem;
  font-size: 0.9rem;
}
.m-mock-stat-lbl {
  font-size: 0.63rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.m-mock-stat-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* ── Floating badges ── */
.m-mock-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.875rem;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  z-index: 4;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.4);
}
.m-mock-b-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.m-mock-b1 { top: -1rem;    right: -0.75rem; animation: float2 4.5s ease-in-out infinite; }
.m-mock-b2 { top: -1rem;    left: -0.75rem;  animation: float3 5s ease-in-out infinite 0.8s; }
.m-mock-b3 { bottom: -1rem; right: -0.75rem; animation: float1 5.5s ease-in-out infinite 0.4s; }

@keyframes float1 { 0%,100%{transform:translateY(0)}   50%{transform:translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:translateY(-5px)} 50%{transform:translateY(6px)}   }
@keyframes float3 { 0%,100%{transform:translateY(0)}   50%{transform:translateY(-8px)}  }

/* Glow behind device */
.m-hero-visual::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(33,82,253,0.35) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: 0;
}

/* Mobile: hide badges on very small, keep device */
@media (max-width: 480px) {
  .m-mock-badge { display: none; }
  .m-mock-device { max-width: 100%; }
  .m-hero-visual { padding: 0.5rem 0; margin-top: 0; overflow: hidden; }
}

/* ============================================================
   ANCHOR PHRASE
   ============================================================ */
.m-anchor-phrase {
  background: linear-gradient(135deg, #2152FD 0%, #4f46e5 55%, #818cf8 100%);
  padding: 1.5rem 0;
  text-align: center;
}
.m-anchor-phrase p {
  color: #e0e7ff;
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  font-weight: 500;
  line-height: 1.5;
}
.m-anchor-phrase strong { color: #fff; font-weight: 800; }

/* ============================================================
   SECTIONS BASE
   ============================================================ */
.m-section        { padding: 5rem 0; background: #fff; }
.m-section-alt    { padding: 5rem 0; background: var(--slate-50); }

/* Section: DOR — escuro com glow #2152FD */
.m-section-pain {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(160deg, #04061a 0%, #080d2a 55%, #040815 100%);
}
.m-section-pain::before {
  content: '';
  position: absolute;
  width: 700px; height: 550px;
  top: -200px; left: -150px;
  background: radial-gradient(ellipse, rgba(33,82,253,0.3), transparent 62%);
  pointer-events: none; z-index: 0;
}
.m-section-pain::after {
  content: '';
  position: absolute;
  width: 600px; height: 500px;
  bottom: -150px; right: -100px;
  background: radial-gradient(ellipse, rgba(79,70,229,0.2), transparent 62%);
  pointer-events: none; z-index: 0;
}
.m-section-pain > .container { position: relative; z-index: 1; }

/* Section: SOLUÇÃO — gradiente azul vibrante */
.m-section-solution {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(145deg, #0a1235 0%, #0d1d6b 32%, #1640d4 65%, #2152FD 100%);
}
.m-section-solution::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 5% 15%,  rgba(255,255,255,0.07), transparent 55%),
    radial-gradient(ellipse 50% 55% at 95% 85%, rgba(255,255,255,0.05), transparent 55%);
  pointer-events: none; z-index: 0;
}
.m-section-solution > .container { position: relative; z-index: 1; }

/* Section: DEEP DARK — kept for compatibility */
.m-section-deep {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 70% 60% at 5%  50%, rgba(33,82,253,0.2),  transparent 55%),
    radial-gradient(ellipse 60% 70% at 95% 30%, rgba(129,140,248,0.1), transparent 55%),
    linear-gradient(160deg, #06091e 0%, #0c0f28 60%, #080b1a 100%);
}

/* Section: BLUE TINT — soft light blue (Mentor) */
.m-section-blue-tint {
  padding: 5rem 0;
  background: linear-gradient(145deg, #f0f5ff 0%, #e8efff 50%, #f5f8ff 100%);
  border-top: 1px solid rgba(33,82,253,0.08);
  border-bottom: 1px solid rgba(33,82,253,0.08);
}

/* Section: IMAGINE / MÓDULOS — dark violet/indigo */
.m-section-imagine {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(155deg, #0d0520 0%, #1a0a35 40%, #2d1060 75%, #1a0a3a 100%);
}
.m-section-imagine::before,
.m-section-imagine::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.m-section-imagine::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
  top: 10%; left: -100px;
  z-index: 0;
}
.m-section-imagine::after {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(192,132,252,0.2) 0%, transparent 70%);
  bottom: 10%; right: -80px;
  z-index: 0;
}
.m-section-imagine > .container { position: relative; z-index: 1; }

/* Section: DARK — Diferenciais */
.m-section-dark {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(33,82,253,0.16), transparent 60%),
    #080a1e;
}

/* Section: GOLD */
.m-section-gold {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 60%, #fde68a 100%);
}

/* Section: PRICE */
.m-section-price {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fffbeb 0%, #fef9ee 60%, #fff7ed 100%);
  border-top: 1px solid rgba(245,158,11,0.2);
  border-bottom: 1px solid rgba(245,158,11,0.2);
}

/* ============================================================
   EYEBROWS
   ============================================================ */
.m-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(33,82,253,0.08);
  border: 1px solid rgba(33,82,253,0.2);
  color: #2152FD;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.m-eyebrow-light {
  background: rgba(129,140,248,0.15);
  border-color: rgba(129,140,248,0.25);
  color: #a5b4fc;
}
.m-eyebrow-gold {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.3);
  color: var(--gold-dark);
}

/* ============================================================
   SECTION INTRO
   ============================================================ */
.m-section-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}
.m-section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.m-section-desc {
  font-size: 1.05rem;
  color: var(--slate-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   PAIN CARDS (dark glass)
   ============================================================ */
.m-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  position: relative; z-index: 1;
}
.m-pain-card {
  background: #fff;
  border: 1px solid rgba(148,163,184,0.2);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 4px 16px -8px rgba(15,23,42,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative; overflow: hidden;
}
.m-pain-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(33,82,253,0.04), rgba(79,70,229,0.04));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.m-pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -16px rgba(33,82,253,0.2);
  border-color: rgba(33,82,253,0.2);
}
.m-pain-card:hover::before { opacity: 1; }
.m-pain-icon {
  width: 3rem; height: 3rem;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.m-pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.45rem;
}
.m-pain-card p { font-size: 0.875rem; color: var(--slate-600); line-height: 1.65; }
.m-pain-close { display: flex; justify-content: center; }
.m-pain-close-inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 2rem;
  border-radius: 999px;
  background: rgba(33,82,253,0.08);
  border: 1px solid rgba(33,82,253,0.2);
  font-size: 1rem;
  color: var(--slate-700);
}
.m-pain-close-inner strong { color: var(--primary); }

/* ============================================================
   SOLUTION CARDS (glass on blue)
   ============================================================ */
.m-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  position: relative; z-index: 1;
}
.m-solution-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.m-solution-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 24px 48px -18px rgba(0,0,0,0.4);
}
.m-solution-icon {
  width: 3.25rem; height: 3.25rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 10px 24px -12px rgba(0,0,0,0.3);
}
.m-solution-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.m-solution-card p  { font-size: 0.875rem; color: rgba(255,255,255,0.72); line-height: 1.65; }

/* White CTA on blue section */
.m-cta-sol-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  background: #fff;
  color: #2152FD;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 16px 36px -12px rgba(0,0,0,0.3);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  white-space: nowrap;
}
.m-cta-sol-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 24px 48px -14px rgba(0,0,0,0.4);
}

/* ============================================================
   ABOUT
   ============================================================ */
.m-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .m-about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.m-about-desc { font-size: 1.05rem; color: var(--slate-600); line-height: 1.8; }
.m-about-quote-dark {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background: rgba(33,82,253,0.06);
  border-left: 4px solid var(--primary);
}
.m-about-quote-dark p { font-size: 1.05rem; font-style: italic; color: var(--slate-700); font-weight: 500; margin-top: 0.25rem; }

.m-about-features { display: flex; flex-direction: column; gap: 1rem; }
.m-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(33,82,253,0.1);
  border-radius: 16px;
  box-shadow: 0 2px 12px -6px rgba(15,23,42,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.m-about-feature:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 28px -12px rgba(33,82,253,0.2);
}
.m-about-feat-icon {
  width: 2.75rem; height: 2.75rem;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(33,82,253,0.1), rgba(33,82,253,0.18));
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.m-about-feature h4 { font-size: 0.95rem; font-weight: 700; color: var(--slate-800); margin-bottom: 0.2rem; }
.m-about-feature p  { font-size: 0.85rem; color: var(--slate-600); line-height: 1.5; }

/* ============================================================
   MODULES
   ============================================================ */
.m-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.m-module-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 4px 16px -8px rgba(15,23,42,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.m-module-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(33,82,253,0.22);
}
.m-module-featured {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border-color: rgba(33,82,253,0.3) !important;
}
.m-module-num {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-size: 2.5rem; font-weight: 900;
  color: rgba(33,82,253,0.07);
  letter-spacing: -0.05em; line-height: 1;
  pointer-events: none; user-select: none;
}
.m-module-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(33,82,253,0.1), rgba(129,140,248,0.18));
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.m-module-card h3 { font-size: 1rem; font-weight: 700; color: var(--slate-800); margin-bottom: 0.5rem; }
.m-module-card p  { font-size: 0.875rem; color: var(--slate-600); line-height: 1.65; }
.m-module-tag {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ============================================================
   IMAGINE SECTION
   ============================================================ */
.m-imagine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.m-imagine-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.m-imagine-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(139,92,246,0.45);
  box-shadow: 0 20px 40px -16px rgba(139,92,246,0.45);
}
.m-imagine-icon {
  width: 3rem; height: 3rem;
  border-radius: 14px;
  background: rgba(139,92,246,0.15);
  color: #c084fc;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.m-imagine-card h3 { font-size: 1rem; font-weight: 700; color: #e2e8f0; margin-bottom: 0.5rem; }
.m-imagine-card p  { font-size: 0.875rem; color: #94a3b8; line-height: 1.65; }
.m-imagine-cta { text-align: center; }

/* ============================================================
   DIFFERENTIALS
   ============================================================ */
.m-diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.m-diff-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(33,82,253,0.12);
  box-shadow: 0 4px 16px -8px rgba(15,23,42,0.08);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.m-diff-card:hover {
  transform: translateY(-5px);
  border-color: rgba(33,82,253,0.25);
  box-shadow: 0 16px 36px -14px rgba(33,82,253,0.2);
}
.m-diff-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--slate-800); margin-bottom: 0.5rem; }
.m-diff-card p  { font-size: 0.875rem; color: var(--slate-600); line-height: 1.65; }

/* ============================================================
   FIT CARDS
   ============================================================ */
.m-fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}
.m-fit-card { border-radius: var(--radius); padding: 2rem; border: 2px solid transparent; transition: transform 0.3s ease; }
.m-fit-card:hover { transform: translateY(-4px); }
.m-fit-yes { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border-color: rgba(34,197,94,0.3); }
.m-fit-no  { background: linear-gradient(135deg, #fff5f5, #fee2e2); border-color: rgba(239,68,68,0.2); }
.m-fit-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.m-fit-header h3 { font-size: 1.05rem; font-weight: 700; color: var(--slate-800); line-height: 1.3; }
.m-fit-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.m-fit-list li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.95rem; color: var(--slate-700); font-weight: 500; }

/* ============================================================
   MENTOR
   ============================================================ */
.m-mentor-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .m-mentor-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.m-mentor-photo-col { display: flex; justify-content: center; }
.m-mentor-photo-wrap { position: relative; width: 340px; max-width: 100%; }
.m-mentor-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: rgba(33,82,253,0.04);
  border: 2px dashed rgba(33,82,253,0.25);
  border-radius: 28px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #64748b;
}
.m-mentor-photo-real {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 28px;
  border: 3px solid rgba(33,82,253,0.25);
  box-shadow: 0 32px 64px -24px rgba(33,82,253,0.5);
}
.m-mentor-badge-float {
  position: absolute; bottom: -16px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff; font-size: 0.82rem; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 28px -10px rgba(217,119,6,0.65);
}
.m-mentor-story { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
.m-mentor-story p { font-size: 1rem; color: var(--slate-600); line-height: 1.8; }
.m-mentor-story p:first-child { color: var(--slate-700); font-size: 1.05rem; }
.m-mentor-highlights { display: flex; flex-direction: column; gap: 0.65rem; }
.m-mentor-hl { display: flex; align-items: center; gap: 0.65rem; font-size: 0.95rem; color: var(--slate-700); font-weight: 500; }

/* Mentor stat cards grid */
.m-mentor-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.m-mentor-stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(33,82,253,0.12);
  border-radius: 14px;
  box-shadow: 0 2px 12px -6px rgba(15,23,42,0.08);
}
.m-mentor-stat-icon {
  width: 2rem; height: 2rem;
  border-radius: 8px;
  background: rgba(33,82,253,0.08);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.m-mentor-stat-card strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1.2;
}
.m-mentor-stat-card span {
  font-size: 0.78rem;
  color: var(--slate-500);
  line-height: 1.4;
}
@media (max-width: 480px) {
  .m-mentor-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   FOUNDER / TURMA
   ============================================================ */
.m-founder-inner { max-width: 900px; margin: 0 auto; }
.m-founder-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--slate-900);
  letter-spacing: -0.04em; line-height: 1.15;
  margin: 1rem 0 0.75rem;
}
.m-founder-title strong { color: var(--gold-dark); }
.m-founder-desc { font-size: 1.05rem; color: rgba(120,53,15,0.8); line-height: 1.75; margin-bottom: 2.5rem; }
.m-founder-badges {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.m-founder-badge {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}
.m-founder-badge:hover { transform: translateY(-4px); background: rgba(255,255,255,0.85); }
.m-founder-badge h4 { font-size: 0.95rem; font-weight: 700; color: var(--slate-800); margin-bottom: 0.35rem; }
.m-founder-badge p  { font-size: 0.8rem; color: var(--slate-600); line-height: 1.5; }

.m-cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 20px 40px -14px rgba(217,119,6,0.6);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.m-cta-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 28px 50px -14px rgba(217,119,6,0.75);
}

/* ============================================================
   PRICE ANCHOR
   ============================================================ */
.m-price-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 960px; margin: 0 auto;
}
@media (max-width: 768px) { .m-price-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.m-price-title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 900; letter-spacing: -0.04em;
  color: var(--slate-900); line-height: 1.2;
  margin: 1rem 0 0.75rem;
}
.m-price-value {
  background: linear-gradient(90deg, #d97706, #b45309);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.m-price-desc  { font-size: 1rem; color: var(--slate-600); line-height: 1.75; margin-bottom: 1.25rem; }
.m-price-note {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 1rem 1.25rem; border-radius: 12px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  font-size: 0.875rem; color: #92400e; line-height: 1.6;
}
.m-price-card {
  background: #fff;
  border: 2px solid rgba(245,158,11,0.35);
  border-radius: 24px; padding: 2rem;
  box-shadow: 0 24px 50px -20px rgba(217,119,6,0.25);
}
.m-price-card-header { margin-bottom: 1.5rem; }
.m-price-badge {
  display: inline-flex; align-items: center;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.m-price-includes { display: flex; flex-direction: column; gap: 0.65rem; }
.m-price-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--slate-700); font-weight: 500; }

/* ============================================================
   FORM
   ============================================================ */
.m-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  max-width: 960px; margin: 0 auto;
  width: 100%; box-sizing: border-box;
}
@media (max-width: 768px) { .m-form-wrapper { grid-template-columns: 1fr; gap: 2.5rem; } }
.m-form-trust-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.m-form-trust-item { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; color: var(--slate-600); font-weight: 500; }

.m-form {
  background: #fff;
  border: 1px solid rgba(148,163,184,0.2);
  border-radius: 24px; padding: 2rem;
  box-shadow: 0 20px 48px -20px rgba(15,23,42,0.2);
  width: 100%; box-sizing: border-box;
}
.m-form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.m-form-group label { font-size: 0.875rem; font-weight: 600; color: var(--slate-700); }
.m-form-group input,
.m-form-group select {
  padding: 0.8rem 1rem;
  border: 2px solid rgba(148,163,184,0.25);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; color: var(--slate-800);
  background: var(--slate-50);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  -webkit-appearance: none; appearance: none;
  width: 100%; box-sizing: border-box; min-width: 0;
}
.m-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.m-form-group input:focus,
.m-form-group select:focus {
  border-color: #2152FD;
  box-shadow: 0 0 0 3px rgba(33,82,253,0.12);
  background: #fff;
}
.m-form-group input::placeholder { color: #94a3b8; }

.m-form-pretrust {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: #eff6ff;
  border: 1px solid rgba(33,82,253,0.18);
  border-radius: 12px;
  box-sizing: border-box; width: 100%;
}
.m-form-pretrust-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.865rem; color: var(--slate-700); font-weight: 500;
  line-height: 1.4;
}
.m-form-pretrust-item i { flex-shrink: 0; margin-top: 2px; }

.m-form-submit {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.5rem;
  width: 100%; padding: 1rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #2152FD 0%, #4f46e5 60%, #818cf8 100%);
  color: #fff; font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 0.95rem; letter-spacing: 0.02em;
  line-height: 1.3; text-align: center;
  box-shadow: 0 14px 32px -12px rgba(33,82,253,0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  cursor: pointer; box-sizing: border-box;
}
.m-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(33,82,253,0.78);
}
.m-form-submit:disabled { opacity: 0.75; cursor: not-allowed; }

.m-form-privacy { margin-top: 0.85rem; font-size: 0.78rem; color: var(--slate-500); text-align: center; line-height: 1.5; word-break: break-word; }
.m-form-privacy a { color: var(--primary); text-decoration: underline; }

@media (max-width: 480px) {
  .m-form { padding: 1.25rem; border-radius: 18px; }
  .m-form-submit { font-size: 0.875rem; padding: 0.95rem 1rem; }
  .m-form-pretrust { padding: 0.875rem 1rem; }
}

.m-form-success {
  background: #fff;
  border: 1px solid rgba(148,163,184,0.2);
  border-radius: 24px; padding: 2.5rem 2rem;
  box-shadow: 0 20px 48px -20px rgba(15,23,42,0.2);
  text-align: center;
}
.m-success-icon { margin-bottom: 1rem; }
.m-form-success h3 { font-size: 1.5rem; font-weight: 800; color: var(--slate-900); margin-bottom: 0.75rem; }
.m-form-success p  { color: var(--slate-600); line-height: 1.7; margin-bottom: 1.25rem; }

/* ============================================================
   FAQ
   ============================================================ */
.m-faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 2rem; align-items: start; }
@media (max-width: 768px) { .m-faq-list { grid-template-columns: 1fr; } }
.m-faq-item {
  background: #fff;
  border: 1px solid rgba(148,163,184,0.2);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 12px -6px rgba(15,23,42,0.08);
  transition: border-color 0.25s ease;
}
.m-faq-item.m-faq-open { border-color: rgba(33,82,253,0.3); }
.m-faq-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; padding: 1.25rem 1.5rem; text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--slate-800);
  transition: color 0.2s ease;
}
.m-faq-trigger:hover { color: var(--primary); }
.m-faq-icon { flex-shrink: 0; color: var(--primary); transition: transform 0.3s cubic-bezier(.22,1,.36,1); font-size: 1.2rem; }
.m-faq-open .m-faq-icon { transform: rotate(180deg); }
.m-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(.22,1,.36,1), padding 0.3s ease; }
.m-faq-open .m-faq-answer { max-height: 300px; padding-bottom: 1.25rem; }
.m-faq-answer p { padding: 0 1.5rem; font-size: 0.925rem; color: var(--slate-600); line-height: 1.75; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.m-final-cta { position: relative; overflow: hidden; background: #080a1e; }
.m-final-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(33,82,253,0.4), transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 50%, rgba(129,140,248,0.25), transparent 60%);
}
.m-final-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900; color: #fff;
  letter-spacing: -0.04em; line-height: 1.1;
  margin: 1.25rem 0 1.25rem;
}
.m-final-desc {
  font-size: 1.1rem; color: #94a3b8;
  max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.m-footer { background: #060b16; padding: 4rem 0 2rem; }
.m-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(148,163,184,0.1);
}
@media (max-width: 768px) { .m-footer-top { grid-template-columns: 1fr; gap: 2rem; } }
.m-footer-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #64748b; margin-bottom: 1.25rem;
}
.m-footer-link {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: #64748b; font-weight: 500;
  transition: color 0.2s ease;
}
.m-footer-link:hover { color: var(--secondary); }
.m-footer-bottom { text-align: center; }

/* ============================================================
   UTILITIES
   ============================================================ */
.hidden { display: none !important; }
@keyframes spin { to { transform: rotate(360deg); } }
.ri-spin { animation: spin 0.8s linear infinite; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .m-section,
  .m-section-alt,
  .m-section-pain,
  .m-section-solution,
  .m-section-deep,
  .m-section-imagine,
  .m-section-dark,
  .m-section-gold,
  .m-section-price { padding: 3.5rem 0; }

  .m-pain-grid,
  .m-solution-grid,
  .m-modules-grid,
  .m-diff-grid,
  .m-imagine-grid { grid-template-columns: 1fr; }

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

  .m-cta-hero-primary,
  .m-cta-hero-secondary,
  .m-cta-sol-btn { width: 100%; justify-content: center; font-size: 0.9rem; }

  .m-form { padding: 1.5rem; }
  .m-mentor-grid { grid-template-columns: 1fr; }
}
