/* ══════════════════════════════════════════════════
   PYRANEXT ORDER PAGE — Brand-matched Sales Design
   Primary: #DF0A0A | Font: Cairo / Plus Jakarta Sans
   ══════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

html[data-lang="ar"] {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
}
html[data-lang="en"] {
  font-family: 'Plus Jakarta Sans', sans-serif;
  direction: ltr;
}

body {
  background: #0a0a0a;
  color: #f0f0f0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

:root {
  --red:      #DF0A0A;
  --red-dark: #b50808;
  --red-glow: rgba(223,10,10,0.25);
  --dark:     #0a0a0a;
  --dark2:    #111111;
  --dark3:    #1a1a1a;
  --dark4:    #222222;
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.12);
  --text:     #f0f0f0;
  --muted:    rgba(240,240,240,0.5);
  --gold:     #F5C842;
  --green:    #22c55e;
  --radius:   14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

/* ── Language Toggle Utility ──────────────────── */
[data-lang="ar"] .t-en  { display: none !important; }
[data-lang="en"] .t-ar  { display: none !important; }
.market-intl { display: none !important; }
[data-market="intl"] .market-arab { display: none !important; }
[data-market="intl"] .market-intl { display: inline !important; }
[data-market="intl"] .market-intl.market-block { display: block !important; }

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Typography ───────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.25; color: #fff; }
p { color: rgba(240,240,240,0.75); }

/* ══════════════════════════════════════════════
   TOPBAR
   ══════════════════════════════════════════════ */
