/* =============================================================
   NorwayVPS.com — Shared Stylesheet
   All sub-pages load this. Override per-page with page-specific
   CSS custom properties declared on <html> or <body>.
   ============================================================= */

/* ---- GOOGLE FONTS (preloaded in HTML) ---- */
/* Exo 2 + Space Mono — loaded via <link> in each page head */

/* ---- DESIGN TOKENS — defaults (Deep Navy / Electric Blue) ---- */
:root {
  /* Core palette — overridden per page */
  --navy:        #050d1f;
  --navy-2:      #091428;
  --navy-3:      #0d1e3a;
  --navy-4:      #112347;
  --navy-card:   #0a1830;
  --navy-border: #1a2f52;

  /* Primary accent — overridden per page */
  --accent:        #1e90ff;
  --accent-2:      #3ba0ff;
  --accent-dim:    rgba(30,144,255,0.12);
  --accent-glow:   rgba(30,144,255,0.25);

  /* Keep alias for legacy references */
  --blue:        var(--accent);
  --blue-2:      var(--accent-2);
  --blue-dim:    var(--accent-dim);
  --blue-glow:   var(--accent-glow);

  /* Norwegian flag red */
  --red:         #ef2b2d;
  --red-dim:     rgba(239,43,45,0.1);

  /* Neutral */
  --ice:         #e8f4ff;
  --white:       #ffffff;
  --text:        #e4edf8;
  --text-2:      #8ca8c8;
  --text-3:      #4d6a8a;

  /* Status */
  --green:       #00e676;
  --gold:        #ffb347;

  /* Layout */
  --radius:      14px;
  --radius-lg:   20px;
  --shadow:      0 4px 32px rgba(0,0,0,0.4);
  --shadow-blue: 0 8px 40px rgba(30,144,255,0.15);
  --max-w:       1280px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Exo 2', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ---- UTILITY ---- */
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.8;
}
section { padding: 96px 5%; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.22s;
  box-shadow: 0 4px 24px var(--accent-glow);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 8px 36px var(--accent-glow); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--navy-border);
  transition: all 0.22s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---- AURORA BACKGROUND ---- */
.aurora-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora-bg::before {
  content: '';
  position: absolute;
  top: -30%; left: 20%;
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center,
    var(--aurora-a, rgba(30,144,255,0.06)) 0%,
    rgba(30,144,255,0.02) 40%,
    transparent 70%);
  animation: aurora1 14s ease-in-out infinite;
  border-radius: 50%;
}
.aurora-bg::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 700px; height: 600px;
  background: radial-gradient(ellipse at center,
    var(--aurora-b, rgba(239,43,45,0.04)) 0%,
    rgba(30,144,255,0.03) 40%,
    transparent 70%);
  animation: aurora2 18s ease-in-out infinite;
  border-radius: 50%;
}
@keyframes aurora1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(60px,-40px) scale(1.08); }
  66%      { transform: translate(-40px,30px) scale(0.94); }
}
@keyframes aurora2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-80px,50px) scale(1.12); }
}

/* Grid overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-color, rgba(30,144,255,0.03)) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color, rgba(30,144,255,0.03)) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,13,31,0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(30,144,255,0.08);
  transition: all 0.3s;
}
nav.scrolled {
  background: rgba(5,13,31,0.95);
  border-bottom-color: rgba(30,144,255,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.nav-logo {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent), #0060cc);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: white;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.nav-logo .logo-text { color: var(--white); }
.nav-logo .logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  box-shadow: 0 2px 16px var(--accent-glow);
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--accent-2) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  padding: 130px 5% 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(30,144,255,0.2);
  animation: fadeUp 0.6s ease both;
  letter-spacing: 0.03em;
}
.hero-eyebrow {
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
  animation: fadeUp 0.6s 0.08s ease both;
}
.hero h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.12s ease both;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .blue   { color: var(--accent); }
.hero h1 .red    { color: var(--red); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 500px;
  margin-bottom: 2.2rem;
  line-height: 1.8;
  animation: fadeUp 0.6s 0.18s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.24s ease both;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.8rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--navy-border);
  animation: fadeUp 0.6s 0.3s ease both;
  flex-wrap: wrap;
}
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero visual */
.hero-visual { position: relative; animation: fadeUp 0.8s 0.25s ease both; }
.server-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow), 0 0 60px rgba(30,144,255,0.06);
  position: relative;
  overflow: hidden;
}
.server-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.server-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.server-card-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}
.status-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 600;
}
.status-dot::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite;
  box-shadow: 0 0 8px var(--green);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.terminal {
  background: #020810;
  border-radius: 10px;
  padding: 18px 20px;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.9;
  color: #4a6a8a;
  min-height: 210px;
  border: 1px solid rgba(30,144,255,0.1);
}
.terminal .prompt { color: var(--green); }
.terminal .cmd    { color: var(--white); }
.terminal .out    { color: #3d5a78; }
.terminal .hi     { color: var(--accent); }
.terminal .hi-red { color: var(--red); }
.cursor {
  display: inline-block;
  width: 7px; height: 14px;
  background: var(--green);
  animation: cur-blink 1s infinite;
  vertical-align: middle;
  margin-left: 2px;
}
@keyframes cur-blink { 0%,100%{opacity:1} 50%{opacity:0} }

.spec-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(30,144,255,0.08);
  border: 1px solid rgba(30,144,255,0.18);
  color: var(--text-2);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* ---- FEATURES / CARDS ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--accent-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}

