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

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red:    #E8192C;
  --blue:   #1A7FD4;
  --green:  #3DBE3D;
  --yellow: #FFD93F;
  --purple: #8B3FFF;
  --orange: #FF8C3F;
  --dark:   #0d1221;
  --dark2:  #111830;
  --dark3:  #16203a;
  --text:   #f0f2fc;
  --muted:  #b0bcd8;
  --border: #1e2848;
  --white:  #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  background: var(--dark);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,18,33,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* rainbow line under nav */
nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple));
  opacity: 0.7;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.nav-logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: linear-gradient(135deg, var(--red), #c00020);
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: opacity 0.2s, transform 0.2s !important;
  box-shadow: 0 0 18px rgba(232,25,44,0.4);
}

.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ===== HAMBURGER (MOBILE) ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== PAGE WRAPPER ===== */
.page-content {
  padding-top: 72px;
}

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 8%,  rgba(232,25,44,0.32)  0%, transparent 40%),
    radial-gradient(ellipse at 15% 85%, rgba(26,127,212,0.26)  0%, transparent 45%),
    radial-gradient(ellipse at 88% 75%, rgba(255,217,63,0.18)  0%, transparent 30%),
    radial-gradient(ellipse at 5%  15%, rgba(139,63,255,0.16)  0%, transparent 35%),
    radial-gradient(ellipse at 50% 50%, rgba(61,190,61,0.05)   0%, transparent 55%),
    var(--dark);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
  margin-bottom: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green), 0 0 4px var(--green);
}

.hero-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 32px;
  filter: drop-shadow(0 8px 40px rgba(232,25,44,0.35)) drop-shadow(0 2px 10px rgba(26,127,212,0.25));
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 62px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 800px;
}

.hero-title .red  { color: var(--red);  text-shadow: 0 0 32px rgba(232,25,44,0.6); }
.hero-title .blue { color: var(--blue); text-shadow: 0 0 32px rgba(26,127,212,0.6); }

.hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), #c20020);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 4px 22px rgba(232,25,44,0.45);
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,25,44,0.55); }

.btn-secondary {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  padding: 17px 40px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.22);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* Floating dots background */
.dots-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(2px);
}

/* ===== STAT BAR ===== */
.stat-bar {
  background: linear-gradient(180deg, #121830, #0e1428);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 28px 48px;
  display: flex;
  justify-content: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 48px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.stat-item:nth-child(1) .stat-num { color: var(--red);    text-shadow: 0 0 24px rgba(232,25,44,0.55); }
.stat-item:nth-child(2) .stat-num { color: var(--blue);   text-shadow: 0 0 24px rgba(26,127,212,0.55); }
.stat-item:nth-child(3) .stat-num { color: var(--green);  text-shadow: 0 0 24px rgba(61,190,61,0.55); }
.stat-item:nth-child(4) .stat-num { color: var(--yellow); text-shadow: 0 0 24px rgba(255,217,63,0.55); }

.stat-num .accent { color: inherit; }
.stat-lbl { font-size: 14px; color: var(--muted); font-weight: 500; letter-spacing: 0.5px; margin-top: 4px; }

/* ===== SECTIONS ===== */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 48px;
}

.section-sm { padding: 64px 48px; }

.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--yellow);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(255,217,63,0.4);
}

.section-tag-red {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(232,25,44,0.4);
}

.section-tag-blue {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(26,127,212,0.4);
}

.section-tag-green {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--green);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(61,190,61,0.4);
}

.section-tag-purple {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--purple);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(139,63,255,0.4);
}

.section-tag-orange {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--orange);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(255,140,63,0.4);
}

.section-tag-outline {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  border: 1.5px solid rgba(232,25,44,0.45);
  background: rgba(232,25,44,0.1);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 56px;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04) 20%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 80%, transparent);
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== CARDS ===== */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.card:has(.bar-red):hover    { border-color: rgba(232,25,44,0.5);  box-shadow: 0 6px 30px rgba(232,25,44,0.15),  inset 0 0 50px rgba(232,25,44,0.04);  transform: translateY(-3px); }
.card:has(.bar-blue):hover   { border-color: rgba(26,127,212,0.5); box-shadow: 0 6px 30px rgba(26,127,212,0.15), inset 0 0 50px rgba(26,127,212,0.04); transform: translateY(-3px); }
.card:has(.bar-green):hover  { border-color: rgba(61,190,61,0.5);  box-shadow: 0 6px 30px rgba(61,190,61,0.15),  inset 0 0 50px rgba(61,190,61,0.04);  transform: translateY(-3px); }
.card:has(.bar-yellow):hover { border-color: rgba(255,217,63,0.5); box-shadow: 0 6px 30px rgba(255,217,63,0.15), inset 0 0 50px rgba(255,217,63,0.04); transform: translateY(-3px); }
.card:has(.bar-purple):hover { border-color: rgba(139,63,255,0.5); box-shadow: 0 6px 30px rgba(139,63,255,0.15), inset 0 0 50px rgba(139,63,255,0.04); transform: translateY(-3px); }
.card:has(.bar-orange):hover { border-color: rgba(255,140,63,0.5); box-shadow: 0 6px 30px rgba(255,140,63,0.15), inset 0 0 50px rgba(255,140,63,0.04); transform: translateY(-3px); }

.card-top-bar {
  height: 5px;
  border-radius: 3px;
  margin-bottom: 24px;
}

