/* ==========================================================================
   AlbionCasinoReview — design system
   "Neon Vegas": near-black background lit by glowing hot-pink, electric-
   cyan and gold accents — strip-sign energy, but every glow sits on a
   dark surface. No white backgrounds anywhere.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #06050a;
  --bg-deep: #020203;
  --surface: #0f0b18;
  --surface-muted: #15101f;
  --surface-raised: #1c1530;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);

  --navy: #3a1250;
  --navy-deep: #1c0930;

  --ink: #f5f3ff;
  --ink-soft: #c7c0e0;
  --ink-faint: #8b84a8;

  --pink: #ff2fb0;
  --pink-soft: rgba(255, 47, 176, 0.14);
  --pink-border: rgba(255, 47, 176, 0.45);

  --cyan: #22e5ff;
  --cyan-soft: rgba(34, 229, 255, 0.14);
  --cyan-border: rgba(34, 229, 255, 0.45);

  --blue: var(--cyan);
  --teal: var(--cyan); /* legacy name kept for inline styles in the views; used as the standard link/accent colour */

  --green: #39ff8a;
  --green-soft: rgba(57, 255, 138, 0.14);
  --green-border: rgba(57, 255, 138, 0.42);

  --gold: #ffcc33;
  --gold-soft: rgba(255, 204, 51, 0.14);
  --gold-border: rgba(255, 204, 51, 0.42);

  --red: #ff4d6d;
  --red-soft: rgba(255, 77, 109, 0.14);
  --red-border: rgba(255, 77, 109, 0.42);

  --magenta: var(--pink);
  --violet: var(--cyan);
  --danger: var(--red);

  --radius-lg: 16px;
  --radius-md: 11px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 16px 34px rgba(0, 0, 0, 0.55);
  --shadow-soft: var(--shadow-sm);
  --glow-pink: 0 0 16px rgba(255, 47, 176, 0.55), 0 0 42px rgba(255, 47, 176, 0.25);
  --glow-cyan: 0 0 16px rgba(34, 229, 255, 0.5), 0 0 42px rgba(34, 229, 255, 0.22);
  --glow-gold: 0 0 14px rgba(255, 204, 51, 0.5), 0 0 36px rgba(255, 204, 51, 0.2);
  --glow-green: 0 0 14px rgba(57, 255, 138, 0.5), 0 0 36px rgba(57, 255, 138, 0.2);
  --shadow-glow-gold: var(--glow-gold);
  --shadow-glow-teal: var(--glow-cyan);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(42% 34% at 12% -8%, rgba(255, 47, 176, 0.16), transparent 60%),
    radial-gradient(38% 30% at 102% 0%, rgba(34, 229, 255, 0.14), transparent 58%),
    radial-gradient(48% 38% at 50% 112%, rgba(255, 204, 51, 0.08), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.1em;
}

a {
  color: var(--blue);
  text-decoration: none;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Age gate ribbon ---------- */
.age-ribbon {
  background: var(--bg-deep);
  color: var(--ink-faint);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 9px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.age-ribbon strong { color: var(--gold); font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 47, 176, 0.25), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 18px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
}
.brand-mark-accent {
  color: var(--pink);
  text-shadow: 0 0 14px rgba(255, 47, 176, 0.6);
}

.brand-gem {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  font-size: 1rem;
  flex-shrink: 0;
}

.badge-18 {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--red-soft);
  color: var(--red);
  font-weight: 800;
  font-size: 0.74rem;
  border: 1px solid var(--red-border);
  box-shadow: 0 0 12px rgba(255, 77, 109, 0.35);
  flex-shrink: 0;
}

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

.main-nav a {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--surface-muted);
  color: var(--ink);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.btn:hover { transform: translateY(-1px); }

@keyframes neon-pulse-green {
  0%, 100% { box-shadow: var(--glow-green); }
  50% { box-shadow: 0 0 22px rgba(57, 255, 138, 0.75), 0 0 56px rgba(57, 255, 138, 0.35); }
}
@keyframes neon-pulse-pink {
  0%, 100% { box-shadow: var(--glow-pink); }
  50% { box-shadow: 0 0 22px rgba(255, 47, 176, 0.75), 0 0 56px rgba(255, 47, 176, 0.35); }
}

