:root {
  --bg: #070816;
  --bg-soft: #0d1025;
  --surface: rgba(255,255,255,.07);
  --surface-2: rgba(255,255,255,.11);
  --text: #f7f7ff;
  --muted: #b7b9cc;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --cyan: #22d3ee;
  --yellow: #facc15;
  --green: #34d399;
  --danger: #fb7185;
  --border: rgba(255,255,255,.13);
  --shadow: 0 28px 80px rgba(0,0,0,.42);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(139,92,246,.22), transparent 35%),
    radial-gradient(circle at 90% 18%, rgba(34,211,238,.16), transparent 31%),
    radial-gradient(circle at 55% 80%, rgba(236,72,153,.13), transparent 34%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body[dir="rtl"] { font-family: Tahoma, Arial, sans-serif; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 9999;
  padding: 10px 14px; border-radius: 10px; background: #fff; color: #111;
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section.compact { padding: 64px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .79rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #d8caff;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg,var(--purple),var(--cyan)); }
.section-title { max-width: 800px; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.08; margin: 14px 0 18px; letter-spacing: -.035em; }
.section-copy { max-width: 720px; color: var(--muted); font-size: 1.08rem; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(7,8,22,.72); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; letter-spacing: -.02em; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg,var(--purple),var(--pink) 52%,var(--cyan));
  box-shadow: 0 12px 34px rgba(139,92,246,.35);
  font-weight: 1000; color: #fff;
}
.brand small { display: block; color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: #dadbea; text-decoration: none; font-weight: 700; font-size: .94rem; }
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language-select {
  appearance: none; color: #fff; background: rgba(255,255,255,.08);
  border: 1px solid var(--border); border-radius: 12px; padding: 10px 30px 10px 12px;
}
body[dir="rtl"] .language-select { padding: 10px 12px 10px 30px; }
.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--border); background: var(--surface); color: #fff; border-radius: 12px; }

.btn {
  display: inline-flex; justify-content: center; align-items: center; gap: 10px;
  min-height: 50px; padding: 13px 20px; border-radius: 15px;
  text-decoration: none; border: 1px solid transparent; font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #090a15; background: linear-gradient(135deg,#fff 0%,#c7f9ff 45%,#e9d5ff 100%);
  box-shadow: 0 16px 40px rgba(34,211,238,.2);
}
.btn-secondary { color: #fff; background: rgba(255,255,255,.08); border-color: var(--border); }
.btn-call { background: linear-gradient(135deg,var(--green),#a7f3d0); color: #052014; box-shadow: 0 14px 32px rgba(52,211,153,.22); }
.btn-small { min-height: 44px; padding: 10px 16px; border-radius: 13px; }

.hero { min-height: calc(100vh - 78px); display: grid; align-items: center; padding: 78px 0 64px; position: relative; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(90deg, rgba(7,8,22,.98) 0%, rgba(7,8,22,.82) 42%, rgba(7,8,22,.35) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 48px; }
.hero h1 { font-size: clamp(3.25rem, 7vw, 6.9rem); line-height: .92; letter-spacing: -.065em; margin: 18px 0 26px; }
.hero h1 span { display: block; color: transparent; background: linear-gradient(90deg,#fff,#d8caff 35%,#7dd3fc 74%,#f9a8d4); background-clip: text; -webkit-background-clip: text; }
.hero-copy { max-width: 710px; color: #c9cada; font-size: clamp(1.03rem,2vw,1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: #d8d9e6; font-size: .93rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 99px; background: var(--green); box-shadow: 0 0 18px var(--green); }
.hero-note { margin-top: 18px; color: #8f91a8; font-size: .82rem; max-width: 660px; }

.park-art { position: relative; min-height: 600px; }
.art-glow { position: absolute; inset: 8% 2% 10%; border-radius: 50%; background: radial-gradient(circle,rgba(139,92,246,.35),rgba(34,211,238,.13) 45%,transparent 70%); filter: blur(10px); }
.art-card {
  position: absolute; inset: 7% 0 4% 2%; border-radius: 40px; overflow: hidden;
  background: linear-gradient(160deg,#171a3c,#08091a 62%); border: 1px solid rgba(255,255,255,.13); box-shadow: var(--shadow);
  transform: perspective(1100px) rotateY(-7deg) rotateX(2deg);
}
body[dir="rtl"] .art-card { transform: perspective(1100px) rotateY(7deg) rotateX(2deg); }
.art-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg,rgba(255,255,255,.08),transparent 35%); pointer-events: none; }
.park-svg { width: 100%; height: 100%; }
.floating-badge {
  position: absolute; z-index: 2; padding: 13px 16px; border-radius: 16px;
  background: rgba(12,13,31,.85); border: 1px solid var(--border); backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0,0,0,.3); font-weight: 850;
}
.badge-a { top: 3%; right: -1%; }
.badge-b { bottom: 4%; left: -4%; }
body[dir="rtl"] .badge-a { right: auto; left: -1%; }
body[dir="rtl"] .badge-b { left: auto; right: -4%; }
.floating-badge small { display: block; color: var(--muted); font-size: .72rem; margin-top: 2px; font-weight: 650; }

.stats { margin-top: -30px; position: relative; z-index: 4; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); background: rgba(12,14,32,.82); backdrop-filter: blur(18px); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
.stat { padding: 28px; min-height: 132px; border-right: 1px solid var(--border); }
body[dir="rtl"] .stat { border-right: 0; border-left: 1px solid var(--border); }
.stat:last-child { border: 0; }
.stat strong { display: block; font-size: clamp(1.55rem,3vw,2.6rem); line-height: 1; margin-bottom: 9px; }
.stat span { color: var(--muted); font-size: .9rem; }

.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.feature-card {
  position: relative; min-height: 390px; overflow: hidden; padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface); box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.feature-card::before { content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%; right: -70px; top: -90px; filter: blur(1px); opacity: .45; }
body[dir="rtl"] .feature-card::before { right: auto; left: -70px; }
.feature-card.past::before { background: radial-gradient(circle,#f59e0b,transparent 66%); }
.feature-card.present::before { background: radial-gradient(circle,#ec4899,transparent 66%); }
.feature-card.future::before { background: radial-gradient(circle,#22d3ee,transparent 66%); }
.card-number { font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 900; }
.feature-card h3 { font-size: 2rem; line-height: 1.05; margin: 12px 0; }
.feature-card p { color: var(--muted); }
.feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 10px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; color: #e8e9f5; }
.feature-list li::before { content: "✦"; color: var(--cyan); }
.zone-icon { width: 92px; height: 92px; margin-top: 30px; border: 1px solid var(--border); border-radius: 26px; display: grid; place-items: center; background: rgba(255,255,255,.06); font-size: 2.7rem; }

.ride-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; margin-top: 42px; }
.ride-intro { position: sticky; top: 120px; padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); background: linear-gradient(160deg,rgba(139,92,246,.15),rgba(255,255,255,.04)); }
.ride-intro h3 { font-size: 2.25rem; margin: 8px 0 14px; }
.ride-intro p { color: var(--muted); }
.ride-stack { display: grid; gap: 16px; }
.ride-item { display: grid; grid-template-columns: 74px 1fr auto; align-items: center; gap: 18px; padding: 20px; border-radius: 20px; border: 1px solid var(--border); background: rgba(255,255,255,.055); }
.ride-item:hover { background: rgba(255,255,255,.085); }
.ride-icon { width: 74px; height: 74px; border-radius: 20px; display: grid; place-items: center; font-size: 2rem; background: linear-gradient(135deg,rgba(139,92,246,.3),rgba(34,211,238,.15)); }
.ride-item h4 { margin: 0 0 4px; font-size: 1.2rem; }
.ride-item p { margin: 0; color: var(--muted); font-size: .93rem; }
.ride-tag { color: #0f172a; background: #cffafe; font-weight: 900; border-radius: 999px; padding: 7px 10px; font-size: .72rem; white-space: nowrap; }

.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 38px; }
.why-card { padding: 22px; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,.05); }
.why-card .num { color: var(--cyan); font-size: .76rem; font-weight: 900; }
.why-card h3 { margin: 9px 0 7px; font-size: 1.16rem; }
.why-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.call-panel {
  overflow: hidden; position: relative; padding: 48px; border-radius: 32px; border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(120deg,#6d28d9,#be185d 58%,#0e7490); box-shadow: var(--shadow);
}
.call-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 12%,rgba(255,255,255,.22),transparent 30%); }
.call-grid { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.call-panel h2 { font-size: clamp(2.15rem,5vw,4.6rem); line-height: .98; margin: 0 0 14px; letter-spacing: -.04em; }
.call-panel p { margin: 0; max-width: 720px; color: rgba(255,255,255,.83); }
.call-box { min-width: 290px; padding: 20px; border-radius: 20px; background: rgba(7,8,22,.68); border: 1px solid rgba(255,255,255,.2); }
.call-box strong { display: block; font-size: 1.55rem; margin-bottom: 4px; }
.call-box small { display: block; color: #d7d7e4; margin-bottom: 14px; }

.info-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch; margin-top: 40px; }
.map-card, .visit-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.05); }
.map-art { min-height: 390px; position: relative; background:
  linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
  linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px),
  radial-gradient(circle at 56% 49%,rgba(34,211,238,.3),transparent 13%),
  linear-gradient(135deg,#171936,#090a18);
  background-size: 44px 44px,44px 44px,auto,auto;
}
.map-pin { position: absolute; top: 47%; left: 54%; transform: translate(-50%,-50%); width: 80px; height: 80px; border-radius: 50% 50% 50% 0; rotate: -45deg; display: grid; place-items: center; background: linear-gradient(135deg,var(--pink),var(--purple)); box-shadow: 0 0 0 18px rgba(236,72,153,.08),0 18px 42px rgba(0,0,0,.35); }
.map-pin::after { content: "Q"; rotate: 45deg; font-size: 1.65rem; font-weight: 1000; }
.map-label { position: absolute; left: 24px; bottom: 24px; right: 24px; padding: 16px; border-radius: 16px; background: rgba(7,8,22,.82); border: 1px solid var(--border); backdrop-filter: blur(12px); }
.map-label strong { display: block; }
.map-label span { color: var(--muted); font-size: .9rem; }
.visit-card { padding: 28px; }
.visit-row { padding: 17px 0; display: grid; grid-template-columns: 38px 1fr; gap: 14px; border-bottom: 1px solid var(--border); }
.visit-row:last-child { border: 0; }
.visit-row h3 { margin: 0 0 4px; font-size: 1rem; }
.visit-row p { margin: 0; color: var(--muted); font-size: .93rem; }
.visit-icon { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: rgba(34,211,238,.12); }

.faq { max-width: 900px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq details { border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.05); overflow: hidden; }
.faq summary { list-style: none; padding: 20px 56px 20px 20px; font-weight: 850; position: relative; }
body[dir="rtl"] .faq summary { padding: 20px 20px 20px 56px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 16px; font-size: 1.5rem; color: var(--cyan); }
body[dir="rtl"] .faq summary::after { right: auto; left: 20px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.compliance-note { margin-top: 28px; padding: 18px 20px; border-radius: 16px; background: rgba(250,204,21,.08); border: 1px solid rgba(250,204,21,.25); color: #fff3b0; font-size: .88rem; }

.site-footer { padding: 54px 0 110px; border-top: 1px solid var(--border); background: rgba(0,0,0,.16); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 30px; }
.footer-brand p { color: var(--muted); max-width: 490px; }
.footer-title { font-weight: 900; margin-bottom: 12px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 18px; color: #8d8fa5; font-size: .82rem; }

.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 2000; max-width: 740px; margin-inline: auto; padding: 18px; border: 1px solid var(--border); border-radius: 18px; background: rgba(10,11,27,.96); box-shadow: var(--shadow); display: none; }
.cookie-banner.show { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .88rem; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-btn { border: 1px solid var(--border); border-radius: 11px; padding: 9px 13px; color: #fff; background: var(--surface); font-weight: 800; }
.cookie-btn.accept { background: #fff; color: #111; }

.mobile-call { display: none; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 1500; }
.mobile-call .btn { width: 100%; min-height: 56px; border-radius: 17px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.legal-body { background: var(--bg); }
.legal-header { padding: 70px 0 30px; }
.legal-main { padding: 20px 0 90px; }
.legal-card { max-width: 900px; padding: clamp(24px,5vw,52px); margin: 0 auto; border: 1px solid var(--border); border-radius: 28px; background: rgba(255,255,255,.055); }
.legal-card h1 { font-size: clamp(2.4rem,7vw,4.5rem); margin: 0 0 16px; line-height: 1; }
.legal-card h2 { margin-top: 34px; }
.legal-card p, .legal-card li { color: var(--muted); }

@media (max-width: 980px) {
  .nav-links { display: none; position: fixed; inset: 78px 18px auto; padding: 18px; border-radius: 18px; background: rgba(10,11,27,.98); border: 1px solid var(--border); flex-direction: column; align-items: stretch; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .menu-btn { display: grid; place-items: center; }
  .nav-actions .btn-small { display: none; }
  .hero-grid, .ride-layout, .info-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
  .park-art { min-height: 520px; }
  .art-card { inset: 5% 5% 4%; transform: none; }
  body[dir="rtl"] .art-card { transform: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: 0; }
  body[dir="rtl"] .stat:nth-child(2) { border-left: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .card-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 330px; }
  .ride-intro { position: static; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .call-grid { grid-template-columns: 1fr; }
  .call-box { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 26px),var(--container)); }
  .section { padding: 72px 0; }
  .brand-copy { display: none; }
  .hero h1 { font-size: clamp(3rem,17vw,5rem); }
  .park-art { min-height: 410px; }
  .floating-badge { font-size: .78rem; padding: 10px 12px; }
  .badge-a { right: 0; }
  .badge-b { left: 0; }
  .stats { margin-top: -12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 19px; min-height: 112px; }
  .ride-item { grid-template-columns: 58px 1fr; }
  .ride-icon { width: 58px; height: 58px; border-radius: 16px; }
  .ride-tag { grid-column: 2; justify-self: start; }
  .why-grid { grid-template-columns: 1fr; }
  .call-panel { padding: 28px 22px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner.show { grid-template-columns: 1fr; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
  .mobile-call { display: block; }
  .site-footer { padding-bottom: 95px; }
}

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

/* Privacy controls and expanded legal pages */
[hidden] { display: none !important; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
body.privacy-open { overflow: hidden; }

.privacy-banner {
  position: fixed; z-index: 3000; left: 18px; right: 18px; bottom: 18px;
  max-width: 1080px; margin-inline: auto; padding: 20px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  border: 1px solid rgba(255,255,255,.18); border-radius: 22px;
  background: rgba(8,9,24,.98); box-shadow: 0 24px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(18px);
}
.privacy-banner-copy strong { display: block; margin-bottom: 6px; font-size: 1.05rem; }
.privacy-banner-copy p { margin: 0 0 7px; max-width: 760px; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.privacy-banner-copy a { color: #fff; font-weight: 800; font-size: .86rem; }
.privacy-gpc { color: #b9f6ff !important; }
.privacy-banner-actions, .privacy-modal-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.privacy-btn {
  min-height: 42px; padding: 9px 15px; border: 1px solid rgba(255,255,255,.24);
  border-radius: 12px; background: rgba(255,255,255,.07); color: #fff;
  font: inherit; font-size: .84rem; font-weight: 850; cursor: pointer;
}
.privacy-btn:hover { background: rgba(255,255,255,.13); }
.privacy-btn:focus-visible, .privacy-close:focus-visible, .privacy-manage:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.privacy-btn.primary { background: #fff; color: #111326; border-color: #fff; }
.privacy-btn.primary:hover { background: #e9faff; }

.privacy-backdrop { position: fixed; inset: 0; z-index: 3090; background: rgba(0,0,0,.72); backdrop-filter: blur(5px); }
.privacy-modal {
  position: fixed; z-index: 3100; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(680px,calc(100% - 28px)); max-height: min(780px,calc(100vh - 32px)); overflow: auto;
  padding: 26px; border: 1px solid rgba(255,255,255,.2); border-radius: 26px;
  background: #0b0d22; box-shadow: 0 30px 100px rgba(0,0,0,.72);
}
.privacy-modal-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.privacy-kicker { color: var(--cyan); text-transform: uppercase; letter-spacing: .15em; font-weight: 900; font-size: .7rem; }
.privacy-modal h2 { margin: 5px 0 0; font-size: clamp(1.8rem,5vw,2.7rem); }
.privacy-close { width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 50%; background: rgba(255,255,255,.06); color: #fff; font-size: 1.5rem; cursor: pointer; flex: 0 0 auto; }
.privacy-modal-intro { color: var(--muted); line-height: 1.6; }
.privacy-options { display: grid; gap: 10px; margin: 20px 0; }
.privacy-option { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 17px; border: 1px solid var(--border); border-radius: 17px; background: rgba(255,255,255,.04); cursor: pointer; }
.privacy-option strong { display: block; margin-bottom: 4px; }
.privacy-option small { display: block; max-width: 510px; color: var(--muted); line-height: 1.45; }
.privacy-switch { position: relative; width: 50px; height: 28px; flex: 0 0 auto; }
.privacy-switch input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.privacy-switch i { display: block; width: 50px; height: 28px; border-radius: 999px; background: #33374e; border: 1px solid rgba(255,255,255,.17); transition: .2s ease; }
.privacy-switch i::after { content: ""; display: block; width: 20px; height: 20px; margin: 3px; border-radius: 50%; background: #fff; transition: .2s ease; }
.privacy-switch input:checked + i { background: linear-gradient(90deg,var(--purple),var(--cyan)); }
.privacy-switch input:checked + i::after { transform: translateX(22px); }
body[dir="rtl"] .privacy-switch input:checked + i::after { transform: translateX(-22px); }
.privacy-switch input:focus-visible + i { outline: 3px solid var(--cyan); outline-offset: 3px; }
.privacy-switch input:disabled + i { opacity: .72; }
.privacy-modal-actions { justify-content: flex-end; padding-top: 4px; }
.privacy-manage {
  position: fixed; z-index: 1490; left: 16px; bottom: 16px; min-height: 38px;
  padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  background: rgba(8,9,24,.9); color: #fff; font: inherit; font-size: .75rem; font-weight: 800;
  cursor: pointer; backdrop-filter: blur(10px); box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
body[dir="rtl"] .privacy-manage { left: auto; right: 16px; }

.noscript-note { position: fixed; z-index: 3200; top: 82px; left: 16px; right: 16px; max-width: 900px; margin: auto; padding: 14px 18px; border-radius: 14px; background: #fff2b8; color: #2f2500; font-weight: 750; box-shadow: var(--shadow); }
.legal-meta { color: #b6b8cc !important; font-size: .9rem; }
.legal-alert { margin: 24px 0; padding: 18px 20px; border-radius: 16px; border: 1px solid rgba(250,204,21,.3); background: rgba(250,204,21,.09); color: #fff4b8; line-height: 1.55; }
.legal-alert.danger { border-color: rgba(251,113,133,.35); background: rgba(251,113,133,.1); color: #ffd7df; }
.legal-card a { color: #bdefff; }
.legal-card code { padding: 2px 6px; border-radius: 6px; background: rgba(255,255,255,.08); color: #fff; }
.legal-card ol, .legal-card ul { padding-inline-start: 24px; }
.legal-card li { margin: 7px 0; line-height: 1.55; }
.legal-table-wrap { margin: 20px 0; overflow-x: auto; border: 1px solid var(--border); border-radius: 17px; }
.legal-table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: .9rem; }
.legal-table th, .legal-table td { padding: 14px 15px; text-align: start; vertical-align: top; border-bottom: 1px solid var(--border); }
.legal-table tr:last-child td { border-bottom: 0; }
.legal-table th { background: rgba(255,255,255,.07); color: #fff; }
.legal-table td { color: var(--muted); }
.placeholder-policy { padding: 20px; border: 2px dashed rgba(251,113,133,.55); border-radius: 16px; background: rgba(251,113,133,.08); color: #ffe0e6 !important; font-weight: 850; }
.legal-footer { padding: 24px 0 78px; border-top: 1px solid var(--border); color: var(--muted); background: rgba(0,0,0,.14); }
.legal-footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.legal-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 18px; }
.legal-footer a { color: var(--muted); text-decoration: none; }
.legal-footer a:hover { color: #fff; }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 28px 0; }
.contact-card { padding: 22px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.04); }
.contact-card h2 { margin: 10px 0 7px; font-size: 1.25rem; }
.contact-card p { margin: 7px 0; }
.contact-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: rgba(34,211,238,.12); }
.legal-contact-link { font-size: 1.08rem; font-weight: 900; word-break: break-word; }

@media (max-width: 820px) {
  .privacy-banner { grid-template-columns: 1fr; gap: 15px; }
  .privacy-banner-actions { width: 100%; }
  .privacy-banner-actions .privacy-btn { flex: 1 1 145px; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-footer-inner { flex-direction: column; align-items: flex-start; }
  .legal-footer nav { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .privacy-banner { left: 10px; right: 10px; bottom: 78px; padding: 16px; border-radius: 18px; }
  .privacy-banner-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .privacy-banner-actions .privacy-btn.primary { grid-column: 1/-1; }
  .privacy-modal { padding: 20px 16px; border-radius: 20px; }
  .privacy-option { padding: 14px; gap: 12px; }
  .privacy-modal-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .privacy-modal-actions .privacy-btn.primary { grid-column: 1/-1; }
  .privacy-manage { bottom: 82px; }
  .legal-body .privacy-manage { bottom: 14px; }
}
