/* ============================================
   PECADO GOLD - THE LINE v2
   FiveM Server Website - Gold Edition
   ============================================ */

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

:root {
  /* Core Colors - Gold Theme */
  --bg-black: #0a0a0a;
  --bg-dark: #0f0f0f;
  --bg-card: rgba(20, 20, 20, 0.8);
  
  /* Gold Palette */
  --gold-primary: #C5A059;
  --gold-bright: #D4AF37;
  --gold-dark: #8B7355;
  --gold-glow: rgba(197, 160, 89, 0.3);
  
  /* Text Colors */
  --text-white: #FFFFFF;
  --text-light: #E0E0E0;
  --text-muted: #A0A0A0;
  --text-dark: #666666;
  
  /* Accents */
  --red-glow: rgba(197, 160, 89, 0.2);
  --border-gold: rgba(197, 160, 89, 0.3);
  
  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-base: 0.4s ease;
}

/* ──────────────────────────────────────────
   RESET & BASE
   ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg-black);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ──────────────────────────────────────────
   HEADER / NAVIGATION
   ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding: 1rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .site-header {
    padding: 1rem 2rem;
  }
}

.site-header--scrolled {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-img {
    width: 40px;
    height: 40px;
  }
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .logo-text {
    font-size: 1.25rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary);
}

.btn-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn-nav {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

/* ──────────────────────────────────────────
   MOBILE MENU
   ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 3rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 300;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--gold-primary);
}

/* ──────────────────────────────────────────
   NAV TOGGLE (Hamburger)
   ────────────────────────────────────────── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  min-width: 44px;
  min-height: 44px;
  margin-left: 0.5rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

/* ──────────────────────────────────────────
   FLASH BANNER (Top Bar)
   ────────────────────────────────────────── */
.flash-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(139, 115, 85, 0.9), rgba(197, 160, 89, 0.9));
  color: var(--text-white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 1001;
  display: none;
}

.flash-banner.active {
  display: block;
}

/* ──────────────────────────────────────────
   HERO SECTION
   ────────────────────────────────────────── */
.section-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  background: 
    linear-gradient(to bottom, rgba(10,10,10,0.3), var(--bg-black)),
    url('/background.png') center/cover no-repeat;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-hero {
    padding: 8rem 2rem 4rem;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-title span {
  color: var(--gold-primary);
  display: block;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: var(--gold-primary);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
  color: var(--bg-black);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--gold-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-white);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold-primary);
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hero-status {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    margin-bottom: 0;
  }
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #44ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 10;
}

.scroll-indicator::after {
  content: '';
  width: 20px;
  height: 32px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

@media (min-width: 768px) {
  .scroll-indicator {
    bottom: 2rem;
  }
  
  .scroll-indicator::after {
    width: 24px;
    height: 40px;
  }
}

/* ──────────────────────────────────────────
   STATS BAR
   ────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(to bottom, var(--bg-black), var(--bg-dark));
  padding: 4rem 2rem;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-gold);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-number span {
  font-size: 1.5rem;
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-sublabel {
  font-size: 0.75rem;
  color: var(--text-dark);
  margin-top: 0.25rem;
}

/* ──────────────────────────────────────────
   SECTION HEADERS
   ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--gold-primary);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────
   FEATURES SECTION
   ────────────────────────────────────────── */
.features-section {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ──────────────────────────────────────────
   LIFESTYLES SECTION
   ────────────────────────────────────────── */
.lifestyles-section {
  padding: 6rem 2rem;
  background: var(--bg-black);
}

.lifestyle-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.lifestyle-card:last-child {
  margin-bottom: 0;
}

.lifestyle-image {
  position: relative;
  min-height: 300px;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.3), rgba(197, 160, 89, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.lifestyle-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.7);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-white);
  z-index: 2;
}

.lifestyle-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lifestyle-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.lifestyle-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.lifestyle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: rgba(255,255,255,0.05);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
}

.lifestyle-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.lifestyle-link:hover {
  gap: 1rem;
}

/* ──────────────────────────────────────────
   FACTIONS SECTION
   ────────────────────────────────────────── */
.factions-section {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.factions-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.faction-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.faction-card:hover {
  border-color: var(--border-gold);
  background: rgba(197, 160, 89, 0.05);
}

.faction-icon {
  width: 56px;
  height: 56px;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.faction-info {
  flex: 1;
}

.faction-meta {
  font-size: 0.7rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.faction-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.faction-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.faction-slots {
  background: rgba(255,255,255,0.05);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ──────────────────────────────────────────
   TESTIMONIALS SECTION
   ────────────────────────────────────────── */
.testimonials-section {
  padding: 6rem 2rem;
  background: var(--bg-black);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-white);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ──────────────────────────────────────────
   STEPS / HOW TO JOIN
   ────────────────────────────────────────── */
.steps-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, var(--bg-dark), var(--bg-black));
}

.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.step-card {
  background: #141414;
  position: relative;
  display: flex;
  flex-direction: column;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  min-height: 280px;
}

.step-card::before {
  content: '';
  position: absolute;
  width: 100px;
  background-image: linear-gradient(180deg, var(--gold-primary), var(--gold-bright), var(--gold-primary));
  height: 140%;
  animation: rotBGimg 4s linear infinite;
  transition: all 0.2s linear;
  z-index: 0;
}

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

.step-card::after {
  content: '';
  position: absolute;
  background: #141414;
  inset: 4px;
  border-radius: 16px;
  z-index: 1;
}

.step-number {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
  color: var(--bg-black);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 2;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(197, 160, 89, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
  z-index: 2;
  position: relative;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  z-index: 2;
  position: relative;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  z-index: 2;
  position: relative;
}

/* ──────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────── */
.site-footer {
  background: var(--bg-black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 2rem 2rem;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

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

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: var(--text-dark);
  font-size: 0.8rem;
}

/* ──────────────────────────────────────────
   MODALS
   ────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
}

/* ──────────────────────────────────────────
   UTILITIES
   ────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ──────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────── */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lifestyle-card {
    grid-template-columns: 1fr 1fr;
  }
  
  .lifestyle-card:nth-child(even) .lifestyle-image {
    order: 2;
  }
  
  .factions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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