/* ═══════════════════════════════════════════════════
   ACTING FOR DANCERS — SUCCESS / REGISTRATION FLOW
   Post-purchase: confirm → register → schedule → done
   AFD-branded dark cinematic — purple/gold accents
   ═══════════════════════════════════════════════════ */

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

:root {
  --bg-deep: #0A0A0C;
  --bg-surface: #111114;
  --bg-elevated: #18181C;
  --bg-hover: #1F1F24;

  --text-primary: #EDEDED;
  --text-secondary: #7A7A82;
  --text-tertiary: #3E3E45;

  --purple: hsl(260, 100%, 73%);
  --purple-dim: hsl(260, 60%, 40%);
  --purple-glow: hsl(260, 100%, 73% / 0.15);
  --purple-glow-strong: hsl(260, 100%, 73% / 0.3);
  --lavender: hsl(280, 80%, 82%);
  --gold: #D4A853;
  --gold-dim: hsl(38, 50%, 35%);
  --gold-glow: hsl(43, 70%, 55% / 0.12);

  --font-display: 'Anton', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.22, 0.68, 0, 1.04);
  --ease-cinematic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring-snappy: linear(0, 0.2459, 0.6526, 0.9468, 1.0764, 1.0915, 1.0585, 1.0219, 0.9993, 0.9914, 0.9921, 0.9957, 0.9988, 1.0004, 1);
  --spring-snappy-dur: 450ms;

  --page-max: 1400px;
  --page-pad: clamp(1.5rem, 5vw, 4rem);
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-deep);
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; border-radius: 4px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* ═══════════════════════════════════════════════════
   HEADER (matches AFD main page)
   ═══════════════════════════════════════════════════ */
.afd-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: hsl(240 5% 5% / 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(0 0% 100% / 0.04);
}

.afd-header__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.afd-header__home {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.afd-header__home:hover { color: var(--purple); }

.afd-header__nav { display: flex; gap: 2.25rem; }
.afd-header__nav a {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.afd-header__nav a:hover { color: var(--text-primary); }

.afd-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.afd-header__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */
.afd-success-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--page-pad) 4rem;
  overflow: hidden;
}

/* Ambient glow orbs */
.afd-success-hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.afd-success-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  animation: afdOrbFadeIn 2s var(--ease-cinematic) forwards;
}

.afd-success-hero__orb--1 {
  width: 500px; height: 500px;
  top: -10%; left: -5%;
  background: var(--purple-glow-strong);
  animation-delay: 0.3s;
}

.afd-success-hero__orb--2 {
  width: 400px; height: 400px;
  bottom: -15%; right: -5%;
  background: var(--gold-glow);
  animation-delay: 0.6s;
}

.afd-success-hero__orb--3 {
  width: 300px; height: 300px;
  top: 40%; left: 60%;
  background: var(--purple-glow);
  animation-delay: 0.9s;
}

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

/* Content wrapper */
.afd-success-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 620px;
  text-align: center;
}

/* Progress */
.afd-flow-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 auto 1.8rem;
  flex-wrap: wrap;
}

.afd-flow-progress__step {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding: 0.45rem 0.7rem;
  border: 1px solid hsl(0 0% 100% / 0.05);
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.02);
}

.afd-flow-progress__step--active {
  color: var(--text-primary);
  border-color: hsl(260 100% 73% / 0.22);
  background: hsl(260 100% 73% / 0.08);
  box-shadow: 0 0 20px hsl(260 100% 73% / 0.08);
}

.afd-flow-progress__step--done {
  color: var(--gold);
  border-color: hsl(43 70% 55% / 0.22);
  background: hsl(43 70% 55% / 0.07);
}

.afd-flow-progress__divider {
  width: 18px;
  height: 1px;
  background: hsl(0 0% 100% / 0.08);
}

/* ═══════════════════════════════════════════════════
   STEP FLOW
   ═══════════════════════════════════════════════════ */
.afd-step {
  display: none;
}

.afd-step--active {
  display: block;
  animation: afdStepIn 0.6s var(--ease-out-expo) forwards;
}

@keyframes afdStepIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ═══════════════════════════════════════════════════
   STAGGERED FADE-UP
   ═══════════════════════════════════════════════════ */
.afd-fade-up {
  opacity: 1;
  transform: translateY(0);
}

.js-motion .afd-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.5s ease,
    transform var(--spring-snappy-dur) var(--spring-snappy);
  transition-delay: var(--delay, 0s);
}

.js-motion .afd-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   CHECK ICON
   ═══════════════════════════════════════════════════ */
.afd-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  background: hsl(260 100% 73% / 0.06);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 40px var(--purple-glow-strong);
}

