/* ========================================
   animocheck.nl — ANIMO Stylesheet
   ======================================== */

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

:root {
  --color-primary: #F15A22;
  --color-primary-hover: #d94e1c;
  --color-dark: #0a0e27;
  --glass-bg: rgba(10, 14, 39, 0.78);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-bg-hover: rgba(10, 14, 39, 0.85);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --font-heading: "Syne", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --space-section: 7rem;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#webGLApp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  padding: 0.625rem 0;
  background: rgba(10, 14, 39, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  background: var(--color-primary) !important;
  color: var(--text-primary) !important;
  border-radius: 100px;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.01em;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--color-primary-hover) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  padding: 0.875rem 2rem;
  background: var(--color-primary);
  color: var(--text-primary);
  border-radius: 100px;
  font-size: 0.9375rem;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(241, 90, 34, 0.3);
}

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

.btn-ghost {
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.9375rem;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse 120% 100% at 50% 50%,
    rgba(10, 14, 39, 0.82) 0%,
    rgba(10, 14, 39, 0.5) 45%,
    rgba(10, 14, 39, 0.25) 75%,
    rgba(10, 14, 39, 0.08) 100%
  );
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(10, 14, 39, 0.92);
  border: 1px solid rgba(241, 90, 34, 0.5);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6), 0 4px 32px rgba(0, 0, 0, 0.4);
}

.hero-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5), 0 2px 24px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5), 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-proof {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 4rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.2; transform: translateX(-50%) translateY(10px); }
}

/* ---- Sections ---- */
.section {
  position: relative;
  z-index: 10;
  padding: var(--space-section) 0;
}

.section::before {
  content: "";
  position: absolute;
  top: -4rem;
  left: 0;
  right: 0;
  bottom: -4rem;
  background: radial-gradient(
    ellipse 90% 80% at 50% 50%,
    rgba(10, 14, 39, 0.82) 0%,
    rgba(10, 14, 39, 0.5) 55%,
    rgba(10, 14, 39, 0.12) 100%
  );
  pointer-events: none;
  z-index: -1;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 4px 28px rgba(0, 0, 0, 0.3);
}

/* ---- Glass Cards ---- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

/* ---- Scan Section ---- */
.scan-layout {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(10, 14, 39, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.scan-info .section-label {
  display: block;
}

.scan-info .section-title {
  margin-bottom: 1.25rem;
}

.scan-description {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.scan-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.75rem;
}

.scan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0;
}

.scan-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.scan-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* ---- Steps Section ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.step-card {
  padding: 2rem;
  text-align: center;
}

.step-number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 90, 34, 0.12);
  border-radius: 50%;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

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

.animo-offer {
  background: rgba(10, 14, 39, 0.92);
  border: 1px solid rgba(241, 90, 34, 0.45);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.offer-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.375rem;
}

.offer-old-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.offer-new-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  text-shadow: 0 0 16px rgba(241, 90, 34, 0.4), 0 2px 12px rgba(0, 0, 0, 0.4);
}

.offer-period {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}


/* ---- Form Section ---- */
.section-form {
  padding-bottom: 5rem;
}

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  overflow: hidden;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header .section-title {
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.5rem;
  line-height: 1.7;
}

/* ---- Wizard Progress ---- */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.wizard-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-step.done {
  cursor: pointer;
}

.wizard-step.done:hover .wizard-dot {
  background: rgba(241, 90, 34, 0.35);
  box-shadow: 0 0 16px rgba(241, 90, 34, 0.25);
}

.wizard-step.active .wizard-dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(241, 90, 34, 0.4);
}

