/* ═══════════════════════════════════════════════════════
   RUUMERO ONBOARDING — CONVERSION-OPTIMIZED STYLES
   ═══════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-input: #1a1a1a;
  --bg-elevated: #181818;
  --lime: #A0E10F;
  --lime-hover: #b8f530;
  --lime-glow: rgba(160, 225, 15, 0.25);
  --lime-subtle: rgba(160, 225, 15, 0.08);
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --gray-dark: #555555;
  --border: #2a2a2a;
  --border-light: #333333;
  --error: #ff4444;
  --whatsapp: #25D366;
}

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

html {
  scroll-behavior: smooth;
}

/* ── Body ──────────────────────────────────────────────── */
body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Section Defaults ──────────────────────────────────── */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.text-lime {
  color: var(--lime);
}

.section-sub {
  text-align: center;
  color: var(--gray-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
}

/* ── Hero Nav ──────────────────────────────────────────── */
.hero-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
}

.logo {
  height: 32px;
  width: auto;
}

.hero-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Language Toggle ──────────────────────────────────── */
.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--gray-light);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
}

.lang-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn.active {
  background: var(--lime);
  color: #000;
}

.trust-pill {
  font-size: 0.8rem;
  color: var(--lime);
  font-weight: 600;
  background: rgba(160, 225, 15, 0.1);
  border: 1px solid rgba(160, 225, 15, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ── Hero Split Layout ─────────────────────────────────── */
.hero-split {
  flex: 1;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
  gap: 40px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(160, 225, 15, 0.08);
  border: 1px solid rgba(160, 225, 15, 0.15);
  border-radius: 24px;
  width: fit-content;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--gray-light);
  max-width: 520px;
  margin-top: 20px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.hero-link {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.hero-link:hover {
  opacity: 1;
}

/* ── Inline Proof Points ──────────────────────────────── */
.hero-proof-inline {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.proof-inline-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-light);
}

.proof-inline-icon {
  color: var(--lime);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ── Hero Visual (Right Side) ─────────────────────────── */
.hero-visual {
  position: relative;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.3) 0%,
    transparent 40%
  );
  pointer-events: none;
}

/* ── Floating Review Card ─────────────────────────────── */
.hero-float-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  max-width: 280px;
}

.float-card-stars {
  color: #FFD700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.float-card-text {
  font-size: 0.82rem;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 10px;
}

.float-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lime);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.float-card-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.float-card-loc {
  font-size: 0.72rem;
  color: var(--gray);
  display: block;
}

/* ── Social Proof Bar ──────────────────────────────────── */
.hero-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.proof-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 0.8rem;
  color: var(--gray-light);
  white-space: nowrap;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn-primary {
  background: var(--lime);
  color: #000;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(160, 225, 15, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-glow {
  box-shadow: 0 0 20px var(--lime-glow), 0 0 60px rgba(160, 225, 15, 0.1);
}

.btn-glow:hover {
  box-shadow: 0 0 30px var(--lime-glow), 0 8px 25px rgba(160, 225, 15, 0.3);
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

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

.btn-large {
  padding: 20px 48px;
  font-size: 1.2rem;
}

.btn-secondary {
  background: transparent;
  color: var(--gray-light);
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--gray-light);
  color: var(--white);
}

