:root {
  --bg: #f5f6fa;
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --surface-muted: #f2f4f7;
  --text: #111827;
  --text-soft: #374151;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --line: rgba(17, 24, 39, 0.08);
  --line-soft: rgba(17, 24, 39, 0.05);
  --shadow-xs: 0 6px 16px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 24px 64px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 40px 90px rgba(15, 23, 42, 0.10);
  --red: #f04452;
  --red-dark: #df3342;
  --red-soft: #fff1f2;
  --green-soft: #eaf8ee;
  --green: #16a34a;
  --blue-soft: #eef4ff;
  --blue: #2563eb;
  --orange-soft: #fff4e8;
  --orange: #f59e0b;
  --purple-soft: #f4efff;
  --purple: #8b5cf6;
  --dark: #10182a;
  --dark-2: #111c31;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --radius-xs: 12px;
  --container: 1240px;
  --font: "Heebo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;

  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at top center, rgba(240, 68, 82, 0.045), transparent 26%),
    linear-gradient(180deg, #f8f9fc 0%, #f5f6fa 34%, #f5f6fa 100%);
  color: var(--text);
  font-family: var(--font);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

.page {
  padding-top: 18px;
}

.section {
  padding: 104px 0;
}

.section-light {
  background: transparent;
  align-content: center;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}

.center-head {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.section-subtitle {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 15px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn[disabled] {
  opacity: 0.54;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: linear-gradient(180deg, #f35460 0%, var(--red) 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(240, 68, 82, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #eb4755 0%, var(--red-dark) 100%);
}

.btn-outline,
.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-color: rgba(17, 24, 39, 0.14);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.btn-outline:hover,
.btn-secondary:hover {
  border-color: rgba(17, 24, 39, 0.22);
  background: #fff;
}

.btn-large {
  min-height: 58px;
  padding-inline: 30px;
}

.btn-with-icon {
  gap: 10px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
}

.btn-icon-whatsapp {
  width: 19px;
  height: 19px;
}

.btn-icon-light {
  filter: brightness(0) invert(1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 250, 0.84);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.04);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(17, 24, 39, 0.04);
}

.nav-link-accent {
  color: #0f7a39;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.12);
}

.nav-link-accent:hover {
  background: rgba(22, 163, 74, 0.14);
  color: #0d6f33;
}

.nav-link-exit {
  color: var(--text-soft);
}
/* 
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #232b3e 0%, #111827 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
*/
/*=========================
   HERO
========================= */

.hero-section {
  padding: 24px 0 26px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: 56px;
  align-items: center;
  min-height: 580px;
  direction: ltr;
}

.hero-copy,
.hero-visual {
  direction: rtl;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  border: 1px solid rgba(240, 68, 82, 0.09);
  font-size: 12px;
  font-weight: 800;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

.hero-title {
  margin: 18px 0 18px;
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.hero-title-accent {
  color: var(--red);
}

.hero-subtitle {
  margin: 0 0 24px;
  max-width: 580px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

.hero-subtitle strong {
  color: var(--text);
  font-weight: 900;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 11px;
}

.hero-bullets li {
  position: relative;
  padding-right: 24px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.hero-bullets li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0;
  color: #22c55e;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}
.hero-secondary-link {
  margin-top: 12px;
}

.hero-secondary-link a {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-secondary-link a:hover {
  color: #111827;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.hero-figure {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 620 / 470;
  overflow: visible;
}

.hero-bg-decor,
.hero-main-card,
.hero-badge {
  position: absolute;
  display: block;
  max-width: none;
  -webkit-user-select: none;
  user-select: none;
}

.hero-bg-decor {
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-main-card {
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-badge-1 {
  width: 28%;
  height: auto;
  left: 2%;
  bottom: 17%;
  z-index: 4;
  transition: transform 0.22s ease;
  transform-origin: center center;
  pointer-events: auto;
}

.hero-figure:hover .hero-badge-1 {
  transform: scale(1.06);
}

.hero-badge-2 {
  width: 28%;
  height: auto;
  right: 7%;
  top: 31%;
  z-index: 5;
  pointer-events: none;
  animation: badge-float-y 3.4s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes badge-float-y {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* =========================
   TRUST STRIP
========================= */

.trust-strip {
  margin-top: 128px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  
}

.trust-svg {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
}


/* =========================
   QUIZ
========================= */

.quiz-section {
  padding: 6px 0 36px;
}

.quiz-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
  border: 1px solid rgba(17, 24, 39, 0.05);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 34px 36px 30px;
  min-height: 580px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 30px;
}

.quiz-progress {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-weight: 800;
}

.quiz-progress-pct,
.quiz-progress-text {
  font-size: 14px;
}

.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: #edf0f4;
}

.progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(240, 68, 82, 0.62) 100%);
}

.quiz-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quiz-title {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.quiz-note {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  background: #fff8eb;
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: #92400e;
  font-size: 14px;
  font-weight: 700;
}

.options {
  min-height: 272px;
  display: flex;
  align-items: stretch;
}

.options-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.option-card {
  position: relative;
  display: flex;
  align-items: center;
  outline:none;
  justify-content: space-between;
  gap: 18px;
  min-height: 112px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.option-card:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 24, 39, 0.14);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
}

.option-card input[type="radio"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2; /* ensure it stays focusable above content for accessability*/
}
/* Visible focus for keyboard navigation */
.option-card input[type="radio"]:focus-visible {
  outline: none;
}

.option-card input[type="radio"]:focus-visible + .option-content,
.option-card input[type="radio"]:focus-visible ~ .option-icon,
.option-card:focus-within {
  box-shadow: 0 0 0 3px rgba(240, 68, 82, 0.35);
  border-radius: 20px;
}

.option-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.option-title {
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.option-subtitle {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.option-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(240, 68, 82, 0.08);
}

.option-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--red);
}

.option-card.is-selected {
  border-color: rgba(240, 68, 82, 0.38);
  box-shadow: 0 16px 34px rgba(240, 68, 82, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #fff6f7 100%);
}

.option-card.is-selected .option-icon {
  background: rgba(240, 68, 82, 0.12);
}

.option-card.is-selected .option-icon svg {
  fill: var(--red);
}

.quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
  border-top: 1px solid rgba(17, 24, 39, 0.05);
}

/* =========================
   RESULTS
========================= */

.error-box,
.result-box {
  width: 100%;
  border-radius: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(17, 24, 39, 0.07);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.result-cta-box {
  text-align: right;
}

.result-cta-title {
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}
.error-box {
  background: linear-gradient(180deg, #fff5f6 0%, #fff1f2 100%);
  border-color: rgba(240, 68, 82, 0.16);
}

.error-title {
  margin-bottom: 8px;
  color: #7f1d1d;
  font-size: 18px;
  font-weight: 900;
}

.error-text {
  color: #7f1d1d;
  line-height: 1.8;
  font-weight: 700;
}

.result-range {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1;
  font-weight: 900;
}

.result-text {
  color: var(--text-soft);
  line-height: 1.75;
  font-weight: 700;
}

.result-note {
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
  font-weight: 700;
}

#resultContainer ul {
  margin: 12px 0 0;
  padding: 0 18px 0 0;
}

#resultContainer li {
  margin: 6px 0;
}

#resultContainer form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 13px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

#resultContainer form input:focus {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
.result-category-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.result-category-title {
  font-weight: 900;
  font-size: 16px;
  min-width: 0;
}

.result-category-value {
  min-width: 88px;
  text-align: left;
  direction: ltr;
  unicode-bidi: isolate;
  color: #111827;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}


/* =========================
   HOW SECTION
========================= */

#how {
  padding-top: 96px;
  padding-bottom: 96px;
}

#how > .container {
  max-width: 1240px;
  background: #ffffff;
  padding: 88px 72px 82px;
  border-radius: 0;
}

#how .section-head {
  margin-bottom: 48px;
}

#how .section-title {
  margin-bottom: 10px;
}

#how .section-subtitle {
  max-width: none;
  font-size: 15px;
  line-height: 1.8;
  color: #8b95a5;
}

.how-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.how-grid::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #e8ebf0;
}

.how-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  overflow: visible;
}

.how-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  overflow: visible;
  flex: 0 0 auto;
}

