/* ============================================
   96M Esports — Design System
   96esports.com
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --blue: #0a2e5c;
  --blue-mid: #15447a;
  --blue-light: #edf2f9;
  --orange: #ff8c00;
  --orange-dark: #e67e00;
  --orange-light: #fff4e5;
  --white: #ffffff;
  --off-white: #f7f8fb;
  --esports-blue: #1a65e8;
  --esports-glow: rgba(26, 101, 232, 0.08);
  --neon-blue: #00d4ff;
  --neon-orange: #ff6b00;
  --cyber-gradient: linear-gradient(135deg, #0a2e5c 0%, #1a65e8 50%, #00d4ff 100%);
  --glow-blue: 0 0 20px rgba(0, 212, 255, 0.3);
  --glow-orange: 0 0 20px rgba(255, 140, 0, 0.3);
  --gray-100: #f1f3f7;
  --gray-200: #e2e6ed;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --text: #222831;
  --text-muted: #5a6577;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.10);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1160px;
  --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--orange);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
}

h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.85rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Esports dash accents on eyebrow text */
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section-alt {
  padding: 70px 0;
  background: var(--off-white);
  position: relative;
}

/* Subtle dot pattern for esports feel */
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26, 101, 232, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.section-blue {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: var(--white);
}

.section-blue h2,
.section-blue h3,
.section-blue p {
  color: var(--white);
}

.section-blue p {
  opacity: 0.9;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

/* Esports accent line under section headings */
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--esports-blue), var(--orange));
  border-radius: 2px;
  margin: 14px auto 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: none;
}

/* Esports gradient accent bar at top of header */
.header::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--esports-blue), var(--neon-blue), var(--orange), var(--neon-orange));
  background-size: 200% 100%;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--blue);
}

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

.logo-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--esports-blue);
  margin-left: 4px;
  padding: 3px 8px;
  border: 1px solid var(--esports-blue);
  border-radius: 4px;
  line-height: 1;
  background: rgba(26, 101, 232, 0.05);
  position: relative;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav > a,
.nav-dropdown > a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav > a::after,
.nav-dropdown > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav > a:hover::after,
.nav > a.active::after,
.nav-dropdown:hover > a::after {
  width: 100%;
}

.nav > a:hover,
.nav-dropdown:hover > a {
  color: var(--blue);
}

.nav > a.active {
  color: var(--blue);
  font-weight: 600;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a .dropdown-arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

.nav-dropdown:hover > a .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  margin-top: 12px;
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
  filter: drop-shadow(0 -1px 1px rgba(0,0,0,0.05));
}

/* Invisible bridge so hover doesn't break between link and dropdown */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 8px;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--blue-light);
  color: var(--esports-blue);
}

.dropdown-menu a .dropdown-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.dropdown-menu .dropdown-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 6px 0;
}

.dropdown-menu .dropdown-all {
  font-weight: 600;
  color: var(--esports-blue);
  border-top: 1px solid var(--gray-100);
  margin-top: 4px;
  padding-top: 12px;
}

/* Mobile dropdown */
.mobile-menu .mobile-dropdown-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu .mobile-dropdown-label .dropdown-arrow {
  font-size: 0.7rem;
  transition: transform var(--transition);
  color: var(--gray-400);
}

.mobile-menu .mobile-dropdown-label.active .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--orange);
}

.mobile-dropdown-items {
  display: none;
  padding-left: 16px;
  background: var(--off-white);
  border-radius: 8px;
  margin: 4px 0 8px;
}

.mobile-dropdown-items.active {
  display: block;
}

.mobile-dropdown-items a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-dropdown-items a:last-child {
  border-bottom: none;
}

.mobile-dropdown-items .dropdown-icon {
  font-size: 1rem;
}

.header-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a.active {
  color: var(--blue);
  font-weight: 600;
}

.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Esports shimmer effect on buttons */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 140, 0, 0.4), 0 0 40px rgba(255, 140, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--off-white);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.btn-blue {
  background: var(--esports-blue);
  color: var(--white);
  border-color: var(--esports-blue);
}

.btn-blue:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

/* --- Esports Decorative Elements --- */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes slide-in-left {
  from { transform: translateX(-40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes scan-line {
  0% { top: -10%; }
  100% { top: 110%; }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- Hero --- */
.hero {
  padding: 80px 0 70px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 40%, var(--orange-light) 100%);
  position: relative;
  overflow: hidden;
}

/* Floating geometric shapes */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(26, 101, 232, 0.1);
  border-radius: 20px;
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.06), rgba(26, 101, 232, 0.06));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: float 6s ease-in-out infinite 1s;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  max-width: 700px;
  position: relative;
  z-index: 1;
  color: var(--white);
}

