/* ============================================================
   Schübeler Consulting — Funnel Styles
   Tech Premium Theme
   ============================================================ */

/* Google Fonts: Space Grotesk */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

:root {
  /* Colors */
  --neon-cyan: #00D9FF;
  --neon-purple: #A855F7;
  --neon-pink: #EC4899;
  --deep-black: #0A0A0F;
  --darker-black: #050507;
  --surface: #1A1A24;
  --surface-light: #25253A;
  --surface-hover: #2a2a42;
  --text-primary: #F8F8F8;
  --text-secondary: #9CA3AF;
  --error: #EF4444;
  --border: rgba(0, 217, 255, 0.15);
  --border-hover: rgba(0, 217, 255, 0.4);
  --glow-cyan: rgba(0, 217, 255, 0.3);
  --glow-purple: rgba(168, 85, 247, 0.3);

  /* Typography */
  --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 24px;
}

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

body {
  font-family: var(--font-primary);
  background: var(--deep-black);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Grid Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image:
    linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Floating Glow */
body::after {
  content: '';
  position: fixed;
  top: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
  opacity: 0.08;
  filter: blur(120px);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridMove {
  to { transform: translate(-60px, -60px); }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, 100px) scale(1.1); }
}

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

/* ===== CONTAINERS ===== */
.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  position: relative;
  z-index: 1;
}

.container--wide {
  max-width: 760px;
}

.section {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  position: relative;
  z-index: 1;
}

.section + .section {
  border-top: 1px solid var(--border);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--neon-purple);
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.85rem 2rem;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--deep-black);
  flex: 1;
}

.btn-primary:hover {
  box-shadow: 0 0 40px var(--glow-cyan);
  transform: translateY(-2px);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-back {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 0.85rem 1.5rem;
}

.btn-back:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.btn-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* CTA Button (Landingpage) */
.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--deep-black);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  color: var(--deep-black);
  box-shadow: 0 0 40px var(--glow-cyan);
  transform: translateY(-3px);
}

/* ===== FORM ELEMENTS ===== */
.field {
  margin-bottom: 1.5rem;
}

.field label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.field label .optional {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 0.8rem;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="url"],
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.5;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field select option {
  background: var(--surface);
  color: var(--text-primary);
}

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

.field .hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

.field .error-msg {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 0.35rem;
  display: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--error);
}

.field.has-error .error-msg { display: block; }

/* ===== RADIO GROUPS ===== */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.radio-option:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
}

.radio-option input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.radio-option input[type="radio"]:checked {
  border-color: var(--neon-cyan);
}

.radio-option input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--glow-cyan);
}

.radio-option span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.radio-option input[type="radio"]:checked ~ span {
  color: var(--text-primary);
}

/* ===== CONDITIONAL FIELD ===== */
.conditional-field {
  display: none;
  margin-top: 0.75rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(0, 217, 255, 0.2);
}

.conditional-field.visible { display: block; }

/* ===== CONSENT ===== */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.consent input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.consent input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  border-color: var(--neon-cyan);
}

.consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--deep-black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  padding: 0 0.5rem;
}

.progress-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(0, 217, 255, 0.2);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.progress-step.active {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  border-color: var(--neon-cyan);
  color: var(--deep-black);
  box-shadow: 0 0 15px var(--glow-cyan);
}

.progress-step.done {
  background: rgba(0, 217, 255, 0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.progress-line {
  flex: 1;
  height: 2px;
  background: rgba(0, 217, 255, 0.1);
  transition: background 0.3s ease;
}

.progress-line.done {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
}

/* ===== STEPS ===== */
.step { display: none; animation: fadeIn 0.35s ease; }
.step.active { display: block; }

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* ===== ERROR BANNER ===== */
.error-banner {
  display: none;
  padding: 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  color: var(--error);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.error-banner.visible { display: block; }

/* ===== SPINNER ===== */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--deep-black);
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}

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

/* ===== CARDS (Danke-Seiten, Proof, etc.) ===== */
.card {
  background: rgba(37, 37, 58, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

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

/* ===== INFO BOX ===== */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.info-box .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.info-box p { color: var(--text-primary); font-size: 0.9rem; }

/* ===== CHECK ICON (Danke-Seiten) ===== */
.check-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 217, 255, 0.1);
  border: 2px solid rgba(0, 217, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.75rem;
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.15);
}

/* ===== HEADER ===== */
.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h1 {
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ===== HERO (Landingpage) ===== */
.hero {
  text-align: center;
  padding: 5rem 1.25rem 4rem;
}

.hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--text-primary), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ===== FIT SECTION ===== */
.fit-section h2 { font-size: 1.35rem; margin-bottom: 1.5rem; }

.fit-list { list-style: none; }

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.fit-list li .icon { flex-shrink: 0; margin-top: 2px; font-size: 1.1rem; }
.fit-list.positive li .icon { color: var(--neon-cyan); text-shadow: 0 0 8px var(--glow-cyan); }
.fit-list.negative li .icon { color: var(--text-secondary); }

.footer-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-style: italic;
  border-left: 2px solid rgba(0, 217, 255, 0.2);
}

