@font-face {
  font-family: "Yekan";
  src: url("/assets/fonts/Yekan/235b71a9b409e684e865eb4a996e925e.woff2") format("woff2"),
       url("/assets/fonts/Yekan/235b71a9b409e684e865eb4a996e925e.woff") format("woff");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #17213a;
  --ink-soft: #5f6880;
  --ink-faint: #8991a6;
  --surface: #ffffff;
  --canvas: #f7f8fc;
  --line: #e7e9f2;
  --primary: #6657e8;
  --primary-dark: #4f42c7;
  --primary-soft: #eeecff;
  --green: #159a8c;
  --blue: #3e86e7;
  --orange: #ed8c39;
  --pink: #d95a8d;
  --shadow-sm: 0 8px 28px rgba(36, 37, 73, .07);
  --shadow-md: 0 20px 60px rgba(39, 36, 91, .12);
  --shadow-lg: 0 36px 90px rgba(46, 39, 116, .17);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Yekan", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  right: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 82px;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-color: rgba(227, 229, 239, .85);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 8px 32px rgba(31, 33, 67, .06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark {
  width: 43px;
  height: 43px;
  padding: 7px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 9px 22px rgba(102, 87, 232, .24);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy b { font-family: Arial, sans-serif; font-size: 19px; letter-spacing: -.45px; }
.brand-copy small { margin-top: 5px; color: var(--ink-faint); font-size: 10px; font-weight: 600; }
.desktop-nav { display: flex; align-items: center; gap: 31px; margin-inline-start: auto; }
.desktop-nav a { position: relative; color: #505a72; font-size: 14px; font-weight: 600; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 3px;
  background: var(--primary);
  transition: width .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { width: 100%; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 10px 23px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button svg { width: 20px; height: 20px; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible {
  outline: 3px solid rgba(102, 87, 232, .28);
  outline-offset: 3px;
}
.button-small { min-height: 44px; padding: 9px 17px; border-radius: 13px; background: var(--ink); color: #fff; font-size: 13px; }
.button-small:hover { background: #25304d; box-shadow: 0 12px 30px rgba(23, 33, 58, .18); }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); }
.menu-button span { display: block; width: 22px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { position: fixed; inset: 82px 16px auto; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.97); box-shadow: var(--shadow-md); }
.mobile-nav a:not(.button) { display: block; padding: 12px 8px; border-bottom: 1px solid var(--line); font-weight: 650; }
.mobile-nav .button { width: 100%; margin-top: 14px; background: var(--primary); color: #fff; }

.hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  padding: 158px 0 54px;
  background:
    linear-gradient(180deg, #fbfbff 0%, #f7f8fc 92%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .38;
  pointer-events: none;
  background-image: radial-gradient(#cbc7ee 1px, transparent 1px);
  background-size: 29px 29px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 48%, #000);
  mask-image: linear-gradient(90deg, #000, transparent 48%, #000);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 540px; height: 540px; top: -230px; right: -150px; background: radial-gradient(circle, rgba(102,87,232,.18), rgba(102,87,232,0) 68%); }
.hero-glow-two { width: 520px; height: 520px; bottom: -240px; left: -140px; background: radial-gradient(circle, rgba(21,154,140,.14), rgba(21,154,140,0) 69%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 75px; }
.eyebrow, .section-kicker { color: var(--primary); font-size: 13px; font-weight: 800; letter-spacing: .01em; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 7px 12px; border: 1px solid #dedafd; border-radius: 999px; background: rgba(255,255,255,.74); }
.eyebrow-dot { width: 8px; height: 8px; border: 2px solid var(--primary); border-radius: 50%; box-shadow: 0 0 0 4px var(--primary-soft); }
.hero h1 { margin: 22px 0 23px; font-size: clamp(47px, 5.2vw, 73px); line-height: 1.28; letter-spacing: -.045em; }
.hero h1 span { position: relative; color: var(--primary); white-space: nowrap; }
.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 5%;
  bottom: 2px;
  width: 92%;
  height: 13px;
  border-radius: 50%;
  background: rgba(102, 87, 232, .12);
  transform: rotate(-1deg);
}
.hero-lead { max-width: 570px; margin-bottom: 30px; color: var(--ink-soft); font-size: 18px; line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button-primary { min-height: 58px; padding-inline: 27px; background: var(--primary); color: #fff; box-shadow: 0 16px 34px rgba(102,87,232,.25); }
.button-primary:hover { background: var(--primary-dark); box-shadow: 0 20px 40px rgba(102,87,232,.32); }
.button-ghost { min-height: 58px; border-color: var(--line); background: rgba(255,255,255,.82); color: var(--ink); }
.button-ghost:hover { border-color: #cfcbea; background: #fff; box-shadow: var(--shadow-sm); }
.button-ghost svg { transform: rotate(180deg); }
.hero-note { display: flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--ink-faint); font-size: 12px; font-weight: 600; }
.hero-note svg { width: 20px; color: var(--green); }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(102,87,232,.13); border-radius: 50%; }
.orbit-one { width: 500px; height: 500px; }
.orbit-two { width: 410px; height: 410px; border-style: dashed; animation: slowSpin 35s linear infinite; }
.orbit-two::before, .orbit-two::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 7px rgba(102,87,232,.1); }
.orbit-two::before { top: 44px; left: 46px; }
.orbit-two::after { right: 38px; bottom: 66px; background: var(--green); box-shadow: 0 0 0 7px rgba(21,154,140,.1); }
@keyframes slowSpin { to { transform: rotate(360deg); } }
.result-card {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  padding: 25px;
  border: 1px solid rgba(225,224,239,.95);
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.4deg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.result-topbar, .result-footer, .test-card-top { display: flex; align-items: center; justify-content: space-between; }
.result-topbar small { display: block; color: var(--ink-faint); font-size: 11px; }
.result-topbar strong { display: block; margin-top: 3px; font-size: 17px; }
.result-avatar { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: var(--primary-soft); color: var(--primary); }
.result-avatar svg { width: 34px; }
.insight-panel { display: grid; grid-template-columns: 119px 1fr; align-items: center; gap: 20px; margin: 23px 0; padding: 20px 17px; border-radius: 20px; background: linear-gradient(135deg, #f0eeff, #f8f7ff); }
.insight-ring { position: relative; width: 105px; height: 105px; }
.insight-ring svg { transform: rotate(-90deg); }
.insight-ring circle { fill: none; stroke-width: 9; }
.ring-track { stroke: #ddd9fa; }
.ring-value { stroke: var(--primary); stroke-linecap: round; stroke-dasharray: 84 100; }
.insight-ring div { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; line-height: 1.2; }
.insight-ring b { font-family: Tahoma, sans-serif; font-size: 28px; }
.insight-ring span { margin-top: 3px; color: var(--ink-faint); font-size: 9px; }
.result-label { color: var(--primary); font-size: 10px; font-weight: 800; }
.insight-copy h2 { margin: 5px 0 7px; font-size: 16px; line-height: 1.55; }
.insight-copy p { margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.8; }
.trait-list { display: grid; gap: 14px; }
.trait-row > div { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 11px; }
.trait-row b { color: var(--ink-soft); font-size: 10px; }
.trait-track { display: block; height: 7px; overflow: hidden; border-radius: 99px; background: #eff0f5; direction: rtl; }
.trait-track i { display: block; width: var(--score); height: 100%; border-radius: inherit; background: linear-gradient(90deg, #8e83f0, var(--primary)); }
.trait-track .score-88 { --score: 88%; }
.trait-track .score-76 { --score: 76%; }
.trait-track .score-64 { --score: 64%; }
.result-footer { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.result-footer > span { display: flex; align-items: center; gap: 7px; color: var(--green); font-size: 10px; font-weight: 800; }
.result-footer > span i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(21,154,140,.1); }
.result-footer .mock-button { padding: 9px 13px; border-radius: 10px; background: var(--ink); color: #fff; font-size: 10px; }
.floating-pill { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 11px 14px; border: 1px solid rgba(225,224,239,.95); border-radius: 13px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-md); color: var(--ink-soft); font-size: 10px; font-weight: 700; }
.pill-one { top: 37px; right: -10px; animation: float 5s ease-in-out infinite; }
.pill-two { bottom: 60px; left: -20px; animation: float 5s ease-in-out 1.2s infinite; }
.pill-icon { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 8px; background: #fff1dd; color: var(--orange); font-size: 15px; }
.privacy-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(21,154,140,.12); }
@keyframes float { 50% { transform: translateY(-8px); } }
.trust-row { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 48px; margin-top: 54px; padding: 24px; border: 1px solid rgba(231,233,242,.9); border-radius: 22px; background: rgba(255,255,255,.68); }
.trust-row > div { display: flex; align-items: baseline; gap: 10px; }
.trust-row strong { color: var(--primary); font-family: Tahoma, sans-serif; font-size: 23px; }
.trust-row span { color: var(--ink-soft); font-size: 12px; font-weight: 650; }
.trust-divider { width: 1px; height: 27px; background: var(--line); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.section-heading h2, .experience-copy h2, .privacy-copy h2, .faq-heading h2 { margin: 8px 0 0; font-size: clamp(34px, 4vw, 49px); line-height: 1.45; letter-spacing: -.03em; }
.section-heading > p { max-width: 520px; margin: 0; color: var(--ink-soft); line-height: 2; }
.test-section { background: var(--surface); }
.category-strip { display: flex; gap: 10px; overflow-x: auto; margin: -10px 0 30px; padding: 10px 2px 12px; scrollbar-width: none; }
.category-strip::-webkit-scrollbar { display: none; }
.category-chip { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: #fff; font-size: 12px; font-weight: 700; }
.category-chip.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.chip-dot { width: 7px; height: 7px; border-radius: 50%; }
.chip-dot.purple { background: var(--primary); }.chip-dot.green { background: var(--green); }.chip-dot.blue { background: var(--blue); }.chip-dot.orange { background: var(--orange); }.chip-dot.pink { background: var(--pink); }
.test-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.test-card { position: relative; min-height: 376px; overflow: hidden; padding: 23px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 8px 24px rgba(28,32,68,.035); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.test-card::before { content: ""; position: absolute; top: -70px; left: -70px; width: 170px; height: 170px; border-radius: 50%; opacity: .08; background: currentColor; }
.test-card:hover { transform: translateY(-7px); border-color: transparent; box-shadow: var(--shadow-md); }
.card-purple { color: var(--primary); }.card-green { color: var(--green); }.card-blue { color: var(--blue); }.card-orange { color: var(--orange); }
.test-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: color-mix(in srgb, currentColor 11%, #fff); }
.test-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.test-category { padding: 5px 9px; border-radius: 999px; background: color-mix(in srgb, currentColor 9%, #fff); font-size: 10px; font-weight: 800; }
.test-card h3 { margin: 26px 0 10px; color: var(--ink); font-size: 20px; line-height: 1.6; }
.test-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.95; }
.test-meta { display: flex; align-items: center; gap: 7px; margin-top: 19px; color: var(--ink-faint); font-size: 10px; }
.test-meta i { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-faint); }
.test-link { position: absolute; right: 23px; bottom: 22px; display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 800; }
.test-link svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transform: rotate(180deg); transition: transform .2s ease; }
.test-card:hover .test-link svg { transform: rotate(180deg) translateX(4px); }
.all-tests-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 25px; padding: 21px 25px; border-radius: 20px; background: #f7f8fc; }
.all-tests-cta > div { display: flex; align-items: center; gap: 16px; }
.mini-avatars { display: flex; direction: ltr; }
.mini-avatars i { display: grid; place-items: center; width: 35px; height: 35px; margin-right: -8px; border: 3px solid #f7f8fc; border-radius: 50%; color: #fff; background: var(--primary); font-style: normal; font-size: 11px; }
.mini-avatars i:nth-child(2) { background: var(--green); }.mini-avatars i:nth-child(3) { background: var(--blue); }.mini-avatars i:nth-child(4) { background: var(--orange); }
.all-tests-cta p { display: flex; flex-direction: column; margin: 0; line-height: 1.5; }
.all-tests-cta strong { font-size: 13px; }.all-tests-cta p span { color: var(--ink-faint); font-size: 10px; }
.text-link { color: var(--primary); font-size: 13px; font-weight: 800; }

.experience-section { overflow: hidden; background: #f3f3fb; }
.experience-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 95px; }
.experience-copy > p { max-width: 590px; margin: 18px 0 33px; color: var(--ink-soft); line-height: 2; }
.step-list { position: relative; display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.step-list::before { content: ""; position: absolute; top: 44px; bottom: 44px; right: 24px; width: 1px; background: #d9d8e7; }
.step-list li { position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 14px 0; }
.step-number { z-index: 1; display: grid; place-items: center; width: 49px; height: 49px; border: 7px solid #f3f3fb; border-radius: 50%; background: #fff; color: var(--primary); box-shadow: 0 0 0 1px #dfddeb; font-family: Tahoma, sans-serif; font-size: 12px; font-weight: 800; }
.step-list h3 { margin: 0 0 3px; font-size: 16px; }.step-list p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.phone-stage { position: relative; min-height: 620px; display: grid; place-items: center; }
.phone-halo { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(102,87,232,.16), rgba(102,87,232,0) 68%); }
.phone { position: relative; z-index: 2; width: 295px; height: 590px; overflow: hidden; border: 9px solid var(--ink); border-radius: 45px; background: #f9f9fc; box-shadow: 0 38px 80px rgba(35,35,80,.25); transform: rotate(3deg); }
.phone::before { content: ""; position: absolute; z-index: 4; top: 8px; left: 50%; width: 82px; height: 21px; border-radius: 99px; background: var(--ink); transform: translateX(-50%); }
.phone-top { height: 40px; display: flex; align-items: center; justify-content: space-between; padding: 6px 18px 0; color: #2f3850; font: 9px Tahoma, sans-serif; direction: ltr; }
.phone-top i { width: 40px; }
.phone-appbar { height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 17px; background: #fff; }
.phone-brand { display: flex; align-items: center; gap: 7px; font: 12px Arial, sans-serif; direction: ltr; }
.tiny-meter { position: relative; width: 25px; height: 25px; border-radius: 8px; background: var(--primary); }
.tiny-meter::before { content: ""; position: absolute; right: 5px; bottom: 5px; width: 13px; height: 7px; border: 2px solid #fff; border-bottom: 0; border-radius: 10px 10px 0 0; }
.tiny-meter::after { content: ""; position: absolute; right: 11px; bottom: 5px; width: 2px; height: 9px; border-radius: 2px; background: #fff; transform: rotate(35deg); transform-origin: bottom; }
.more-dots { color: var(--ink-faint); letter-spacing: 2px; }
.phone-progress { height: 4px; background: #e9e9f1; direction: rtl; }.phone-progress i { display: block; width: 36%; height: 100%; background: var(--primary); }
.phone-content { padding: 29px 18px; }
.question-count { color: var(--primary); font-size: 10px; font-weight: 800; }
.phone-content h3 { margin: 8px 0 23px; font-size: 16px; line-height: 1.85; }
.answer { min-height: 59px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; padding: 11px 13px; border: 1px solid #e5e5ed; border-radius: 14px; background: #fff; color: var(--ink-soft); font-size: 11px; line-height: 1.65; }
.answer.selected { border-color: var(--primary); background: var(--primary-soft); color: var(--ink); }
.answer i { display: grid; place-items: center; width: 20px; height: 20px; flex: 0 0 auto; margin-right: 8px; border-radius: 50%; background: var(--primary); color: #fff; font-style: normal; font: 11px Tahoma; }
.phone-action { position: absolute; right: 16px; bottom: 19px; left: 16px; display: grid; place-items: center; height: 48px; border-radius: 13px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 800; }
.stage-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; padding: 12px 14px; border: 1px solid #e1e0ed; border-radius: 14px; background: #fff; box-shadow: var(--shadow-md); }
.stage-note b { font-size: 11px; }.stage-note span { color: var(--ink-faint); font-size: 9px; }
.note-progress { top: 105px; right: -15px; flex-direction: column; align-items: start; gap: 0; }.note-progress b { color: var(--primary); font: 22px Tahoma, sans-serif; }
.note-saved { bottom: 115px; left: -25px; }.note-saved span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #e4f7f3; color: var(--green); font: 12px Tahoma; }

.report-section { background: #fff; }
.section-heading.centered { max-width: 730px; display: block; margin: 0 auto 50px; text-align: center; }
.section-heading.centered > p { max-width: 690px; margin: 14px auto 0; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { padding: 31px; border: 1px solid var(--line); border-radius: 24px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.benefit-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; }
.benefit-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.purple-icon { color: var(--primary); background: var(--primary-soft); }.green-icon { color: var(--green); background: #e8f7f4; }.blue-icon { color: var(--blue); background: #eaf3ff; }
.benefit-card h3 { margin: 22px 0 8px; font-size: 18px; }.benefit-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.95; }

.privacy-section { padding-top: 50px; background: #fff; }
.privacy-card { position: relative; min-height: 610px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 50px; overflow: hidden; padding: 65px 70px; border-radius: 38px; background: #151b34; color: #fff; }
.privacy-card::before { content: ""; position: absolute; top: -240px; left: -190px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(102,87,232,.32), rgba(102,87,232,0) 68%); }
.privacy-card::after { content: ""; position: absolute; right: -190px; bottom: -300px; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgba(21,154,140,.2), rgba(21,154,140,0) 70%); }
.privacy-copy, .privacy-visual { position: relative; z-index: 2; }
.light-kicker { color: #a9a0ff; }
.privacy-copy > p { margin: 19px 0 25px; color: #b8bfd1; line-height: 2; }
.privacy-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; color: #dbe0ed; font-size: 12px; }
.privacy-list li { display: flex; align-items: start; gap: 10px; }
.privacy-list li span { display: grid; place-items: center; width: 19px; height: 19px; flex: 0 0 auto; margin-top: 5px; border-radius: 50%; background: rgba(51,199,181,.15); color: #4bd7c6; font: 10px Tahoma; }
.privacy-actions { display: flex; align-items: center; gap: 22px; margin-top: 28px; }
.privacy-actions a { color: #b9b2ff; font-size: 12px; font-weight: 800; }.privacy-actions a + a { color: #cbd0dd; font-weight: 600; }
.privacy-visual { min-height: 430px; display: grid; place-items: center; }
.shield-wrap { display: grid; place-items: center; width: 265px; height: 265px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; background: radial-gradient(circle, rgba(102,87,232,.23), rgba(102,87,232,.05) 60%, transparent 61%); box-shadow: 0 0 0 36px rgba(255,255,255,.018), 0 0 0 73px rgba(255,255,255,.012); }
.shield { width: 145px; filter: drop-shadow(0 24px 28px rgba(0,0,0,.25)); }
.shield path:first-child { fill: #7567f0; stroke: #a89fff; stroke-width: 3; }.shield path:last-child { fill: none; stroke: #fff; stroke-width: 12; stroke-linecap: round; stroke-linejoin: round; }
.privacy-data-card { position: absolute; min-width: 185px; padding: 12px 38px 12px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(31,38,69,.9); box-shadow: 0 18px 40px rgba(0,0,0,.18); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.privacy-data-card span, .privacy-data-card b { display: block; line-height: 1.5; }.privacy-data-card span { color: #949db6; font-size: 9px; }.privacy-data-card b { margin-top: 3px; font-size: 10px; }.privacy-data-card i { position: absolute; right: 11px; top: 50%; display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: rgba(255,255,255,.09); color: #fff; font: 10px Tahoma; transform: translateY(-50%); }
.data-one { top: 35px; left: -4px; }.data-one i { color: #ff8ca0; }.data-two { right: -16px; bottom: 84px; }.data-two i { color: #4bd7c6; }.data-three { bottom: 16px; left: 35px; }.data-three i { color: #b9b2ff; }

.faq-section { background: #f7f8fc; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading > p { margin: 16px 0 25px; color: var(--ink-soft); line-height: 2; }
.support-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 13px; font-weight: 800; }.support-link svg { width: 19px; }
.faq-list { display: grid; gap: 11px; }
.faq-list details { border: 1px solid var(--line); border-radius: 17px; background: #fff; transition: box-shadow .2s ease; }
.faq-list details[open] { box-shadow: var(--shadow-sm); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 22px; cursor: pointer; list-style: none; font-size: 14px; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 24px; height: 24px; flex: 0 0 auto; border-radius: 8px; background: var(--primary-soft); }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 11px; right: 7px; width: 10px; height: 2px; border-radius: 2px; background: var(--primary); }
.faq-list summary span::after { transform: rotate(90deg); transition: transform .2s ease; }.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { margin: -4px 22px 0; padding: 0 0 21px; color: var(--ink-soft); font-size: 12px; line-height: 2; }

.final-cta-section { padding: 20px 0 90px; background: #f7f8fc; }
.final-cta { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; overflow: hidden; padding: 55px 60px; border-radius: 32px; background: linear-gradient(125deg, #5b4bd5, #7567ef); color: #fff; box-shadow: 0 26px 65px rgba(82,67,194,.23); }
.final-cta h2 { max-width: 700px; margin: 9px 0 10px; font-size: clamp(30px, 4vw, 45px); line-height: 1.5; }.final-cta p { margin: 0; color: #dad6ff; }
.button-white { position: relative; z-index: 2; min-width: 205px; background: #fff; color: var(--primary-dark); box-shadow: 0 14px 30px rgba(35,24,122,.2); }
.cta-art { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }.cta-art span { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }.cta-art span:nth-child(1) { width: 280px; height: 280px; top: -160px; right: 28%; }.cta-art span:nth-child(2) { width: 410px; height: 410px; top: -240px; right: 22%; }.cta-art span:nth-child(3) { width: 250px; height: 250px; bottom: -175px; left: 7%; background: rgba(255,255,255,.04); }

.site-footer { padding: 62px 0 22px; background: #11162a; color: #fff; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 65px; align-items: start; }
.footer-brand .brand-copy small { color: #878ea3; }.footer-brand .brand-mark { box-shadow: none; }
.footer-about { margin: 0; color: #8f96aa; font-size: 12px; line-height: 2; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer-links div { display: flex; flex-direction: column; gap: 8px; }.footer-links b { margin-bottom: 4px; font-size: 12px; }.footer-links a { color: #9299ad; font-size: 11px; transition: color .2s ease; }.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 47px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.08); color: #737b91; font-size: 10px; }.footer-bottom p { margin: 0; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.test-grid .reveal:nth-child(2), .benefit-grid .reveal:nth-child(2) { transition-delay: .08s; }
.test-grid .reveal:nth-child(3), .benefit-grid .reveal:nth-child(3) { transition-delay: .16s; }
.test-grid .reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 19px; }
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: 53px; }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .test-card { min-height: 350px; }
  .experience-grid { gap: 40px; }
  .privacy-card { padding: 55px 45px; }
  .faq-grid { gap: 60px; }
}

@media (max-width: 860px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; margin-inline-start: auto; }
  .hero { padding-top: 135px; }
  .hero-grid, .experience-grid, .privacy-card, .faq-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-visual { width: min(100%, 600px); margin: 25px auto 0; }
  .trust-row { margin-top: 30px; }
  .section-heading { display: block; }.section-heading > p { margin-top: 14px; }
  .experience-copy { order: 1; }.phone-stage { order: 2; margin-top: 20px; }
  .privacy-card { gap: 25px; }.privacy-copy { text-align: right; }.privacy-visual { min-height: 390px; }
  .faq-heading { position: static; }.faq-grid { gap: 40px; }
  .final-cta { grid-template-columns: 1fr; text-align: center; }.button-white { justify-self: center; }
  .footer-main { grid-template-columns: 1fr 1fr; }.footer-links { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .site-header { height: 70px; }.mobile-nav { top: 72px; }.brand-mark { width: 39px; height: 39px; }.brand-copy b { font-size: 17px; }.brand-copy small { font-size: 9px; }
  .hero { min-height: auto; padding: 115px 0 42px; }
  .hero-copy { min-width: 0; }
  .hero h1 { margin-top: 18px; font-size: clamp(35px, 9.8vw, 42px); line-height: 1.45; }
  .hero h1 span { display: block; white-space: normal; }
  .hero-lead { font-size: 15px; line-height: 2; }
  .hero-actions { display: grid; }.hero-actions .button { width: 100%; }
  .hero-note { font-size: 10px; }
  .hero-visual { min-height: 465px; margin-top: 18px; }
  .orbit-one { width: 410px; height: 410px; }.orbit-two { width: 340px; height: 340px; }
  .result-card { width: calc(100% - 10px); padding: 19px; border-radius: 25px; transform: none; }
  .insight-panel { grid-template-columns: 95px 1fr; gap: 13px; padding: 16px 12px; }.insight-ring { width: 90px; height: 90px; }.insight-copy h2 { font-size: 14px; }.insight-copy p { font-size: 9px; }
  .pill-one { top: 5px; right: 3px; }.pill-two { bottom: 8px; left: 2px; }
  .trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 17px 7px; }.trust-row > div { display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; }.trust-row strong { font-size: 19px; }.trust-row span { font-size: 8px; }.trust-divider { display: none; }
  .section-heading h2, .experience-copy h2, .privacy-copy h2, .faq-heading h2 { font-size: 32px; }.section-heading > p { font-size: 13px; }
  .test-grid { grid-template-columns: 1fr; }.test-card { min-height: 330px; }.all-tests-cta { align-items: start; flex-direction: column; }
  .phone-stage { min-height: 595px; transform: scale(.92); margin: -10px 0 -35px; }.stage-note { transform: scale(.9); }.note-progress { right: -3px; }.note-saved { left: -5px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .privacy-section { padding-top: 20px; }.privacy-card { min-height: auto; padding: 38px 22px; border-radius: 27px; }.privacy-copy > p { font-size: 13px; }.privacy-list { font-size: 11px; }.privacy-actions { align-items: start; flex-direction: column; gap: 8px; }.privacy-visual { min-height: 360px; transform: scale(.86); margin: -20px -30px; }
  .faq-list summary { padding: 17px; font-size: 12px; }.faq-list details p { margin-inline: 17px; }
  .final-cta-section { padding-bottom: 60px; }.final-cta { gap: 28px; padding: 40px 20px; border-radius: 25px; }.final-cta h2 { font-size: 29px; }.final-cta p { font-size: 12px; }
  .footer-main { grid-template-columns: 1fr; gap: 25px; }.footer-links { grid-column: auto; }.footer-bottom { flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
