:root {
  --plum: #4b215f;
  --plum-dark: #351443;
  --coral: #ef6a68;
  --coral-dark: #d95454;
  --gold: #f3b75b;
  --ink: #231b27;
  --muted: #6f6673;
  --soft: #f7f3f8;
  --white: #ffffff;
  --line: #e6dfe8;
  --success: #16815f;
  --danger: #a63d3d;
  --shadow: 0 24px 70px rgba(75, 33, 95, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'Tajawal', system-ui, -apple-system, BlinkMacSystemFont, Tahoma, Arial, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-soft { background: var(--soft); }
.skip-link { position: fixed; top: -100px; right: 16px; background: var(--plum); color: #fff; padding: 10px 16px; z-index: 999; border-radius: 10px; }
.skip-link:focus { top: 12px; }

.offer-bar { background: var(--plum-dark); color: #fff; font-size: 14px; }
.offer-inner { min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; text-align: center; }
.offer-label { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 2px 10px; font-size: 12px; }
#offerStatus { color: #ffd886; }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(230,223,232,.9); }
.nav-shell { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { margin-left: auto; flex: 0 0 auto; }
.brand img { width: 132px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 15px; font-weight: 500; color: #564c5a; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--plum); }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: 13px; padding: 11px; cursor: pointer; }
.menu-button span { display: block; height: 2px; background: var(--plum); margin: 5px 0; transition: transform 0.2s; }

.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 13px; padding: 11px 19px; border: 1px solid transparent; font-weight: 800; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--plum); color: #fff; box-shadow: 0 12px 26px rgba(75,33,95,.18); }
.button-primary:hover { background: var(--plum-dark); }
.button-secondary { background: #fff; color: var(--plum); border-color: var(--line); }
.button-secondary:hover { border-color: var(--plum); }
.button-coral { background: var(--coral); color: #fff; }
.button-coral:hover { background: var(--coral-dark); }
.button-large { min-height: 54px; padding-inline: 25px; font-size: 16px; }
.button-full { width: 100%; }

.hero { padding: 92px 0 82px; overflow: hidden; background: radial-gradient(circle at 10% 10%, rgba(239,106,104,.11), transparent 32%), linear-gradient(180deg, #fff, #fbf9fc); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--coral-dark); font-size: 14px; font-weight: 900; letter-spacing: .02em; }
.eyebrow::before { content: ""; width: 20px; height: 3px; border-radius: 99px; background: var(--coral); }
.eyebrow-light { color: #ffd0ce; }
.eyebrow-light::before { background: #ffd0ce; }
h1, h2, h3 { color: var(--plum); line-height: 1.28; font-weight: 800; }
h1 { font-size: clamp(42px, 6vw, 64px); margin: 18px 0 22px; letter-spacing: -.03em; }
h2 { font-size: clamp(31px, 4vw, 46px); margin: 12px 0 16px; letter-spacing: -.02em; }
h3 { margin: 8px 0 10px; font-size: 21px; }
.hero-copy > p { font-size: 19px; color: var(--muted); max-width: 680px; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-points { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; padding: 0; margin: 24px 0 0; font-size: 14px; color: #5f5563; }
.hero-points li::before { content: "✓"; color: var(--success); font-weight: 900; margin-left: 6px; }

.product-preview { background: #fff; border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); padding: 18px; transform: rotate(-1deg); transition: transform 0.3s ease; }
.product-preview:hover { transform: rotate(0deg) translateY(-4px); }
.preview-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; color: var(--muted); font-size: 13px; }
.preview-top img { width: 92px; height: auto; }
.preview-cover { border-radius: 20px; overflow: hidden; background: var(--soft); }
.preview-cover img { width: 100%; height: 215px; object-fit: cover; }
.preview-content { display: flex; align-items: center; justify-content: space-between; padding: 17px 3px 11px; }
.preview-content strong { display: block; color: var(--plum); font-size: 20px; }
.preview-content small { color: var(--muted); }
.rating { background: #fff6e6; color: #9a6505; border-radius: 999px; padding: 5px 10px; font-weight: 900; }
.preview-items { border-top: 1px solid var(--line); }
.preview-items div { display: flex; justify-content: space-between; padding: 12px 2px; border-bottom: 1px solid var(--line); font-size: 14px; }
.preview-button { width: 100%; border: 0; background: var(--coral); color: #fff; border-radius: 14px; padding: 13px; font-weight: 900; margin-top: 15px; cursor: pointer; }

.value-strip { border-block: 1px solid var(--line); background: #fff; }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.value-grid div { padding: 24px 20px; border-left: 1px solid var(--line); }
.value-grid div:last-child { border-left: 0; }
.value-grid b, .value-grid span { display: block; }
.value-grid b { color: var(--plum); font-size: 16px; }
.value-grid span { color: var(--muted); font-size: 14px; }

.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading p { color: var(--muted); font-size: 17px; }
.center-heading { text-align: center; margin-inline: auto; }
.center-heading .eyebrow { justify-content: center; }
.cards { display: grid; gap: 18px; }
.three-cards { grid-template-columns: repeat(3,1fr); }
.info-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.info-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.card-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: #f4eaf5; color: var(--plum); font-weight: 900; }
.info-card p { color: var(--muted); margin: 0; }
.included-panel { margin-top: 24px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 38px; border-radius: 26px; padding: 36px; background: var(--plum); color: #fff; }
.included-panel h3 { color: #fff; font-size: 27px; }
.check-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-grid li { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); padding: 11px 13px; border-radius: 13px; font-size: 15px; }
.check-grid li::before { content: "✓"; color: #ffd886; margin-left: 8px; font-weight: 900; }

.price-policy-section { background: linear-gradient(135deg, var(--plum-dark), var(--plum)); color: #fff; }
.price-policy-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 55px; }
.price-policy-grid h2 { color: #fff; }
.price-policy-grid p { font-size: 20px; margin-bottom: 12px; }
.price-policy-grid small { color: #dbcfe1; display: block; }
.policy-benefits { display: grid; gap: 15px; }
.policy-benefits article { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 20px; }
.policy-benefits b, .policy-benefits span { display: block; }
.policy-benefits b { color: #ffd886; margin-bottom: 6px; }
.policy-benefits span { color: #eee7f1; }

.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 17px; }
.steps-grid article { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px; transition: transform 0.2s ease; }
.steps-grid article:hover { transform: translateY(-3px); }
.steps-grid article > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--coral); color: #fff; font-weight: 900; }
.steps-grid p { color: var(--muted); margin: 0; font-size: 14px; }

.pricing-layout { max-width: 940px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.pricing-card { border: 1px solid var(--line); border-radius: 26px; padding: 30px; background: #fff; position: relative; }
.primary-card { border-color: rgba(75,33,95,.4); box-shadow: var(--shadow); }
.pricing-tag { position: absolute; top: 18px; left: 18px; background: var(--plum); color: #fff; border-radius: 999px; padding: 4px 10px; font-size: 11px; font-weight: 900; }
.big-price b { display: block; color: var(--plum); font-size: 46px; line-height: 1.1; }
.big-price span { color: var(--muted); }
.early-offer { margin: 20px 0; padding: 15px; background: #fff4f3; border: 1px solid #ffd6d4; border-radius: 15px; }
.early-offer span, .early-offer strong { display: block; }
.early-offer strong { color: var(--coral-dark); font-size: 24px; }
.pricing-card ul, .marketing-refund ul, .join-copy ul { list-style: none; padding: 0; }
.pricing-card li, .marketing-refund li, .join-copy li { margin: 10px 0; color: #5d5361; }
.pricing-card li::before, .marketing-refund li::before, .join-copy li::before { content: "✓"; color: var(--success); margin-left: 8px; font-weight: 900; }
.pricing-note { color: var(--muted); background: var(--soft); border-radius: 14px; padding: 12px; }
.marketing-refund { max-width: 940px; margin: 22px auto; background: #f9f3fb; border: 1px solid #e7d9ec; border-radius: 24px; padding: 28px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }
.marketing-refund p { color: var(--muted); margin-bottom: 0; }

.calculator { max-width: 1040px; margin: 42px auto 0; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: #fff; box-shadow: 0 16px 50px rgba(75,33,95,.08); }
.calculator-head { padding: 27px 30px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: end; }
.calculator-head h3 { font-size: 30px; margin-bottom: 0; }
.calculator-head p { margin: 0; color: var(--muted); font-size: 13px; }
.calculator-grid { display: grid; grid-template-columns: .8fr 1.2fr; }
.calculator-controls { padding: 30px; background: var(--soft); }
.calculator-controls > label:first-child, fieldset legend { display: block; font-weight: 900; color: var(--plum); margin-bottom: 8px; }
.calculator-controls input[type="number"] { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 12px; padding: 10px 13px; background: #fff; margin-bottom: 20px; font-size: 16px; }
fieldset { border: 0; padding: 0; margin: 0 0 18px; }
.radio-row, .toggle-row { display: flex; align-items: flex-start; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 11px 12px; margin: 8px 0; font-size: 14px; cursor: pointer; }
.radio-row input, .toggle-row input, .consent-row input { margin-top: 5px; accent-color: var(--plum); cursor: pointer; }
.calculator-result { padding: 25px 30px; }
.calculator-result > div { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.calculator-result span { color: var(--muted); }
.calculator-result b { color: var(--plum); }
.total-row { margin-top: 8px; font-size: 19px; }
.total-row b { color: var(--coral-dark); font-size: 22px; }
.result-note { font-size: 12px; color: var(--muted); background: var(--soft); border-radius: 12px; padding: 10px; margin-top: 15px; }

.faq-container { max-width: 900px; }
.faq-list { display: grid; gap: 10px; }
details { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 0 18px; transition: border-color 0.2s; }
details[open] { border-color: var(--plum); }
summary { cursor: pointer; list-style: none; padding: 17px 0; color: var(--plum); font-weight: 900; display: flex; align-items: center; justify-content: space-between; gap: 15px; font-size: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 999px; background: var(--soft); font-size: 20px; transition: transform 0.2s; }
details[open] summary::after { content: "−"; background: var(--plum); color: #fff; }
details p { color: var(--muted); margin: 0; padding: 0 0 18px; line-height: 1.8; }
.faq-button { margin: 26px auto 0; display: flex; width: max-content; }

.join-section { background: var(--plum-dark); color: #fff; }
.join-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 55px; align-items: start; }
.join-copy h2 { color: #fff; }
.join-copy p, .join-copy li { color: #ded2e3; }
.join-copy li::before { color: #ffd886; }
.join-form { background: #fff; color: var(--ink); border-radius: 26px; padding: 30px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.join-form label { display: block; font-size: 13px; font-weight: 800; color: var(--plum); }
.join-form input, .join-form select, .join-form textarea { width: 100%; min-height: 48px; margin-top: 6px; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; background: #fff; color: var(--ink); font-size: 15px; }
.join-form textarea { min-height: 110px; resize: vertical; }
.join-form input:focus, .join-form select:focus, .join-form textarea:focus { outline: 3px solid rgba(75,33,95,.12); border-color: var(--plum); }
.consent-row { display: flex !important; align-items: flex-start; gap: 9px; margin: 16px 0; color: var(--muted) !important; font-weight: 500 !important; cursor: pointer; }
.consent-row input { width: auto; min-height: auto; cursor: pointer; }
.consent-row a { color: var(--plum); text-decoration: underline; }
.form-status { min-height: 24px; text-align: center; font-size: 14px; font-weight: 700; margin-top: 15px; margin-bottom: 0; padding: 10px; border-radius: 10px; }
.form-status.success { color: var(--success); background: #eefbf7; border: 1px solid #c2f0e2; }
.form-status.error { color: var(--danger); background: #fdf2f2; border: 1px solid #f8d7d7; }

.contact-box { border: 1px solid var(--line); border-radius: 24px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 25px; background: #fff; }
.contact-box h2 { font-size: 32px; margin-bottom: 6px; }
.contact-box p { color: var(--muted); margin: 0; }

.site-footer { background: #f7f4f8; border-top: 1px solid var(--line); padding: 38px 0 90px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.footer-brand img { width: 115px; height: auto; }
.footer-brand p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; color: #5f5563; font-size: 14px; font-weight: 500; }
.copyright { grid-column: 1/-1; border-top: 1px solid var(--line); padding-top: 18px; color: var(--muted); font-size: 13px; }
.mobile-join { display: none; }

.legal-page { min-height: calc(100vh - 80px); background: var(--soft); padding: 70px 0; }
.legal-content { max-width: 820px; background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 42px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.legal-content h1 { font-size: 44px; }
.legal-content h2 { font-size: 24px; margin-top: 30px; }
.legal-content p { color: var(--muted); font-size: 16px; }

@media (max-width: 980px) {
  .main-nav { display: none; position: absolute; top: 78px; right: 16px; left: 16px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 12px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 12px; border-radius: 10px; }
  .main-nav a:hover { background: var(--soft); }
  .menu-button { display: block; }
  .nav-cta { margin-right: auto; }
  .hero-grid, .price-policy-grid, .join-grid { grid-template-columns: 1fr; }
  .product-preview { max-width: 640px; margin: 0 auto; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-grid div:nth-child(2) { border-left: 0; }
  .value-grid div { border-bottom: 1px solid var(--line); }
  .value-grid div:nth-child(3), .value-grid div:nth-child(4) { border-bottom: 0; }
  .three-cards, .steps-grid { grid-template-columns: 1fr 1fr; }
  .included-panel, .marketing-refund, .calculator-grid { grid-template-columns: 1fr; }
  .calculator-controls { border-bottom: 1px solid var(--line); }
}

@media (max-width: 700px) {
  .section { padding: 66px 0; }
  .offer-inner { padding: 8px 0; }
  .offer-inner strong { width: 100%; }
  .nav-shell { min-height: 68px; gap: 10px; }
  .brand img { width: 105px; }
  .nav-cta { display: none; }
  .main-nav { top: 68px; }
  .hero { padding: 56px 0 62px; }
  .hero-grid { gap: 38px; }
  h1 { font-size: 38px; }
  h2 { font-size: 32px; }
  .hero-copy > p { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 8px; }
  .product-preview { transform: none; padding: 13px; border-radius: 23px; }
  .preview-cover img { height: 170px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid div, .value-grid div:nth-child(2), .value-grid div:nth-child(3), .value-grid div:nth-child(4) { border-left: 0; border-bottom: 1px solid var(--line); }
  .value-grid div:last-child { border-bottom: 0; }
  .three-cards, .steps-grid, .pricing-layout, .form-grid { grid-template-columns: 1fr; }
  .included-panel { padding: 27px 21px; gap: 20px; }
  .check-grid { grid-template-columns: 1fr; }
  .price-policy-grid { gap: 28px; }
  .pricing-card, .marketing-refund { padding: 23px 20px; }
  .pricing-tag { position: static; display: inline-block; margin-bottom: 8px; }
  .big-price b { font-size: 40px; }
  .calculator { border-radius: 20px; }
  .calculator-head { padding: 22px 18px; display: block; }
  .calculator-head h3 { font-size: 26px; }
  .calculator-controls, .calculator-result { padding: 21px 18px; }
  .calculator-result > div { align-items: flex-start; }
  .calculator-result span { max-width: 60%; }
  .join-form { padding: 22px 18px; border-radius: 20px; }
  .contact-box { display: block; padding: 24px 20px; }
  .contact-box .button { width: 100%; margin-top: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer nav { display: grid; grid-template-columns: 1fr 1fr; }
  .mobile-join { display: flex; position: fixed; bottom: 12px; right: 12px; left: 12px; min-height: 52px; align-items: center; justify-content: center; background: var(--coral); color: #fff; border-radius: 15px; font-weight: 900; box-shadow: 0 14px 35px rgba(35,27,39,.24); z-index: 80; }
  .legal-content { padding: 28px 20px; }
  .legal-content h1 { font-size: 34px; }
}

.offer-eligibility {
  margin: 0.75rem 0 0;
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--muted);
}
.field-help {
  display: block;
  margin-top: -0.35rem;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--muted);
}