.how-icon.red,
.how-icon.pink,
.how-icon.coral {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.how-icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.how-card:nth-child(1) .how-icon::after,
.how-card:nth-child(2) .how-icon::after,
.how-card:nth-child(3) .how-icon::after {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f04452;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(240, 68, 82, 0.22);
}

.how-card:nth-child(1) .how-icon::after { content: "1"; }
.how-card:nth-child(2) .how-icon::after { content: "2"; }
.how-card:nth-child(3) .how-icon::after { content: "3"; }

.how-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
  color: #0f172a;
}

.how-card p {
  max-width: 230px;
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #8b95a5;
  font-weight: 500;
}

/* =========================
   DARK CTA
========================= */

.section-dark-cta {
  padding: 96px 0;
  background:
    radial-gradient(circle at center, rgba(39, 81, 160, 0.2) 0%, rgba(13, 23, 43, 0) 40%),
    linear-gradient(180deg, #0c1425 0%, #111b31 100%);
  color: #fff;
}

.cta-dark-wrap {
  max-width: 860px;
  text-align: center;
}

.cta-dark-wrap h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.cta-dark-wrap p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

.cta-dark-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
}

/* =========================
   PROOF
========================= */

.proof-head {
 /* display: flex;
  flex-direction: row-reverse;*/
  align-items: center;
  
}

