
:root {
  --dark: #07030f;
  --neon-purple: #a855f7;
  --neon-blue: #00e5ff;
  --gold: #facc15;
  --magenta: #ff2bd6;
  --white: #ffffff;
  --ink: #d9d7f7;
  --muted: #a6a0bf;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.28), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(0, 229, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 50% 110%, rgba(255, 43, 214, 0.16), transparent 34rem),
    var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 3, 15, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 3, 15, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 28px rgba(168, 85, 247, 0.18);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(255, 43, 214, 0.38);
}

.logo span {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  color: #ede9ff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(168, 85, 247, 0.17);
  box-shadow: inset 0 0 0 1px rgba(168, 85, 247, 0.42), 0 0 20px rgba(168, 85, 247, 0.25);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: #12070a;
  background: linear-gradient(135deg, var(--gold), #ffe99a);
  font-weight: 900;
  box-shadow: 0 0 22px rgba(250, 204, 21, 0.45);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.btn-gold {
  color: #1b1200;
  background: linear-gradient(135deg, var(--gold), #fff0a3 48%, #ffb703);
  box-shadow: 0 0 24px rgba(250, 204, 21, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 0 34px rgba(250, 204, 21, 0.55);
}

.btn-neon {
  color: var(--white);
  background: linear-gradient(135deg, var(--neon-purple), var(--magenta), var(--neon-blue));
  box-shadow: 0 0 32px rgba(168, 85, 247, 0.42), 0 0 42px rgba(0, 229, 255, 0.18);
}

.btn-outline,
.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.22);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background-image: var(--hero-bg);
  background-position: center;
  background-size: cover;
}

.home-hero {
  min-height: calc(100vh - 82px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(168, 85, 247, 0.44), transparent 28rem),
    radial-gradient(circle at 82% 68%, rgba(0, 229, 255, 0.28), transparent 26rem),
    linear-gradient(110deg, rgba(7, 3, 15, 0.88), rgba(7, 3, 15, 0.5), rgba(7, 3, 15, 0.82));
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--dark));
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding: 100px 0 76px;
  max-width: 940px;
  margin-left: max(16px, calc((100vw - var(--max)) / 2));
  margin-right: auto;
}

.hero-content h1 {
  margin: 18px 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 4.3vw, 3.65rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.page-hero .hero-content h1 {
  font-size: clamp(1.72rem, 3.75vw, 3.05rem);
}

.glow-title {
  animation: textGlow 3.6s ease-in-out infinite alternate;
}

@keyframes textGlow {
  from { text-shadow: 0 0 18px rgba(168, 85, 247, 0.35), 0 0 34px rgba(0, 229, 255, 0.18); }
  to { text-shadow: 0 0 28px rgba(255, 43, 214, 0.58), 0 0 54px rgba(0, 229, 255, 0.28); }
}

.hero-content p {
  max-width: 740px;
  color: #efeaff;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  margin: 0 0 28px;
}

.kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 900;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.scroll-indicator {
  position: absolute;
  left: 0;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.scroll-indicator span {
  width: 22px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  position: relative;
}

.scroll-indicator span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 4px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--neon-blue);
  animation: scrollDot 1.4s ease infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 0.4; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 12px); }
}

.section {
  padding: clamp(72px, 9vw, 124px) 0;
  position: relative;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2,
.text-block h2 {
  margin: 12px 0 16px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.32rem, 2.45vw, 2.08rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-head p,
.text-block p {
  color: var(--ink);
  font-size: 1.05rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.split-grid.reverse {
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
}

.text-block {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: rgba(250, 204, 21, 0.1);
  color: #fff6c2 !important;
  font-weight: 700;
}

.image-card {
  position: relative;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.9), rgba(0, 229, 255, 0.55), rgba(250, 204, 21, 0.8));
  box-shadow: 0 0 48px rgba(168, 85, 247, 0.22), var(--shadow);
  overflow: hidden;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  box-shadow: inset 0 -120px 80px rgba(7, 3, 15, 0.28);
  pointer-events: none;
}

.image-card img {
  width: 100%;
  height: clamp(360px, 48vw, 570px);
  object-fit: cover;
  border-radius: calc(var(--radius) - 1px);
}

.card-grid,
.feature-grid,
.stats-grid {
  display: grid;
  gap: 24px;
}

.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.six { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.lux-card,
.feature-card,
.stat-card,
.testimonial,
.contact-panel,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.lux-card:hover,
.feature-card:hover,
.stat-card:hover,
.testimonial:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.48), 0 0 32px rgba(0, 229, 255, 0.16), 0 0 44px rgba(255, 43, 214, 0.12);
}

