/* ============================================
   MEEPLE — CSS PREMIUM
   Mobile-first | Netflix style | Glassmorphism
   ============================================ */

:root {
  --purple: #6023b0;
  --purple-dark: #3d0080;
  --purple-light: #8b3cf7;
  --green: #07b05e;
  --green-dark: #045e33;
  --black: #000000;
  --white: #ffffff;
  --gray: #e0e0e0;
  --bg: #07090f;
  --bg2: #0d1018;
  --surface: #13161f;
  --surface2: #1a1e2e;
  --text: #e8eaf0;
  --text-muted: #8890a4;
  --border: #ffffff0f;
  --radius: 16px;
  --radius-sm: 10px;
  --glow-purple: 0 0 40px #6023b040;
  --glow-green: 0 0 40px #07b05e40;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ============================================
   FAIXA ESCASSEZ
   ============================================ */
.scarcity-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 9, 15, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  transition: var(--transition);
}

.scarcity-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.scarcity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  flex-shrink: 0;
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.scarcity-text {
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.4;
}

.scarcity-text strong { color: var(--white); }

.scarcity-link {
  color: var(--green);
  font-weight: 600;
  margin-left: 8px;
  white-space: nowrap;
}

/* ============================================
   LAYOUT BASE
   ============================================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 60px;
  text-align: center;
}

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 70% 60% at 20% 20%, #6023b025 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, #07b05e18 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 50%, #8b3cf710 0%, transparent 70%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--purple-light);
  animation: float linear infinite;
  opacity: 0;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-20px) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(96, 35, 176, 0.15);
  border: 1px solid rgba(96, 35, 176, 0.3);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.8rem;
  color: var(--purple-light);
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.4s infinite;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-sub strong { color: var(--text); }

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.proof-avatars { display: flex; }
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }

/* Hero Chart */
.hero-chart-wrap {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  width: 100%;
  max-width: 400px;
}

.hero-chart {
  background: rgba(19, 22, 31, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(16px);
  position: relative;
}

.chart-label {
  position: absolute;
  font-size: 0.72rem;
  font-weight: 600;
  top: 16px;
}
.chart-label.before { left: 24px; color: var(--text-muted); }
.chart-label.after { right: 24px; color: var(--green); }

.chart-svg { width: 100%; height: auto; overflow: visible; margin-top: 20px; }

.chart-line-after {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 2s ease 0.5s forwards;
}

.chart-area {
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.chart-dot, .chart-pulse {
  opacity: 0;
  animation: fadeIn 0.5s ease 2.4s forwards;
}

.chart-pulse { animation: pulse-chart 2s ease 2.4s infinite; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes pulse-chart {
  0% { r: 9; opacity: 0.3; }
  50% { r: 14; opacity: 0.1; }
  100% { r: 9; opacity: 0.3; }
}

.chart-metrics {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 20px;
  gap: 16px;
}

.metric { text-align: center; }
.metric-val {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}
.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.metric-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 3s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--glow-purple);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px #6023b055; }
.btn-primary > * { position: relative; z-index: 1; }

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

.btn-arrow { transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--white);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal-block {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-block.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section { background: var(--bg); }

.problem-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.problem-card:hover {
  border-color: rgba(96, 35, 176, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-purple);
}

.problem-icon { font-size: 1.8rem; margin-bottom: 12px; }
.problem-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.problem-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* Comparison */
.comparison-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.comparison-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  flex: 1;
}

.comparison-card.bad { border: 1px solid rgba(255,68,68,0.2); }
.comparison-card.good { border: 1px solid rgba(7,176,94,0.3); }

.comp-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.comp-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.comparison-card.bad .comp-icon { background: rgba(255,68,68,0.2); color: #ff6666; }
.comparison-card.good .comp-icon { background: rgba(7,176,94,0.2); color: var(--green); }

.comp-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.comp-list { list-style: none; }
.comp-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.comp-list li:last-child { border-bottom: none; }
.comparison-card.bad .comp-list li::before { content: '✕'; color: #ff6666; font-size: 0.75rem; }
.comparison-card.good .comp-list li::before { content: '✓'; color: var(--green); font-size: 0.75rem; }

.comparison-arrow {
  font-size: 1.8rem;
  color: var(--purple-light);
  text-align: center;
  padding: 4px 0;
}

/* ============================================
   METHOD SECTION
   ============================================ */
.method-section { background: var(--bg2); }

.method-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(96,35,176,0.08) 0%, transparent 70%);
}

.cds-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 60px;
}

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

.cds-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.cds-card[data-color="purple"]::before { background: linear-gradient(90deg, var(--purple), var(--purple-light)); }
.cds-card[data-color="green"]::before { background: linear-gradient(90deg, var(--green-dark), var(--green)); }
.cds-card[data-color="mixed"]::before { background: linear-gradient(90deg, var(--purple), var(--green)); }

.cds-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96,35,176,0.3);
}