/* Neon accent line under hero H1 */
.hero h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--neon-blue));
  border-radius: 2px;
  margin-top: 16px;
}

.hero .lead {
  max-width: 600px;
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.9);
}

.hero .btn-group {
  position: relative;
  z-index: 1;
}

.hero .hero-trust {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.75);
}

.hero .hero-trust span {
  color: rgba(255,255,255,0.75);
}

.hero .eyebrow {
  position: relative;
  z-index: 1;
  color: var(--neon-blue);
}

.hero .eyebrow::before {
  background: var(--neon-blue);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.page-hero {
  padding: 50px 0 40px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

/* Geometric accent on page hero */
.page-hero::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(26, 101, 232, 0.07);
  border-radius: 16px;
  transform: rotate(30deg);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 10%;
  width: 80px;
  height: 80px;
  background: rgba(255, 140, 0, 0.04);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.page-hero h1 {
  font-size: 2.1rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.page-hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--neon-blue));
  border-radius: 2px;
  margin-top: 14px;
}

.page-hero .lead {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  position: relative;
  z-index: 1;
}

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
}

.trust-item {
  text-align: center;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  flex: 1 1 140px;
  max-width: 220px;
}

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 101, 232, 0.15);
}

/* Subtle top border accent on trust items */
.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--esports-blue), var(--orange));
  border-radius: 0 0 2px 2px;
}

.trust-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: inline-block;
}

.trust-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 101, 232, 0.2);
}

/* Esports corner accent on cards */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-top: 3px solid var(--esports-blue);
  border-left: 3px solid var(--esports-blue);
  border-radius: 12px 0 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-bottom: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  border-radius: 0 0 12px 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover::before,
.card:hover::after {
  opacity: 1;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.card h3 {
  color: var(--blue);
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--esports-blue);
}

.card-link:hover {
  color: var(--orange);
}

/* Game Card */
.game-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--esports-blue), var(--orange));
  opacity: 0;
  transition: opacity var(--transition);
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(26, 101, 232, 0.08);
  border-color: rgba(26, 101, 232, 0.15);
}

.game-card:hover::before {
  opacity: 1;
}

/* Crosshair-style decorative element */
.game-card::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(26, 101, 232, 0.1);
  border-radius: 50%;
  opacity: 0;
  transition: all var(--transition);
}

.game-card:hover::after {
  opacity: 1;
  border-color: rgba(26, 101, 232, 0.25);
  box-shadow: inset 0 0 0 2px rgba(26, 101, 232, 0.08);
}

.game-card-thumb {
  height: 160px;
  margin: -36px -30px 20px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.game-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.15) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.game-card-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: inline-block;
  animation: float 5s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

.game-card:nth-child(1) .game-card-icon { --float-delay: 0s; }
.game-card:nth-child(2) .game-card-icon { --float-delay: 0.5s; }
.game-card:nth-child(3) .game-card-icon { --float-delay: 1s; }
.game-card:nth-child(4) .game-card-icon { --float-delay: 1.5s; }
.game-card:nth-child(5) .game-card-icon { --float-delay: 2s; }

.game-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.game-card p {
  font-size: 0.95rem;
  flex-grow: 1;
}

.game-card .btn {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
}

.game-card .tags + .btn {
  margin-top: 18px;
}

.game-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--blue-light);
  color: var(--esports-blue);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(26, 101, 232, 0.15);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Promo Card */
.promo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.promo-badge {
  display: inline-block;
  padding: 5px 14px;
  background: linear-gradient(90deg, var(--orange), var(--neon-orange));
  color: var(--white);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(255, 107, 0, 0.25);
}

/* Esports left accent on promo cards */
.promo-card::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--esports-blue), var(--orange));
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.promo-card:hover::before {
  opacity: 1;
}

.promo-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.promo-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.promo-terms {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 12px;
}

/* Featured Promo */
.promo-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.promo-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.promo-featured-content {
  position: relative;
  z-index: 1;
}

.promo-featured-content h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.promo-featured-content .promo-badge {
  margin-bottom: 16px;
}

.promo-featured-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
}