.topbar {
  background: #0f0f0f;
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.topbar-left span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.topbar-left svg { width: 13px; height: 13px; flex-shrink: 0; }
.topbar-sep { color: var(--border2); }

.lang-toggle {
  background: var(--dark3);
  border: 1px solid var(--border2);
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}
.lang-toggle:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
.site-header {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.85rem 0;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; object-fit: contain; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover { color: #fff; }

.header-cta {
  background: var(--red);
  color: #fff !important;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.header-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(223,10,10,0.18) 0%, transparent 70%), #0a0a0a;
  padding: 5rem 5% 4rem;
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(223,10,10,0.12);
  border: 1px solid rgba(223,10,10,0.3);
  color: #ff6b6b;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  animation: fadeInDown 0.5s ease;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:0.7} }

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  animation: fadeInUp 0.5s ease 0.1s both;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
  display: block;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(240,240,240,0.72);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.5s ease 0.2s both;
}
.hero-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInUp 0.5s ease 0.3s both;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border2);
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
}
.pill svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.5s ease 0.4s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: #fff !important;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(223,10,10,0.4);
}
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff !important;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid var(--border2);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.25); }
.btn-ghost svg { width: 20px; height: 20px; color: #25D366; flex-shrink: 0; }

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.8rem;
  animation: fadeIn 1s ease 0.8s both;
}
.hero-scroll-hint svg { width: 18px; height: 18px; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ══════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════ */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.stat-div { width: 1px; height: 50px; background: var(--border2); }

/* ══════════════════════════════════════════════
   SHARED SECTION STYLES
   ══════════════════════════════════════════════ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.section-sub {
  color: rgba(240,240,240,0.65);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
}

/* ══════════════════════════════════════════════
   DEMOS SECTION
   ══════════════════════════════════════════════ */
.demos-section {
  padding: 5rem 0;
  background: var(--dark);
}
.demos-section .section-sub { margin-bottom: 2.5rem; }

.demo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.demo-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.demo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(223,10,10,0.4);
  box-shadow: 0 12px 40px rgba(223,10,10,0.12);
}
.demo-thumb {
  height: 190px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.demo-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.demo-clinic     { background: #0d2137 url('../images/thumb-clinic.jpg') center top / cover no-repeat; }
.demo-contracting{ background: #1a1000 url('../images/thumb-contracting.jpg') center top / cover no-repeat; }
.demo-restaurant { background: #1a0505 url('../images/thumb-restaurant.jpg') center top / cover no-repeat; }
.demo-academy    { background: #0d0d2b url('../images/thumb-academy.jpg') center top / cover no-repeat; }

.demo-icon { font-size: 3rem; z-index: 1; }
.demo-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 2;
}
.demo-thumb-overlay svg { width: 16px; height: 16px; }
.demo-card:hover .demo-thumb-overlay { opacity: 1; }
.demo-info { padding: 1rem 1.1rem 1.25rem; flex: 1; }
.demo-info h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.demo-info p { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.6rem; }
.demo-lang-tag {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border2);
  color: rgba(255,255,255,0.5);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}
.rtl-tag { background: rgba(223,10,10,0.1); border-color: rgba(223,10,10,0.25); color: #ff6b6b; }
.demos-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 1rem;
  border: 1px dashed var(--border2);
  border-radius: var(--radius-sm);
}
.demos-note strong { color: #fff; }

/* ══════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════ */
.how-section {
  padding: 5rem 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
}
.how-section .section-sub { margin-bottom: 3rem; }
.how-grid {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.how-step {
  flex: 1;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.how-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}
.how-body h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.how-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.how-arrow {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  color: var(--muted);
  flex-shrink: 0;
}
.how-arrow svg { width: 24px; height: 24px; }
[data-lang="ar"] .how-arrow svg { transform: scaleX(-1); }

/* ══════════════════════════════════════════════
   BENEFITS / WHAT YOU GET
   ══════════════════════════════════════════════ */
.benefits-section {
  padding: 5rem 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.benefits-section .section-sub { margin-bottom: 2.5rem; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.benefit-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.benefit-card:hover { border-color: rgba(223,10,10,0.3); transform: translateY(-3px); }
.benefit-icon {
  width: 44px; height: 44px;
  background: rgba(223,10,10,0.1);
  border: 1px solid rgba(223,10,10,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.benefit-icon svg { width: 22px; height: 22px; stroke: var(--red); flex-shrink: 0; }
.benefit-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.benefit-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonials-section {
  padding: 5rem 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
}
.testimonials-section .section-sub { margin-bottom: 2.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.featured-test {
  border-color: rgba(223,10,10,0.3);
  background: linear-gradient(145deg, #1a0505, var(--dark3));
  box-shadow: 0 0 40px rgba(223,10,10,0.08);
}
.test-stars svg { width: 100px; height: 18px; display: block; }
.testimonial-card blockquote {
  font-size: 0.92rem;
  color: rgba(240,240,240,0.82);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.test-author { display: flex; align-items: center; gap: 0.85rem; }
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.test-info { display: flex; flex-direction: column; gap: 0.15rem; }
.test-info strong { font-size: 0.9rem; font-weight: 700; color: #fff; }
.test-info span { font-size: 0.78rem; color: var(--muted); }

/* ══════════════════════════════════════════════
   PRICE SECTION
   ══════════════════════════════════════════════ */
.price-section {
  padding: 5rem 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.price-block {
  background: var(--dark2);
  border: 1px solid rgba(223,10,10,0.25);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  box-shadow: 0 0 60px rgba(223,10,10,0.07);
}
.price-label-sm { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.price-num { font-size: 4rem; font-weight: 900; color: #fff; line-height: 1; }
.price-currency { font-size: 1.1rem; font-weight: 700; color: var(--muted); }
.price-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.price-compare {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(245,200,66,0.8);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.price-compare svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
.price-cta { font-size: 1rem; padding: 0.95rem 2rem; }

.price-includes-title { font-size: 0.85rem; font-weight: 700; color: var(--muted); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.price-includes-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.5rem; }
.price-includes-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(240,240,240,0.85);
}
.price-includes-list li svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}
.guarantee-badge svg { width: 30px; height: 30px; color: var(--green); flex-shrink: 0; }
.guarantee-badge strong { display: block; font-size: 0.9rem; color: #fff; margin-bottom: 0.2rem; }
.guarantee-badge span { font-size: 0.8rem; color: var(--muted); }

/* ══════════════════════════════════════════════
   ORDER FORM SECTION
   ══════════════════════════════════════════════ */
.order-section {
  padding: 5rem 0 6rem;
  background: var(--dark2);
  border-top: 1px solid var(--border);
}
.order-header { text-align: center; margin-bottom: 2.5rem; }
.order-header .section-sub { margin: 0 auto; }

/* Progress */
.progress-wrap { max-width: 560px; margin: 0 auto 2.5rem; }
.progress-steps { display: flex; align-items: center; justify-content: center; gap: 0; }
.progress-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-direction: column;
  text-align: center;
  min-width: 80px;
}
.progress-step .step-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--dark3);
  border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 700; color: var(--muted);
  transition: all 0.35s;
  position: relative; z-index: 1;
}
.progress-step span { font-size: 0.78rem; color: var(--muted); font-weight: 500; transition: color 0.35s; white-space: nowrap; }
.progress-step.active .step-circle { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 0 20px var(--red-glow); }
.progress-step.active span { color: #fff; }
.progress-step.done .step-circle { background: var(--green); border-color: var(--green); color: #fff; }
.progress-step.done .step-circle::after { content: '✓'; }
.progress-step.done span { color: var(--green); }
.progress-step.done .step-circle span { display: none; }
.progress-line { flex: 1; height: 2px; background: var(--border2); min-width: 40px; }

/* Form Container */
.step-panel { display: none; animation: fadeInUp 0.3s ease; }
.step-panel.active { display: block; }

.step-header { margin-bottom: 2rem; }
.step-header .step-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.step-header h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.step-header p { font-size: 0.9rem; color: var(--muted); }

/* Template Grid */
.template-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.template-card {
  background: var(--dark3);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.template-card:hover {
  border-color: rgba(223,10,10,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(223,10,10,0.1);
}
.template-card.selected, .template-card:has(input:checked) {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow), 0 8px 30px rgba(223,10,10,0.15);
}
.template-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.tpl-check {
  position: absolute;
  top: 0.5rem;
  inset-inline-end: 0.5rem;
  width: 24px; height: 24px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}
.template-card.selected .tpl-check,
.template-card:has(input:checked) .tpl-check { opacity: 1; transform: scale(1); }

.tpl-thumb {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tpl-clinic      { background: #0d2137 url('../images/thumb-clinic.jpg') center top / cover no-repeat; }
.tpl-contracting { background: #1a1000 url('../images/thumb-contracting.jpg') center top / cover no-repeat; }
.tpl-restaurant  { background: #1a0505 url('../images/thumb-restaurant.jpg') center top / cover no-repeat; }
.tpl-academy     { background: #0d0d2b url('../images/thumb-academy.jpg') center top / cover no-repeat; }
.tpl-other       { background: linear-gradient(135deg, #1a1a1a, #2a2a2a); }

.tpl-badge {
  position: absolute;
  top: 0.5rem;
  inset-inline-start: 0.5rem;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.8);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
}
.rtl-badge { color: #ff9f9f; border-color: rgba(223,10,10,0.4); background: rgba(223,10,10,0.2); }

.tpl-body { padding: 0.85rem 0.85rem 1rem; flex: 1; }
.tpl-body h3 { font-size: 0.82rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.tpl-body p { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.5rem; line-height: 1.4; }
.tpl-features { list-style: none; display: flex; flex-direction: column; gap: 0.15rem; }
.tpl-features li { font-size: 0.68rem; color: rgba(255,255,255,0.5); padding-inline-start: 0.8rem; position: relative; }
.tpl-features li::before { content: '·'; position: absolute; inset-inline-start: 0; color: var(--red); }

/* Price Banner (in form) */
.form-price-banner {
  background: linear-gradient(135deg, rgba(223,10,10,0.08), rgba(223,10,10,0.03));
  border: 1px solid rgba(223,10,10,0.2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.fpb-left { display: flex; flex-direction: column; gap: 0.2rem; min-width: 180px; }
.fpb-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.fpb-amount { font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; }
.fpb-amount span { font-size: 1rem; color: var(--muted); }
.fpb-note { font-size: 0.75rem; color: var(--muted); }
.fpb-includes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.35rem; flex: 1; }
.fpb-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.fpb-item span:first-child { color: var(--green); font-weight: 700; }

/* Form Fields */
.form-grid { display: flex; flex-direction: column; gap: 1.75rem; }
.form-section { display: flex; flex-direction: column; gap: 1rem; }
.form-section-title { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); margin-bottom: 0.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-group { display: flex; flex-direction: column; gap: 0.4rem; }
.field-group.full { grid-column: 1 / -1; }
.field-group label { font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.req { color: var(--red); }
.field-hint { font-size: 0.72rem; color: var(--muted); }
.field-hint-inline { font-size: 0.72rem; color: var(--muted); margin-inline-start: 0.3rem; }
.field-group input,
.field-group textarea,
.field-group select {
  background: var(--dark3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 0.7rem 0.95rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.field-group input:focus,
.field-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }
.field-group textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.input-error { border-color: #ef4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.18) !important; }

/* Upload */
.upload-box {
  border: 1.5px dashed var(--border2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden;
  position: relative;
}
.upload-box:hover { border-color: var(--red); background: rgba(223,10,10,0.03); }
.upload-box.drag-over { border-color: var(--red); background: rgba(223,10,10,0.06); }
.upload-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 1; }
.upload-placeholder {
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; text-align: center;
}
.upload-placeholder svg { width: 30px; height: 30px; stroke: var(--muted); }
.upload-placeholder span { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 500; }
.upload-placeholder small { font-size: 0.72rem; color: var(--muted); }
.upload-preview { padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1rem; }
.upload-preview img { height: 56px; width: auto; border-radius: 6px; object-fit: cover; }
.upload-filename { font-size: 0.82rem; color: rgba(255,255,255,0.7); flex: 1; word-break: break-all; }
.upload-remove {
  font-size: 0.75rem; color: #ef4444; cursor: pointer;
  padding: 3px 8px; border: 1px solid rgba(239,68,68,0.3);
  border-radius: 6px; transition: background 0.2s; flex-shrink: 0; z-index: 3; position: relative;
}
.upload-remove:hover { background: rgba(239,68,68,0.1); }

/* Order Summary */
.order-summary {
  background: var(--dark3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.summary-row strong { color: #fff; font-weight: 700; }
.summary-divider { height: 1px; background: var(--border); margin: 0.5rem 0; }
.summary-row.total { font-size: 1rem; color: #fff; }
.summary-row.total strong { color: var(--red); font-size: 1.2rem; }

/* Payment */
.payment-methods { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.25rem; }
.payment-option {
  background: var(--dark3);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s;
}
.payment-option:hover { border-color: var(--border2); }
.payment-option.selected, .payment-option:has(input:checked) { border-color: var(--red); }
.payment-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.payment-option-inner { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.payment-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 0.25rem; }
.payment-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.payment-option-inner p { font-size: 0.82rem; color: var(--muted); }
.payment-radio-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.payment-option.selected .payment-radio-dot,
.payment-option:has(input:checked) .payment-radio-dot {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.payment-option.selected .payment-radio-dot::after,
.payment-option:has(input:checked) .payment-radio-dot::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
}

/* Payment Panels */
.payment-panel { margin-top: 0.75rem; }
.instapay-box {
  background: var(--dark3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 2rem;
  margin-bottom: 1.25rem;
}
.instapay-left { flex: 1; display: flex; flex-direction: column; gap: 1.25rem; }
.instapay-step { display: flex; align-items: flex-start; gap: 1rem; }
.instapay-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.instapay-step strong { display: block; font-size: 0.9rem; color: #fff; margin-bottom: 0.2rem; }
.instapay-step p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.instapay-number {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}
.instapay-number span {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
}
.copy-btn {
  background: rgba(223,10,10,0.12);
  border: 1px solid rgba(223,10,10,0.3);
  color: #ff6b6b;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.2s;
}
.copy-btn:hover { background: var(--red); color: #fff; }

.instapay-right { flex-shrink: 0; }
.qr-placeholder {
  width: 140px;
  background: var(--dark4);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.qr-placeholder svg { width: 80px; height: 80px; color: rgba(255,255,255,0.7); }
.qr-placeholder span { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.7); }
.qr-placeholder small { font-size: 0.65rem; color: var(--muted); }

.receipt-upload { background: var(--dark3); border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.receipt-upload label { display: block; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 0.75rem; }

/* Geidea Mockup */
.geidea-box {
  background: var(--dark3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.geidea-mock-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.geidea-mock-header svg { width: 32px; height: 32px; }
.secure-badge {
  margin-inline-start: auto;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--green);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.78rem;
}
.geidea-mock-form { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.25rem; opacity: 0.5; }
.mock-field label { display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 0.3rem; }
.mock-input {
  background: var(--dark4);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}
.mock-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.geidea-coming {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 1.25rem;
  background: rgba(223,10,10,0.05);
  border: 1px dashed rgba(223,10,10,0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.geidea-coming svg { width: 28px; height: 28px; color: var(--red); }
.geidea-coming strong { color: #fff; font-size: 0.95rem; }
.geidea-coming p { font-size: 0.82rem; color: var(--muted); }
.cards-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.card-badge {
  background: var(--dark4);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}

/* Step Actions */
.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.btn-next, .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px var(--red-glow);
  margin-inline-start: auto;
}
.btn-next:hover, .btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(223,10,10,0.35);
}
.btn-next svg, .btn-submit svg { width: 18px; height: 18px; }
[data-lang="ar"] .btn-next svg,
[data-lang="ar"] .btn-submit svg { transform: scaleX(-1); }

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--muted);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--border2);
  transition: all 0.2s;
}
.btn-back:hover { color: #fff; border-color: var(--border2); background: rgba(255,255,255,0.04); }
.btn-back svg { width: 16px; height: 16px; }
[data-lang="ar"] .btn-back svg { transform: scaleX(-1); }

.btn-submit { font-size: 1rem; padding: 0.95rem 2rem; }

.submit-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.submit-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.submit-trust svg { width: 14px; height: 14px; color: var(--green); }

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq-section {
  padding: 5rem 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
  max-width: 800px;
}
.faq-item {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(223,10,10,0.25); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--muted); transition: transform 0.25s; }
.faq-item[open] summary svg { transform: rotate(180deg); color: var(--red); }
.faq-body {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.88rem;
  color: rgba(240,240,240,0.7);
  line-height: 1.7;
}
.faq-body a { color: var(--red); }

/* ══════════════════════════════════════════════
   SITE FOOTER
   ══════════════════════════════════════════════ */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 2.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; max-width: 280px; }
.footer-logo { height: 36px; width: auto; object-fit: contain; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.footer-contacts { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contacts a,
.footer-contacts span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contacts a:hover { color: var(--red); }
.footer-contacts svg { width: 17px; height: 17px; flex-shrink: 0; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 5%;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--red); }

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-end: 1.5rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 200;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none !important;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ══════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ══════════════════════════════════════════════
   RESPONSIVE — 1024px
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .demo-grid { grid-template-columns: repeat(2, 1fr); }
  .template-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .price-block { grid-template-columns: 1fr; gap: 2rem; }
  .how-grid { flex-direction: column; gap: 1rem; }
  .how-arrow { display: none; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 768px
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .stats-inner { gap: 1.5rem; }
  .wa-float {
    display: none;
  }
  .stat-div { display: none; }
  .template-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .instapay-box { flex-direction: column; }
  .instapay-right { align-self: center; }
  .fpb-includes { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { justify-content: center; }
  .step-actions { flex-wrap: wrap; }
  .btn-next, .btn-submit { width: 100%; justify-content: center; margin-inline-start: 0; }
  .demo-grid { grid-template-columns: 1fr 1fr; }
  .submit-trust { flex-direction: column; gap: 0.65rem; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 480px
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .header-inner { gap: .65rem; }
  .logo-img { max-width: 132px; height: auto; }
  .header-cta {
    padding: .5rem .75rem;
    font-size: .78rem;
    flex-shrink: 0;
  }
  .hero { min-height: auto; padding: 4rem 5% 3rem; }
  .demo-grid { grid-template-columns: 1fr; }
  .template-grid { grid-template-columns: 1fr; }
  .fpb-includes { grid-template-columns: 1fr; }
  .mock-row { grid-template-columns: 1fr; }
  .topbar-left > span:nth-child(3),
  .topbar-left > span:nth-child(4),
  .topbar-left > .topbar-sep:nth-child(3) { display: none; }
  .hero-pills { flex-direction: column; align-items: center; }
  .progress-step span { display: none; }
  .wl-picker { grid-template-columns: 1fr; }
  /* keep CTA labels on one line on small phones */
  .btn-primary { font-size: .88rem !important; padding: .9rem 1.3rem !important; white-space: nowrap; }
  .btn-primary svg { width: 15px; height: 15px; }
  .btn-ghost { font-size: .88rem; padding: .9rem 1.3rem; white-space: nowrap; }
}

/* ══════════════════════════════════════════════
   WEBSITE LANGUAGE PICKER
   ══════════════════════════════════════════════ */
.wl-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: .5rem;
}

.wl-option {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #161616;
  border: 2px solid #2a2a2a;
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
}

.wl-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wl-option:hover {
  border-color: #444;
  background: #1a1a1a;
}

.wl-option.selected,
.wl-option:has(input:checked) {
  border-color: var(--red);
  background: rgba(223, 10, 10, .08);
}

.wl-option-inner {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: 1;
}

.wl-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  color: #aaa;
  flex-shrink: 0;
  letter-spacing: -.5px;
}

.wl-option.selected .wl-icon,
.wl-option:has(input:checked) .wl-icon {
  background: var(--red);
  color: #fff;
}

.wl-text strong {
  display: block;
  font-size: .9rem;
  color: #e5e5e5;
  font-weight: 600;
  line-height: 1.3;
}

.wl-text small {
  font-size: .78rem;
  color: #777;
  line-height: 1.3;
}

.wl-badge {
  color: #f5c842 !important;
  font-weight: 700 !important;
}

.wl-radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #444;
  flex-shrink: 0;
  margin-inline-start: auto;
  transition: border-color .2s, background .2s;
  position: relative;
}

.wl-option.selected .wl-radio-dot,
.wl-option:has(input:checked) .wl-radio-dot {
  border-color: var(--red);
  background: var(--red);
}

.wl-option.selected .wl-radio-dot::after,
.wl-option:has(input:checked) .wl-radio-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
}

/* ══════════════════════════════════════════════
   LEGAL CONSENT
   ══════════════════════════════════════════════ */
.legal-consent {
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
}

.legal-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  font-size: .85rem;
  color: #999;
  line-height: 1.6;
}

.legal-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.legal-checkmark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #444;
  border-radius: 4px;
  background: #1a1a1a;
  margin-top: 2px;
  transition: border-color .2s, background .2s;
  position: relative;
  flex-shrink: 0;
}

.legal-checkbox-label input:checked ~ .legal-checkmark {
  background: var(--red);
  border-color: var(--red);
}

.legal-checkbox-label input:checked ~ .legal-checkmark::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.legal-checkbox-label a {
  color: var(--red);
  text-decoration: underline;
}