.cds-letter {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.cds-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.cds-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* Steps */
.steps-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.steps-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple-light);
  opacity: 0.5;
  min-width: 36px;
}

.step-info h4 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.step-info p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   SERVICES — NETFLIX STYLE
   ============================================ */
.services-section { background: var(--bg); }

.netflix-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.netflix-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 260px;
  transition: var(--transition);
}

.netflix-card:hover { transform: scale(1.02); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.netflix-card:hover .netflix-hover-info { opacity: 1; transform: translateY(0); }
.netflix-card:hover .netflix-card-content { transform: translateY(-10px); }

.netflix-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.9;
}

.netflix-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 1;
}

.netflix-card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  transition: var(--transition);
}

.netflix-icon { font-size: 2rem; margin-bottom: 10px; }

.netflix-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.netflix-card p { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.5; }

.netflix-tag {
  display: inline-block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.netflix-hover-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 20px 28px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.netflix-hover-info p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 12px; }

.netflix-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.netflix-cta:hover { gap: 8px; }

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-section { background: var(--bg2); }

.founder-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.founder-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.founder-avatar {
  position: relative;
  width: 120px;
  height: 120px;
}

.founder-initials {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 1;
}

.founder-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg2), var(--bg2)) padding-box,
              linear-gradient(135deg, var(--purple), var(--green)) border-box;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.founder-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.logo-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.founder-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.founder-text strong { color: var(--white); }

.founder-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.fstat {}
.fstat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-light);
  line-height: 1;
}
.fstat-label { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   TESTIMONIALS — SLIDER
   ============================================ */
.testimonials-section { background: var(--bg); overflow: hidden; }

.slider-wrap { position: relative; overflow: hidden; }

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  min-width: 100%;
  padding: 40px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.test-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--purple);
  opacity: 0.4;
  line-height: 0.8;
  margin-bottom: 16px;
}

.test-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.test-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
  flex-shrink: 0;
}

.test-footer strong { display: block; color: var(--white); font-size: 0.95rem; }
.test-footer span { font-size: 0.8rem; color: var(--text-muted); }

.test-stars {
  margin-left: auto;
  color: #f59e0b;
  font-size: 0.85rem;
}

.test-result-tag {
  display: inline-block;
  background: rgba(7,176,94,0.1);
  border: 1px solid rgba(7,176,94,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

.slider-btn:hover { background: var(--purple); border-color: var(--purple); }

.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.dot.active { width: 24px; background: var(--purple-light); }

/* ============================================
   FOR WHOM
   ============================================ */
.forwhom-section { background: var(--bg2); }

.forwhom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.forwhom-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.forwhom-card.for { border: 1px solid rgba(7,176,94,0.25); }
.forwhom-card.not { border: 1px solid rgba(255,68,68,0.2); }

.forwhom-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.forwhom-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.forwhom-card.for .forwhom-icon { background: rgba(7,176,94,0.15); color: var(--green); }
.forwhom-card.not .forwhom-icon { background: rgba(255,68,68,0.15); color: #ff6666; }

.forwhom-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.forwhom-card ul { list-style: none; }
.forwhom-card li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.forwhom-card li:last-child { border-bottom: none; }
.forwhom-card.for li::before { content: '→'; color: var(--green); }
.forwhom-card.not li::before { content: '×'; color: #ff6666; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--bg); }

.faq-list { max-width: 720px; margin: 40px auto 0; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: rgba(96,35,176,0.3); }

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

.faq-q:hover { background: var(--surface2); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(96,35,176,0.2);
  color: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--purple); color: white; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 24px;
  background: var(--surface);
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ============================================
   URGENCY
   ============================================ */
.urgency-section { background: var(--bg2); text-align: center; }

.urgency-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(96,35,176,0.12) 0%, transparent 70%);
}

.urgency-content { position: relative; z-index: 1; }

.urgency-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.urgency-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 48px; }

.urgency-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.urgency-option {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--border);
}