.afd-check svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple);
  stroke-width: 2.5;
  fill: none;
}

.afd-check--gold {
  border-color: var(--gold);
  background: hsl(43 70% 55% / 0.06);
  box-shadow: 0 0 40px hsl(43 70% 55% / 0.2);
}
.afd-check--gold svg { stroke: var(--gold); }

.afd-check--green {
  border-color: hsl(145, 60%, 50%);
  background: hsl(145 60% 45% / 0.08);
  box-shadow: 0 0 40px hsl(145 60% 50% / 0.15);
}
.afd-check--green svg { stroke: hsl(145, 60%, 50%); }

/* ═══════════════════════════════════════════════════
   HEADING & SUBTEXT
   ═══════════════════════════════════════════════════ */
.afd-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.afd-heading--step2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.afd-subtext {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.afd-subtext--small {
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
  color: var(--text-tertiary);
}

.afd-subtext--micro {
  font-size: 0.76rem;
  color: var(--text-tertiary);
  margin-top: -0.9rem;
  margin-bottom: 1.35rem;
}

.afd-subtext a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}
.afd-subtext a:hover { color: var(--lavender); }

/* ═══════════════════════════════════════════════════
   TIER BADGE
   ═══════════════════════════════════════════════════ */
.afd-tier-badge {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--purple);
  padding: 0.3rem 0.8rem;
  border: 1px solid hsl(260 100% 73% / 0.25);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.afd-tier-badge:empty { display: none; }

.afd-tier-badge--gold {
  color: var(--gold);
  border-color: hsl(43 70% 55% / 0.25);
}

/* ═══════════════════════════════════════════════════
   FORM
   ═══════════════════════════════════════════════════ */
.afd-reg-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  padding: 1.2rem;
  border: 1px solid hsl(0 0% 100% / 0.05);
  border-radius: 14px;
  background: linear-gradient(180deg, hsl(240 8% 13% / 0.86), hsl(240 8% 10% / 0.92));
  box-shadow: 0 20px 60px hsl(0 0% 0% / 0.22);
}

.afd-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.afd-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.afd-label .afd-optional {
  font-weight: 400;
  color: var(--text-tertiary);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 0.35rem;
  font-size: 0.625rem;
}

.afd-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid hsl(0 0% 100% / 0.08);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.45s var(--ease-cinematic);
  outline: none;
}

.afd-input--textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.afd-input::placeholder {
  color: var(--text-tertiary);
  font-weight: 400;
}

.afd-input:focus {
  border-color: hsl(260 100% 73% / 0.4);
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 3px hsl(260 100% 73% / 0.1),
    0 0 24px hsl(260 100% 73% / 0.06),
    0 0 8px hsl(43 70% 55% / 0.04);
}

.afd-input.has-error {
  border-color: hsl(0, 70%, 55%);
  box-shadow: 0 0 0 3px hsl(0 70% 55% / 0.12);
}

.afd-error-msg {
  font-size: 0.6875rem;
  color: hsl(0, 70%, 60%);
  min-height: 0;
  overflow: hidden;
  transition: min-height 0.25s ease;
}

/* ═══════════════════════════════════════════════════
   SUBMIT BUTTON
   ═══════════════════════════════════════════════════ */
.afd-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bg-deep);
  background: var(--purple);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.25s var(--ease-out-expo),
    box-shadow 0.4s ease;
  will-change: transform;
}

.afd-submit:hover {
  background: hsl(260, 100%, 78%);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 30px var(--purple-glow-strong);
}

.afd-submit:active {
  transform: translateY(0) scale(0.98);
}

.afd-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.afd-submit .afd-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: var(--bg-deep);
  border-radius: 50%;
  animation: afdSpin 0.6s linear infinite;
}

.afd-submit.is-loading .afd-spinner { display: block; }
.afd-submit.is-loading .afd-submit-label { opacity: 0; }

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

/* ═══════════════════════════════════════════════════
   SCHEDULER BUTTON
   ═══════════════════════════════════════════════════ */
.afd-scheduler-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-deep);
  background: var(--gold);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.25s var(--ease-out-expo),
    box-shadow 0.4s ease;
  will-change: transform;
}

.afd-scheduler-btn svg {
  stroke: var(--bg-deep);
  stroke-width: 2;
  fill: none;
}