.btn-final {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

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

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #1fa855;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* ═══════════════════════════════════════════════════════
   BENEFITS SECTION
   ═══════════════════════════════════════════════════════ */
.benefits-section {
  padding: 80px 0;
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(160, 225, 15, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--lime-subtle);
  border: 1px solid rgba(160, 225, 15, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--lime);
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */
.how-section {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.how-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
}

.how-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.how-number svg {
  stroke: #000;
}

.how-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-step p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.how-arrow {
  color: var(--lime);
  margin-top: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.how-cta {
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(160, 225, 15, 0.2);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ── Section Divider ──────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0;
  background: var(--bg);
}

.divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
}

.divider-icon {
  opacity: 0.4;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   WIZARD SECTION
   ═══════════════════════════════════════════════════════ */
.wizard-section {
  min-height: 100vh;
  padding: 80px 24px 40px;
  display: flex;
  justify-content: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.wizard-container {
  max-width: 1100px;
  width: 100%;
}

/* ── Wizard Branding ──────────────────────────────────── */
.wizard-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.wizard-logo {
  height: 24px;
  width: auto;
  opacity: 0.9;
}

.wizard-branding-text {
  font-size: 0.9rem;
  color: var(--gray-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── Progress Bar ──────────────────────────────────────── */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray);
  background: var(--bg);
  transition: all 0.3s ease;
}

.step-label {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 8px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.progress-step.active .step-dot {
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 0 12px var(--lime-glow);
}

.progress-step.active .step-label {
  color: var(--lime);
}

.progress-step.completed .step-dot {
  background: var(--lime);
  border-color: var(--lime);
  color: #000;
}

.progress-step.completed .step-label {
  color: var(--gray-light);
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 24px;
  max-width: 80px;
  margin: 0 4px;
  margin-bottom: 22px;
  border-radius: 1px;
  overflow: hidden;
}

.progress-line-fill {
  height: 100%;
  width: 0%;
  background: var(--lime);
  border-radius: 1px;
  transition: width 0.4s ease;
}

/* ── Step Indicator ────────────────────────────────────── */
.step-indicator-row {
  text-align: center;
  margin-bottom: 24px;
}

.step-indicator {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.step-indicator span {
  color: var(--gray-light);
}

.step-encouragement {
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.8;
}

/* ── Wizard Body ───────────────────────────────────────── */
.wizard-body {
  background: var(--bg-elevated);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 40px;
  min-height: 400px;
}

/* ── Wizard Steps ──────────────────────────────────────── */
.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: stepFadeIn 0.4s ease;
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Wizard Navigation ─────────────────────────────────── */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

/* ═══════════════════════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════════════════════ */

/* ── Step Layout (form + sidebar) ─────────────────────── */
.step-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.step-form h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-icon {
  color: var(--lime);
  flex-shrink: 0;
}

.step-desc {
  color: var(--gray-light);
  margin-bottom: 32px;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ── Sidebar (image + trust/benefit) ──────────────────── */
.step-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.step-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.sidebar-trust {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--gray-light);
}

.trust-check {
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-benefit {
  background: var(--lime-subtle);
  border: 1px solid rgba(160, 225, 15, 0.15);
  border-radius: 12px;
  padding: 20px;
}

.benefit-mini-icon {
  color: var(--lime);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.sidebar-benefit p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.sidebar-benefit strong {
  color: var(--white);
}

/* ── Field Groups ─────────────────────────────────────── */
.field-group {
  margin-bottom: 28px;
}

.field-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.optional {
  color: var(--gray);
  font-weight: 400;
  font-size: 0.85rem;
}

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

/* ── Text Inputs ──────────────────────────────────────── */
.input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-input);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.25s ease;
}

.input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px var(--lime-glow);
}

.input::placeholder {
  color: var(--gray);
}

.textarea {
  resize: vertical;
  min-height: 80px;
}

/* ── Dual Range Slider ────────────────────────────────── */
.range-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lime);
  text-align: center;
  margin-bottom: 16px;
}

.dual-range {
  position: relative;
  height: 36px;
}

.range-input {
  position: absolute;
  width: 100%;
  top: 0;
  height: 36px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  outline: none;
}

.range-input::-webkit-slider-runnable-track {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--bg);
  cursor: pointer;
  pointer-events: all;
  margin-top: -10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.range-input::-moz-range-track {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  border: none;
}

.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--bg);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ── Tile Select (Rooms, Gender) ──────────────────────── */
.tile-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tile {
  min-width: 56px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-input);
  color: var(--gray-light);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  transition: all 0.2s ease;
  padding: 0 12px;
}

.tile:hover {
  border-color: var(--gray);
}

.tile.selected {
  border-color: var(--lime);
  background: rgba(160, 225, 15, 0.1);
  color: var(--lime);
  box-shadow: 0 0 8px var(--lime-glow);
}

.tile-wide {
  flex: 1;
  min-width: 100px;
}

.tile-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

/* ── Chip Select (Location) ───────────────────────────── */
.chip-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-input);
  color: var(--gray-light);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: inherit;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.chip:hover {
  border-color: var(--gray);
}

.chip.selected {
  border-color: var(--lime);
  background: rgba(160, 225, 15, 0.15);
  color: var(--lime);
}

