/* ===================================================
   betssonar.com — Design System
   Betsson Argentina | ES-AR | 2026
   Mobile-first | Dark Mode | Glassmorphism
   =================================================== */

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

/* ── CSS Custom Properties ─────────────────────────── */
:root {
  /* Brand Colors */
  --clr-bg-deep:    #060d1f;
  --clr-bg-card:    #0e1b35;
  --clr-bg-surface: #132040;
  --clr-accent:     #00d4ff;
  --clr-accent-rgb: 0, 212, 255;
  --clr-gold:       #ffd700;
  --clr-gold-rgb:   255, 215, 0;
  --clr-green:      #00e676;
  --clr-red:        #ff4444;

  /* Text */
  --clr-text-primary:   #ffffff;
  --clr-text-secondary: #90a4c3;
  --clr-text-muted:     #4a6080;

  /* Glass */
  --glass-bg:     rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover:  rgba(255, 255, 255, 0.08);

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Typography */
  --font-body:   'Inter', system-ui, sans-serif;
  --font-heading:'Outfit', 'Inter', sans-serif;

  /* Border Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
  --radius-pill:999px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(var(--clr-accent-rgb), 0.15);
  --shadow-gold: 0 0 30px rgba(var(--clr-gold-rgb), 0.2);

  /* Transitions */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg-deep);
  color: var(--clr-text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Background gradient mesh */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 10%, rgba(0, 212, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold); }
ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--clr-text-primary);
}

h1 { font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--clr-text-secondary); max-width: 72ch; }
p.lead { font-size: 1.125rem; color: rgba(255,255,255,0.8); }

/* ── Layout ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-xl); }
}

section { position: relative; z-index: 1; }

/* ── Header ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 13, 31, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--space-md) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-text-primary);
  text-decoration: none;
}

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

.nav-desktop {
  display: none;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
    align-items: center;
  }
}

.nav-desktop a {
  color: var(--clr-text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-desktop a:hover { color: var(--clr-text-primary); }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold) 0%, #ff9500 100%);
  color: #060d1f;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
  color: #060d1f;
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--clr-text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass-hover);
  color: var(--clr-text-primary);
}

.btn-accent {
  background: linear-gradient(135deg, var(--clr-accent), #0088ff);
  color: #060d1f;
  box-shadow: var(--shadow-glow);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
  color: #060d1f;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-pill);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* Pulse animation on main CTA */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
  50%       { box-shadow: 0 0 50px rgba(255, 215, 0, 0.6); }
}

.btn-pulse { animation: pulse-gold 2s ease-in-out infinite; }

/* ── Hero Section ───────────────────────────────────── */
.hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
  color: var(--clr-green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-green);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero h1 {
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, #ffffff 0%, var(--clr-accent) 60%, var(--clr-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  margin: 0 auto var(--space-xl);
  max-width: 600px;
}

.hero-bonus-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,215,0,0.08), rgba(0,212,255,0.05));
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
}

.hero-bonus-box .bonus-amount {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--clr-gold);
  line-height: 1;
}

.hero-bonus-box .bonus-desc {
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
  margin-top: var(--space-xs);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .hero-cta-group { flex-direction: row; justify-content: center; }
}

.hero-trust-line {
  margin-top: var(--space-lg);
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-trust-line span { display: flex; align-items: center; gap: 4px; }

/* ── Section Headers ────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}

.section-header h2 { margin-bottom: var(--space-sm); }
.section-header p  { margin: 0 auto; }

/* ── Cards / Glassmorphism ──────────────────────────── */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  background: var(--glass-hover);
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

/* ── Grid Systems ───────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

@media (min-width: 600px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Slot Cards ─────────────────────────────────────── */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
}

.slot-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.slot-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.slot-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.slot-card-body {
  padding: var(--space-sm) var(--space-md);
}

.slot-card-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.slot-rtp {
  font-size: 0.75rem;
  color: var(--clr-green);
  font-weight: 600;
}

.slot-provider {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
}

/* ── Bonus Table ────────────────────────────────────── */
.bonus-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.bonus-table th {
  background: rgba(0, 212, 255, 0.08);
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
}

.bonus-table td {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--glass-border);
  color: var(--clr-text-secondary);
  vertical-align: middle;
}

.bonus-table tr:hover td {
  background: var(--glass-bg);
  color: var(--clr-text-primary);
}

.bonus-table .bonus-amount-cell {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--clr-gold);
  font-size: 1rem;
}