.btn-gold {
  background: linear-gradient(135deg, #17c96e, var(--green));
  color: #06170f;
  border-color: transparent;
  box-shadow: var(--glow-green);
  animation: neon-pulse-green 2.6s ease-in-out infinite;
}
.btn-gold:hover { box-shadow: 0 0 20px rgba(57, 255, 138, 0.7), 0 0 52px rgba(57, 255, 138, 0.32); }

.btn-teal {
  background: linear-gradient(135deg, var(--pink), #a726ff);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--glow-pink);
  animation: neon-pulse-pink 2.6s ease-in-out infinite;
}
.btn-teal:hover { box-shadow: 0 0 20px rgba(255, 47, 176, 0.7), 0 0 52px rgba(255, 47, 176, 0.32); }

.cta-banner .btn-teal { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .btn-gold, .btn-teal { animation: none; }
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--cyan-border);
}
.btn-ghost:hover { background: var(--surface-muted); border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Panels / Cards ---------- */
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.blob-accent {
  position: relative;
  border-top: 3px solid var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  padding: 40px 0 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-centered .wrap {
  max-width: 720px;
  text-align: center;
}
.hero-centered .hero-actions {
  justify-content: center;
}
.hero-centered p {
  margin-left: auto;
  margin-right: auto;
}

.hero-chip {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 16px;
  padding: 6px;
  background: repeating-conic-gradient(from 0deg, var(--gold) 0deg 8deg, #1c1530 8deg 16deg);
  box-shadow: var(--glow-gold);
  display: grid;
  place-items: center;
}
.hero-chip-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-chip-inner strong {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
}
.hero-chip-inner span {
  font-size: 0.68rem;
  color: var(--ink-faint);
}

.hero-marquee {
  margin-top: 34px;
  overflow: hidden;
  background: var(--surface-muted);
  border-top: 1px solid var(--pink-border);
  box-shadow: inset 0 12px 24px -12px rgba(255, 47, 176, 0.18);
  padding: 14px 0;
}
.hero-marquee-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
}
.hero-marquee-track span {
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track { animation: none; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  border: 1px solid var(--cyan-border);
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
  box-shadow: var(--glow-cyan);
}
.hero h1 {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.35em;
}
.hero h1 em {
  font-style: normal;
  color: var(--pink);
  text-shadow: 0 0 18px rgba(255, 47, 176, 0.55), 0 0 40px rgba(255, 47, 176, 0.22);
}
.hero p {
  margin-bottom: 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-size: 1.15rem;
  color: var(--ink);
}
.hero-stat span {
  font-size: 0.76rem;
  color: var(--ink-faint);
}

/* ---------- Hero trust panel (replaces decorative art) ---------- */
.hero-art {
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  padding: 16px 18px;
  box-shadow: var(--glow-cyan);
}
.trust-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.trust-score {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.trust-score strong {
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}
.trust-score span {
  font-size: 0.78rem;
  color: var(--ink-faint);
}
.trust-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(255, 204, 51, 0.55);
}
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  padding-top: 6px;
  border-top: 1px solid var(--border);
}
.trust-list li:first-child { padding-top: 0; border-top: none; }
.trust-check {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ---------- Sections ---------- */
.section {
  padding: 52px 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 32px;
}
.section-head .eyebrow { margin-bottom: 12px; }
.section-tag {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Brand cards ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.brand-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.brand-card:hover {
  box-shadow: var(--shadow-md), var(--glow-pink);
  border-color: var(--pink-border);
}

.brand-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffffff;
  flex-shrink: 0;
}

.logo-chip {
  height: 52px;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-chip img {
  height: 100%;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.logo-chip.small {
  height: 32px;
  padding: 4px 8px;
  border-radius: 6px;
}
.logo-chip.small img { max-width: 90px; }
.logo-chip.large {
  height: 80px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
}
.logo-chip.large img { max-width: 220px; }

.brand-name {
  font-size: 1.2rem;
  margin: 0;
}
.brand-tagline {
  font-size: 0.86rem;
  color: var(--ink-faint);
  margin: 2px 0 0;
}

.rating-pill {
  margin-left: auto;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
  box-shadow: var(--glow-gold);
  white-space: nowrap;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  border: 1px solid var(--border);
  color: var(--ink-soft);
}

.license-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.license-line a { color: var(--green); font-weight: 700; }
.license-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.brand-card-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}

.rank-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(34, 229, 255, 0.6), 0 0 28px rgba(34, 229, 255, 0.28);
  flex-shrink: 0;
  line-height: 1;
}

.brand-rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.brand-rating .stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(255, 204, 51, 0.55);
}
.brand-rating strong {
  font-size: 1.3rem;
  color: var(--ink);
}
.brand-rating span {
  font-size: 0.78rem;
  color: var(--ink-faint);
}

.card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.card-cta .btn { width: 100%; }
.cta-caption {
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.cta-caption a {
  color: var(--blue);
  font-weight: 600;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
}
.feature-card h3 { font-size: 1.03rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; margin: 0; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.step-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
.step-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255, 204, 51, 0.4);
  margin-bottom: 8px;
}

/* ---------- Comparison table ---------- */
.compare-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head {
  background: var(--surface-muted);
  color: var(--ink-faint);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--ink);
}
.mini-logo {
  width: 32px; height: 32px;
  border-radius: 7px;
  display: grid; place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
}

/* ---------- Testimonials / quotes ---------- */
.quote-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}
.quote-card p { font-style: italic; color: var(--ink); }
.quote-meta { font-size: 0.82rem; color: var(--ink-faint); }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: 40px;
  background: var(--navy);
  border: 1px solid var(--pink-border);
  box-shadow: var(--glow-pink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #ffffff; }
.cta-banner p { color: var(--ink-soft); }
.cta-banner .btn-teal { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.4); box-shadow: none; }
.cta-banner .btn-teal:hover { background: rgba(255,255,255,0.1); box-shadow: none; }

/* ---------- Generic content page ---------- */
.page-hero {
  padding: 48px 0 12px;
}
.page-hero h1 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.content-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 22px;
}
.content-panel h2 {
  font-size: 1.32rem;
  color: var(--ink);
}
.content-panel h3 {
  font-size: 1.08rem;
  color: var(--ink);
}
.content-panel ul, .content-panel ol {
  color: var(--ink-soft);
  line-height: 1.8;
  padding-left: 22px;
}
.content-panel li { margin-bottom: 6px; }

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  font-weight: 800;
  color: var(--ink);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 22px 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-answer p { margin: 0; font-size: 0.94rem; }