.proof-link {
  color: #f16a75;
  font-size: 14px;
  font-weight: 800;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.proof-card {
  min-height: 248px;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid rgba(17, 24, 39, 0.05);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.proof-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  border-color: rgba(17, 24, 39, 0.08);
}

.proof-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.proof-icon.orange { background: rgba(245, 158, 11, 0.16); }
.proof-icon.purple { background: rgba(139, 92, 246, 0.14); }
.proof-icon.blue { background: rgba(59, 130, 246, 0.14); }

.proof-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.proof-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 900;
}

.proof-card p {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
}

.proof-metric {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.proof-metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.proof-metric strong {
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

/* =========================
   FAQ
========================= */

.faq-wrap {
  max-width: 860px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035);
  overflow: hidden;
}

.accordion-summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 18px 56px 18px 20px;
  list-style: none;
  cursor: pointer;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
}

.accordion-summary::-webkit-details-marker {
  display: none;
}

.accordion-summary::before {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.04);
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.accordion-item[open] .accordion-summary::before {
  content: "–";
}

.accordion-body {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
}

/* =========================
   FINAL CTA
========================= */

.section-final-cta {
  padding: 110px 0 98px;
}

.final-cta-wrap {
  max-width: 760px;
  text-align: center;
}

.final-cta-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffe3e7 0%, #ffd3d8 100%);
  color: var(--red);
  font-size: 22px;
  box-shadow: 0 10px 20px rgba(240, 68, 82, 0.1);
  overflow: hidden;
}

.final-cta-icon img {
  width: 26px;
  height: 26px;
  display: block;
}

