/* ============================================
   TitanShield.pro — Main Stylesheet
   ============================================ */

/* ── CSS Variables ── */
:root {
  --bg-deep:      #030712;
  --bg-card:      #0d1117;
  --bg-panel:     #111827;
  --accent-cyan:  #00f5ff;
  --accent-green: #00ff88;
  --accent-orange:#ff6b00;
  --accent-purple:#a855f7;
  --text-primary: #f0f6ff;
  --text-secondary:#94a3b8;
  --text-dim:     #475569;
  --border:       rgba(0,245,255,0.12);
  --glow-cyan:    0 0 20px rgba(0,245,255,0.4);
  --glow-green:   0 0 20px rgba(0,255,136,0.4);
  --glow-orange:  0 0 20px rgba(255,107,0,0.4);
  --radius:       8px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --font-discord: 'Syne', system-ui, sans-serif;
}

/* Icons: Iconify web component <iconify-icon icon="mdi:..."> (Material Design Icons, same set as react-icons/md). */
.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.2em;
  flex-shrink: 0;
}

.icon-lg { width: 1.75em; height: 1.75em; }

.icon svg,
svg.icon {
  width: 100%;
  height: 100%;
  display: block;
}

.btn .icon { width: 1.15em; height: 1.15em; }

.nav-logo-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-logo-pro {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.5px;
  margin-left: 2px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

.game-tile {
  text-align: center;
  padding: 28px;
  text-decoration: none;
  color: inherit;
}

.game-tile__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.2);
  color: var(--accent-cyan);
}

.game-tile__icon svg {
  width: 28px;
  height: 28px;
}

.game-tile:hover .game-tile__icon {
  border-color: rgba(0,245,255,0.45);
  box-shadow: 0 0 24px rgba(0,245,255,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Grid Background ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Noise Texture Overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--accent-cyan); border-radius: 3px; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3,7,18,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  height: 60px;
  background: rgba(3,7,18,0.97);
}

iconify-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  color: inherit;
}

iconify-icon.text-cyan { color: var(--accent-cyan); }
iconify-icon.text-green { color: var(--accent-green); }
iconify-icon.text-orange { color: var(--accent-orange); }

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

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(0,245,255,0.15);
}

.navbar.scrolled .nav-logo-img {
  height: 36px;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--glow-cyan);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.nav-logo-wordmark {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  font-weight: 600;
}

@media (max-width: 480px) {
  .nav-logo-wordmark { display: none; }
}

.nav-logo-text .logo-accent { color: var(--accent-cyan); }

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-cyan);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--accent-cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--accent-cyan) !important;
  color: var(--bg-deep) !important;
  box-shadow: var(--glow-cyan);
}

.nav-cta::after { display: none !important; }

.nav-cta__billing {
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-cyan);
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 40px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  z-index: 1;
  background: url('images/waves.svg') repeat-x center bottom;
  background-size: 600px auto;
  opacity: 0.85;
  pointer-events: none;
}

.hero-panel-img {
  width: 100%;
  /*max-width: 340px;*/
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse-orb 6s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,245,255,0.15) 0%, transparent 70%);
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
  animation-delay: 2s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,255,136,0.1) 0%, transparent 70%);
  top: 40%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes pulse-orb {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.3);
  border-radius: 40px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease 0.2s both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: blink 1.5s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease 0.4s both;
  text-wrap: balance;
  color: #ffffff;
}

.hero-title .line-1 { display: block; color: #ffffff; }
.hero-title .line-2 {
  display: block;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  background-clip: border-box;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.75;
  animation: fadeInDown 0.6s ease 0.6s both;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInDown 0.6s ease 0.8s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  animation: fadeInDown 0.6s ease 1s both;
}

.stat-item { text-align: left; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-cyan);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  animation: fadeInRight 0.8s ease 0.6s both;
  display: block;
  margin: 0;
  max-width: min(50vw, 480px);
}

picture.hero-visual {
  line-height: 0;
}

.hero-visual__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(78vh, 540px);
  object-fit: contain;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.5));
}

/* Desktop only: larger hero art, tucked to the right edge */
@media (min-width: 1025px) {
  .hero-visual {
    right: clamp(0px, 0.5vw, 16px);
    max-width: min(64vw, 920px);
  }

  .hero-visual__img {
    max-height: min(92vh, 900px);
    filter: drop-shadow(0 36px 72px rgba(0, 0, 0, 0.55));
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-cyan);
  color: var(--bg-deep);
  box-shadow: 0 0 30px rgba(0,245,255,0.3);
}

