html, body { margin: 0; padding: 0; background: #ffffff; }
* { box-sizing: border-box; }
body {
  font-family: 'Cairo', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #132254;
  background: #ffffff;
  background-image:
    radial-gradient(760px 460px at 92% -6%, rgba(139, 124, 232, .07), transparent 62%),
    radial-gradient(680px 440px at 4% 30%, rgba(23, 182, 212, .06), transparent 62%);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
a { color: #0e93ad; text-decoration: none; }
a:hover { color: #0b7b91; }
button { font-family: inherit; }
button:focus-visible, a:focus-visible { outline: 2px solid #17b6d4; outline-offset: 3px; }
::selection { background: #cdeef6; }

@keyframes rowIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes tickIn { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

.fadeUp { animation: fadeUp .45s ease both; }
.rowIn { animation: rowIn .35s ease both; }

/* Topbar */
.topbar {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(19, 34, 84, .07);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 30;
}
.logo { height: 40px; width: auto; display: block; }
.back-btn {
  border: none;
  background: #eaf3f7;
  color: #53658c;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s ease;
}
.back-btn:hover { background: #dbeaf1; color: #132254; }

.wrap { position: relative; max-width: 560px; margin: 0 auto; padding: 0 20px 48px; }

/* Quiz */
.quiz-pad { padding-top: 22px; }
.hero { text-align: center; }
.hero-h1 { font-size: 38px; line-height: 1.38; font-weight: 800; color: #151b3d; margin: 18px 0 14px; }
.hero-h1 .cyan { color: #17b6d4; }
.hero-sub { font-size: 16px; line-height: 1.9; color: #6b7a99; margin: 0 0 30px; }

.profile-card { background: #ffffff; border-radius: 20px; padding: 16px 18px; box-shadow: 0 4px 20px rgba(19, 34, 84, .07); margin-bottom: 26px; }
.profile-label { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: #93a2ba; margin-bottom: 12px; }
.profile-label.result { color: #0b7f97; font-size: 12.5px; margin-bottom: 16px; }
.dot { width: 6px; height: 6px; border-radius: 999px; background: #17b6d4; display: block; }
.profile-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 6px; background: #f2f9fc; border: 1px solid #e0eef4; border-radius: 999px; padding: 8px 13px; font-size: 13.5px; }
.chip-label { color: #93a2ba; }
.chip-value { font-weight: 600; color: #132254; }

.step-label { font-size: 12.5px; font-weight: 600; color: #93a2ba; margin-bottom: 8px; }
.question { font-size: 25px; line-height: 1.55; font-weight: 700; margin: 0 0 20px; }
.options-grid { display: grid; gap: 11px; }
.opt-btn {
  text-align: center;
  cursor: pointer;
  min-height: 60px;
  padding: 15px 12px;
  border-radius: 16px;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.55;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
  box-shadow: 0 2px 10px rgba(19, 34, 84, .06);
  border: 1.5px solid #e4edf2;
  background: #ffffff;
  color: #132254;
}
.opt-btn:hover { border-color: #17b6d4; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(23, 182, 212, .18); }
.opt-btn:active { transform: translateY(0); }
.opt-btn.selected { background: #17b6d4; color: #ffffff; border-color: #17b6d4; }

.micro-note { margin-top: 22px; display: flex; gap: 12px; align-items: flex-start; background: #ffffff; border-radius: 16px; padding: 17px 18px; box-shadow: 0 6px 22px rgba(19, 34, 84, .08); }
.micro-check { flex: none; width: 28px; height: 28px; border-radius: 999px; background: #17b6d4; color: #fff; display: grid; place-items: center; font-size: 15px; }
.micro-text { font-size: 15.5px; line-height: 1.85; color: #132254; }

/* Building */
.building { padding: 80px 0; text-align: center; }
.building-h2 { font-size: 28px; font-weight: 700; margin: 0 0 34px; }
.ticks { display: inline-grid; gap: 16px; text-align: right; }
.tick { display: flex; align-items: center; gap: 13px; font-size: 16.5px; animation: tickIn .3s ease both; }
.tick-dot { flex: none; width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center; font-size: 14px; color: #fff; transition: background .3s ease; }

/* Result */
.result-pad { padding: 24px 0 96px; }
.progress-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.progress-seg { height: 5px; flex: 1; border-radius: 999px; transition: background .3s ease; }

.result-profile { border: 1px solid #dceef5; border-radius: 24px; padding: 22px; box-shadow: 0 6px 24px rgba(19, 34, 84, .07); margin-bottom: 0; }
.profile-rows { display: grid; gap: 10px; }
.profile-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 15.5px; background: #f4fafd; border-radius: 12px; padding: 12px 14px; }
.row-label { color: #7d8db0; }
.row-value { font-weight: 600; color: #132254; text-align: left; }

.insight { margin-top: 52px; }
.insight-h2 { font-size: 29px; line-height: 1.5; font-weight: 700; margin: 0 0 16px; }
.insight-p { font-size: 16.5px; line-height: 1.9; color: #3d4f7c; margin: 0 0 14px; }

.cta-secondary {
  margin-top: 34px; width: 100%; cursor: pointer; border: none;
  background: #17b6d4; color: #fff; font-size: 17px; font-weight: 700;
  padding: 18px; border-radius: 18px; min-height: 60px;
  box-shadow: 0 8px 22px rgba(23, 182, 212, .32);
  transition: transform .16s ease, background .16s ease;
}
.cta-secondary:hover { background: #0e93ad; transform: translateY(-2px); }

.section-h2 { font-size: 26px; line-height: 1.55; font-weight: 700; margin: 0 0 24px; }
.cards-grid { display: grid; gap: 14px; }
.card { background: #fff; border-radius: 20px; padding: 20px; box-shadow: 0 4px 18px rgba(19, 34, 84, .06); }
.card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 9px; }
.card-num { flex: none; width: 34px; height: 34px; border-radius: 999px; background: #d9f1f8; color: #0b7f97; font-size: 16px; font-weight: 700; display: grid; place-items: center; }
.card-title { font-size: 17px; font-weight: 700; line-height: 1.5; }
.card-body { margin: 0; font-size: 15.5px; line-height: 1.85; color: #53658c; }
.closing-line { font-size: 17px; line-height: 1.9; margin: 24px 0 0; font-weight: 600; }
.outcome-title { font-size: 18px; font-weight: 700; margin-bottom: 7px; }

.trust-card { margin-top: 56px; background: #ffffff; border-radius: 24px; overflow: hidden; box-shadow: 0 6px 24px rgba(19, 34, 84, .07); text-align: center; padding: 22px; }
.trust-title { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.trust-line { font-size: 14.5px; line-height: 1.95; color: #3d4f7c; }

.price-card { margin-top: 26px; background: #ffffff; border-radius: 26px; padding: 0 0 26px; box-shadow: 0 10px 34px rgba(19, 34, 84, .10); text-align: center; overflow: hidden; }
.price-header { background: #17b6d4; color: #ffffff; font-size: 14px; font-weight: 600; padding: 13px 20px; }
.price-body { padding: 26px 22px 0; }
.price-old { font-size: 20px; color: #93a2ba; text-decoration: line-through; }
.price-new { font-size: 60px; font-weight: 700; line-height: 1.15; margin-top: 2px; }
.price-currency { font-size: 26px; font-weight: 600; }
.price-badge { display: inline-block; background: #d9f1f8; color: #0b6a7f; font-size: 16px; font-weight: 700; padding: 8px 16px; border-radius: 999px; margin-top: 12px; }
.price-divider { height: 1px; background: #eef3f7; margin: 22px 0; }
.price-reason { margin: 0 0 10px; font-size: 15.5px; line-height: 1.85; color: #3d4f7c; }
.deadline-badge { display: inline-block; background: #fbe3ef; color: #a30f5c; font-size: 14.5px; font-weight: 600; padding: 9px 15px; border-radius: 999px; }

.cta-block { margin-top: 26px; text-align: center; }
.cta-primary {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  background: #25D366; color: #fff; font-size: 17.5px; font-weight: 700;
  padding: 19px 20px; border-radius: 18px; min-height: 62px; line-height: 1.5;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .38);
  transition: transform .16s ease, background .16s ease;
}
.cta-primary:hover { background: #128C7E; color: #fff; transform: translateY(-2px); }
.cta-primary .ico { flex: none; }
.cta-sub { font-size: 14.5px; line-height: 1.85; color: #53658c; margin: 14px 0 0; }

.faq-block { margin-top: 56px; }
.faq-h2 { font-size: 24px; font-weight: 700; margin: 0 0 18px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { background: #fff; border-radius: 16px; box-shadow: 0 3px 16px rgba(19, 34, 84, .06); overflow: hidden; }
.faq-q {
  width: 100%; text-align: right; background: none; border: none; cursor: pointer;
  padding: 17px 18px; font-size: 16px; font-weight: 600; color: #132254; line-height: 1.7;
  display: flex; gap: 12px; justify-content: space-between; align-items: center; min-height: 58px;
  transition: background .16s ease;
}
.faq-q:hover { background: #f7fbfd; }
.faq-sign { flex: none; width: 26px; height: 26px; border-radius: 999px; background: #e6f6fa; color: #0b7f97; font-size: 17px; display: grid; place-items: center; }
.faq-a { margin: 0; padding: 0 18px 20px; font-size: 15.5px; line-height: 1.9; color: #53658c; }

.footer-line { margin-top: 44px; text-align: center; font-size: 13px; color: #93a2ba; line-height: 1.9; }

@media (min-width: 400px) {
  .price-new { font-size: 60px; }
}