.bar-red    { background: linear-gradient(90deg, var(--red),    #ff6070); box-shadow: 0 2px 10px rgba(232,25,44,0.5); }
.bar-blue   { background: linear-gradient(90deg, var(--blue),   #60b4ff); box-shadow: 0 2px 10px rgba(26,127,212,0.5); }
.bar-green  { background: linear-gradient(90deg, var(--green),  #80ff80); box-shadow: 0 2px 10px rgba(61,190,61,0.5); }
.bar-yellow { background: linear-gradient(90deg, var(--yellow), #ffe880); box-shadow: 0 2px 10px rgba(255,217,63,0.5); }
.bar-purple { background: linear-gradient(90deg, var(--purple), #bb80ff); box-shadow: 0 2px 10px rgba(139,63,255,0.5); }
.bar-orange { background: linear-gradient(90deg, var(--orange), #ffb380); box-shadow: 0 2px 10px rgba(255,140,63,0.5); }

.card-icon { font-size: 32px; margin-bottom: 14px; }
.card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.card-body { font-size: 15px; color: var(--muted); line-height: 1.8; }

/* ===== STEPS ===== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--red) 0%, var(--blue) 33%, var(--green) 66%, var(--yellow) 100%);
  opacity: 0.45;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

.step-badge {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  border: 3px solid var(--dark);
}

.badge-red    { background: var(--red);    box-shadow: 0 0 18px rgba(232,25,44,0.55); }
.badge-blue   { background: var(--blue);   box-shadow: 0 0 18px rgba(26,127,212,0.55); }
.badge-green  { background: var(--green);  box-shadow: 0 0 18px rgba(61,190,61,0.55); }
.badge-yellow { background: var(--yellow); box-shadow: 0 0 18px rgba(255,217,63,0.55); color: var(--dark) !important; }
.badge-purple { background: var(--purple); box-shadow: 0 0 18px rgba(139,63,255,0.55); }
.badge-orange { background: var(--orange); box-shadow: 0 0 18px rgba(255,140,63,0.55); }

.step-content { padding-top: 10px; }
.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-body { font-size: 16px; color: var(--muted); line-height: 1.8; }

/* ===== FORMS ===== */
.form-wrap {
  background: linear-gradient(145deg, #181f38, #141a30);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 44px 48px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 48px rgba(0,0,0,0.4);
}

.form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 15px 18px;
  font-size: 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,127,212,0.18);
}

.form-group select option {
  background: var(--dark2);
  color: var(--text);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--red) 0%, #c80020 60%, #a00020 100%);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 8px;
  box-shadow: 0 4px 22px rgba(232,25,44,0.4);
  letter-spacing: 0.5px;
}

.form-submit:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(232,25,44,0.5); }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

/* ===== COOLER CARDS ===== */
.cooler-card {
  background: var(--dark3);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.cooler-card:hover { transform: translateY(-4px); }

/* Starter: blue theme */
.cooler-card.starter-theme {
  border-color: rgba(26,127,212,0.35);
  background: linear-gradient(145deg, rgba(26,127,212,0.08), rgba(26,127,212,0.02), var(--dark3));
}
.cooler-card.starter-theme:hover {
  border-color: rgba(26,127,212,0.6);
  box-shadow: 0 8px 40px rgba(26,127,212,0.2);
}

/* Pro: red featured theme */
.cooler-card.featured {
  border-color: var(--red);
  background: linear-gradient(145deg, rgba(232,25,44,0.12), rgba(139,63,255,0.05), #111830);
  box-shadow: 0 4px 30px rgba(232,25,44,0.22);
}
.cooler-card.featured:hover {
  box-shadow: 0 10px 50px rgba(232,25,44,0.3);
}

/* Arena: purple theme */
.cooler-card.arena-theme {
  border-color: rgba(139,63,255,0.35);
  background: linear-gradient(145deg, rgba(139,63,255,0.09), rgba(139,63,255,0.02), var(--dark3));
}
.cooler-card.arena-theme:hover {
  border-color: rgba(139,63,255,0.6);
  box-shadow: 0 8px 40px rgba(139,63,255,0.2);
}

.cooler-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--red), #c00020);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(232,25,44,0.45);
}

.cooler-icon { font-size: 52px; margin-bottom: 16px; }
.cooler-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cooler-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.cooler-features {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.cooler-features li {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding: 9px 0 9px 26px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cooler-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  text-shadow: 0 0 8px var(--green);
}

.cooler-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 20px;
  font-style: italic;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #c80020 0%, #8B3FFF 52%, #1058b0 100%);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

.btn-white {
  background: var(--white);
  color: #200040;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.btn-white:hover { opacity: 0.92; transform: translateY(-2px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background:
    radial-gradient(ellipse at 20% 40%, rgba(232,25,44,0.2)   0%, transparent 45%),
    radial-gradient(ellipse at 85% 20%, rgba(26,127,212,0.18)  0%, transparent 40%),
    radial-gradient(ellipse at 60% 85%, rgba(139,63,255,0.14)  0%, transparent 38%),
    radial-gradient(ellipse at 50% 50%, rgba(255,217,63,0.05)  0%, transparent 60%),
    linear-gradient(145deg, #0c1028, #0a1028 50%, #0c1020);
  padding: 80px 48px 64px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.page-hero-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(232,25,44,0.12);
  border: 1.5px solid rgba(232,25,44,0.4);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 0 14px rgba(232,25,44,0.18);
}

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CALLOUT ===== */
.callout {
  background: linear-gradient(135deg, rgba(26,127,212,0.1), rgba(139,63,255,0.07));
  border: 1px solid rgba(26,127,212,0.32);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 32px 0;
}

.callout-icon { font-size: 28px; flex-shrink: 0; }
.callout-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.callout-body { font-size: 15px; color: var(--muted); line-height: 1.8; }

/* ===== FOOTER ===== */
footer {
  background: #0b0e1e;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple)) 1;
  padding: 56px 48px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img { height: 56px; width: 56px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; }
.footer-brand p { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 260px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 15px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.35); }
.footer-dots {
  display: flex;
  gap: 8px;
}
.footer-dots div {
  width: 12px; height: 12px;
  border-radius: 50%;
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  background: rgba(61,190,61,0.1);
  border: 1px solid rgba(61,190,61,0.38);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 16px;
  font-size: 14px;
  color: #50e050;
  text-align: center;
  font-weight: 600;
}

/* ===== MOBILE ===== */

/* ===== FLAVOR SHOWCASE ===== */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 44px 0;
}
.flavor-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
}
.flavor-circle {
  width: 100%;
  aspect-ratio: 1;
  min-height: 80px;
  border-radius: 50%;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.flavor-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 2px, transparent 2px);
  background-size: 14px 14px;
  border-radius: 50%;
}
.flavor-dot:hover .flavor-circle {
  transform: translateY(-8px) scale(1.05);
}
.flavor-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}
.flavor-banana     { background: linear-gradient(135deg,#FFD93F,#FF9A3C,#FF6EB4); box-shadow: 0 8px 32px rgba(255,217,63,0.3); }
.flavor-cotton     { background: linear-gradient(135deg,#FF6EB4,#C06EFF,#7EB8FF); box-shadow: 0 8px 32px rgba(192,110,255,0.3); }
.flavor-choco      { background: linear-gradient(135deg,#3d1a00,#7B3F00,#C47A2A); box-shadow: 0 8px 32px rgba(123,63,0,0.45); }
.flavor-rainbow    { background: linear-gradient(135deg,#FF3FA4,#FFD93F,#3DBE3D,#1A7FD4,#8B3FFF); box-shadow: 0 8px 32px rgba(255,63,164,0.25); }
.flavor-cookies    { background: linear-gradient(135deg,#1a1a1a,#4a4a4a,#d4d4d4); box-shadow: 0 8px 32px rgba(100,100,100,0.35); }
.flavor-strawberry { background: linear-gradient(135deg,#FF3355,#FF7096,#FFD6E0); box-shadow: 0 8px 32px rgba(255,51,85,0.3); }
.flavor-mint       { background: linear-gradient(135deg,#00A878,#3DBE3D,#C8F7C5); box-shadow: 0 8px 32px rgba(61,190,61,0.3); }
.flavor-cookie     { background: linear-gradient(135deg,#8B5E3C,#C4956A,#F5DEB3); box-shadow: 0 8px 32px rgba(139,94,60,0.35); }

/* ===== EVENTS & CATERING ===== */
.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}
.catering-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.catering-card:hover { transform: translateY(-4px); }
.catering-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.badge-popular { background: rgba(61,190,61,0.15); color: var(--green); border: 1px solid rgba(61,190,61,0.3); }
.badge-premium { background: rgba(139,63,255,0.15); color: var(--purple); border: 1px solid rgba(139,63,255,0.3); }
.catering-icon  { font-size: 42px; margin-bottom: 16px; }
.catering-title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.catering-body  { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.catering-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.catering-features li { font-size: 14px; color: var(--muted); padding-left: 20px; position: relative; line-height: 1.6; }
.catering-features li::before { content: '→'; position: absolute; left: 0; font-weight: 700; color: var(--red); }
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 68px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hamburger span { width: 28px; height: 3px; }

  .hero { padding: 64px 24px 56px; min-height: 88vh; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 17px; max-width: 100%; }
  .hero-logo { width: 130px; height: 130px; }
  .hero-eyebrow { font-size: 11px; text-align: center; }

  .btn-primary, .btn-secondary { font-size: 16px; padding: 16px 32px; width: 100%; text-align: center; }
  .btn-group { flex-direction: column; align-items: center; gap: 12px; }

  .stat-bar { padding: 20px 16px; flex-wrap: wrap; }
  .stat-item { padding: 14px 16px; flex: 0 0 50%; }
  .stat-item + .stat-item::before { display: none; }
  .stat-num { font-size: 28px; }
  .stat-lbl { font-size: 12px; }

  .section { padding: 56px 24px; }
  .section-sm { padding: 40px 24px; }
  .section-title { font-size: 30px; }
  .section-lead { font-size: 16px; margin-bottom: 36px; line-height: 1.75; }

  .card { padding: 24px 20px; }
  .card-title { font-size: 17px; }
  .card-body { font-size: 14px; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }

  .step-badge { width: 48px; height: 48px; font-size: 18px; }
  .step-title { font-size: 17px; }
  .step-body { font-size: 15px; }
  .steps::before { left: 23px; }

  .form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-title { font-size: 22px; }
  .form-submit { font-size: 17px; padding: 18px; }

  .page-hero { padding: 56px 24px 44px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 16px; }

  .cooler-name { font-size: 20px; }
  .cooler-icon { font-size: 44px; }

  .callout { flex-direction: column; gap: 12px; padding: 22px 20px; }
  .callout-body { font-size: 14px; }

  .cta-band { padding: 56px 24px; }
  .cta-band h2 { font-size: 28px; }
  .cta-band p { font-size: 16px; }
  .btn-white { font-size: 16px; padding: 16px 32px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-col h4 { font-size: 13px; }
  .footer-col ul li a { font-size: 15px; }
  .footer-brand p { font-size: 14px; }
  footer { padding: 48px 24px 28px; }

  .flavor-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .flavor-label { font-size: 13px; }
  .catering-grid { grid-template-columns: 1fr; }
  .catering-card { padding: 28px 22px; }
  .catering-title { font-size: 19px; }
  .catering-body { font-size: 14px; }

  /* Why grid mobile */
  .why-grid { grid-template-columns: 1fr; }

  /* Venue ticker wordmarks — keep readable but not huge */
  .venue-wm { font-size: 12px !important; letter-spacing: 0.5px !important; }
  .venue-item { padding: 0 18px; }
  .venue-ticker-wrap { padding: 14px 0 18px; }

  /* Who we work with cards in 2-col on tablet */
  .card-grid-2[style*="gap:16px"] { grid-template-columns: 1fr; }
}
/* ===== EXTRA SMALL (max 480px) ===== */
@media (max-width: 480px) {
  .hero { padding: 56px 18px 48px; }
  .hero-title { font-size: 28px; line-height: 1.15; }
  .hero-sub { font-size: 15px; }
  .hero-logo { width: 110px; height: 110px; }
  .hero-eyebrow { font-size: 10px; }

  .stat-item { flex: 0 0 100%; }
  .stat-num { font-size: 24px; }
  .stat-lbl { font-size: 11px; }
  .stat-bar { gap: 0; }

  .section { padding: 44px 18px; }
  .section-title { font-size: 24px; line-height: 1.2; }
  .section-lead { font-size: 15px; }

  .btn-primary, .btn-secondary, .btn-white { padding: 14px 24px; font-size: 15px; }

  .cta-band { padding: 48px 18px; }
  .cta-band h2 { font-size: 24px; }

  .venue-ticker-label { padding: 0 16px 12px; }
  .ticker-count { font-size: 10px; padding: 4px 10px; }
  .venue-wm { font-size: 11px !important; letter-spacing: 0 !important; }
  .venue-item { padding: 0 14px; }
  .venue-ticker-wrap::before, .venue-ticker-wrap::after { width: 40px; }

  .catering-card { padding: 20px 16px; }
  .flavor-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .flavor-label { font-size: 11px; }

  .step-body { font-size: 14px; }
  .step-title { font-size: 15px; }

  .callout { padding: 18px 16px; }
  .callout-title { font-size: 15px; }
  .callout .btn-primary { width: 100%; text-align: center; }

  footer { padding: 40px 18px 24px; }
  .footer-bottom p { font-size: 12px; }
}
/* =============================================
   ANIMATIONS & INTERACTIONS
   ============================================= */

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple));
  z-index: 9999; transition: width 0.1s linear; border-radius: 0 2px 2px 0;
}

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-pop { opacity: 0; transform: scale(0.6); transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.reveal-pop.visible { opacity: 1; transform: scale(1); }

/* Hero Floating Particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.hero-particle { position: absolute; border-radius: 50%; -webkit-animation: floatParticle linear infinite; animation: floatParticle linear infinite; }
@-webkit-keyframes floatParticle {
  0%   { -webkit-transform: translateY(0) scale(0); opacity: 0; }
  10%  { opacity: 0.85; -webkit-transform: translateY(-20px) scale(1); }
  90%  { opacity: 0.4; }
  100% { -webkit-transform: translateY(-300px) scale(0.5); opacity: 0; }
}
@keyframes floatParticle {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  10%  { opacity: 0.85; transform: translateY(-20px) scale(1); }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-300px) scale(0.5); opacity: 0; }
}

/* Cursor Trail (desktop only) */
.cursor-trail {
  position: fixed; width: 10px; height: 10px; border-radius: 50%;
  pointer-events: none; z-index: 99998; transform: translate(-50%, -50%);
  animation: trailFade 0.8s ease-out forwards;
}
@keyframes trailFade {
  0%   { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(0.1); }
}

/* Flavor Dot Click Burst */
.burst-dot {
  position: fixed; width: 9px; height: 9px; border-radius: 50%;
  pointer-events: none; z-index: 99999; transform: translate(-50%, -50%);
  animation: burstFly 0.75s ease-out forwards;
}
@keyframes burstFly {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0); }
}

/* Button Ripple */
.ripple-effect {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,0.3);
  transform: scale(0); pointer-events: none; animation: rippleAnim 0.65s linear forwards;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* Gradient Animated Hero Title */
.gradient-text {
  background: linear-gradient(90deg, #E8192C, #FF8C3F, #FFD93F, #3DBE3D, #1A7FD4, #8B3FFF, #E8192C);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200% auto;
  animation: gradientShift 5s linear infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Pulsing Active Pill Dot */
.dot-red { animation: pulseRed 2s ease infinite; }
@keyframes pulseRed {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,25,44,0.5); }
  50%       { box-shadow: 0 0 0 7px rgba(232,25,44,0); }
}

/* Stat Number Pop */
@keyframes statPop {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2); }
}
.stat-num.pop { animation: statPop 0.35s ease; }

/* Section Tag Hover */
[class*="section-tag"] { transition: transform 0.2s ease, letter-spacing 0.2s ease; cursor: default; }
[class*="section-tag"]:hover { transform: scale(1.06); letter-spacing: 3px; }

/* Logo Bounce Click */
@keyframes logoBounce {
  0%, 100% { transform: scale(1) rotate(0deg); }
  30%       { transform: scale(1.3) rotate(-8deg); }
  60%       { transform: scale(0.9) rotate(4deg); }
}
.logo-bounce { animation: logoBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.nav-logo img { cursor: pointer; }

/* Flavor Dot Enhanced Hovers */
.flavor-dot { cursor: pointer; }
.flavor-dot:hover .flavor-circle.flavor-banana    { box-shadow: 0 20px 60px rgba(255,217,63,0.65); }
.flavor-dot:hover .flavor-circle.flavor-cotton    { box-shadow: 0 20px 60px rgba(192,110,255,0.65); }
.flavor-dot:hover .flavor-circle.flavor-choco     { box-shadow: 0 20px 60px rgba(196,122,42,0.65); }
.flavor-dot:hover .flavor-circle.flavor-rainbow   { box-shadow: 0 20px 60px rgba(255,63,164,0.55); }
.flavor-dot:hover .flavor-circle.flavor-cookies   { box-shadow: 0 20px 60px rgba(200,200,200,0.55); }
.flavor-dot:hover .flavor-circle.flavor-strawberry{ box-shadow: 0 20px 60px rgba(255,51,85,0.65); }
.flavor-dot:hover .flavor-circle.flavor-mint      { box-shadow: 0 20px 60px rgba(61,190,61,0.65); }
.flavor-dot:hover .flavor-circle.flavor-cookie    { box-shadow: 0 20px 60px rgba(196,149,106,0.65); }

/* Card 3D Tilt (applied via JS) */
.card, .cooler-card, .catering-card {
  will-change: transform;
}
/* ===== VENUE TICKER ===== */
.venue-ticker-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 60px 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.ticker-count {
  background: rgba(232,25,44,0.1);
  border: 1px solid rgba(232,25,44,0.25);
  color: var(--red);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 1px;
}

.venue-ticker-wrap {
  position: relative;
  overflow: hidden;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.venue-ticker-wrap::before,
.venue-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.venue-ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--dark) 15%, transparent); }
.venue-ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--dark) 15%, transparent); }

.venue-row {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 8px 0;
}
.venue-row-1 { animation: tickerLeft  50s linear infinite; }
.venue-row-2 { animation: tickerRight 60s linear infinite; }

@keyframes tickerLeft  { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes tickerRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.venue-ticker-wrap:hover .venue-row { animation-play-state: paused; }

.venue-item {
  display: inline-flex;
  align-items: center;
  padding: 0 44px;
  white-space: nowrap;
  cursor: default;
  position: relative;
}
.venue-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.venue-wm {
  font-family: 'Space Grotesk', sans-serif;
  transition: filter 0.25s ease, transform 0.25s ease;
  display: block;
}
.venue-item:hover .venue-wm {
  filter: brightness(1.25) drop-shadow(0 0 8px currentColor);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .venue-ticker-label { padding: 0 20px 14px; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 40px; }
  .venue-ticker-wrap::before, .venue-ticker-wrap::after { width: 60px; }
  .venue-item { padding: 0 28px; }
  .venue-wm   { font-size: 13px !important; }
}

/* ===== TRUST TICKER STRIP ===== */
.trust-ticker {
  background: rgba(255,255,255,0.022);
  border-bottom: 1px solid rgba(255,255,255,0.055);
  overflow: hidden;
  padding: 11px 0;
  position: relative;
}
.trust-ticker::before, .trust-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.trust-ticker::before { left: 0; background: linear-gradient(90deg, var(--dark) 0%, transparent 100%); }
.trust-ticker::after  { right: 0; background: linear-gradient(-90deg, var(--dark) 0%, transparent 100%); }
.trust-ticker-inner {
  display: flex; white-space: nowrap; width: max-content;
  animation: trustFlow 32s linear infinite;
}
.trust-ticker-item {
  display: inline-flex; align-items: center; gap: 10px; padding: 0 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.trust-ticker-gem {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 8px var(--red); flex-shrink: 0;
}
@keyframes trustFlow {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO TRUST PILLS ===== */
.hero-trust-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 28px;
}
.hero-trust-pill {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.48);
}
.pill-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(61,190,61,0.12); border: 1.5px solid rgba(61,190,61,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--green); font-weight: 900; flex-shrink: 0;
}

/* ===== ZERO RISK BAND ===== */
.zero-risk-band { padding: 32px 60px 0; max-width: 1320px; margin: 0 auto; }
.zero-risk-inner {
  background: linear-gradient(135deg, rgba(232,25,44,0.07) 0%, rgba(26,127,212,0.05) 100%);
  border: 1px solid rgba(232,25,44,0.2);
  border-radius: 20px; padding: 32px 48px;
  display: grid; grid-template-columns: repeat(3,1fr);
  position: relative; overflow: hidden;
}
.zero-risk-inner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(232,25,44,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.zero-risk-item {
  text-align: center; padding: 10px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative; z-index: 1;
}
.zero-risk-item:last-child { border-right: none; }
.zero-risk-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 38px; font-weight: 900;
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.zero-risk-num .accent { color: var(--red); }
.zero-risk-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 48px;
}
.testimonial-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.038), rgba(255,255,255,0.014));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  border-color: rgba(232,25,44,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.32);
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 14px; left: 24px;
  font-size: 88px; line-height: 1; color: var(--red); opacity: 0.15;
  font-family: Georgia, serif; pointer-events: none;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars span { color: #FFD93F; font-size: 14px; text-shadow: 0 0 8px rgba(255,217,63,0.6); }
.testimonial-quote {
  font-size: 15px; color: rgba(255,255,255,0.72);
  line-height: 1.82; margin-bottom: 24px; font-style: italic; position: relative; z-index: 1;
}
.testimonial-author { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 18px; }
.testimonial-name {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px;
  font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.testimonial-role {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red);
}

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 44px auto 0; }
details.faq-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; margin-bottom: 10px; overflow: hidden;
  transition: border-color 0.25s;
}
details.faq-item[open] { border-color: rgba(232,25,44,0.32); }
details.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--white);
  cursor: pointer; list-style: none;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s; user-select: none; -webkit-user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { background: rgba(255,255,255,0.04); }
details.faq-item summary::after {
  content: '+'; font-size: 24px; font-weight: 300; color: var(--red);
  line-height: 1; transition: transform 0.25s; flex-shrink: 0; margin-left: 16px;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 20px 28px 24px; font-size: 15px; color: var(--muted);
  line-height: 1.85; border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== CARD POLISH ===== */
.card { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.14); }
.card-top-bar { height: 3px; border-radius: 0 0 3px 3px; margin: -1px -1px 20px; }
.bar-red    { background: linear-gradient(90deg, var(--red),    rgba(232,25,44,0)); }
.bar-blue   { background: linear-gradient(90deg, var(--blue),   rgba(26,127,212,0)); }
.bar-green  { background: linear-gradient(90deg, var(--green),  rgba(61,190,61,0)); }
.bar-yellow { background: linear-gradient(90deg, var(--yellow), rgba(255,217,63,0)); }
.bar-purple { background: linear-gradient(90deg, var(--purple), rgba(139,63,255,0)); }
.bar-orange { background: linear-gradient(90deg, var(--orange), rgba(255,140,63,0)); }

/* ===== MOBILE — NEW SECTIONS ===== */
@media (max-width: 768px) {
  .zero-risk-band { padding: 24px 24px 0; }
  .zero-risk-inner { grid-template-columns: 1fr; padding: 24px 28px; }
  .zero-risk-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 16px 0; }
  .zero-risk-item:last-child { border-bottom: none; }
  .zero-risk-num { font-size: 30px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero-trust-pills { gap: 14px; }
  details.faq-item summary { font-size: 15px; padding: 18px 20px; }
  .faq-answer { padding: 16px 20px 20px; }
}
@media (max-width: 480px) {
  .zero-risk-num { font-size: 26px; }
  .testimonial-card { padding: 24px 20px; }
}


/* ============================================================
   PREMIUM UPGRADE PASS
   ============================================================ */

/* === GRAIN TEXTURE === */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022; pointer-events: none; z-index: 99996;
}

/* === HERO GRID OVERLAY === */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.55) 0%, transparent 72%);
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.55) 0%, transparent 72%);
}

/* === HERO TITLE === */
.hero-title {
  font-size: clamp(48px, 7.5vw, 88px) !important;
  letter-spacing: -3px !important;
  line-height: 1.0 !important;
  margin-bottom: 24px !important;
}

/* === HERO LOGO SPINNING RING === */
.hero-logo-wrap {
  position: relative; display: inline-block;
  margin: 0 auto 36px; width: 188px; height: 188px;
}
.hero-logo-ring {
  position: absolute; inset: -4px; border-radius: 50%;
  background: conic-gradient(
    #E8192C 0deg, #FF8C3F 60deg, #FFD93F 120deg,
    #3DBE3D 180deg, #1A7FD4 240deg, #8B3FFF 300deg, #E8192C 360deg
  );
  animation: spinRing 7s linear infinite;
  z-index: 0;
}
.hero-logo-ring::after {
  content: ''; position: absolute; inset: 3px;
  border-radius: 50%; background: #0d1221;
}
.hero-logo {
  position: relative; z-index: 2;
  width: 180px !important; height: 180px !important;
  margin: 4px !important;
  filter: drop-shadow(0 4px 24px rgba(232,25,44,0.4)) !important;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* === HERO EYEBROW === */
.hero-eyebrow {
  background: linear-gradient(135deg, rgba(232,25,44,0.12), rgba(139,63,255,0.08)) !important;
  border: 1px solid rgba(232,25,44,0.35) !important;
  font-size: 13px !important; letter-spacing: 1.5px !important;
  color: rgba(255,255,255,0.9) !important; padding: 10px 22px !important;
  box-shadow: 0 0 24px rgba(232,25,44,0.15), inset 0 1px 0 rgba(255,255,255,0.08) !important;
}
.hero-eyebrow .dot { width: 9px; height: 9px; animation: pulseGreenDot 2s ease-in-out infinite; }
@keyframes pulseGreenDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61,190,61,0.7); }
  50%       { box-shadow: 0 0 0 6px rgba(61,190,61,0); }
}

/* === GLASS MORPHISM CARDS === */
.card {
  background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)) !important;
  backdrop-filter: blur(18px) !important; -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.07) !important;
}
.card:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)) !important;
  border-color: rgba(255,255,255,0.18) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.1) !important;
  transform: translateY(-7px) !important;
}

