/* ══════════════════════════════════════════════════════════════
   TOKENS — extracted from approved mockup
══════════════════════════════════════════════════════════════ */
:root {
  /* brand blue */
  --blue:      #2F5FDB;
  --blue-d:    #2549AD;   /* hover / darker */
  --blue-l:    #EAF0FD;   /* tint background (icon circles, selected) */
  --blue-l2:   #F5F8FF;   /* very light band background */
  --blue-bd:   #B9CDF7;   /* selected border */

  /* navy / ink text */
  --navy:      #101A33;
  --navy-2:    #1A2740;

  /* neutral text */
  --gray-700:  #47506A;
  --gray-500:  #6B7280;
  --gray-400:  #9AA3B5;
  --gray-200:  #E4E8F1;
  --gray-100:  #F1F4F9;

  --white:     #FFFFFF;

  --footer-bg: #101C34;

  --font:      'Heebo', sans-serif;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-card: 0 20px 50px rgba(16, 26, 51, 0.08), 0 2px 10px rgba(16, 26, 51, 0.05);
  --shadow-btn:  0 10px 24px rgba(47, 95, 219, 0.28);
}

/* ══════════════════════════════════════════════════════════════
   RESET
══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-700);
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--gray-200);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand__text { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.brand__name { font-size: 15px; font-weight: 800; color: var(--navy); }
.brand__sep  { color: var(--gray-400); font-size: 13px; }
.brand__role { font-size: 13px; font-weight: 500; color: var(--gray-500); }

/* Header brand is enlarged vs. the footer's — same markup, bigger scale */
.site-header .brand__mark { width: 50px; height: 50px; }
.site-header .brand__name { font-size: 20px; }
.site-header .brand__sep  { font-size: 17px; }
.site-header .brand__role { font-size: 16px; }

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.header-contact svg { width: 19px; height: 19px; color: var(--blue); }
.header-contact:hover { border-color: var(--blue); background: var(--blue-l); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero { background: var(--white); }
.hero__stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 640px;
}

.hero__photo { position: relative; overflow: hidden; }
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 72px 40px;
}
.hero__body::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -110px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,95,219,0.09) 0%, rgba(47,95,219,0) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 18px;
  border-radius: 40px;
  background: var(--blue-l);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero__title {
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #0F172A;
  margin-bottom: 14px;
}
.hero-title__line { display: block; }
.hero-title__line--1 { font-size: clamp(67px, 8.64vw, 125px); }
.hero-title__line--2 {
  font-size: clamp(38px, 5.04vw, 67px);
  margin-top: 16px;
  color: #0F172A;
}
.hero-title__accent {
  position: relative;
  display: inline-block;
}
.hero-title__accent::after {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 4px;
  background: #DC2626;
}

.hero__sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 500px;
  margin-bottom: 44px;
}

.hero__features {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hf-item { display: flex; align-items: center; gap: 12px; max-width: 160px; }
.hf-item__ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-l);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hf-item__ico svg { width: 20px; height: 20px; }
.hf-item__text { font-size: 13.5px; font-weight: 600; color: var(--navy-2); line-height: 1.45; }

.hero__cta-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 30px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary {
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-d) 100%);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(47, 95, 219, 0.36); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: var(--white);
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.btn--ghost:hover { border-color: var(--gray-400); background: var(--gray-100); }

.btn--block { width: 100%; }

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.btn[hidden] { display: none; }

/* ══════════════════════════════════════════════════════════════
   QUIZ SECTION — light-blue band + white card
══════════════════════════════════════════════════════════════ */
.quiz-band {
  background: var(--blue-l2);
  padding: 64px 40px;
}

.quiz-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 36px 48px 44px;
}

.quiz-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.quiz-card__head[hidden] { display: none; }
.quiz-card__step { font-size: 13px; font-weight: 600; color: var(--gray-500); }
.quiz-card__title { font-size: 16px; font-weight: 800; color: var(--navy); }

/* progress track */
.qtrack {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
}
.qtrack[hidden] { display: none; }
.qtrack__seg {
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: var(--gray-200);
  overflow: hidden;
}
.qtrack__seg i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 4px;
  transition: width 0.45s var(--ease);
}
.qtrack__seg.is-done i,
.qtrack__seg.is-active i { width: 100%; }

/* intro (cover) screen */
.qintro { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.qintro[hidden] { display: none; }
.qintro__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--blue-l);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qintro__icon svg { width: 30px; height: 30px; }
.qintro__note {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 520px;
}

/* step body */
.qstep { display: none; text-align: center; }
.qstep.is-active { display: block; animation: q-fade 0.4s var(--ease) both; }
@keyframes q-fade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.qstep__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--blue-l);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.qstep__icon svg { width: 34px; height: 34px; }