.afd-scheduler-btn:hover {
  background: hsl(43, 75%, 60%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px hsl(43 70% 55% / 0.35);
}

.afd-scheduler-btn:active {
  transform: translateY(0) scale(0.98);
}

/* ═══════════════════════════════════════════════════
   TEXT BUTTON & OUTLINE BUTTON
   ═══════════════════════════════════════════════════ */
.afd-text-btn {
  display: inline-block;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
  padding: 0.5rem;
}
.afd-text-btn:hover { color: var(--purple); }

.afd-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 1px solid hsl(260 100% 73% / 0.3);
  background: hsl(260 100% 73% / 0.04);
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.25s var(--ease-out-expo),
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.afd-outline-btn:hover {
  transform: translateY(-1px);
  background: hsl(260 100% 73% / 0.08);
  border-color: hsl(260 100% 73% / 0.5);
  box-shadow: 0 4px 20px var(--purple-glow);
}
.afd-outline-btn:active { transform: scale(0.98); }

/* ═══════════════════════════════════════════════════
   CONFIRMATION CARD
   ═══════════════════════════════════════════════════ */
.afd-confirmation-card {
  margin: 1.6rem 0 1.2rem;
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  border: 1px solid hsl(43 70% 55% / 0.14);
  background: linear-gradient(135deg, hsl(240 8% 12%), hsl(250 10% 10%));
  box-shadow: 0 18px 44px hsl(0 0% 0% / 0.24);
  text-align: left;
}

.afd-confirmation-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid hsl(0 0% 100% / 0.05);
}

.afd-confirmation-card__row:last-child {
  border-bottom: 0;
}

.afd-confirmation-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.afd-confirmation-card__value {
  font-size: 0.82rem;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════
   NEXT STEPS
   ═══════════════════════════════════════════════════ */
.afd-next-steps {
  margin: 2rem 0;
  padding: 1.75rem 2rem;
  background: var(--bg-surface);
  border: 1px solid hsl(0 0% 100% / 0.06);
  border-radius: 6px;
  text-align: left;
}

.afd-next-steps__title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.afd-next-steps__list {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.afd-next-steps__list li {
  counter-increment: steps;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  padding-left: 2rem;
  position: relative;
}

.afd-next-steps__list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--purple);
  border: 1px solid hsl(260 100% 73% / 0.3);
  border-radius: 50%;
  background: hsl(260 100% 73% / 0.06);
}

.afd-next-steps__list a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}
.afd-next-steps__list a:hover { color: var(--lavender); }

/* ═══════════════════════════════════════════════════
   FINAL ACTIONS
   ═══════════════════════════════════════════════════ */
.afd-final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════
   ERROR BANNER
   ═══════════════════════════════════════════════════ */
.afd-error-banner {
  display: none;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  background: hsl(0, 70%, 55% / 0.1);
  border: 1px solid hsl(0, 70%, 55% / 0.3);
  border-radius: 4px;
  font-size: 0.8125rem;
  color: hsl(0, 70%, 70%);
  text-align: center;
}

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

/* ═══════════════════════════════════════════════════
   FOOTER NOTE
   ═══════════════════════════════════════════════════ */
.afd-footer-note {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-align: center;
}

.afd-footer-note a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.afd-footer-note a:hover { color: var(--purple); }

/* ═══════════════════════════════════════════════════
   FOOTER (matches AFD main page)
   ═══════════════════════════════════════════════════ */
.afd-footer {
  padding: clamp(4rem, 8vh, 6rem) 0 2rem;
  border-top: 1px solid hsl(0 0% 100% / 0.04);
  background: linear-gradient(180deg, hsl(260 5% 7%) 0%, var(--bg-deep) 100%);
}

.afd-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.afd-footer__brand { text-align: center; }

.afd-footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.afd-footer__tagline {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.afd-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.afd-footer__nav a {
  font-size: 0.6875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}
.afd-footer__nav a:hover { color: var(--text-primary); }

.afd-footer__contact-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.afd-footer__email {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.afd-footer__email:hover { color: var(--purple); }

.afd-footer__bottom {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid hsl(0 0% 100% / 0.03);
  width: 100%;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .afd-header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 var(--page-pad);
    gap: 0;
    transition: max-height 0.45s var(--ease-out-expo),
                opacity 0.35s ease,
                padding 0.35s ease;
  }
  .afd-header__burger { display: flex; }
  .afd-header__nav.is-open {
    max-height: 400px;
    opacity: 1;
    padding: 1.5rem var(--page-pad);
    gap: 0.25rem;
    background: hsl(240 5% 5% / 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsl(0 0% 100% / 0.05);
  }
  .afd-header__nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
  }

  .afd-success-hero { padding-top: 100px; }
  .afd-success-hero__content { max-width: 100%; }
  .afd-heading { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .afd-next-steps { padding: 1.25rem 1.5rem; }

  .afd-footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .afd-footer__nav a { min-height: 44px; display: flex; align-items: center; }
  .afd-footer__contact-line { flex-direction: column; gap: 0.5rem; }
}

/* ═══════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .afd-fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
  .afd-step--active {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