.promo-highlight {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 16px;
}

.promo-perks {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}

.promo-perks li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.promo-featured-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.promo-big-number {
  font-size: 6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 4px 30px rgba(255,140,0,0.3);
}

.promo-big-number span {
  font-size: 3rem;
  color: var(--orange);
}

.promo-big-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Promo Card V2 */
.promo-card-v2 {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.promo-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 101, 232, 0.15);
}

.promo-card-v2-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.promo-card-v2-icon {
  font-size: 2rem;
}

.promo-card-v2 h3 {
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 6px;
}

.promo-card-v2-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
}

.promo-card-v2 p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
}

.promo-card-v2 .promo-perks {
  margin: 16px 0 20px;
}

.promo-card-v2 .promo-perks li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 0;
}

.promo-card-v2 .btn {
  align-self: flex-start;
}

/* Promo Gallery */
.promo-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.promo-gallery-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.promo-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.promo-gallery-visual {
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-gallery-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.promo-gallery-big {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 15px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.promo-gallery-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}

.promo-gallery-body {
  padding: 24px;
}

.promo-gallery-body .promo-badge {
  margin-bottom: 10px;
}

.promo-gallery-body h3 {
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 8px;
}

.promo-gallery-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Promo Detail List */
.promo-detail-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.promo-detail {
  display: flex;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.promo-detail:hover {
  box-shadow: var(--shadow-md);
}

.promo-detail-left {
  flex-shrink: 0;
}

.promo-detail-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--esports-blue), var(--neon-blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(26, 101, 232, 0.25);
}

.promo-detail-content h3 {
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.promo-detail-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.promo-detail-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 20px;
  padding: 14px 18px;
  background: var(--blue-light);
  border-radius: 8px;
}

.promo-detail-terms span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.promo-detail-terms strong {
  color: var(--blue);
}

@media (min-width: 768px) {
  .promo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-gallery-big {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .promo-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .promo-gallery-big {
    font-size: 4rem;
  }
}

/* Terms Box */
.terms-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--orange);
}

.terms-box h3 {
  font-size: 1.05rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.terms-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .promo-featured {
    grid-template-columns: 3fr 2fr;
    padding: 56px 48px;
  }
  .promo-big-number {
    font-size: 8rem;
  }
}

@media (min-width: 1024px) {
  .promo-featured-content h2 {
    font-size: 2.4rem;
  }
  .promo-big-number {
    font-size: 10rem;
  }
}

/* Ambassador Card */
.ambassador-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.ambassador-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--esports-blue), var(--blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(26, 101, 232, 0.25);
  position: relative;
}

/* Pulsing ring around avatar */
.ambassador-avatar::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(26, 101, 232, 0.2);
  animation: pulse-glow 3s ease-in-out infinite;
}

.ambassador-card h3 {
  color: var(--blue);
  margin-bottom: 2px;
}

.ambassador-role {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 12px;
}

.ambassador-card p {
  font-size: 0.95rem;
}

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--esports-blue), var(--neon-blue));
  color: var(--white);
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 14px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(26, 101, 232, 0.25);
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  margin-bottom: 0;
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--esports-blue);
  box-shadow: 0 0 0 3px rgba(26, 101, 232, 0.1), 0 0 20px rgba(26, 101, 232, 0.05);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.contact-method {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.contact-method-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-method h3 {
  margin-bottom: 8px;
}

.contact-method p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 12px;
}

.faq-question:hover {
  color: var(--esports-blue);
}

.faq-icon {
  font-size: 1.3rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--gray-400);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 70px 0;
  background: linear-gradient(135deg, var(--blue) 0%, #102e5a 40%, var(--blue-mid) 100%);
  position: relative;
  overflow: hidden;
}

/* Esports grid pattern overlay */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Floating hexagon accent */
.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  border: 2px solid rgba(0, 212, 255, 0.12);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: rotate-slow 20s linear infinite;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* --- Footer --- */
.footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.8);
  padding: 50px 0 0;
  position: relative;
}

/* Gradient accent at top of footer */
.footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--esports-blue), var(--neon-blue), var(--orange));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Game Detail Page --- */
.game-hero {
  position: relative;
  padding: 60px 0 50px;
  overflow: hidden;
  color: var(--white);
}

.game-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.game-hero .container {
  position: relative;
  z-index: 2;
}

.game-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  z-index: 1;
}

.game-hero h1 {
  color: var(--white);
  font-size: 2.5rem;
}