.qq {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 6px;
}
.qq-sub { font-size: 13.5px; color: var(--gray-500); margin-bottom: 30px; }

/* option grid — shared by all questions, column count varies per step */
.qgrid {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}
.qgrid--3 { grid-template-columns: repeat(3, 1fr); }
.qgrid--2 { grid-template-columns: repeat(2, 1fr); }
.qgrid--1 { grid-template-columns: 1fr; }

.qopt {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 56px;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-2);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease), color 0.2s var(--ease);
}
.qopt:hover { border-color: var(--blue-bd); background: var(--blue-l2); transform: translateY(-2px); }
.qopt.is-selected {
  border-color: var(--blue);
  background: var(--blue-l);
  color: var(--blue);
}

/* nav row: back / continue */
.qnav {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}
.qnav .btn { flex: 1; }

.qfud {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--gray-500);
}
.qfud svg { width: 13px; height: 13px; color: var(--gray-400); }

/* result box */
.qresult {
  padding: 22px 26px;
  border-radius: var(--radius-md);
  margin-bottom: 26px;
  background: var(--blue-l);
  border: 1px solid var(--blue-bd);
  text-align: right;
}
.qresult__tag { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.qresult__title { font-size: 19px; font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 8px; }
.qresult__body  { font-size: 14px; color: var(--gray-700); line-height: 1.75; }
.qresult__strong { font-weight: 700; color: var(--navy); }

.qstep--result { text-align: right; }
.qstep--result form { display: flex; flex-direction: column; gap: 16px; }

.fi label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-2); margin-bottom: 7px; }
.fi input, .fi select {
  width: 100%;
  padding: 13px 16px;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-family: var(--font);
  font-size: 15px;
  direction: rtl;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
.fi select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239AA3B5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
  cursor: pointer;
}
.fi input:focus, .fi select:focus { border-color: var(--blue); background: var(--white); }
.fi input::placeholder { color: var(--gray-400); }
.fi-err { display: block; font-size: 12px; color: #C0392B; margin-top: 6px; }
.fi-err[hidden] { display: none; }

.fi-radio { display: flex; gap: 10px; }
.fi-radio__opt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-2);
  transition: border-color 0.2s, background 0.2s;
}
.fi-radio__opt input { display: none; }
.fi-radio__opt:has(input:checked) { border-color: var(--blue); background: var(--blue-l); color: var(--blue); }