.lux-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-body,
.feature-card,
.stat-card,
.testimonial {
  padding: 26px;
}

.card-body h3,
.feature-card h3,
.testimonial h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
}

.card-body p,
.feature-card p,
.testimonial p {
  color: var(--ink);
  margin: 0 0 16px;
}

.price {
  color: var(--gold) !important;
  font-weight: 900;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-blue);
  font-weight: 900;
}

.text-link:hover {
  color: var(--gold);
}

.fine-print {
  color: var(--muted);
  margin-top: 22px;
  text-align: center;
}

.neon-band {
  background-image:
    linear-gradient(90deg, rgba(7, 3, 15, 0.94), rgba(7, 3, 15, 0.68), rgba(7, 3, 15, 0.94)),
    var(--band-bg);
  background-size: cover;
  background-position: center;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 80px rgba(168, 85, 247, 0.13);
}

.feature-card {
  min-height: 230px;
}

.feature-card i {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--dark);
  background: linear-gradient(135deg, var(--neon-blue), var(--gold));
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.34);
  font-size: 1.35rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  text-align: center;
  min-height: 170px;
  display: grid;
  place-items: center;
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.65rem, 3.7vw, 2.85rem);
  line-height: 1;
  text-shadow: 0 0 26px rgba(250, 204, 21, 0.32);
}

.stat-card span {
  color: var(--ink);
  font-weight: 800;
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(var(--neon-purple), var(--neon-blue), var(--gold));
}

.timeline-item {
  position: relative;
  margin-left: 56px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.075);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -48px;
  top: 26px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(250, 204, 21, 0.7);
}

.timeline-item span,
.testimonial span {
  color: var(--neon-blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.timeline-item h3,
.timeline-item p {
  margin: 6px 0 0;
}

.timeline-item p {
  color: var(--ink);
}

.testimonial {
  min-height: 240px;
}

.testimonial p {
  font-size: 1.16rem;
  color: #f5efff;
}

.mega-age {
  display: inline-grid;
  place-items: center;
  width: 94px;
  height: 94px;
  margin-bottom: 18px;
  color: #1b1200;
  font-size: 2rem;
  font-weight: 900;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--gold), #fff4bd);
  box-shadow: 0 0 36px rgba(250, 204, 21, 0.54);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 11px;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--ink);
}

.check-list i {
  color: var(--gold);
  margin-top: 5px;
}

.location-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  margin: 24px 0;
  border: 1px solid rgba(250, 204, 21, 0.32);
  border-radius: 18px;
  background: rgba(250, 204, 21, 0.09);
}

.location-card i {
  color: var(--gold);
  font-size: 1.8rem;
}

.location-card strong,
.location-card span {
  display: block;
}

.location-card span {
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: clamp(24px, 4vw, 34px);
}

.contact-list {
  display: grid;
  gap: 15px;
  margin: 24px 0;
}

.contact-list p {
  display: grid;
  grid-template-columns: 28px 120px 1fr;
  gap: 8px;
  margin: 0;
  color: var(--ink);
}

.contact-list i {
  color: var(--gold);
  margin-top: 4px;
}

.contact-list strong {
  color: var(--white);
}

.contact-list a:hover {
  color: var(--neon-blue);
}

.contact-form h2,
.contact-panel h2 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 2.05vw, 1.82rem);
  line-height: 1.05;
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.form-row label,
.checkbox-row {
  color: #f6f2ff;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(7, 3, 15, 0.72);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.13);
}

textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0 4px;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.error {
  min-height: 20px;
  color: #ff9ccf;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-success {
  margin-top: 16px;
  color: #b6ffec;
  font-weight: 900;
}

.map-frame {
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue), var(--gold));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 470px;
  border: 0;
  display: block;
  border-radius: calc(var(--radius) - 1px);
}

.center {
  text-align: center;
  margin-top: 26px;
}

.site-footer {
  position: relative;
  padding: 76px 0 24px;
  background: linear-gradient(180deg, rgba(7, 3, 15, 0.2), rgba(7, 3, 15, 0.95));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(168, 85, 247, 0.20), transparent 26rem),
    radial-gradient(circle at 80% 0%, rgba(0, 229, 255, 0.16), transparent 24rem);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr 1.1fr;
  gap: 34px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink);
}

.footer-col h3 {
  margin: 0 0 6px;
  color: var(--white);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col p {
  margin: 0;
}

.footer-col i {
  color: var(--gold);
  width: 20px;
}

.disclaimer {
  color: #fff5be !important;
  font-weight: 800;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  z-index: 1400;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(7, 3, 15, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55), 0 0 30px rgba(168, 85, 247, 0.22);
  backdrop-filter: blur(18px);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 2px 0 0;
  color: var(--ink);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65);
}

.cookie-modal.show {
  display: grid;
}

.modal-card {
  position: relative;
  width: min(100%, 560px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(20, 8, 37, 0.98), rgba(8, 7, 28, 0.98));
  box-shadow: var(--shadow), 0 0 40px rgba(0, 229, 255, 0.15);
}

.modal-card h2 {
  margin-top: 0;
}

.modal-card p {
  color: var(--ink);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.6rem;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.setting-row span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.switch input {
  display: none;
}

.switch span {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.switch span::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.2s ease, background 0.2s ease;
}

.switch input:checked + span {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
}

.switch input:checked + span::after {
  transform: translateX(26px);
  background: #fff8d5;
}

.modal-save {
  width: 100%;
  margin-top: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Legal pages */
.legal-page .hero-content {
  max-width: 860px;
}

.legal-wrap {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-sidebar h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.legal-sidebar a {
  display: block;
  padding: 9px 0;
  color: var(--ink);
  font-weight: 800;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-sidebar a:hover {
  color: var(--gold);
}

.legal-content {
  display: grid;
  gap: 22px;
}

.legal-block {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-block h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.legal-block h3 {
  margin: 22px 0 8px;
  font-size: 0.98rem;
}

.legal-block p,
.legal-block li {
  color: var(--ink);
}

.support-panel {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.08), rgba(168, 85, 247, 0.09));
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.09);
}

.support-panel h3 {
  color: var(--white);
  font-size: 1rem;
  margin-top: 0;
}

.support-panel a {
  color: var(--gold);
  font-weight: 800;
}

.support-panel a:hover {
  color: var(--neon-blue);
}


.legal-block ul,
.legal-block ol {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-callout {
  padding: 18px 20px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(250, 204, 21, 0.10);
  color: #fff6c2;
  font-weight: 800;
}

.legal-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .legal-wrap {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 1040px) {
  .main-nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(7, 3, 15, 0.97);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .btn-small {
    display: none;
  }

  .split-grid,
  .split-grid.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .three,
  .four,
  .six,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .main-nav {
    top: 72px;
  }

  .age-badge {
    min-width: 42px;
    height: 31px;
    font-size: 0.88rem;
  }

  .hero-content {
    padding: 86px 0 66px;
  }

  .hero-content h1 {
    font-size: clamp(1.72rem, 8.8vw, 2.85rem);
  }

  .hero-buttons,
  .cookie-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .three,
  .four,
  .six,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-list p {
    grid-template-columns: 26px 1fr;
  }

  .contact-list strong {
    grid-column: 2;
  }

  .contact-list p {
    overflow-wrap: anywhere;
  }

  .cookie-banner.show {
    display: block;
  }

  .cookie-actions {
    margin-top: 14px;
  }

  .footer-bottom {
    display: flex;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
