/* =========================================================================
   ABC Seamless National Lander - styles.css
   ========================================================================= */
@font-face {
    font-family: 'Zalando Sans Semi Expanded';
    font-style: normal;
    font-display: swap;
    font-weight: 200 900;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/zalando-sans-semiexpanded:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
}
/* CSS VARIABLES ----------------------------------------------------------- */
:root {
  /* Brand */
  --yellow: #FFDC31;
  --yellow-dark: #e5c52c;
  --yellow-light: #fff7c7;
  --black: #000000;
  --dark: #2a2e34;
  --dark-2: #54595F;
  --dark-light: #6b7280;
  --light: #f2f2f2;
  --lighter: #f8f9fa;
  --white: #FFFFFF;

  /* Functional */
  --success: #16a34a;
  --error: #dc2626;
  --error-bg: #fef2f2;
  --error-border: #fecaca;

  /* Typography */
  --font-primary: 'Zalando Sans Semi Expanded', sans-serif;
  --font-display: 'Zalando Sans', sans-serif;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(0,0,0,0.05);
  --sh-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --sh-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --sh-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --sh-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);

  /* Motion */
  --t-fast: 150ms ease;
  --t-base: 200ms ease;
  --t-slow: 300ms ease;
}

/* RESET ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-2);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
sup { font-size: 0.55em; vertical-align: super; line-height: 0; }
button { font-family: inherit; }

/* LAYOUT ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.section { padding: var(--s-9) 0; }
@media (max-width: 768px) {
  .section { padding: var(--s-8) 0; }
  .container { padding: 0 var(--s-4); }
}

/* TYPOGRAPHY -------------------------------------------------------------- */
.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark-light);
  margin-bottom: var(--s-4);
}
.section-kicker-light { color: rgba(255,255,255,0.85); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: var(--s-4);
}
.section-title-light { color: var(--white); }
.section-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--dark-light);
  max-width: 720px;
  line-height: 1.6;
}
.section-subtitle-light { color: rgba(255,255,255,0.9); }
.section-header { text-align: center; margin-bottom: var(--s-8); }
.section-header .section-subtitle { margin: 0 auto; }

/* BUTTONS ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t-base), background var(--t-base), box-shadow var(--t-base), color var(--t-base);
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { flex-shrink: 0; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--black);
  box-shadow: var(--sh-md);
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--black); }

/* HEADER ------------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-3) 0;
  gap: var(--s-4);
  min-height: 64px;
}
.logo { display: inline-flex; align-items: center; }
.logo-text {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--black);
  background: var(--yellow);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  border: 2px solid var(--black);
}
.logo-text-light {
  background: var(--yellow);
  color: var(--black);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}
.phone-link .phone-label { color: var(--dark-light); font-weight: 600; }

@media (max-width: 640px) {
  .header-cta .btn { display: none; }
  .phone-link .phone-label { display: none; }
  .logo-text { font-size: 16px; padding: 5px 9px; }
}

/* HERO -------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--s-8) 0;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.50) 55%, rgba(0,0,0,0.45) 100%);
}
.hero-content { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-7);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
}
.hero-text { color: var(--white); max-width: 640px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s-5);
}
.badge-dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--s-4);
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--s-5);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.trust-item svg { color: var(--yellow); flex-shrink: 0; }

.hero-phone-cta { display: flex; align-items: center; }
.phone-cta-large {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
  padding: var(--s-2) 0;
  letter-spacing: 0.3px;
}
.phone-cta-large:hover { opacity: 0.9; }

/* Hero form card */
.hero-form-wrap { width: 100%; }
.hero-form-card {
  background: var(--white);
  padding: var(--s-5) var(--s-5);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2xl);
  border: 3px solid var(--yellow);
}
.form-card-header { text-align: center; margin-bottom: var(--s-4); padding-bottom: var(--s-4); border-bottom: 1px solid #eee; }
.form-card-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: var(--s-2);
  line-height: 1.2;
}
.form-card-sub { font-size: 14px; color: var(--dark-light); line-height: 1.5; }