.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 50px rgba(0,245,255,0.6);
  transform: translateY(-2px);
}

.btn-primary--glow {
  box-shadow:
    0 0 0 1px rgba(0, 245, 255, 0.35),
    0 0 40px rgba(0, 245, 255, 0.35),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--accent-green);
  color: var(--bg-deep);
  box-shadow: 0 0 30px rgba(0,255,136,0.3);
}

.btn-green:hover {
  box-shadow: 0 0 50px rgba(0,255,136,0.6);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--accent-orange);
  color: white;
  box-shadow: 0 0 30px rgba(255,107,0,0.3);
}

.btn-orange:hover {
  box-shadow: 0 0 50px rgba(255,107,0,0.6);
  transform: translateY(-2px);
}

/* ============================================
   SECTION COMMONS
   ============================================ */
section { position: relative; z-index: 1; }

.section-pad { padding: 100px 40px; }
.section-pad-sm { padding: 60px 40px; }

.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--accent-cyan);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
   SERVICES GRID (Homepage)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.games-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 560px) {
  .games-grid-4 { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

.service-card.game::before   { background: radial-gradient(circle at 0% 0%, rgba(0,245,255,0.06) 0%, transparent 60%); }
.service-card.vps::before    { background: radial-gradient(circle at 0% 0%, rgba(0,255,136,0.06) 0%, transparent 60%); }
.service-card.web::before    { background: radial-gradient(circle at 0% 0%, rgba(255,107,0,0.06) 0%, transparent 60%); }

.service-card:hover { transform: translateY(-6px); }
.service-card:hover::before { opacity: 1; }

.service-card.game:hover { border-color: rgba(0,245,255,0.4); box-shadow: 0 20px 60px rgba(0,245,255,0.1); }
.service-card.vps:hover  { border-color: rgba(0,255,136,0.4); box-shadow: 0 20px 60px rgba(0,255,136,0.1); }
.service-card.web:hover  { border-color: rgba(255,107,0,0.4); box-shadow: 0 20px 60px rgba(255,107,0,0.1); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card-icon iconify-icon {
  width: 28px;
  height: 28px;
}

.game-tile__icon iconify-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.game-tile__icon--thumb {
  padding: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.game-tile__icon--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-tile:hover .game-tile__icon--thumb {
  border-color: rgba(0, 245, 255, 0.5);
}

.game-tile__tagline {
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.game-tile__price {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.03em;
}

.game-tile--soon {
  pointer-events: none;
  opacity: 0.78;
  cursor: default;
}

.game-tile--soon .game-tile__price {
  color: var(--accent-orange);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-soon {
  margin-left: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  vertical-align: middle;
}

.game .card-icon  { background: rgba(0,245,255,0.1);  color: var(--accent-cyan); }
.vps .card-icon   { background: rgba(0,255,136,0.1);  color: var(--accent-green); }
.web .card-icon   { background: rgba(255,107,0,0.1);  color: var(--accent-orange); }

.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
  color: #ffffff;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.card-features {
  list-style: none;
  margin-bottom: 28px;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 4px 0;
}

.card-features li::before {
  content: '▸';
  font-size: 0.7rem;
}

.game .card-features li::before  { color: var(--accent-cyan); }
.vps .card-features li::before   { color: var(--accent-green); }
.web .card-features li::before   { color: var(--accent-orange); }

.card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price-from {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.game .price-amount  { color: var(--accent-cyan); }
.vps .price-amount   { color: var(--accent-green); }
.web .price-amount   { color: var(--accent-orange); }

.price-period { font-size: 0.85rem; color: var(--text-dim); }

.card-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.service-card:hover .card-arrow { transform: translate(4px, -4px); }

/* ============================================
   FEATURES / WHY US
   ============================================ */
.features-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.feature-item { text-align: center; }

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  color: var(--accent-cyan);
}

.feature-icon iconify-icon {
  color: var(--accent-cyan);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.features-section__intro {
  text-align: center;
  margin-bottom: 0;
}

.features-section__intro .section-label {
  justify-content: center;
}

.features-section__intro .section-subtitle {
  margin: 14px auto 0;
  max-width: 640px;
}

/* Same shell as kurac .cta-banner (gradient + hex ::before), sized for media */
.cta-banner.cta-banner--media {
  padding: 0;
  text-align: left;
}

.cta-banner--media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

/* Homepage “Why” — two columns: copy + list | banner (reference layout) */
.why-split {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-split__grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background-color: #050810;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

.why-split__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.why-split__copy {
  max-width: 540px;
}

.why-split__title {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  letter-spacing: -0.02em;
}

.why-split__lead {
  margin-bottom: 0;
}

.why-split__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.why-split__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.why-split__list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-split__list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.why-split__list li iconify-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-cyan);
}

.why-split__figure {
  margin: 0;
}

.why-split__banner {
  filter:
    drop-shadow(0 24px 56px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 36px rgba(0, 245, 255, 0.1));
}

@media (min-width: 1025px) {
  .why-split__figure .cta-banner--media {
    position: sticky;
    top: 96px;
  }
}

@media (max-width: 1024px) {
  .why-split__wrap {
    grid-template-columns: 1fr;
  }

  .why-split__copy {
    max-width: none;
    text-align: center;
  }

  .why-split__copy .section-label {
    justify-content: center;
  }

  .why-split__title,
  .why-split__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .why-split__list {
    text-align: left;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-split__figure {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Legacy uptime bar (if present elsewhere) */
.uptime-bar {
  background: rgba(0, 255, 136, 0.05);
  border-top: 1px solid rgba(0, 255, 136, 0.15);
  border-bottom: 1px solid rgba(0, 255, 136, 0.15);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  overflow: hidden;
}

.uptime-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.uptime-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: blink 1.5s ease-in-out infinite;
}

.uptime-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.uptime-value {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-green);
  font-weight: 700;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 60px;
}

.pricing-tab {
  padding: 10px 28px;
  border-radius: 7px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-dim);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-tab .icon {
  width: 1.1em;
  height: 1.1em;
}

.pricing-tab.active {
  background: var(--accent-cyan);
  color: var(--bg-deep);
  box-shadow: var(--glow-cyan);
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card.featured {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 40px rgba(0,245,255,0.12);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-cyan);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.plan-badge .icon {
  width: 12px;
  height: 12px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plan-slots-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px 14px 10px 12px;
  border-radius: 12px;
  background: rgba(0, 245, 255, 0.06);
  border: 1px solid rgba(0, 245, 255, 0.22);
  box-shadow: 0 0 24px rgba(0, 245, 255, 0.06);
}

.plan-slots-pill .plan-slots-pill__icon {
  display: flex;
  color: var(--accent-cyan);
  opacity: 0.9;
}

.plan-slots-pill__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.1;
}

.plan-slots-pill__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.02em;
}

.plan-slots-pill__unit {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.plan-card.featured .plan-slots-pill {
  border-color: rgba(0, 245, 255, 0.35);
  background: rgba(0, 245, 255, 0.09);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.plan-lead {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 20px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.plan-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-avatar svg {
  width: 22px;
  height: 22px;
  color: var(--accent-cyan);
}

.author-avatar iconify-icon {
  display: block;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
}

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

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,245,255,0.06) 0%, rgba(168,85,247,0.06) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 100,5 L 195,52 L 195,148 L 100,195 L 5,148 L 5,52 Z' fill='none' stroke='rgba(0,245,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") center/400px repeat;
  opacity: 0.5;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  color: #ffffff;
}

.cta-banner-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
  position: relative;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
@keyframes footer-discord-mascot {
  0%, 100% {
    transform: translate(0, 2px) rotate(-10deg) scale(1);
  }
  42% {
    transform: translate(-6px, -16px) rotate(-15deg) scale(1.04);
  }
  72% {
    transform: translate(8px, 10px) rotate(-4deg) scale(1);
  }
}

footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 72px 40px 40px;
}

.footer-discord {
  margin: 0 auto 40px;
  max-width: 920px;
  font-family: var(--font-discord);
  overflow: visible;
  padding: 8px 0 0 clamp(44px, 6vw, 72px);
}

.footer-discord__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px 24px;
  flex-wrap: wrap;
  padding: 22px 24px 22px 28px;
  border-radius: 18px;
  overflow: visible;
  font-family: var(--font-discord);
  border: 1px solid rgba(88, 101, 242, 0.42);
  background:
    radial-gradient(ellipse 120% 80% at 0% 50%, rgba(88, 101, 242, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(168, 85, 247, 0.08) 0%, transparent 45%),
    linear-gradient(165deg, rgba(18, 22, 38, 0.98) 0%, rgba(6, 8, 16, 0.99) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 24px 56px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  color: var(--text-secondary);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.footer-discord__link:hover {
  border-color: rgba(88, 101, 242, 0.65);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 28px 64px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(88, 101, 242, 0.18);
  transform: translateY(-2px);
}

.footer-discord__link:focus-visible {
  outline: 2px solid #7289da;
  outline-offset: 3px;
}

.footer-discord__glow {
  position: absolute;
  width: 140px;
  height: 140px;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(88, 101, 242, 0.35) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.85;
}

.footer-discord__icon-wrap {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  margin: 4px 8px 0 -72px;
  align-self: center;
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(88, 101, 242, 0.45) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(88, 101, 242, 0.25);
  transform-origin: 70% 85%;
  animation: footer-discord-mascot 2.35s ease-in-out infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .footer-discord__icon-wrap {
    animation: none;
    transform: translate(0, 2px) rotate(-8deg);
  }
}

.footer-discord__icon {
  display: block;
  width: 76px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

@media (max-width: 640px) {
  .footer-discord {
    padding-left: max(20px, env(safe-area-inset-left));
  }

  .footer-discord__icon-wrap {
    width: 88px;
    height: 88px;
    margin-left: -52px;
  }

  .footer-discord__icon {
    width: 64px;
  }
}

.footer-discord__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.footer-discord__label {
  font-family: var(--font-discord);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #c4cdff;
  text-shadow: 0 0 24px rgba(88, 101, 242, 0.55);
}

.footer-discord__text {
  font-family: var(--font-discord);
  font-size: clamp(1.02rem, 2.4vw, 1.22rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.01em;
  max-width: 36rem;
  color: #eef2ff;
  background: linear-gradient(105deg, #ffffff 0%, #e0e7ff 38%, #a5b4fc 72%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .footer-discord__text {
    color: transparent;
    filter: drop-shadow(0 2px 14px rgba(88, 101, 242, 0.35));
  }
}

.footer-discord__action {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--font-discord);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #5865f2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.45);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-discord__action iconify-icon {
  display: block;
  color: rgba(255, 255, 255, 0.95);
}

.footer-discord__link:hover .footer-discord__action {
  background: #677bc4;
  box-shadow: 0 6px 28px rgba(88, 101, 242, 0.55);
  transform: translateX(2px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo { margin-bottom: 20px; display: inline-flex; }

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--text-secondary);
}

.social-btn svg,
.social-btn iconify-icon {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links li:not(:has(a)) {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Footer — payment methods (shared across site) */
.site-footer .footer-grid {
  margin-bottom: 40px;
}

.footer-payments {
  margin: 0 0 40px;
  padding: 22px 24px 24px;
  border-radius: 16px;
  border: 1px solid rgba(0, 245, 255, 0.14);
  background:
    linear-gradient(155deg, rgba(0, 245, 255, 0.07) 0%, rgba(168, 85, 247, 0.06) 45%, rgba(4, 8, 16, 0.96) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 56px rgba(0, 0, 0, 0.35);
}

.footer-payments__row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
}

.footer-pay-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.footer-pay-chip:hover {
  border-color: rgba(0, 245, 255, 0.35);
  box-shadow: 0 0 22px rgba(0, 245, 255, 0.1);
  transform: translateY(-2px);
}

.footer-pay-chip iconify-icon {
  display: block;
  color: inherit;
}

.footer-pay-chip--text {
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.footer-pay-chip--text span {
  color: var(--text-primary);
  font-weight: 600;
}

/* Mobile footer payment tweaks → mobile-nav-footer.css */

/* ============================================
   SERVICE PAGES — Common
   ============================================ */
.page-hero {
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.page-hero.cyan::after  { background: radial-gradient(circle, rgba(0,245,255,0.08) 0%, transparent 70%); }
.page-hero.green::after { background: radial-gradient(circle, rgba(0,255,136,0.08) 0%, transparent 70%); }
.page-hero.orange::after{ background: radial-gradient(circle, rgba(255,107,0,0.08)  0%, transparent 70%); }

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

/* Game subpages — hero with header artwork */
.game-hero {
  position: relative;
  padding: 120px 40px 96px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-color: #0a0e14;
  background-image:
    linear-gradient(105deg, rgba(10, 14, 20, 0.95) 0%, rgba(10, 14, 20, 0.88) 38%, rgba(10, 14, 20, 0.65) 62%, rgba(10, 14, 20, 0.35) 100%),
    var(--hero-bg, linear-gradient(145deg, #0f141c, #1a2432));
  background-size: cover, cover;
  background-position: center, center;
}

.game-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 45%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.game-hero.cyan::after {
  background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
}

.game-hero.green::after {
  background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
}

.game-hero.orange::after {
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
}

.game-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (max-width: 768px) {
  .game-hero {
    padding: 100px 20px 72px;
    min-height: 360px;
    background-position: center, center top;
  }
}

.page-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-label.cyan   { color: var(--accent-cyan); }
.page-label.green  { color: var(--accent-green); }
.page-label.orange { color: var(--accent-orange); }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Plans grid for service pages */
.plans-grid {
  display: grid;
  gap: 24px;
  margin-top: 60px;
}

.plans-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin-left: auto; margin-right: auto; }
.plans-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.plans-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.plans-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }

/* Spec / comparison tables (VPS, web hosting, …) */
.spec-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.spec-table-wrap .spec-table {
  margin-top: 0;
}

.spec-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 15px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  line-height: 1.45;
  vertical-align: middle;
}

.spec-table thead th {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.38);
  border-bottom: 2px solid rgba(0, 245, 255, 0.22);
  padding-top: 16px;
  padding-bottom: 16px;
}

.spec-table tbody td {
  color: var(--text-secondary);
}

.spec-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.028);
}

.spec-table tbody tr:last-child td {
  border-bottom: none;
}

.spec-table tbody tr:hover td {
  background: rgba(0, 245, 255, 0.06);
}

.spec-table tbody tr:hover td:first-child {
  color: var(--text-primary);
}

/* Plan matrix: feature column left, plan columns centred */
.spec-table--matrix {
  min-width: 620px;
}

.spec-table--matrix thead th:not(:first-child),
.spec-table--matrix tbody td:not(:first-child) {
  text-align: center;
}

.spec-table--matrix tbody td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.spec-table--web-4 {
  min-width: 880px;
}

/* Hardware specs: emphasise middle “spec” column */
.spec-table--specs tbody td:first-child {
  width: 24%;
  min-width: 108px;
}

.spec-table--specs tbody td:nth-child(2) {
  font-weight: 500;
}

.spec-table .spec-highlight {
  font-weight: 600;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.spec-check {
  color: var(--accent-green);
  font-weight: 700;
}

.spec-cross {
  color: var(--text-dim);
  opacity: 0.6;
}

@media (max-width: 576px) {
  .spec-table-wrap {
    border-radius: 10px;
  }

  .spec-table th,
  .spec-table td {
    padding: 12px 14px;
    font-size: 0.84rem;
  }

  .spec-table--matrix {
    min-width: 520px;
  }

  .spec-table--web-4 {
    min-width: 760px;
  }
}

/* Locations grid */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.locations-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 560px) {
  .locations-grid--two {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

.location-flag-img {
  width: 40px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.location-card:hover {
  border-color: rgba(0,245,255,0.3);
  transform: translateY(-3px);
}

.location-flag { font-size: 2rem; margin-bottom: 8px; }
.location-city { font-weight: 600; font-size: 0.9rem; }
.location-ping {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-green);
  margin-top: 4px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translate(40px, -50%); }
  to   { opacity: 1; transform: translate(0, -50%); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ── Homepage: panel strip, split, partners ── */
.home-panel-strip {
  position: relative;
  z-index: 1;
  padding: 72px 40px;
  background:
    linear-gradient(180deg, rgba(3,7,18,0.92) 0%, rgba(3,7,18,0.75) 100%),
    url('images/panel-bg.svg') center/cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.home-panel-strip__inner {
  max-width: 640px;
}

.home-panel-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.home-panel-strip p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-partners {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
  border-bottom: 1px solid var(--border);
}

.home-partners__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 40px;
  margin-top: 28px;
  opacity: 0.85;
}

.home-partners__logos img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2);
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.home-partners__logos img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.home-regions {
  position: relative;
  z-index: 1;
  padding: 56px 40px;
  border-bottom: 1px solid var(--border);
}

.home-regions__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  margin-top: 32px;
}

.home-region {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.home-region img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    min-height: 0;
    padding-top: 100px;
    padding-bottom: 64px;
  }

  .hero-content {
    max-width: none;
  }

  /* Hero art only on wide desktop; tablets & phones (incl. landscape) stay text-only */
  .hero-visual {
    display: none !important;
  }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-plans { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .plans-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .plans-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Navbar + mobile drawer + footer stack → mobile-nav-footer.css */

  .hero { padding: 100px 20px 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }

  .section-pad { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-plans { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .uptime-bar { gap: 20px; flex-wrap: wrap; justify-content: flex-start; }
  .cta-banner { padding: 48px 24px; }
  .cta-banner.cta-banner--media {
    padding: 0;
  }
  .page-hero { padding: 100px 20px 60px; }
  .plans-grid.cols-2 { grid-template-columns: 1fr; }
  .plans-grid.cols-3 { grid-template-columns: 1fr; }
  .plans-grid.cols-4 { grid-template-columns: 1fr; }
  .plans-grid.cols-5 { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