/* === GLOWING CARD ICONS === */
.card-icon {
  font-size: 34px; margin-bottom: 16px; display: inline-block;
  filter: drop-shadow(0 0 10px rgba(232,25,44,0.35));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.card:hover .card-icon { filter: drop-shadow(0 0 20px rgba(232,25,44,0.7)); transform: scale(1.14); }

/* === SECTION TAG REDESIGN === */
.section-tag {
  color: #FFD93F !important; background: rgba(255,217,63,0.1) !important;
  border: 1px solid rgba(255,217,63,0.28) !important;
  font-size: 10px !important; font-weight: 800 !important;
  letter-spacing: 3px !important; text-transform: uppercase;
  padding: 7px 16px !important; border-radius: 100px !important;
  display: inline-block; margin-bottom: 18px;
}
.section-tag-blue {
  color: #1A7FD4 !important; background: rgba(26,127,212,0.1) !important;
  border: 1px solid rgba(26,127,212,0.28) !important;
  font-size: 10px !important; font-weight: 800 !important;
  letter-spacing: 3px !important; text-transform: uppercase;
  padding: 7px 16px !important; border-radius: 100px !important;
  display: inline-block; margin-bottom: 18px;
}
.section-tag-green {
  color: #3DBE3D !important; background: rgba(61,190,61,0.1) !important;
  border: 1px solid rgba(61,190,61,0.28) !important;
  font-size: 10px !important; font-weight: 800 !important;
  letter-spacing: 3px !important; text-transform: uppercase;
  padding: 7px 16px !important; border-radius: 100px !important;
  display: inline-block; margin-bottom: 18px;
}
.section-tag-orange {
  color: #FF8C3F !important; background: rgba(255,140,63,0.1) !important;
  border: 1px solid rgba(255,140,63,0.28) !important;
  font-size: 10px !important; font-weight: 800 !important;
  letter-spacing: 3px !important; text-transform: uppercase;
  padding: 7px 16px !important; border-radius: 100px !important;
  display: inline-block; margin-bottom: 18px;
}

/* === SECTION TITLES === */
.section-title {
  font-size: clamp(32px, 4vw, 54px) !important;
  letter-spacing: -1.8px !important; line-height: 1.07 !important;
}

/* === STAT BAR === */
.stat-bar {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)) !important;
  backdrop-filter: blur(20px) !important; -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22) !important;
}
.stat-num { font-size: 42px !important; font-weight: 900 !important; letter-spacing: -2px !important; }