.final-cta-wrap h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.final-cta-wrap p {
  max-width: 620px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
/* =========================
   FOOTER
========================= */

.footer {
  background: linear-gradient(180deg, #0f1830 0%, #0c1730 100%);
  color: #ffffff;
  padding: 56px 0 24px;
}

.footer-shell {
  display: flex;
  flex-direction: column;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 72px;
  align-items: start;
}

.footer-brand-col {
  min-width: 0;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-logo-link img {
  height: 32px;
  width: auto;
  flex: 0 0 auto;
}

.footer-logo-text {
  display: inline-block;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.footer-description {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.95;
  font-weight: 500;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 48px;
}

.footer-badges img {
  height: 28px;
  width: auto;
  max-width: 100%;
  opacity: 0.92;
}

.footer-links-area {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, max-content));
  gap: 56px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.footer-col h4 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

.footer-col a,
.footer-col div {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.9;
  font-weight: 500;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-contact-col {
  min-width: 190px;
}

.footer-divider {
  margin: 34px 0 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom-links a,
.footer-copy {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1180px) {
  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    direction: rtl;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    justify-content: center;
  }

  .hero-figure {
    width: min(100%, 560px);
  }

.proof-grid,
.how-grid,
.footer-main {
  gap: 56px;
}

.footer-links-area {
  gap: 40px;
}

  #how > .container {
    padding: 72px 40px 68px;
  }
}

@media (max-width: 900px) {
  .page {
    padding-top: 12px;
  }

  .section {
    padding: 76px 0;
  }

  .site-header{
    display: none;
  }
  .header-inner {
    min-height: 72px;
    flex-direction: column-reverse;
    justify-content: center;
    padding: 12px 0;
  }

  .nav {
    display:none;
  }

  .trust-strip{
    display: none;
  }

  .hero-section {
    padding-top: 12px;
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-subtitle,
  .section-subtitle,
  .cta-dark-wrap p,
  .final-cta-wrap p {
    font-size: 16px;
  }

  .hero-figure {
    display:none;
  }

  .hero-badge-1 {
    width: 34%;
    left: 0;
    bottom: 14%;
  }

  .hero-badge-2 {
    width: 28%;
    right: 4%;
    top: 29%;
  }

  .proof-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .options-grid,
  .proof-grid,
  .how-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .quiz-card {
    padding: 26px 22px 22px;
    border-radius: 24px;
    gap: 24px;
    min-height: 540px;
  }

  .quiz-title {
    text-align: right;
  }

  .quiz-note {
    align-self: stretch;
  }

  #resultContainer form {
    grid-template-columns: 1fr !important;
  }

 .footer {
  padding: 40px 0 24px;
}

.footer-main {
  grid-template-columns: 1fr;
  gap: 34px;
}

.footer-brand-col {
  max-width: 100%;
}

.footer-logo-link {
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-link img {
  height: 32px;
}

.footer-logo-text {
  font-size: 16px;
  line-height: 1.35;
}

.footer-description {
  max-width: 100%;
  font-size: 12px;
  line-height: 1.9;
}

.footer-badges {
  gap: 12px 14px;
  margin-top: 20px;
}

.footer-badges img {
  height: 24px;
}

.footer-links-area {
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  width: 100%;
}

.footer-col {
  gap: 10px;
}

.footer-contact-col {
  min-width: 0;
}

.footer-divider {
  margin: 28px 0 16px;
}

.footer-bottom-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-bottom-links {
  gap: 16px;
}

  #how {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  #how > .container {
    padding: 56px 24px;
  }

  .how-grid::before {
    display: none;
  }

  .how-card p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    gap: 10px;
  }

  .nav {
    gap: 6px;
    justify-content: flex-start;
  }

  .nav-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .section {
    padding: 60px 0;
  }

  .hero-wrap {
    gap: 14px;
  }

  .hero-grid {
    gap: 24px;
    direction: rtl;
  }

  .hero-title {
    margin-bottom: 12px;
  }

  .hero-actions,
  .final-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .final-cta-actions .btn,
  .quiz-actions .btn,
  .cta-dark-wrap .btn {
    width: 100%;
  }

  .hero-figure {
    width: 100%;
    aspect-ratio: 620 / 500;
  }

  .hero-badge-1 {
    width: 34%;
    left: 0;
    bottom: 14%;
  }

  .hero-badge-2 {
    width: 28%;
    right: 4%;
    top: 29%;
  }

  .section-title,
  .cta-dark-wrap h2,
  .final-cta-wrap h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .quiz-card {
    padding: 22px 16px 18px;
    min-height: auto;
  }

  .quiz-progress-top,
  .quiz-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .option-card {
    min-height: 100px;
    padding: 18px;
    border-radius: 18px;
  }

  .option-title {
    font-size: 16px;
  }

  .proof-card,
  .error-box,
  .result-box,
  .accordion-item {
    border-radius: 18px;
  }
.footer-links-area {
  grid-template-columns: 1fr;
  gap: 24px;
}

.footer-logo-link {
  align-items: flex-start;
}

.footer-logo-link img {
  height: 30px;
}

.footer-logo-text {
  font-size: 15px;
}

.footer-badges img {
  height: 22px;
}

.footer-bottom-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
}

/*In case the view requires to have 2 lines in question - nowrap will allow not to break the expression inside brackets*/
.nowrap {
  white-space: nowrap;
}

/* Mobile quiz: keep actions visible without vertical scroll */
@media (max-width: 900px) {
  .quiz-section {
    padding: 0 0 20px;
  }

  .quiz-section .container {
    width: calc(100% - 20px);
  }

  .quiz-card {
    min-height: calc(100dvh - 20px);
    padding: 16px 14px 14px;
    gap: 14px;
    border-radius: 20px;
    grid-template-rows: auto auto 1fr auto;
  }

  .quiz-progress {
    gap: 8px;
  }

  .quiz-header {
    gap: 10px;
  }

  .quiz-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .quiz-note {
    min-height: 0;
    padding: 10px 12px;
    font-size: 13px;
  }

  .options {
    min-height: 0;
    align-items: start;
  }

  .options-grid {
    gap: 10px;
  }

  .option-card {
    min-height: 84px;
    padding: 14px;
    border-radius: 16px;
  }

  .option-title {
    font-size: 15px;
    line-height: 1.3;
  }

  .option-subtitle {
    font-size: 12px;
    line-height: 1.45;
  }

  .option-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .option-icon svg {
    width: 18px;
    height: 18px;
  }

  .quiz-actions {
    margin-top: auto;
    padding-top: 10px;
    gap: 10px;
  }

  .quiz-actions .btn {
    min-height: 48px;
  }
}
.quiz-home-btn {
  display: none;
}

@media (max-width: 900px) {
  .quiz-progress-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .quiz-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
    color: #111827;
    flex: 0 0 auto;
  }

  .quiz-home-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
  }

  .quiz-progress-text {
    text-align: center;
  }

  .quiz-progress-pct {
    text-align: right;
  }
}

