/* ================================================
   IgkGamers — Configuración Integral MuOnline
   Theme: Black / Red Neon — Gaming Premium
   ================================================ */

:root {
  --bg:          #000000;
  --bg-2:        #080808;
  --bg-3:        #0e0e0e;
  --bg-card:     #0d0d0d;
  --border:      rgba(255,255,255,0.06);
  --border-red:  rgba(200,0,0,0.5);
  --border-red2: rgba(255,30,30,0.25);

  --red:         #cc0000;
  --red-bright:  #ff2020;
  --red-deep:    #8b0000;
  --red-glow:    rgba(204,0,0,0.35);
  --red-glow2:   rgba(255,32,32,0.12);

  --white:       #ffffff;
  --gray-1:      #e5e5e5;
  --gray-2:      #a0a0a0;
  --gray-3:      #505050;
  --gray-4:      #282828;

  --font-title:  'Orbitron', monospace;
  --font-body:   'Inter', sans-serif;

  --radius:      8px;
  --radius-lg:   14px;
  --transition:  all 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

.container { max-width:1160px; margin:0 auto; padding:0 24px; }

/* ================================================
   CANVAS + SCANLINES
   ================================================ */
#particles-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.15) 2px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ================================================
   TYPOGRAPHY HELPERS
   ================================================ */
.red-text  { color: var(--red-bright); }
.gradient-text {
  background: linear-gradient(90deg, var(--red-bright), #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,0,0,0.1);
  border: 1px solid var(--border-red);
  color: var(--red-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red-bright);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--red-bright);
  animation: pulse-red 1.8s infinite;
}
@keyframes pulse-red {
  0%,100%{ opacity:1; transform:scale(1); }
  50%     { opacity:0.4; transform:scale(0.6); }
}

.section-header { text-align:center; margin-bottom:64px; }
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.section-subtitle {
  color: var(--gray-2);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 24px rgba(204,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  border: 1px solid rgba(255,50,50,0.3);
}
.btn-red:hover {
  background: var(--red-bright);
  box-shadow: 0 0 40px rgba(255,32,32,0.6), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--red-bright);
  border: 1.5px solid var(--red);
  box-shadow: inset 0 0 12px rgba(204,0,0,0.05);
}
.btn-outline:hover {
  background: rgba(204,0,0,0.1);
  border-color: var(--red-bright);
  box-shadow: 0 0 20px rgba(204,0,0,0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--gray-1);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 0.92rem; border-radius: 10px; }
.btn-sm { padding: 8px 18px; font-size: 0.78rem; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed; top:0; left:0; right:0;
  z-index: 200;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-red2);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 3px;
  letter-spacing: 0.05em;
}
.logo-igk  { color: var(--white); }
.logo-game { color: var(--red-bright); text-shadow: 0 0 12px var(--red); }
.logo-rs   { color: var(--gray-2); font-size:0.65rem; font-weight:400; letter-spacing:0.2em; margin-left:6px; text-transform:uppercase; font-family:var(--font-body); align-self:flex-end; margin-bottom:2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: var(--gray-2);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--red-bright); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-2);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 100px;
  overflow: hidden;
  z-index: 2;
}

/* Red corner accent lines */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 300px; height: 300px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  opacity: 0.4;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 200px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
  opacity: 0.25;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(180,0,0,0.08) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-line {
  width: 40px; height: 2px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}