@media (max-width: 480px) {
  .hero-form-card { padding: var(--s-4); }
  .form-card-title { font-size: 22px; }
}

/* PRODUCTS SECTION -------------------------------------------------------- */
.section-products { background: var(--lighter); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.product-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--light);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.product-card:hover .product-image img { transform: scale(1.04); }
.product-body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.product-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: var(--s-2);
  line-height: 1.2;
}
.product-copy {
  font-size: 14px;
  color: var(--dark-2);
  line-height: 1.6;
  margin-bottom: var(--s-3);
}
.product-bullets {
  margin-bottom: var(--s-4);
  flex: 1;
}
.product-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  color: var(--dark-light);
  margin-bottom: 6px;
  line-height: 1.4;
}
.product-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
}
.product-body .btn { align-self: flex-start; }

/* DIFFERENCE SECTION ------------------------------------------------------ */
.section-difference {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  color: var(--white);
}
.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}
@media (max-width: 768px) { .difference-grid { grid-template-columns: 1fr; gap: var(--s-5); } }
.difference-item {
  padding: var(--s-5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
}
.difference-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--yellow);
  margin-bottom: var(--s-3);
  line-height: 1;
}
.difference-item h3 {
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s-2);
}
.difference-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}
.difference-cta {
  text-align: center;
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* TESTIMONIALS ------------------------------------------------------------ */
.section-testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}
.testimonial-card {
  background: var(--lighter);
  padding: var(--s-5);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.06);
}
.testimonial-stars {
  font-size: 18px;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: var(--s-3);
  text-shadow: 0 0 1px var(--black);
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-2);
  margin-bottom: var(--s-4);
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: var(--s-3); }
.author-avatar {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  color: var(--black);
}
.author-info { display: flex; flex-direction: column; }
.author-info strong { font-size: 14px; color: var(--black); }
.author-info span { font-size: 12px; color: var(--dark-light); }

/* PROCESS ----------------------------------------------------------------- */
.section-process { background: var(--lighter); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-7);
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; gap: var(--s-3); } }

.process-step {
  background: var(--white);
  padding: var(--s-5);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-weight: 800;
  font-size: 18px;
  color: var(--black);
  margin-bottom: var(--s-3);
}
.step-content h3 {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--s-2);
}
.step-content p { font-size: 14px; color: var(--dark-light); line-height: 1.6; }
.process-cta { text-align: center; }

/* FAQ --------------------------------------------------------------------- */
.section-faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--s-3); }
.faq-item {
  background: var(--lighter);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) var(--s-5);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  list-style: none;
  gap: var(--s-3);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question svg { flex-shrink: 0; transition: transform var(--t-base); color: var(--dark-light); }
.faq-item[open] .faq-question svg { transform: rotate(180deg); }
.faq-answer { padding: 0 var(--s-5) var(--s-4); }
.faq-answer p { font-size: 15px; line-height: 1.7; color: var(--dark-2); }
.faq-answer a { color: var(--black); text-decoration: underline; }

/* QUOTE FORM (BOTTOM) ----------------------------------------------------- */
.section-quote {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
}
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 900px) {
  .quote-wrapper { grid-template-columns: 1fr; gap: var(--s-5); }
}
.quote-info { color: var(--white); }
.quote-info .section-kicker { color: var(--yellow); }
.quote-info .section-title { color: var(--white); }
.quote-description {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: var(--s-5);
}
.quote-benefits { display: flex; flex-direction: column; gap: var(--s-3); margin-bottom: var(--s-5); }
.quote-benefit {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.quote-benefit svg { color: var(--yellow); flex-shrink: 0; }
.quote-phone p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: var(--s-2); }
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 24px;
  font-weight: 800;
  color: var(--yellow);
}
.phone-cta:hover { opacity: 0.85; }

.quote-form-wrap {
  background: var(--white);
  padding: var(--s-5);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2xl);
}