/* =========================
   ACCESSIBILITY
========================= */

.skip-link {
  position: absolute;
  top: -48px;
  right: 16px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  color: #111827;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
.option-card:focus-within,
.quiz-home-btn:focus-visible {
  outline: 3px solid rgba(240, 68, 82, 0.45);
  outline-offset: 3px;
}

.accordion-summary:focus-visible {
  outline: 3px solid rgba(240, 68, 82, 0.45);
  outline-offset: -3px;
}

.option-card input[type="radio"]:focus-visible + .option-content,
.option-card input[type="radio"]:focus-visible ~ .option-icon {
  position: relative;
  z-index: 1;
}

.progress-track {
  position: relative;
}

.progress-track[aria-hidden="true"] {
  pointer-events: none;
}

/* =========================
   ACCESSIBILITY MODAL
========================= */

.accessibility-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.accessibility-modal.is-open {
  display: block;
}

.accessibility-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.accessibility-dialog {
  position: relative;
  max-width: 720px;
  margin: 60px auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  z-index: 1;
  max-height: 80vh;
  overflow-y: auto;
}

.accessibility-content h2 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 800;
}

.accessibility-content h3 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 800;
}

.accessibility-content p,
.accessibility-content li {
  font-size: 14px;
  line-height: 1.8;
}

.accessibility-content ul {
  padding-right: 18px;
}

.accessibility-close {
  position: absolute;
  top: 10px;
  left: 12px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

.result-action-wrap {
  display: flex;
  justify-content: center;
}

.result-action-btn {
  min-width: 280px;
  min-height: 56px;
  padding-inline: 28px;
  font-size: 16px;
}

.result-cta-box {
  text-align: center;
}

.result-cta-title {
  color: #111827;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

@media (max-width: 640px) {
  .result-action-btn {
    width: 100%;
    min-width: 0;
  }
}

.locked-result-wrap {
  position: relative;
  margin-top: 14px;
}

.locked-result-content {
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.locked-result-wrap:not(.is-unlocked) .locked-result-content {
  filter: blur(10px);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.locked-result-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 12px;
  z-index: 2;
}

.locked-result-panel {
  width: min(100%, 720px);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
  padding: 20px;
}

.locked-result-title {
  font-size: 22px;
  font-weight: 900;
  color: #111827;
  text-align: center;
}

.locked-result-text {
  margin-top: 8px;
  margin-bottom: 14px;
  color: #6B7280;
  text-align: center;
  line-height: 1.6;
}

.locked-result-wrap.is-unlocked .locked-result-overlay {
  display: none;
}