.hero-eyebrow span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.hero-title .line-1 { display: block; color: var(--white); }
.hero-title .line-2 {
  display: block;
  color: var(--red-bright);
  text-shadow: 0 0 40px rgba(255,32,32,0.5);
}
.hero-title .line-3 {
  display: block;
  color: var(--gray-2);
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: 8px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.hero-divider {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  margin: 28px 0;
  border-radius: 2px;
}

.hero-subtitle {
  color: var(--gray-2);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Hero version badges */
.hero-versions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-versions-label {
  font-size: 0.72rem;
  color: var(--gray-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 4px;
}
.version-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--gray-2);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.version-badge:hover,
.version-badge.active {
  border-color: var(--border-red);
  color: var(--red-bright);
  background: rgba(204,0,0,0.08);
}

/* ================================================
   FLOATING STATS
   ================================================ */
.stats-bar {
  position: relative; z-index: 2;
  background: rgba(13,13,13,0.9);
  border-top: 1px solid var(--border-red2);
  border-bottom: 1px solid var(--border-red2);
  backdrop-filter: blur(12px);
  padding: 28px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.stat-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(204,0,0,0.1);
  border: 1px solid var(--border-red2);
  display: flex; align-items: center; justify-content: center;
  color: var(--red-bright);
  flex-shrink: 0;
}

.stat-text strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-text span {
  font-size: 0.72rem;
  color: var(--gray-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ================================================
   SERVICES
   ================================================ */
.services {
  position: relative; z-index: 2;
  padding: 110px 0;
}

/* angled red line separator top */
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-red2);
  border: 1px solid var(--border-red2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover { background: #111; }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.15em;
  opacity: 0.6;
}

.service-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(204,0,0,0.08);
  border: 1px solid var(--border-red2);
  display: flex; align-items: center; justify-content: center;
  color: var(--red-bright);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(204,0,0,0.15);
  border-color: var(--border-red);
  box-shadow: 0 0 20px rgba(204,0,0,0.2);
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--gray-2);
  line-height: 1.6;
}

/* ================================================
   VERSIONS SECTION
   ================================================ */
.versions-section {
  position: relative; z-index: 2;
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.versions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.version-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}

.version-card:hover {
  border-color: var(--border-red);
  background: rgba(204,0,0,0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(204,0,0,0.12);
}

.version-card .v-num {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--red-bright);
  display: block;
  margin-bottom: 4px;
}

.version-card .v-name {
  font-size: 0.7rem;
  color: var(--gray-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ================================================
   WHY / PITCH
   ================================================ */
.pitch {
  position: relative; z-index: 2;
  padding: 110px 0;
}

.pitch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pitch-content .section-title { text-align: left; }

.pitch-content > p {
  color: var(--gray-2);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 16px 0 36px;
}

.pitch-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pitch-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  transition: var(--transition);
}

.pitch-item:hover {
  border-color: var(--border-red);
  border-left-color: var(--red-bright);
  background: rgba(204,0,0,0.05);
}

.pitch-item-icon {
  color: var(--red-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

.pitch-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.pitch-item span {
  font-size: 0.8rem;
  color: var(--gray-2);
  line-height: 1.5;
}

/* Terminal */
.terminal {
  background: #050505;
  border: 1px solid var(--border-red2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(204,0,0,0.1), 0 20px 60px rgba(0,0,0,0.8);
  font-family: 'Courier New', monospace;
}

.terminal-bar {
  background: #0e0e0e;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.t-dot { width: 11px; height: 11px; border-radius: 50%; }
.t-dot.r { background: #cc2b2b; }
.t-dot.y { background: #ccaa00; }
.t-dot.g { background: #1a9c3e; }

.terminal-title {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--gray-3);
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  text-transform: uppercase;
}

.terminal-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 260px;
}

.tl {
  font-size: 0.8rem;
  line-height: 1.5;
  opacity: 0;
  animation: tl-show 0.2s forwards;
}
.tl:nth-child(1)  { animation-delay: 0.3s; }
.tl:nth-child(2)  { animation-delay: 0.7s; }
.tl:nth-child(3)  { animation-delay: 1.1s; }
.tl:nth-child(4)  { animation-delay: 1.5s; }
.tl:nth-child(5)  { animation-delay: 1.9s; }
.tl:nth-child(6)  { animation-delay: 2.3s; }
.tl:nth-child(7)  { animation-delay: 2.7s; }
.tl:nth-child(8)  { animation-delay: 3.1s; }
.tl:nth-child(9)  { animation-delay: 3.5s; }
.tl:nth-child(10) { animation-delay: 3.9s; }

@keyframes tl-show { to { opacity: 1; } }

.tp  { color: var(--red); }
.tc  { color: var(--gray-1); }
.to  { color: var(--gray-2); padding-left: 18px; }
.tok { color: #22c55e; padding-left: 18px; }
.tw  { color: #f59e0b; padding-left: 18px; }
.tcur { color: var(--red-bright); animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:0; } }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  position: relative; z-index: 2;
  padding: 0 0 100px;
}

.cta-inner {
  position: relative;
  background: linear-gradient(135deg, #0e0000 0%, #1a0000 50%, #0e0000 100%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  overflow: hidden;
  text-align: center;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(circle, rgba(204,0,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  opacity: 0.6;
}

.cta-inner h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-inner p {
  color: var(--gray-2);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   CONTACT
   ================================================ */
.contact {
  position: relative; z-index: 2;
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover { border-color: var(--border-red2); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(204,0,0,0.1); }
.contact-card:hover::after { transform: scaleX(1); }

.contact-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.ci-discord  { background:rgba(114,137,218,0.1); border:1px solid rgba(114,137,218,0.2); color:#7289da; }
.ci-whatsapp { background:rgba(37,211,102,0.08); border:1px solid rgba(37,211,102,0.18); color:#25d366; }
.ci-email    { background:rgba(204,0,0,0.1); border:1px solid var(--border-red2); color:var(--red-bright); }

.contact-card h4 {
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.contact-card p { font-size: 0.82rem; color: var(--gray-2); line-height: 1.6; flex:1; }
.contact-arrow { font-size: 1.1rem; color: var(--red-bright); transition: transform 0.2s; }
.contact-card:hover .contact-arrow { transform: translateX(5px); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  position: relative; z-index: 2;
  background: var(--bg);
  border-top: 1px solid var(--border-red2);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 60px 24px 48px;
}

.footer-brand .logo { display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.8rem; color: var(--gray-3); max-width: 240px; line-height: 1.6; }

.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 6px;
}
.footer-col a { font-size: 0.82rem; color: var(--gray-3); transition: color 0.2s; }
.footer-col a:hover { color: var(--red-bright); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 24px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span { font-size: 0.75rem; color: var(--gray-3); }
.footer-bottom .red-text { color: var(--red); font-weight: 600; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pitch-grid    { grid-template-columns: 1fr; gap: 48px; }
  .pitch-content .section-title { text-align: center; }
  .pitch-content > p { text-align: center; }
  .contact-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 60px; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1rem; }
  .hamburger { display: flex; }

  .services-grid    { grid-template-columns: 1fr; }
  .stats-inner      { flex-direction: column; gap: 8px; }
  .stat-item        { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
  .stat-item:last-child { border-bottom: none; }
  .footer-main      { flex-direction: column; padding: 40px 24px 32px; }
  .footer-links     { flex-direction: column; gap: 28px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .cta-inner        { padding: 40px 24px; }
  .hero-actions     { flex-direction: column; align-items: flex-start; }
  .contact-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .versions-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-actions   { flex-direction: column; align-items: center; }
}