.chip-flex {
  background: rgba(160, 225, 15, 0.05);
  border-style: dashed;
}

/* ── Toggle Group ─────────────────────────────────────── */
.toggle-group {
  display: flex;
  gap: 8px;
}

.toggle-btn {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-input);
  color: var(--gray-light);
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  text-align: center;
  transition: all 0.2s ease;
}

.toggle-btn:hover {
  border-color: var(--gray);
}

.toggle-btn.selected {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(160, 225, 15, 0.1);
}

/* ── Sub Section (collapsible) ────────────────────────── */
.sub-section {
  margin-top: 12px;
}

.sub-section.hidden {
  display: none;
}

/* ── Toggle Row Group (switches) ──────────────────────── */
.toggle-row-group {
  background: var(--bg-input);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 28px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.toggle-row:last-child {
  border-bottom: none;
}

/* ── Switch (iOS-style toggle) ────────────────────────── */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 26px;
  cursor: pointer;
  transition: 0.3s ease;
}

.switch-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  left: 3px;
  bottom: 3px;
  transition: 0.3s ease;
}

.switch input:checked + .switch-slider {
  background: var(--lime);
}

.switch input:checked + .switch-slider::before {
  transform: translateX(22px);
}

/* ── Add Button ───────────────────────────────────────── */
.btn-add {
  background: transparent;
  border: 1px dashed var(--border);
  color: var(--lime);
  padding: 12px;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.btn-add:hover {
  border-color: var(--lime);
  background: rgba(160, 225, 15, 0.05);
}

/* ── Mitmieter Card ───────────────────────────────────── */
.mitmieter-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
  align-items: end;
}

.mitmieter-card .input {
  flex: 1;
}

.btn-remove {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--error);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.btn-remove:hover {
  border-color: var(--error);
  background: rgba(255, 68, 68, 0.1);
}

/* ── Select Dropdown (Nationality) ────────────────────── */
.select-wrapper {
  position: relative;
}

.select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-top: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
}

.select-dropdown.hidden {
  display: none;
}

.select-option {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.15s ease;
}

.select-option:hover {
  background: rgba(160, 225, 15, 0.1);
  color: var(--lime);
}

/* ── Error States ─────────────────────────────────────── */
.field-group.has-error .input {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15);
}

.field-group.has-error .tile-select,
.field-group.has-error .chip-select {
  outline: 2px solid var(--error);
  outline-offset: 4px;
  border-radius: 10px;
}

.field-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 6px;
  display: block;
}

.checkbox-group.has-error .checkbox-mark {
  border-color: var(--error);
}

.checkbox-group.has-error .field-error {
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════
   LEGAL / ACCORDION
   ═══════════════════════════════════════════════════════ */

.step-form-wide {
  max-width: 700px;
  margin: 0 auto;
}

.legal-summary {
  background: var(--lime-subtle);
  border: 1px solid rgba(160, 225, 15, 0.15);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-light);
}

/* ── Legal Highlights ────────────────────────────────── */
.legal-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.legal-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.legal-hl-icon {
  color: var(--lime);
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  margin-top: 2px;
}

.legal-highlight strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.legal-highlight p {
  color: var(--gray-light);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* ── Accordion ────────────────────────────────────────── */
.accordion-group {
  margin-bottom: 28px;
}

.accordion {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}

.accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-input);
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.accordion-header:hover {
  background: rgba(160, 225, 15, 0.05);
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--lime);
  transition: transform 0.3s ease;
  font-weight: 400;
}

.accordion.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion.open .accordion-body {
  max-height: 500px;
}

.accordion-content {
  padding: 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-light);
}

.accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.accordion-content li {
  padding: 6px 0 6px 20px;
  position: relative;
}

.accordion-content li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--lime);
}