.urgency-option.bad { border-color: rgba(255,68,68,0.15); }
.urgency-option.good { border-color: rgba(7,176,94,0.25); box-shadow: var(--glow-green); }

.opt-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.urgency-option h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.urgency-option p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

.urgency-arrow {
  font-size: 1.5rem;
  color: var(--purple-light);
}

/* ============================================
   BOOKING / AGENDAMENTO
   ============================================ */
.booking-section { background: var(--bg); }

.booking-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.booking-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.booking-left p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.booking-promises { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.bp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bp-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(7,176,94,0.15);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  font-weight: 700;
}

.booking-scarcity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,68,68,0.06);
  border: 1px solid rgba(255,68,68,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  flex-shrink: 0;
  animation: blink 1s infinite;
}

/* Form */
.booking-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.booking-form-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.booking-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color 0.3s;
  outline: none;
  resize: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(96,35,176,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }

.form-group select option { background: var(--surface2); color: var(--white); }

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-img { width: 36px; height: 36px; object-fit: contain; }

.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.footer-tagline { font-size: 0.88rem; color: var(--text-muted); }

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--purple-light); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-privacy { color: var(--purple-light); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

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

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-icon, .modal-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.modal-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.modal-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.modal-next {
  background: var(--surface2);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 20px 0;
}

.modal-next p { margin-bottom: 14px; }

.modal-close,
.modal-overlay button.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 24px;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  margin-top: 12px;
  transition: var(--transition);
}

.modal-close:hover { border-color: var(--purple); color: var(--white); }

.inactivity-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

/* ============================================
   TOASTS
   ============================================ */
.toasts-container {
  position: fixed;
  bottom: 100px;
  left: 16px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
  pointer-events: none;
}

.toast {
  background: rgba(19, 22, 31, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-120%);
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
             toastOut 0.4s ease 3.5s forwards;
}

@keyframes toastIn {
  to { transform: translateX(0); }
}
@keyframes toastOut {
  to { transform: translateX(-140%); opacity: 0; }
}

.toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.toast-content {}
.toast-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.toast-action {
  font-size: 0.75rem;
  color: var(--green);
  display: block;
}
.toast-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}

/* ============================================
   DESKTOP — 768px+
   ============================================ */
@media (min-width: 768px) {

  .hero {
    flex-direction: row;
    text-align: left;
    gap: 60px;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
  }

  .hero-content { max-width: 520px; }
  .hero-cta-group { flex-direction: row; justify-content: flex-start; }
  .hero-social-proof { justify-content: flex-start; }
  .hero-chart-wrap { max-width: 340px; margin-top: 0; }

  .problem-cards { grid-template-columns: 1fr 1fr; }
  .problem-card:nth-child(3) { grid-column: 1 / -1; }

  .comparison-wrap { flex-direction: row; align-items: stretch; }
  .comparison-arrow { display: flex; align-items: center; font-size: 2rem; padding: 0 8px; }

  .cds-cards { grid-template-columns: 1fr 1fr; }
  .cds-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }

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

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

  .founder-wrap { flex-direction: row; align-items: center; gap: 60px; }
  .founder-visual { min-width: 220px; }

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

  .urgency-options { flex-direction: row; align-items: flex-start; }
  .urgency-option { max-width: none; }
  .urgency-arrow { padding-top: 40px; align-self: flex-start; }

  .booking-wrap { flex-direction: row; align-items: flex-start; }
  .booking-left, .booking-right { flex: 1; }

  .footer-top { flex-direction: row; gap: 60px; }
  .footer-brand { flex: 1; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }

  .toasts-container { bottom: 28px; }
}