/* === HOW IT WORKS HORIZONTAL TIMELINE (desktop) === */
@media (min-width: 769px) {
  .steps-wrap { max-width: 1100px !important; }
  .steps {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important; position: relative;
  }
  .steps::before {
    content: '';
    position: absolute; top: 27px; left: 13%; right: 13%; height: 2px;
    background: linear-gradient(90deg, #E8192C, #1A7FD4, #3DBE3D, rgba(255,217,63,0.8));
    z-index: 0;
  }
  .step {
    flex-direction: column !important; align-items: center !important;
    text-align: center !important; gap: 0 !important;
    padding: 0 20px !important; border: none !important;
    position: relative; z-index: 1;
  }
  .step::after { display: none !important; }
  .step-badge {
    margin-bottom: 24px;
    box-shadow: 0 0 0 6px #0d1221, 0 0 20px rgba(232,25,44,0.35) !important;
  }
  .step-content { padding-top: 0 !important; }
  .step-title { font-size: 16px !important; }
  .step-body  { font-size: 14px !important; color: rgba(176,188,216,0.85) !important; }
}

/* === FLAVOR HOVER REVEALS === */
.flavor-dot { position: relative; cursor: pointer; }
.flavor-circle {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease !important;
}
.flavor-dot:hover .flavor-circle { transform: scale(1.16) translateY(-8px) !important; }
.flavor-reveal {
  position: absolute; bottom: calc(100% + 2px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(13,18,33,0.96); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 8px 14px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9);
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4); z-index: 10;
}
.flavor-reveal::after {
  content: ''; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); border: 5px solid transparent;
  border-top-color: rgba(255,255,255,0.12);
}
.flavor-dot:hover .flavor-reveal { opacity: 1; transform: translateX(-50%) translateY(0); }
.flavor-label { font-size: 13px !important; font-weight: 700 !important; transition: color 0.25s; }
.flavor-dot:hover .flavor-label { color: #E8192C; }

/* === CTA BAND DOTS PATTERN === */
.cta-band { position: relative; overflow: hidden; }
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }

/* === BUTTON GLOW === */
.btn-primary {
  box-shadow: 0 0 24px rgba(232,25,44,0.45), 0 4px 16px rgba(0,0,0,0.3) !important;
  will-change: transform;
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(232,25,44,0.65), 0 8px 24px rgba(0,0,0,0.4) !important;
  transform: translateY(-3px) !important;
}
.btn-secondary:hover { transform: translateY(-3px) !important; }

/* === DIVIDER === */
.divider {
  height: 1px !important; border: none !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 20%, rgba(232,25,44,0.14) 50%, rgba(255,255,255,0.06) 80%, transparent) !important;
  margin: 0 !important;
}

/* === WHO WE WORK WITH === */
.card-grid-2 .card {
  border-left: 3px solid transparent !important;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.25s !important;
}
.card-grid-2 .card:hover { border-left-color: #E8192C !important; }

/* === FOOTER === */
footer { position: relative; background: #06080f !important; }
footer::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(232,25,44,0.04) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}

/* === NAV LOGO TEXT === */
.nav-logo-text { font-size: 17px !important; letter-spacing: -0.5px; }

/* === TESTIMONIAL GLASS === */
.testimonial-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)) !important;
  backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15) !important;
}
.testimonial-card:hover {
  border-color: rgba(255,255,255,0.15) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3) !important;
  transform: translateY(-4px);
}