.accordion-content p {
  margin-bottom: 12px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

/* ── Custom Checkbox ──────────────────────────────────── */
.checkbox-group {
  margin-top: 24px;
  margin-bottom: 24px;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  line-height: 1.5;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-mark {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.custom-checkbox input:checked + .checkbox-mark {
  background: var(--lime);
  border-color: var(--lime);
}

.custom-checkbox input:checked + .checkbox-mark::after {
  content: '\2713';
  color: #000;
  font-size: 0.85rem;
  font-weight: 700;
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* ── Final Summary ────────────────────────────────────── */
.final-summary {
  text-align: center;
  padding: 32px 20px;
  background: var(--lime-subtle);
  border-radius: 12px;
  border: 1px solid rgba(160, 225, 15, 0.1);
}

.summary-icon {
  color: var(--lime);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.final-summary p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.final-summary strong {
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════
   SUCCESS SECTION
   ═══════════════════════════════════════════════════════ */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.success-section.hidden {
  display: none;
}

#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}

.success-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.success-logo {
  height: 28px;
  width: auto;
  margin: 0 auto 32px;
  display: block;
  opacity: 0.8;
}

.success-check {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--lime);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-check svg {
  stroke: #000;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.success-content > p {
  color: var(--gray-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-content strong {
  color: var(--white);
}

/* ── Next Steps ──────────────────────────────────────── */
.success-next-steps {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  text-align: left;
}

.success-next-steps h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 8px;
}

.next-step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--gray-light);
}

.next-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--lime-subtle);
  border: 1px solid rgba(160, 225, 15, 0.15);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Submission Status ──────────────────────────────── */
.submission-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(160, 225, 15, 0.08);
  border: 1px solid rgba(160, 225, 15, 0.2);
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lime);
}

.submission-status.hidden {
  display: none;
}

.submission-status.error {
  background: rgba(255, 68, 68, 0.08);
  border-color: rgba(255, 68, 68, 0.2);
  color: var(--error);
}

.status-icon {
  display: flex;
  align-items: center;
}

.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   FLOATING MOBILE CTA
   ═══════════════════════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (<768px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Sections ── */
  .benefits-section, .how-section, .testimonials-section {
    padding: 60px 0;
  }

  .section-sub {
    margin-bottom: 36px;
  }

  /* ── Benefits ── */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 24px;
  }

  /* ── How It Works ── */
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .how-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .how-step {
    max-width: 100%;
  }

  /* ── Testimonials ── */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ── Wizard ── */
  .step-layout {
    grid-template-columns: 1fr;
  }

  .step-sidebar {
    display: none;
  }

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

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

  .chip {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .toggle-btn {
    padding: 12px;
    font-size: 0.85rem;
  }

  /* ── Hero ── */
  .hero-trust {
    display: none;
  }

  .hero-nav {
    padding: 20px 20px;
  }

  #hero {
    min-height: auto;
  }

  .hero-split {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 32px;
  }

  .hero-copy {
    padding-top: 16px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

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

  .hero-link {
    text-align: center;
  }

  .hero-proof-inline {
    flex-direction: column;
    gap: 10px;
  }

  .hero-visual {
    height: 320px;
    border-radius: 16px;
  }

  .hero-float-card {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .hero-proof {
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 16px;
  }

  .proof-number {
    font-size: 1.2rem;
  }

  .proof-divider {
    display: none;
  }

  /* ── Progress ── */
  .step-label {
    display: none;
  }

  .step-dot {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .progress-line {
    min-width: 12px;
    margin-bottom: 0;
  }

  /* ── Wizard Body ── */
  .wizard-section {
    padding: 40px 16px 100px; /* extra bottom for mobile CTA */
  }

  .wizard-body {
    padding: 24px;
    min-height: 300px;
  }

  .wizard-nav {
    flex-direction: row;
    gap: 12px;
  }

  /* ── Buttons ── */
  .btn-primary {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
  }

  .btn-final {
    padding: 16px 24px;
    font-size: 0.95rem;
  }

  /* ── Accordion ── */
  .accordion-header {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .accordion-content {
    padding: 16px;
    font-size: 0.85rem;
  }

  .checkbox-label {
    font-size: 0.85rem;
  }

  /* ── Legal Highlights ── */
  .legal-highlights {
    grid-template-columns: 1fr;
  }

  /* ── Floating CTA ── */
  .mobile-cta-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    z-index: 100;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease;
  }

  .mobile-cta-bar.hidden {
    transform: translateY(100%);
  }

  .mobile-cta-bar .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* ── Success ── */
  .success-actions {
    flex-direction: column;
  }

  .btn-whatsapp, .success-actions .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