.fchk { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.fchk input { width: 15px; height: 15px; accent-color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.fchk span { font-size: 12px; color: var(--gray-500); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════
   VIDEO
══════════════════════════════════════════════════════════════ */
.video-section { padding: 76px 40px; background: var(--white); }
.video-section__inner { max-width: 860px; margin: 0 auto; text-align: center; }
.video-section__title { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.video-section__sub { font-size: 15px; color: var(--gray-500); margin-bottom: 36px; }
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--gray-100);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ══════════════════════════════════════════════════════════════
   WHY-CHOOSE
══════════════════════════════════════════════════════════════ */
.why { padding: 76px 40px; background: var(--white); }
.why__title { text-align: center; font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; color: var(--navy); margin-bottom: 48px; }

.why__grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.why-item {
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid var(--gray-200);
}
.why-item:last-child { border-left: none; }
.why-item__ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-l);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-item__ico svg { width: 24px; height: 24px; }
.why-item__title { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-item__sub   { font-size: 12.5px; color: var(--gray-500); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--footer-bg);
  padding: 34px 40px;
}
.site-footer__wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand__name { color: var(--white); }
.footer-brand .brand__sep  { color: rgba(255,255,255,0.3); }
.footer-brand .brand__role { color: rgba(255,255,255,0.55); }

.footer-item { display: flex; align-items: center; gap: 10px; max-width: 260px; }
.footer-item__ico {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-item__ico svg { width: 15px; height: 15px; }
.footer-item__title { font-size: 12.5px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.footer-item__sub   { display: block; font-size: 11.5px; color: rgba(255,255,255,0.55); line-height: 1.5; transition: color 0.15s; }
.footer-item__sub--lg { display: block; font-size: 15px; font-weight: 800; color: var(--white); direction: ltr; text-align: right; }
a.footer-item__sub:hover, a.footer-item__sub--lg:hover { color: var(--blue-l); }

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .wrap, .site-header { padding-left: 28px; padding-right: 28px; }
  .hero__stage { grid-template-columns: 1fr; min-height: 0; }
  .hero__photo { height: 440px; order: -1; }
  .hero__body { padding: 44px 28px; }
  .hero__body::before { display: none; }
  .quiz-band { padding: 48px 24px; }
  .quiz-card { padding: 30px 26px 34px; }
  .video-section { padding: 56px 24px; }
  .why { padding: 56px 24px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .why-item { border-left: none; }
  .why-item:nth-child(odd) { border-left: 1px solid var(--gray-200); }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .site-header { padding: 16px 20px; }
  .header-contact span { display: none; }
  .header-contact { padding: 10px; border-radius: 50%; }
  .header-contact svg { width: 18px; height: 18px; }
  .hero__body { padding: 32px 20px; }
  .hero__features { gap: 16px; }
  .hf-item { max-width: 46%; }
  .hero__cta-wrap { width: 100%; }
  .hero__cta-wrap .btn { width: 100%; }

  .quiz-band { padding: 32px 14px; }
  .quiz-card { padding: 24px 18px 28px; border-radius: 16px; }
  .quiz-card__head { flex-wrap: wrap; gap: 8px; }
  .qgrid--3, .qgrid--2 { grid-template-columns: 1fr; }

  .why-item { border-left: none !important; padding: 0 8px; }
  .why__grid { grid-template-columns: 1fr; row-gap: 32px; }

  .site-footer__wrap { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 4px rgba(37,211,102,0.14);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.25s var(--ease);
}
.wa-float.is-visible { opacity: 1; pointer-events: auto; }
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5), 0 0 0 6px rgba(37,211,102,0.18);
}

@media (max-width: 640px) {
  .wa-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 25px; height: 25px; }
}

/* ══════════════════════════════════════════════════════════════
   ACCESSIBILITY WIDGET
══════════════════════════════════════════════════════════════ */
.a11y {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9500;
}

.a11y__toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(47,95,219,0.35),
    0 0 0 4px rgba(47,95,219,0.12);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.a11y__toggle:hover,
.a11y__toggle:focus-visible {
  transform: scale(1.08);
  box-shadow:
    0 8px 32px rgba(47,95,219,0.45),
    0 0 0 6px rgba(47,95,219,0.15);
  outline: none;
}
.a11y__toggle svg { width: 24px; height: 24px; }

.a11y__panel {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  width: 264px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(16,24,43,0.18);
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.97);
  transform-origin: bottom left;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.a11y__panel[aria-hidden="false"] {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.a11y__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}

.a11y__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.a11y__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 6px;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
  color: var(--navy-2);
  font-family: var(--font);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.a11y__item:hover { background: var(--blue-l); border-color: var(--blue); }
.a11y__item:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.a11y__item[aria-checked="true"] {
  background: var(--blue-l);
  border-color: var(--blue);
  color: var(--blue);
}
.a11y__item--reset {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border-color: var(--gray-200);
}

.a11y__ico {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.a11y__lbl {
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  pointer-events: none;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .a11y { bottom: 16px; left: 16px; }
  .a11y__toggle { width: 44px; height: 44px; }
  .a11y__panel { width: 248px; }
}

/* ── Accessibility state classes ──────────────────────────── */
html.a11y--contrast { filter: contrast(1.6); }
html.a11y--grayscale { filter: grayscale(1); }
html.a11y--contrast.a11y--grayscale { filter: contrast(1.6) grayscale(1); }

html.a11y--links a {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px !important;
}

html.a11y--readable,
html.a11y--readable body,
html.a11y--readable * { font-family: Arial, sans-serif !important; }

html.a11y--no-anim *,
html.a11y--no-anim *::before,
html.a11y--no-anim *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

html.a11y--fs-1 { font-size: 110%; }
html.a11y--fs-2 { font-size: 120%; }
html.a11y--fs-3 { font-size: 130%; }

/* ══════════════════════════════════════════════════════════════
   THANK YOU PAGE
══════════════════════════════════════════════════════════════ */
.ty {
  background: var(--blue-l2);
  padding: 64px 40px;
  min-height: calc(100vh - 350px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ty__card {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 56px 48px;
  text-align: center;
}

.ty__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-l);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.ty__icon svg { width: 34px; height: 34px; }

.ty h1 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.ty__lead { font-size: 16px; color: var(--gray-700); line-height: 1.6; margin-bottom: 40px; }

.ty__steps { display: flex; flex-direction: column; gap: 14px; text-align: right; margin-bottom: 36px; }
.ty__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
}
.ty__step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty__step-title { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.ty__step-sub { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

.ty__actions-label { font-size: 13.5px; color: var(--gray-500); margin-bottom: 14px; }
.ty__actions { display: flex; gap: 12px; margin-bottom: 28px; }
.ty__actions .btn { flex: 1; }

.btn--wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37, 211, 102, 0.36); }
.btn--wa:active { transform: translateY(0); }

.ty__fud { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--gray-500); }
.ty__fud svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--blue); }

@media (max-width: 640px) {
  .ty { padding: 32px 16px; }
  .ty__card { padding: 36px 24px; }
  .ty__actions { flex-direction: column; }
}