/* Keep content above overlay */
.feature-card > * {
  position: relative;
  z-index: 1;
}
.feature-card:hover { border-color: rgba(30,144,255,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(30,144,255,0.15);
}
.feature-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.75;
}

.feature-desc a {
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

.feature-desc a:hover {
  text-decoration: underline;
}

/* ---- PRICING ---- */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.billing-label {
  font-size: 0.88rem;
  color: var(--text-2);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}
.billing-label.active { color: var(--white); }
.toggle-switch {
  width: 52px; height: 28px;
  background: var(--navy-border);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px;
  width: 20px; height: 20px;
  background: var(--text-3);
  border-radius: 50%;
  transition: all 0.3s;
}
.toggle-switch.active { background: var(--accent); }
.toggle-switch.active::after { left: 28px; background: #fff; }
.save-badge {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(30,144,255,0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.plan-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 60px rgba(30,144,255,0.15);
}
.plan-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.plan-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
  margin-top: 0.5rem;
}
.plan-tagline {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 1.5rem;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.3rem;
}
.plan-currency { font-size: 1.2rem; font-weight: 700; color: var(--accent); }
.plan-amount {
  font-family: 'Exo 2', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-period { font-size: 0.82rem; color: var(--text-3); font-weight: 500; }
.plan-yearly-note {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  min-height: 1rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.plan-yearly-note.visible { opacity: 1; }
.plan-divider { border: none; border-top: 1px solid var(--navy-border); margin: 1.2rem 0; }
.plan-specs { list-style: none; margin-bottom: 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.plan-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-2);
}
.plan-specs li i { color: var(--accent); font-size: 0.75rem; width: 14px; flex-shrink: 0; }
.plan-specs li strong { color: var(--white); }
.plan-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.22s;
  border: 1.5px solid var(--navy-border);
  color: var(--text-2);
}
.plan-btn:hover { border-color: var(--accent); color: var(--accent); }
.plan-card.featured .plan-btn {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.plan-card.featured .plan-btn:hover { background: var(--accent-2); transform: translateY(-2px); }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 3rem auto 0; }
.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(30,144,255,0.3); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  user-select: none;
  gap: 1rem;
}
.faq-q:hover { color: var(--white); }
.faq-q i { color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 1.5rem 1.3rem; }
.faq-a a { color: var(--accent); }

.faq-cta-box {
  margin-top: 3rem;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.faq-cta-box h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.faq-cta-box p { color: var(--text-2); font-size: 0.92rem; margin-bottom: 1.5rem; }
.faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--accent-dim);
  border: 1px solid rgba(30,144,255,0.15);
  transition: all 0.2s;
}
.faq-link:hover { background: rgba(30,144,255,0.2); transform: translateY(-1px); }

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-dim) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 740px; margin: 0 auto; }
.cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.cta-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.cta-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 500;
}
.cta-tag i { color: var(--green); }

/* ---- FOOTER ---- */
footer {
  background: var(--navy-2);
  border-top: 1px solid var(--navy-border);
  padding: 64px 5% 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-logo {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.footer-brand-logo .logo-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--accent), #0060cc);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: white;
}
.footer-brand p { font-size: 0.83rem; color: var(--text-3); line-height: 1.75; }
.footer-col h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a {
  font-size: 0.84rem;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-3);
}
.footer-bottom a { color: var(--text-3); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }
.footer-flag-no {
  display: inline-block;
  width: 18px; height: 12px;
  background: linear-gradient(to bottom, #ef2b2d 0%,#ef2b2d 33%, #fff 33%,#fff 44%, #002868 44%,#002868 56%, #fff 56%,#fff 67%, #ef2b2d 67%,#ef2b2d 100%);
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 4px;
}

/* ---- REVEAL ANIMATION ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

/* ---- BREADCRUMB ---- */
.breadcrumb {
  font-size: 0.78rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-3); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 0.6rem; }