.game-hero h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  margin-top: 16px;
}

.game-hero .lead {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
}

.game-hero .eyebrow {
  color: var(--neon-blue);
}

.game-hero .eyebrow::before {
  background: var(--neon-blue);
}

.game-hero .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.2rem;
}

.game-hero .tag {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  font-size: 0.82rem;
  padding: 5px 14px;
}

/* Game-specific accent colors */
.game-hero--dota2 h1::after { background: linear-gradient(90deg, #e94560, #ff6b6b); }
.game-hero--cs2 h1::after { background: linear-gradient(90deg, #f9a825, #ff8f00); }
.game-hero--lol h1::after { background: linear-gradient(90deg, #c89b3c, #f0e6d2); }
.game-hero--valorant h1::after { background: linear-gradient(90deg, #ff4655, #ff7882); }
.game-hero--mlbb h1::after { background: linear-gradient(90deg, #3498db, #2ecc71); }

/* Game info grid */
.game-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.game-info-main h2 {
  margin-top: 2.5rem;
}

.game-info-main h2:first-child {
  margin-top: 0;
}

.game-info-main h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--esports-blue), var(--orange));
  border-radius: 2px;
  margin-top: 12px;
}

.game-info-main p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.game-info-sidebar .card {
  margin-bottom: 24px;
  padding: 28px 24px;
}

.game-info-sidebar .card:last-child {
  margin-bottom: 0;
}

.game-info-sidebar .card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-light);
}

.game-info-sidebar .card ul {
  padding: 0;
}

.game-info-sidebar .card ul li {
  line-height: 1.6;
}

/* Tournament list */
.tournament-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.tournament-list li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 24px 24px 28px;
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--esports-blue);
  transition: all var(--transition);
}

.tournament-list li:hover {
  box-shadow: var(--shadow-sm);
  border-left-color: var(--orange);
  transform: translateY(-2px);
}

.tournament-list li strong {
  display: block;
  font-size: 1.05rem;
  color: var(--blue);
  margin-bottom: 6px;
}

.tournament-list li span {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Betting markets grid */
.market-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 1.5rem;
}

.market-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  position: relative;
  border-left: 4px solid var(--esports-blue);
}

.market-item:hover {
  background: var(--off-white);
  border-color: var(--gray-200);
  border-left-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.market-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--blue);
}

.market-item p {
  font-size: 0.92rem;
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Quick Facts list */
.quick-facts {
  list-style: none;
  padding: 0;
}

.quick-facts li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.quick-facts li:last-child {
  border-bottom: none;
}

.quick-facts li strong {
  color: var(--blue);
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 22px;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--esports-blue);
  font-weight: 700;
}

/* Game screenshot/image placeholders */
.game-screenshot {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 24px 0;
}

.game-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .game-hero h1 { font-size: 2.8rem; }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .tournament-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .game-hero { padding: 80px 0 70px; }
  .game-hero h1 { font-size: 3rem; }
  .game-info-grid { grid-template-columns: 5fr 2fr; gap: 50px; }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .tournament-list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger animation for grid items */
.grid-2 .reveal:nth-child(2) { transition-delay: 0.1s; }
.grid-3 .reveal:nth-child(2) { transition-delay: 0.1s; }
.grid-3 .reveal:nth-child(3) { transition-delay: 0.2s; }
.trust-bar .reveal:nth-child(2) { transition-delay: 0.08s; }
.trust-bar .reveal:nth-child(3) { transition-delay: 0.16s; }
.trust-bar .reveal:nth-child(4) { transition-delay: 0.24s; }
.trust-bar .reveal:nth-child(5) { transition-delay: 0.32s; }

/* Hero parallax support */
.hero::before {
  transform: rotate(45deg) translateY(var(--parallax, 0));
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* --- Responsive --- */
@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.1rem; }

  .hero h1 { font-size: 3rem; }
  .page-hero h1 { font-size: 2.5rem; }

  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }

  .contact-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .container { padding: 0 40px; }

  .nav { display: flex; }
  .header-cta { display: block; }
  .hamburger { display: none; }

  .hero { padding: 100px 0 90px; }
  .hero h1 { font-size: 3.2rem; }

  .section { padding: 90px 0; }
  .section-alt { padding: 90px 0; }
  .section-blue { padding: 90px 0; }
  .cta-section { padding: 90px 0; }

  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 36px; }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