/* FORM STYLES (shared by hero and footer forms) --------------------------- */
.form-error {
  background: var(--error-bg);
  border: 1px solid var(--error-border);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  margin-bottom: var(--s-4);
  color: var(--error);
  font-size: 14px;
}
.form-error strong { display: block; margin-bottom: var(--s-1); }
.form-error ul { margin-top: var(--s-1); padding-left: var(--s-5); list-style: disc; }
.form-error li { margin-bottom: 2px; }

.quote-form { display: flex; flex-direction: column; gap: var(--s-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--black); }
.required { color: var(--error); }

.form-group input,
.form-group select {
  padding: 12px 14px;
  font-family: var(--font-primary);
  font-size: 16px; /* 16px prevents iOS auto-zoom */
  border: 2px solid #e5e5e5;
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  background: var(--white);
  color: var(--dark);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,220,49,0.25);
}
.form-group input::placeholder { color: #aaa; }

.form-group-consent { margin-top: var(--s-1); }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 4px;
  position: relative;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.checkbox-label input[type="checkbox"]:hover {
  border-color: var(--yellow-dark);
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--yellow);
  border-color: var(--black);
}

/* The actual checkmark - drawn with a rotated rectangle */
.checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 1px;
  width: 8px;
  height: 16px;
  border: solid var(--black);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
.checkbox-text { font-size: 12px; line-height: 1.55; color: var(--dark-light); }
.checkbox-text a { color: var(--black); text-decoration: underline; }

.form-actions { margin-top: var(--s-3); }
.form-note { font-size: 13px; color: var(--dark-light); text-align: center; margin-top: var(--s-3); }

/* g-recaptcha mobile sizing fix */
.g-recaptcha { transform-origin: 0 0; }
@media (max-width: 360px) { .g-recaptcha { transform: scale(0.85); } }

/* FOOTER ------------------------------------------------------------------ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--s-8) 0 var(--s-5);
}
.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-6);
}
@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr; gap: var(--s-5); text-align: center; }
}
.footer-brand .logo-text { display: inline-block; margin-bottom: var(--s-3); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

.footer-contact h4,
.footer-cta h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--s-3);
  color: rgba(255,255,255,0.5);
}
.footer-hq-name { font-size: 14px; color: var(--white); line-height: 1.5; margin-bottom: 4px; }
.footer-hq-addr { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5; margin-bottom: var(--s-3); }
.footer-phone {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: var(--s-2);
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  text-align: center;
  padding: var(--s-4) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--s-3);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  gap: var(--s-3);
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.75); transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: var(--s-2); text-align: center; }
}

/* THANK YOU PAGE ---------------------------------------------------------- */
.thank-you-section { min-height: 70vh; display: flex; align-items: center; padding: var(--s-8) 0; }
.thank-you-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.thank-you-check {
  width: 80px; height: 80px;
  background: var(--yellow);
  border: 3px solid var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s-5);
}
.thank-you-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: var(--s-4);
  line-height: 1.15;
}
.thank-you-lead {
  font-size: 18px;
  color: var(--dark-2);
  line-height: 1.7;
  margin-bottom: var(--s-6);
}
.thank-you-card {
  background: var(--lighter);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  margin-bottom: var(--s-6);
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.thank-you-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--s-4);
  text-align: center;
}
.thank-you-steps { display: flex; flex-direction: column; gap: var(--s-4); }
.thank-you-steps li {
  display: flex; align-items: flex-start; gap: var(--s-3);
  font-size: 15px; color: var(--dark-2); line-height: 1.6;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-weight: 800; font-size: 14px;
  flex-shrink: 0;
  color: var(--black);
}
.thank-you-call-prompt { font-size: 16px; color: var(--dark-2); margin-bottom: var(--s-4); }
.thank-you-confirm-id { font-size: 13px; color: var(--dark-light); margin-top: var(--s-5); }

/* 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;
  }
}

/* SCREEN READER ONLY ------------------------------------------------------ */
.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;
}