/* ---- PAYMENT ICONS STRIP ---- */
.payment-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1.2rem;
}
.pay-icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.03em;
}
.pay-icon i { font-size: 0.9rem; }

/* ---- INFO TABLE ---- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.info-table th {
  background: var(--navy-3);
  color: var(--text-2);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--navy-border);
  color: var(--text-2);
}
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: rgba(255,255,255,0.02); }
.info-table td:first-child { font-weight: 600; color: var(--text); }
.info-table td .check { color: var(--green); }
.info-table td .cross { color: var(--red); }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 72px 5%; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom div { flex-direction: column; align-items: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}

/* ---- PAGE-SPECIFIC ACCENT OVERRIDES ---- */
/* Applied via <html style="..."> or <body class="theme-*"> */

/* Ryzen / Performance — Amber/Orange */
body.theme-ryzen {
  --accent:        #ff8c00;
  --accent-2:      #ffa733;
  --accent-dim:    rgba(255,140,0,0.10);
  --accent-glow:   rgba(255,140,0,0.22);
  --aurora-a:      rgba(255,140,0,0.05);
  --aurora-b:      rgba(255,60,0,0.04);
  --grid-color:    rgba(255,140,0,0.03);
}

/* Bitcoin — Gold/Amber */
body.theme-bitcoin {
  --accent:        #f7931a;
  --accent-2:      #ffa940;
  --accent-dim:    rgba(247,147,26,0.10);
  --accent-glow:   rgba(247,147,26,0.22);
  --aurora-a:      rgba(247,147,26,0.05);
  --aurora-b:      rgba(240,100,0,0.04);
  --grid-color:    rgba(247,147,26,0.03);
}

/* Crypto — Purple/Violet */
body.theme-crypto {
  --accent:        #8b5cf6;
  --accent-2:      #a78bfa;
  --accent-dim:    rgba(139,92,246,0.10);
  --accent-glow:   rgba(139,92,246,0.22);
  --aurora-a:      rgba(139,92,246,0.06);
  --aurora-b:      rgba(99,30,255,0.04);
  --grid-color:    rgba(139,92,246,0.03);
}

/* VPN — Green/Teal */
body.theme-vpn {
  --accent:        #00c896;
  --accent-2:      #00e0ab;
  --accent-dim:    rgba(0,200,150,0.10);
  --accent-glow:   rgba(0,200,150,0.22);
  --aurora-a:      rgba(0,200,150,0.05);
  --aurora-b:      rgba(0,150,120,0.04);
  --grid-color:    rgba(0,200,150,0.03);
}

/* About / Neutral — stays default blue */
body.theme-about {
  --accent:        #1e90ff;
  --accent-2:      #3ba0ff;
  --accent-dim:    rgba(30,144,255,0.12);
  --accent-glow:   rgba(30,144,255,0.25);
}

/* ---- PROSE CONTENT PAGES (TOS / Privacy / About) ---- */
.prose-section {
  padding: 110px 5% 80px;
}
.prose-inner {
  max-width: 860px;
  margin: 0 auto;
}
.prose-inner h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  margin: 2.5rem 0 0.9rem;
  letter-spacing: -0.02em;
}
.prose-inner h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.8rem 0 0.7rem;
}
.prose-inner p {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.prose-inner ul {
  margin: 0.5rem 0 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.prose-inner ul li {
  font-size: 0.91rem;
  color: var(--text-2);
  line-height: 1.7;
}
.prose-inner a { color: var(--accent); }
.prose-inner strong { color: var(--text); }
.prose-effective {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-3);
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 8px;
  padding: 6px 14px;
  margin-bottom: 2rem;
}

/* ---- SLA TABLE ---- */
.sla-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.sla-table th {
  background: var(--navy-3);
  color: var(--text-2);
  font-weight: 700;
  padding: 12px 18px;
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sla-table td {
  background: var(--navy-card);
  padding: 11px 18px;
  border-bottom: 1px solid var(--navy-border);
  color: var(--text-2);
}
.sla-table tr:last-child td { border-bottom: none; }
.sla-table td:first-child { color: var(--text); font-weight: 600; }

/* ---- TEAM / ABOUT CARDS ---- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.about-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
}
.about-card:hover { border-color: rgba(30,144,255,0.3); transform: translateY(-4px); }
.about-card-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.about-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.about-card p { font-size: 0.86rem; color: var(--text-2); line-height: 1.75; }
