/* Radien landing pages, shared stylesheet */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --pink: #D6336C; --pink-dark: #A61E4D; --pink-light: #F06595;
  --grad: linear-gradient(135deg, #A61E4D 0%, #D6336C 45%, #F06595 100%);
  --text: #1C1917; --muted: #57534E; --line: #f0e6ec;
  --bg: #ffffff; --soft: #fff0f6; --soft2: #faf7f9;
  --radius: 16px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1060px; margin: 0 auto; padding: 0 20px; }

/* Header */
.lp-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.lp-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.lp-logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 20px; letter-spacing: -.01em; }
.lp-logo img { width: 30px; height: 30px; }
.lp-nav-cta {
  background: var(--grad); color: #fff; font-weight: 700; font-size: 14px;
  padding: 9px 20px; border-radius: 999px; transition: transform .2s ease, box-shadow .2s ease;
}
.lp-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(214,51,108,.5); }
.lp-header-right { display: flex; align-items: center; gap: 10px; }
.lp-lang {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  font-family: inherit; font-size: 13px; font-weight: 600; color: var(--text);
  background-color: #f1ecef; border: none; border-radius: 999px; padding: 8px 28px 8px 14px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2378716C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
}
.lp-lang:hover { background-color: #e7dfe4; }
[dir="rtl"] .lp-lang { padding: 8px 14px 8px 28px; background-position: left 10px center; }

/* Hero */
.lp-hero { background: var(--soft2); padding: 64px 0 56px; text-align: center; }
.lp-eyebrow {
  display: inline-block; background: var(--soft); color: var(--pink-dark);
  font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.lp-hero h1 { font-size: clamp(30px, 5vw, 46px); line-height: 1.12; font-weight: 800; letter-spacing: -.02em; max-width: 760px; margin: 0 auto 18px; }
.lp-hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lp-hero p.lead { font-size: clamp(16px, 2.2vw, 19px); color: var(--muted); max-width: 640px; margin: 0 auto 28px; }
.store-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px; background: #111; color: #fff;
  padding: 11px 18px; border-radius: 12px; transition: transform .2s ease;
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn svg { width: 22px; height: 22px; fill: #fff; }
.store-btn small { display: block; font-size: 10px; opacity: .8; line-height: 1; }
.store-btn b { display: block; font-size: 15px; font-weight: 700; line-height: 1.2; }
.lp-note { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* Sections */
section { padding: 56px 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.sec-head h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.sec-head p { color: var(--muted); font-size: 16px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card .num { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 999px; background: var(--grad); color: #fff; font-weight: 800; margin-bottom: 14px; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.alt { background: var(--soft2); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 17px; font-weight: 600; color: var(--text); padding: 20px 36px 20px 0; position: relative; }
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 24px; color: var(--pink); transition: transform .2s ease; }
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p { color: var(--muted); font-size: 15px; padding: 0 0 20px; }

/* CTA */
.lp-cta { background: var(--grad); color: #fff; text-align: center; border-radius: 24px; padding: 52px 24px; margin: 0 20px; }
.lp-cta h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; margin-bottom: 12px; }
.lp-cta p { opacity: .92; max-width: 520px; margin: 0 auto 24px; }
.lp-cta .store-btn { background: #fff; color: #111; }
.lp-cta .store-btn svg { fill: #111; }

/* Internal links + footer */
.lp-explore { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.lp-chip { border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--pink-dark); transition: background .15s ease; }
.lp-chip:hover { background: var(--soft); }
.lp-footer { border-top: 1px solid var(--line); padding: 32px 0; text-align: center; color: var(--muted); font-size: 13px; }
.lp-footer a { color: var(--pink-dark); }
.lp-footer .links { margin-bottom: 10px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.disclaimer { max-width: 760px; margin: 20px auto 0; font-size: 12px; color: #a8a29e; text-align: center; }

[dir="rtl"] .faq-q { text-align: right; padding: 20px 0 20px 36px; }
[dir="rtl"] .faq-q::after { right: auto; left: 4px; }

/* Interactive quiz */
.quiz { background: var(--soft2); }
.quiz-card { max-width: 680px; margin: 0 auto; background: var(--bg); border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: 0 10px 30px -16px rgba(166,30,77,.18); }
.quiz-intro { color: var(--muted); font-size: 15px; text-align: center; margin-bottom: 20px; }
.quiz-progress { height: 6px; background: var(--soft); border-radius: 999px; overflow: hidden; margin-bottom: 22px; }
.quiz-progress span { display: block; height: 100%; background: var(--grad); width: 0; transition: width .3s ease; }
.quiz-q { font-size: 19px; font-weight: 700; margin-bottom: 16px; }
.quiz-opts { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt { text-align: left; background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 16px; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; transition: border-color .15s ease, background .15s ease, transform .1s ease; }
.quiz-opt:hover { border-color: var(--pink-light); background: var(--soft); }
.quiz-opt:active { transform: scale(.99); }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; }
.quiz-back { background: none; border: none; color: var(--muted); font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; }
.quiz-step { color: var(--muted); font-size: 13px; }
.quiz-result { text-align: center; }
.quiz-result-big { font-size: clamp(40px, 9vw, 68px); font-weight: 800; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin: 6px 0 4px; }
.quiz-result-lead { font-size: 15px; color: var(--muted); }
.quiz-result-msg { font-size: 16px; margin: 16px auto 22px; max-width: 520px; }
.quiz-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.quiz-btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 12px 24px; font-size: 15px; font-weight: 700; cursor: pointer; border: none; font-family: inherit; text-decoration: none; }
.quiz-btn-primary { background: var(--grad); color: #fff; }
.quiz-btn-ghost { background: var(--bg); color: var(--text); border: 1.5px solid var(--line); }
.quiz-disc { font-size: 12px; color: #a8a29e; margin-top: 18px; }
[dir="rtl"] .quiz-opt { text-align: right; }