/* ===== PROOF GRID ===== */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.proof-card {
  background: rgba(37, 37, 58, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
}

.proof-card h3 { margin-bottom: 0.5rem; }

.proof-card .metric {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 15px var(--glow-cyan);
}

.proof-card p { font-size: 0.85rem; color: var(--text-secondary); }

.proof-placeholder {
  padding: 0.75rem;
  background: rgba(0, 217, 255, 0.08);
  border-radius: 4px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--neon-cyan);
  margin-top: 0.75rem;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.process-step { text-align: center; padding: 1.25rem 0.75rem; }

.process-step .step-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }

.process-step h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.8rem; color: var(--text-secondary); }

.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  color: var(--neon-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ===== INVESTITION ===== */
.invest-text {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.bafa-box {
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bafa-box .icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.bafa-box p { font-size: 0.9rem; line-height: 1.6; }
.bafa-box strong { color: var(--neon-cyan); }

/* ===== FAQ ===== */
.faq-list { margin-top: 1.5rem; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question:hover { color: var(--neon-cyan); }

.faq-question .toggle {
  font-size: 1.25rem;
  color: var(--neon-cyan);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question .toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 800px;
  padding-bottom: 1.25rem;
}

.faq-answer p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding: 4rem 1.25rem 5rem;
}

.final-cta h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.final-cta p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 0.95rem; }

/* ===== BOOKING SECTION ===== */
.booking-section {
  background: rgba(37, 37, 58, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
}

.booking-section h2 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.booking-section p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1.5rem; }

.booking-fallback { text-align: center; padding: 2rem; }

.booking-fallback a {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--deep-black);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.booking-fallback a:hover {
  box-shadow: 0 0 40px var(--glow-cyan);
  transform: translateY(-2px);
  color: var(--deep-black);
}

/* ===== NEXT STEPS ===== */
.next-steps { margin-top: 2.5rem; }
.next-steps h3 { font-size: 1.05rem; margin-bottom: 1rem; color: var(--text-secondary); }

.next-steps ol { list-style: none; counter-reset: steps; }

.next-steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.next-steps li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  color: var(--neon-cyan);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== TIMELINE (Semi) ===== */
.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.timeline .icon { font-size: 1.3rem; }
.timeline p { font-size: 0.95rem; font-weight: 600; }

/* ===== MESSAGE BOX (Semi) ===== */
.message-box {
  background: rgba(37, 37, 58, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: left;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
}

.message-box h2 { font-size: 1.1rem; margin-bottom: 1rem; }
.message-box p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 0.75rem; }
.message-box p:last-child { margin-bottom: 0; }

/* ===== RESOURCE CARDS (Disqualified) ===== */
.resources {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.resource-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(37, 37, 58, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.resource-card:hover {
  border-color: var(--border-hover);
  background: rgba(37, 37, 58, 0.8);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
  color: inherit;
}

.resource-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.resource-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.35rem; }
.resource-card p { font-size: 0.85rem; color: var(--text-secondary); }
.resource-card .arrow { color: var(--neon-cyan); font-size: 0.85rem; margin-top: 0.5rem; display: inline-block; }

/* ===== NOTE BOX ===== */
.note {
  text-align: center;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

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

/* ===== SUBTITLE (Danke) ===== */
.subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ===== FOOTER ===== */
footer, .form-footer, .site-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

footer a, .form-footer a, .site-footer a {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-decoration: none;
}

footer a:hover, .form-footer a:hover, .site-footer a:hover {
  color: var(--neon-cyan);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--deep-black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
  border-radius: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero { padding: 3rem 1rem 3rem; }
  .hero h1 { font-size: 1.5rem; }
  .section { padding: 3rem 1rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 1.5rem 1rem 3rem; }
  .btn-row { flex-direction: column-reverse; }
  .btn-back { text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