/* === MOBILE OVERRIDES === */
@media (max-width: 768px) {
  .hero-logo-wrap { width: 148px; height: 148px; }
  .hero-logo { width: 140px !important; height: 140px !important; margin: 4px !important; }
  .hero-title { letter-spacing: -1.5px !important; }
  .steps::before { display: none !important; }
  .step {
    flex-direction: row !important; align-items: flex-start !important;
    text-align: left !important; padding: 24px 0 !important;
  }
  .stat-num { font-size: 28px !important; }
  .flavor-reveal { display: none; }
}

/* ============================================================
   PROFESSIONAL POLISH PASS
   ============================================================ */

/* === PAGE LOAD FADE === */
@keyframes pageLoad {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-content { animation: pageLoad 0.55s cubic-bezier(0.22,1,0.36,1); }

/* === NAV LINK HOVER UNDERLINE === */
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--red);
  transition: right 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after { right: 0; }

/* === BUTTON SHIMMER === */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  animation: btnShimmer 3.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShimmer {
  0%, 25% { left: -120%; }
  55%, 100% { left: 160%; }
}

/* === TICKER EDGE MASKS === */
.venue-ticker-wrap {
  -webkit-mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}
.trust-ticker {
  -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}

/* === TESTIMONIAL QUOTE MARK === */
.testimonial-card { position: relative; overflow: hidden; }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: -8px; left: 18px;
  font-size: 100px; font-family: Georgia, serif;
  color: rgba(232,25,44,0.09);
  line-height: 1; pointer-events: none;
}