/* ============================================
   DESKTOP — 1024px+
   ============================================ */
@media (min-width: 1024px) {
  .hero { padding: 120px 60px 60px; }
  .hero-content { max-width: 580px; }

  .problem-cards { grid-template-columns: 1fr 1fr 1fr; }
  .problem-card:nth-child(3) { grid-column: auto; }

  .cds-card:last-child { grid-column: auto; max-width: none; }
  .cds-cards { grid-template-columns: 1fr 1fr 1fr; }

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

/* ============================================
   MODAL NETFLIX — SERVIÇOS
   ============================================ */

/* overlay */
.svc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  pointer-events: none;
  transition: background 0.35s ease;
}
.svc-modal-overlay.open {
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  pointer-events: all;
}

/* modal box */
.svc-modal {
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  background: #13161f;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.34, 1.12, 0.64, 1);
  box-shadow: 0 -20px 80px rgba(0,0,0,0.6);
}
.svc-modal-overlay.open .svc-modal {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .svc-modal-overlay {
    align-items: center;
    padding: 20px;
  }
  .svc-modal {
    border-radius: 20px;
    max-height: 85vh;
    transform: scale(0.88) translateY(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.12, 0.64, 1),
                opacity 0.3s ease;
  }
  .svc-modal-overlay.open .svc-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* hero do modal */
.svc-modal-hero {
  position: relative;
  height: 200px;
  flex-shrink: 0;
  transition: background 0.5s ease;
}
@media (min-width: 480px) { .svc-modal-hero { height: 240px; } }

.svc-modal-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, #13161f 100%);
  z-index: 1;
}

.svc-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.svc-modal-close:hover { background: rgba(255,255,255,0.15); transform: scale(1.1); }

.svc-modal-hero-content {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 60px;
  z-index: 2;
}

.svc-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.svc-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin: 0 0 10px;
}

.svc-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-modal-meta span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 3px 10px;
}

/* body scrollável */
.svc-modal-body {
  overflow-y: auto;
  padding: 0 24px 32px;
  flex: 1;
  overscroll-behavior: contain;
}
.svc-modal-body::-webkit-scrollbar { width: 4px; }
.svc-modal-body::-webkit-scrollbar-track { background: transparent; }
.svc-modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.svc-modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.svc-modal-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.svc-modal-agendar { flex-shrink: 0; }

.svc-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-modal-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
}

.svc-episodes-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
}

/* episode cards — accordion */
.svc-episode-list { display: flex; flex-direction: column; gap: 8px; }

.svc-episode {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s;
}
.svc-episode:hover { border-color: rgba(96,35,176,0.35); }
.svc-episode.open { border-color: rgba(96,35,176,0.4); }

.svc-episode-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
}

.svc-ep-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--purple-light);
  opacity: 0.5;
  min-width: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.svc-episode.open .svc-ep-num { opacity: 1; }

.svc-ep-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.svc-ep-info { flex: 1; min-width: 0; }
.svc-ep-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.svc-ep-short {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.svc-ep-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.25s;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.svc-episode.open .svc-ep-play {
  border-color: var(--purple);
  background: var(--purple);
  color: white;
  transform: rotate(90deg);
}

/* acordeão body */
.svc-ep-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.svc-episode.open .svc-ep-body { max-height: 300px; }

.svc-ep-body-inner {
  padding: 0 16px 16px 58px;
  border-top: 1px solid var(--border);
}
.svc-ep-body-inner p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 12px 0 0;
}
.svc-ep-body-inner ul {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-ep-body-inner li {
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.svc-ep-body-inner li::before {
  content: '→';
  color: var(--green);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* netflix-card overlay ajuste */
.netflix-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%);
  z-index: 0;
}
.netflix-card-content > *:not(.netflix-card-overlay) { position: relative; z-index: 1; }

.play-icon { font-size: 0.7em; }

/* ============================================
   STEP PROGRESS
   ============================================ */
.step-progress {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 0 4px;
}
.sp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}
.sp-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}
.sp-label {
  font-size: .65rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: .04em;
}
.sp-step.active .sp-num {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: var(--glow-purple);
}
.sp-step.active .sp-label { color: var(--purple-light); }
.sp-step.done .sp-num {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.sp-step.done .sp-label { color: var(--green); }
.sp-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 6px;
  margin-bottom: 22px;
  transition: background .4s ease;
}
.sp-line.done { background: var(--green); }