/* ---------- Pros / cons ---------- */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.pc-card {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.pc-card.pro { background: var(--green-soft); border-color: var(--green-border); }
.pc-card.con { background: var(--red-soft); border-color: var(--red-border); }
.pc-card h3 { font-size: 0.94rem; margin-bottom: 12px; color: var(--ink); }
.pc-card ul { margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: 0.92rem; }
.pc-card li { margin-bottom: 8px; }

/* ---------- Review detail header ---------- */
.review-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  padding: 36px 0 8px;
}
.review-hero .brand-logo { width: 80px; height: 80px; font-size: 1.7rem; }
.review-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 10px; }
.review-meta .rating-pill { margin-left: 0; }

/* ---------- Contact / form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface-muted);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-faint); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.success-note {
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.contact-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}
.contact-card strong { display: block; color: var(--blue); margin-bottom: 6px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.03em; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 64px;
  padding: 56px 0 26px;
  background: var(--bg-deep);
  color: var(--ink-soft);
  border-top: 1px solid var(--border);
  box-shadow: 0 -1px 0 rgba(34, 229, 255, 0.25);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 38px;
}
.footer-brand .brand-mark { color: #ffffff; }
.footer-brand p { font-size: 0.87rem; max-width: 320px; color: var(--ink-faint); }
.footer-col h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  margin-bottom: 14px;
  padding-bottom: 10px;
  position: relative;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  box-shadow: 0 0 8px rgba(255, 47, 176, 0.6);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.89rem; color: var(--ink-soft); transition: color 0.15s ease; }
.footer-col a:hover { color: #ffffff; }

.footer-panel {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 26px;
  margin-bottom: 26px;
}
.footer-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-panel-head h4 {
  margin: 0;
  font-size: 0.92rem;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
}

.org-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.org-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  border: 1px solid var(--border-strong);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.org-badge:hover { background: var(--surface-raised); border-color: var(--ink-faint); }
.org-mark {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: grid; place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
  background: var(--navy) !important;
  color: #ffffff !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { margin: 0; font-size: 0.78rem; color: var(--ink-faint); }
.footer-age {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-age p { color: var(--ink-faint); }
.footer-legal-note {
  font-size: 0.76rem;
  color: var(--ink-faint);
  max-width: 900px;
  margin-top: 18px;
}
.footer-legal-note a { color: var(--ink-soft); font-weight: 600; }
.footer-legal-note a:hover { color: #ffffff; }

/* ---------- Cookie consent modal ---------- */
.cookie-modal {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 480px;
  margin: 0 auto;
  z-index: 100;
  background: var(--surface-raised);
  border: 1px solid var(--pink-border);
  box-shadow: var(--shadow-md), var(--glow-pink);
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.2,.9,.25,1), opacity 0.35s ease;
}
.cookie-modal.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-modal-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  margin-bottom: 14px;
  font-size: 1rem;
}
.cookie-modal h3 { font-size: 1.02rem; margin-bottom: 8px; }
.cookie-modal p { font-size: 0.86rem; margin-bottom: 18px; }
.cookie-modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-modal-actions .btn { padding: 10px 18px; font-size: 0.85rem; }

/* ---------- Misc ---------- */
.divider-space { height: 10px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.stat-tile {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}
.stat-tile strong {
  display: block;
  font-size: 1.5rem;
  color: var(--ink);
}
.stat-tile span { font-size: 0.78rem; color: var(--ink-faint); }

.avatar-blob {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
}

.not-found {
  text-align: center;
  padding: 90px 0;
}
.not-found .brand-gem { width: 80px; height: 80px; font-size: 1.8rem; margin: 0 auto 24px; border-radius: var(--radius-md); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .compare-row { grid-template-columns: 1.2fr repeat(3, 1fr); font-size: 0.85rem; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: var(--surface-muted);
    border: 1px solid var(--border);
    color: var(--ink);
    font-size: 1.1rem;
    cursor: pointer;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: var(--surface-raised);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: var(--shadow-md);
  }
  .footer-top { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1fr; text-align: left; }
  .compare-row.head { display: none; }
}