/* === TESTIMONIAL STARS === */
.testimonial-stars span { color: #FFD93F; font-size: 16px; letter-spacing: 2px; text-shadow: 0 0 8px rgba(255,217,63,0.5); }

/* === SCROLL TO TOP BUTTON === */
.scroll-top-btn {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #b80018);
  color: var(--white); border: none; cursor: pointer;
  font-size: 18px; font-weight: 800; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(232,25,44,0.5);
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  z-index: 9998;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(232,25,44,0.65); }

/* === SECTION TITLE GRADIENT ACCENTS === */
.section-title .red, .hero-title .red {
  background: linear-gradient(135deg, var(--red) 30%, #ff6b7a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-title .blue, .hero-title .blue {
  background: linear-gradient(135deg, var(--blue) 30%, #5db8ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* === HERO SUB === */
.hero-sub {
  font-size: 18px !important; max-width: 560px !important;
  color: rgba(255,255,255,0.7) !important; line-height: 1.72 !important;
}

/* === ZERO RISK BAND — BIGGER NUMBERS === */
.zero-risk-num {
  font-size: 54px !important; font-weight: 900 !important;
  letter-spacing: -3px !important; line-height: 1 !important;
}
.zero-risk-label { font-size: 14px !important; font-weight: 600 !important; letter-spacing: 0.5px; }
.zero-risk-item {
  gap: 10px !important; padding: 28px 48px !important;
}

/* === FAQ TOGGLE INDICATOR === */
details.faq-item > summary {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; list-style: none;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: '+';
  font-size: 22px; font-weight: 300; color: var(--muted);
  flex-shrink: 0; margin-left: 16px;
  transition: color 0.2s, transform 0.3s;
}
details.faq-item[open] > summary::after {
  content: '\2212'; color: var(--red); transform: rotate(0deg);
}
details.faq-item .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
details.faq-item[open] .faq-answer { max-height: 200px; }

/* === CALLOUT GLASS === */
.callout {
  background: linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)) !important;
  backdrop-filter: blur(14px) !important; -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.14) !important;
}

/* === ZERO RISK BAND GLASS === */
.zero-risk-band {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)) !important;
  backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