/* ============================================
   CALENDAR
   ============================================ */
.cal-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 14px;
}
.cal-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-month-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
}
.cal-nav-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cal-nav-btn:hover:not(:disabled) {
  background: var(--surface);
  border-color: var(--purple);
  color: var(--white);
}
.cal-nav-btn:disabled { opacity: .3; cursor: not-allowed; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.cal-weekdays span {
  text-align: center;
  font-size: .6rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 500;
  cursor: default;
  transition: var(--transition);
  border: 1px solid transparent;
}
.cal-day.empty { background: transparent; }
.cal-day.past { color: var(--text-muted); opacity: .3; }
.cal-day.weekend.disabled { color: var(--text-muted); opacity: .2; }
.cal-day.available {
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.cal-day.available:hover {
  background: rgba(96, 35, 176, .18);
  border-color: var(--purple);
  color: var(--white);
}
.cal-day.today {
  border-color: var(--purple);
  color: var(--purple-light);
  font-weight: 700;
}
.cal-day.selected {
  background: var(--purple) !important;
  color: #fff !important;
  border-color: var(--purple) !important;
  box-shadow: var(--glow-purple);
  font-weight: 700;
}

/* ============================================
   TIME SLOTS
   ============================================ */
.time-slots-section { margin-bottom: 16px; }
.time-slots-label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.time-slots-label strong { color: var(--white); }
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.time-slot {
  padding: 9px 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  font-size: .73rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
}
.time-slot:hover:not(.taken) {
  background: rgba(96, 35, 176, .18);
  border-color: var(--purple);
  color: var(--white);
}
.time-slot.selected {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: var(--glow-purple);
}
.time-slot.taken {
  opacity: .22;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ============================================
   CAL ACTIONS
   ============================================ */
.cal-actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 16px;
  align-items: center;
}
.cal-back-btn {
  padding: 10px 18px;
  font-size: .82rem;
  flex-shrink: 0;
}
.cal-actions .btn-primary { flex: 1; justify-content: center; }

/* ============================================
   LEAD SUMMARY (step 2)
   ============================================ */
.lead-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 16px;
}
.ls-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}
.ls-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  overflow: hidden;
}
.ls-info strong {
  font-size: .86rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ls-info span {
  font-size: .73rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ls-nicho {
  display: inline-block;
  background: rgba(7, 176, 94, .12);
  color: var(--green) !important;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: .68rem !important;
  font-weight: 700;
  width: fit-content;
  border: 1px solid rgba(7,176,94,.2);
}

/* ============================================
   SUCCESS SCREEN (step 3)
   ============================================ */
.success-wrap { text-align: center; padding: 8px 0 4px; }
.success-icon { font-size: 3.2rem; margin-bottom: 14px; }
.success-wrap h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 800;
}
.success-wrap > p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: .88rem;
}
.success-details {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 14px;
  text-align: left;
}
.sd-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sd-item:last-child { border-bottom: none; padding-bottom: 0; }
.sd-icon { font-size: .95rem; flex-shrink: 0; margin-top: 3px; }
.sd-item div { display: flex; flex-direction: column; gap: 2px; }
.sd-label {
  font-size: .65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .07em;
}
.sd-val {
  font-size: .84rem;
  color: var(--white);
  font-weight: 600;
}
.success-note {
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}