.wizard-step.done .wizard-dot {
  background: rgba(241, 90, 34, 0.2);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.wizard-step span {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.wizard-step.active span,
.wizard-step.done span {
  color: rgba(255, 255, 255, 0.8);
}

.wizard-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0.5rem;
  margin-bottom: 1.5rem;
  border-radius: 1px;
  overflow: hidden;
}

.wizard-line-fill {
  width: 0%;
  height: 100%;
  background: var(--color-primary);
  border-radius: 1px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-step.done + .wizard-line .wizard-line-fill {
  width: 100%;
}

/* ---- Wizard Panels ---- */
.wizard-panels {
  position: relative;
  min-height: 280px;
}

.wizard-panel {
  display: none;
  animation: wizardFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-panel.active {
  display: block;
}

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

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

.wizard-panel.active.reverse {
  animation-name: wizardFadeInReverse;
}

.wizard-question {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.wizard-hint {
  text-align: center;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.wizard-question + .option-grid {
  margin-top: 2rem;
}

/* ---- Option Cards ---- */
.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

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

.option-card {
  cursor: pointer;
  position: relative;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.option-content:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.option-card input:checked + .option-content {
  background: rgba(241, 90, 34, 0.12);
  border-color: var(--color-primary);
  box-shadow: 0 0 24px rgba(241, 90, 34, 0.15);
}

.option-icon {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.option-card input:checked + .option-content .option-icon {
  color: var(--color-primary);
}

.option-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}

.option-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.option-card input:checked + .option-content .option-sub {
  color: rgba(241, 90, 34, 0.8);
}

/* ---- Wizard Inputs ---- */
.wizard-input-wrap {
  max-width: 400px;
  margin: 0 auto;
}

.wizard-input {
  width: 100%;
  padding: 1rem 1.125rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  transition: all 0.3s ease;
  outline: none;
  text-align: center;
}

.wizard-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.wizard-input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(241, 90, 34, 0.1);
}

.wizard-input.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.wizard-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.wizard-fields .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.wizard-fields .form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
}

.wizard-fields .wizard-input {
  text-align: left;
}

/* ---- Wizard Navigation ---- */
.wizard-error {
  margin: 0;
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: var(--radius-sm);
  display: none;
}

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

.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wizard-back {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.wizard-back:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
}

.wizard-back.hidden {
  visibility: hidden;
  pointer-events: none;
}

.wizard-next {
  min-width: 160px;
  position: relative;
}

.wizard-next .btn-arrow {
  transition: transform 0.2s ease;
}

.wizard-next:hover .btn-arrow {
  transform: translateX(3px);
}

.wizard-next .btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.wizard-next.loading .btn-text { opacity: 0; }
.wizard-next.loading .btn-arrow { opacity: 0; }
.wizard-next.loading .btn-loader { display: block; position: absolute; }

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

/* ---- Form Success ---- */
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success.visible {
  display: block;
  animation: fadeIn 0.5s ease;
}

.success-icon { margin-bottom: 1.25rem; }

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Footer ---- */
.site-footer {
  position: relative;
  z-index: 10;
  padding: 1.5rem 0;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.footer-logo span { color: var(--color-primary); }

.footer-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }

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

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto 3rem;
  }
}

@media (max-width: 768px) {
  :root { --space-section: 5rem; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.25rem; color: var(--text-primary); }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .form-wrapper { padding: 2rem 1.5rem; }

  .option-grid { grid-template-columns: repeat(2, 1fr); }
  .option-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .wizard-step span { font-size: 0.625rem; }
  .wizard-dot { width: 32px; height: 32px; font-size: 0.75rem; }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 0 1.25rem; }
  .hero-title { font-size: clamp(2.25rem, 9vw, 3rem); }
  .btn-primary { padding: 0.75rem 1.75rem; font-size: 0.9375rem; }
  .btn-ghost { padding: 0.75rem 1.75rem; font-size: 0.9375rem; }
  .step-card { padding: 1.5rem; }
  .scan-layout { padding: 2rem 1.5rem; }
  .form-wrapper { padding: 1.5rem 1.25rem; border-radius: var(--radius-md); }
  .option-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .option-content { padding: 1rem 0.5rem; }
  .wizard-progress { padding: 0; }
  .wizard-panels { min-height: 240px; }
}