/* === HERO TRUST PILLS UPGRADE === */
.hero-trust-pill {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  backdrop-filter: blur(8px) !important;
  font-size: 13px !important; font-weight: 600 !important;
  padding: 8px 16px !important; border-radius: 100px !important;
}

/* === VENUE TICKER LABEL === */
.venue-ticker-label {
  font-size: 12px !important; font-weight: 700 !important;
  letter-spacing: 2px !important; text-transform: uppercase;
}

/* === PAGE HERO BAND === */
.page-hero {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(232,25,44,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(26,127,212,0.15) 0%, transparent 50%),
    var(--dark2);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.5) 0%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.5) 0%, transparent 75%);
}
.page-hero > * { position: relative; z-index: 1; }

/* === SECTION LEAD READABILITY === */
.section-lead {
  font-size: 17px !important; line-height: 1.78 !important;
  color: rgba(176,188,216,0.9) !important;
  max-width: 620px !important;
}

/* === FORM FIELD FOCUS GLOW === */
input:focus, select:focus, textarea:focus {
  outline: none !important;
  border-color: rgba(232,25,44,0.5) !important;
  box-shadow: 0 0 0 3px rgba(232,25,44,0.12) !important;
}

/* === MOBILE: SCROLL TOP === */
@media (max-width: 768px) {
  .scroll-top-btn { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 16px; }
  .zero-risk-num { font-size: 38px !important; }
  .zero-risk-item { padding: 20px 24px !important; }
}