/* ── FAQ Accordion ──────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); }

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(0, 212, 255, 0.25); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  background: transparent;
  border: none;
  color: var(--clr-text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: var(--space-md);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--clr-accent); }

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(0,212,255,0.1);
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 var(--space-lg);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  line-height: 1.7;
}

/* ── Why Betsson ─────────────────────────────────────── */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.why-card h3 { font-size: 1rem; margin-bottom: var(--space-xs); }
.why-card p  { font-size: 0.875rem; margin: 0; }

/* ── Region Cards ───────────────────────────────────── */
.region-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--clr-text-primary);
  transition: all var(--transition);
}

.region-card:hover {
  background: var(--glass-hover);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateX(4px);
  color: var(--clr-text-primary);
}

.region-flag { font-size: 2rem; }

.region-info small { color: var(--clr-text-muted); font-size: 0.75rem; }

/* ── Trust Strip ────────────────────────────────────── */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0.65;
  transition: opacity var(--transition);
}

.trust-item:hover { opacity: 1; }

.trust-item .trust-label {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.trust-item .trust-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text-secondary);
}

/* ── Badge / Pill ───────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-green { background: rgba(0,230,118,0.12); color: var(--clr-green); }
.badge-gold  { background: rgba(255,215,0,0.12);  color: var(--clr-gold); }
.badge-blue  { background: rgba(0,212,255,0.12);  color: var(--clr-accent); }

/* ── Sections spacing ───────────────────────────────── */
.section-md { padding: var(--space-2xl) 0; }
.section-lg { padding: var(--space-3xl) 0; }
.section-sm { padding: var(--space-xl) 0; }

.divider {
  height: 1px;
  background: var(--glass-border);
  margin: 0;
}

/* ── Sticky Mobile CTA ──────────────────────────────── */
.mobile-cta-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(6, 13, 31, 0.96);
  backdrop-filter: blur(12px);
  padding: var(--space-md);
  border-top: 1px solid var(--glass-border);
  gap: var(--space-sm);
}

@media (max-width: 899px) {
  .mobile-cta-sticky { display: flex; }
}

.mobile-cta-sticky .btn { flex: 1; text-align: center; }

/* ── Breadcrumb ──────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  padding: var(--space-md) 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-accent); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--clr-text-secondary); }

/* ── Info Box ────────────────────────────────────────── */
.info-box {
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.info-box.gold {
  background: rgba(255, 215, 0, 0.06);
  border-color: rgba(255, 215, 0, 0.15);
}

.info-box.green {
  background: rgba(0, 230, 118, 0.06);
  border-color: rgba(0, 230, 118, 0.15);
}

/* ── HowTo Steps ─────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: var(--space-md); }

.step-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), #0088ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #060d1f;
  box-shadow: 0 0 12px rgba(0,212,255,0.3);
}

.step-content h4 { margin-bottom: var(--space-xs); font-size: 0.95rem; }
.step-content p  { font-size: 0.875rem; margin: 0; }

/* ── Stats Bar ───────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .stats-bar { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--clr-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Disclaimer / Footer ─────────────────────────────── */
.site-footer {
  background: rgba(6, 13, 31, 0.8);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  z-index: 1;
  margin-bottom: 80px; /* Space for sticky mobile CTA */
}

@media (min-width: 900px) {
  .site-footer { margin-bottom: 0; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand p {
  font-size: 0.875rem;
  margin-top: var(--space-md);
}

.footer-links h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
}

.footer-links ul { display: flex; flex-direction: column; gap: var(--space-sm); }

.footer-links a {
  font-size: 0.875rem;
  color: var(--clr-text-secondary);
}

.footer-links a:hover { color: var(--clr-accent); }

.footer-disclaimer {
  border-top: 1px solid var(--glass-border);
  padding-top: var(--space-xl);
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.footer-legal-badges {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.legal-badge {
  padding: 4px 12px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  font-weight: 600;
}

.legal-badge.age { color: var(--clr-red); border-color: rgba(255,68,68,0.3); }

/* ── Utility ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--clr-gold); }
.text-accent { color: var(--clr-accent); }
.text-green  { color: var(--clr-green); }
.text-muted  { color: var(--clr-text-muted); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-xl { margin-bottom: var(--space-xl); }
.w-full { width: 100%; }

/* ── Animations ──────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeInUp 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ── Page-specific: Hero variants ────────────────────── */
.page-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
}

.page-hero h1 { margin-bottom: var(--space-md); }
.page-hero .lead { margin-bottom: var(--space-xl); }

/* ── Scroll to top ───────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 80;
  font-size: 1.2rem;
  color: var(--clr-text-secondary);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--glass-hover);
  color: var(--clr-accent);
}

@media (min-width: 900px) {
  .scroll-top { bottom: var(--space-xl); }
}
