/*
Theme Name:  Archean Core
Theme URI:   https://archeancore.no
Author:      Archean Core AS
Author URI:  https://archeancore.no
Description: Enterprise AI Infrastructure theme for Archean Core AS — dark mode, glassmorphism, GPU leasing and datacenter services.
Version:     1.0.0
License:     Proprietary
Text Domain: archean-core
Tags:        dark, full-width-template, custom-menu, custom-logo, threaded-comments
*/

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


/* ============================================================
   ARCHEAN CORE AS — MAIN STYLESHEET
   Premium AI Infrastructure | Dark Mode | Enterprise Design
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --blue:       #485580;
  --purple:     #7C5580;
  --teal:       #349280;
  --mint:       #93A180;
  --dark:       #0A0F1A;
  --dark-2:     #0E1525;
  --dark-3:     #131c30;
  --dark-4:     #192035;

  --text-primary:   #F0F2F8;
  --text-secondary: #A8AFCC;
  --text-muted:     #6B7499;

  --border:     rgba(255,255,255,0.07);
  --border-md:  rgba(255,255,255,0.12);

  --grad-brand:       linear-gradient(135deg, var(--blue) 0%, var(--purple) 50%, var(--teal) 100%);
  --grad-blue-purple: linear-gradient(135deg, var(--blue), var(--purple));
  --grad-teal-blue:   linear-gradient(135deg, var(--teal), var(--blue));
  --grad-text:        linear-gradient(90deg, #7C9FE0 0%, #A87CC4 40%, #4DB8A0 100%);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.3);
  --max-w:     1200px;
  --gutter:    clamp(1.25rem, 5vw, 2.5rem);
  --section-v: clamp(5rem, 10vw, 8rem);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #F0F2F8 !important;
  background-color: #0A0F1A !important;
  -webkit-font-smoothing: antialiased;
  margin: 0 !important;
  padding: 0 !important;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif !important;
  line-height: 1.2;
  color: #F0F2F8;
  margin: 0;
}
p { margin: 0; }

/* WordPress admin bar offset */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* Kill WordPress default content width */
.hp-hero, .hp-trust-bar, .hp-pillars, .hp-gpus, .hp-colo,
.hp-cta-banner, .cg-hero, .colo-page, .section-padding,
.page-hero, .site-footer { max-width: none !important; width: 100% !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section-padding    { padding-block: var(--section-v); }
.section-padding-sm { padding-block: clamp(3rem, 6vw, 5rem); }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;
  color: var(--text-primary); margin-bottom: 1rem;
}
.section-subtitle { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75; }
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.375rem; border-radius: var(--radius-md);
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 600;
  line-height: 1; transition: all 0.2s ease; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer;
}
.btn-lg { padding: 0.875rem 1.875rem; font-size: 1rem; }
.btn-primary { background: var(--grad-brand); color: #fff; border-color: transparent; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(72,85,128,0.4); }
.btn-secondary { background: transparent; color: var(--text-primary); border-color: var(--border-md); }
.btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.25); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--text-primary); border-color: var(--border); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--border-md); }

/* ── NAVIGATION ──────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,15,26,0.85); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.5); }
.nav-container {
  max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter);
  height: 68px; display: flex; align-items: center; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }
.logo-mark { width: 32px; height: 32px; border-radius: 8px; background: var(--grad-brand); display: block; flex-shrink: 0; }
.nav-logo-img { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; display: block; }
.logo-text { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.02em; }
.logo-accent { color: var(--teal); }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block; padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500;
  color: var(--text-secondary); border-radius: var(--radius-sm); transition: color 0.15s, background 0.15s; white-space: nowrap;
}
.nav-menu > li > a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--dark-3); border: 1px solid var(--border-md); border-radius: var(--radius-md);
  padding: 0.5rem; box-shadow: var(--shadow-card); z-index: 200;
  /* Remove the gap so mouse doesn't fall out */
  margin-top: 0;
}
/* Invisible bridge fills the gap between nav item and dropdown */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 0.5rem 0.75rem; font-size: 0.85rem;
  color: var(--text-secondary); border-radius: var(--radius-sm); transition: color 0.15s, background 0.15s;
}
.dropdown li a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.nav-cta { margin-left: 1rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 0.5rem; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; padding-top: 68px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(72,85,128,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(72,85,128,0.08) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.hero-bg-grid::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, transparent 40%, var(--dark) 100%);
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18; }
.orb-1 { width: 600px; height: 600px; background: var(--blue);   top: -15%; left: -10%; }
.orb-2 { width: 500px; height: 500px; background: var(--purple); top: 10%;  right: -15%; }
.orb-3 { width: 400px; height: 400px; background: var(--teal);   bottom: 5%; left: 30%; }
.hero-inner {
  position: relative; z-index: 1; text-align: center;
  padding-block: clamp(4rem, 10vw, 7rem); display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal);
  background: rgba(52,146,128,0.1); border: 1px solid rgba(52,146,128,0.25);
  padding: 0.4rem 1rem; border-radius: 99px; margin-bottom: 2rem;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.hero-title { font-size: clamp(2.5rem, 7vw, 5.25rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; max-width: 900px; margin-bottom: 1.75rem; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-secondary); max-width: 600px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 4rem; }
.hero-stats {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem 2.5rem; backdrop-filter: blur(8px);
}
.stat { text-align: center; }
.stat-number {
  display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
  background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: var(--border-md); }
.hero-scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); }
.scroll-line { display: block; width: 1px; height: 48px; background: linear-gradient(to bottom, var(--teal), transparent); animation: scrollFade 2.5s ease-in-out infinite; }
@keyframes scrollFade { 0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; } 30%, 70% { opacity: 1; transform: scaleY(1); } }

/* ── GPU SOLUTIONS ───────────────────────────────────────── */
.gpu-solutions { background: var(--dark-2); }
.gpu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.gpu-card {
  position: relative; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; overflow: hidden;
}
.gpu-card::before { content: ''; position: absolute; inset: 0; background: var(--grad-brand); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.gpu-card:hover { border-color: rgba(72,85,128,0.5); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(72,85,128,0.2); }
.gpu-card:hover::before { opacity: 0.04; }
.gpu-card--featured { border-color: rgba(124,85,128,0.35); background: rgba(124,85,128,0.06); }
.gpu-card--accent   { border-color: rgba(52,146,128,0.35);  background: rgba(52,146,128,0.05); }
.gpu-card-content { display: flex; flex-direction: column; }
.gpu-card-badge { display: inline-block; width: fit-content; align-self: flex-start; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 99px; background: rgba(124,85,128,0.2); color: #C49FD8; border: 1px solid rgba(124,85,128,0.4); margin-bottom: 0.75rem; white-space: nowrap; }
.gpu-card-badge--teal { background: rgba(52,146,128,0.15); color: #6DCCB8; border-color: rgba(52,146,128,0.35); }
.gpu-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.2rem; }
.gpu-card-tier { font-size: 0.75rem; color: var(--teal); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; }
.gpu-card-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.gpu-card-specs { display: flex; flex-direction: column; gap: 0.3rem; }
.gpu-card-specs li { font-size: 0.8rem; color: var(--text-muted); padding-left: 1rem; position: relative; }
.gpu-card-specs li::before { content: '—'; position: absolute; left: 0; color: var(--border-md); }
.gpu-card-link { font-size: 0.85rem; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 0.25rem; transition: gap 0.2s; margin-top: auto; }
.gpu-card-link:hover { gap: 0.5rem; }
.gpu-cta-row { text-align: center; margin-top: 3rem; }

/* ── CATALOGUE STRIP ─────────────────────────────────────── */
.gpu-catalogue { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.catalogue-grid {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; align-items: center;
  max-width: 1000px; margin-inline: auto;
}
.catalogue-item {
  font-size: 0.78rem; font-weight: 500; color: var(--text-muted);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.4rem 0.875rem;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap; display: inline-block;
}
.catalogue-item:hover { color: var(--text-secondary); border-color: var(--border-md); background: rgba(255,255,255,0.06); }
.catalogue-item--highlight {
  color: var(--teal); border-color: rgba(52,146,128,0.35);
  background: rgba(52,146,128,0.07); font-weight: 600;
}

/* ── RTX 5090 LEASING ────────────────────────────────────── */
.rtx-leasing { position: relative; background: var(--dark-2); overflow: hidden; }
.rtx-bg-accent { position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(52,146,128,0.12) 0%, transparent 70%); pointer-events: none; }
.rtx-inner { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; }
.rtx-content h2 { font-size: clamp(1.75rem, 4vw, 2.4rem); font-weight: 700; color: var(--text-primary); margin-bottom: 1.25rem; line-height: 1.2; }
.rtx-lead { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.7; }
.rtx-lead strong { color: var(--text-primary); }
.rtx-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2.5rem; }
.rtx-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.rtx-option-title { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.rtx-option-list { display: flex; flex-direction: column; gap: 0.5rem; }
.rtx-option-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--text-secondary); }
.check-icon { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 0.1em; }
.rtx-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border-md); border-radius: var(--radius-xl); padding: 1.75rem; backdrop-filter: blur(12px); position: sticky; top: 90px; }
.rtx-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.rtx-chip { display: block; width: 48px; height: 48px; border-radius: 10px; background: var(--grad-teal-blue); flex-shrink: 0; }
.rtx-card-model { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.rtx-card-arch { font-size: 0.8rem; color: var(--text-muted); }
.rtx-spec-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.5rem; }
.rtx-spec-row { display: flex; justify-content: space-between; align-items: center; padding: 0.625rem 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.rtx-spec-row dt { color: var(--text-muted); }
.rtx-spec-row dd { color: var(--text-primary); font-weight: 500; text-align: right; }
.rtx-card-note { display: flex; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); background: rgba(52,146,128,0.07); border: 1px solid rgba(52,146,128,0.18); border-radius: var(--radius-sm); padding: 0.75rem; line-height: 1.5; }
.rtx-card-note span { color: var(--teal); flex-shrink: 0; }

/* ── DATACENTER SERVICES ─────────────────────────────────── */
.datacenter { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.service-card { background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.service-card:hover { border-color: rgba(72,85,128,0.4); background: rgba(72,85,128,0.05); transform: translateY(-2px); }
.service-icon { margin-bottom: 1rem; width: 52px; height: 52px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.service-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ── STORAGE ─────────────────────────────────────────────── */
.storage { background: var(--dark-3); }
.storage-inner { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: center; }
.storage-content h2 { font-size: clamp(1.75rem, 4vw, 2.4rem); font-weight: 700; margin-bottom: 1.25rem; }
.storage-lead { font-size: 1rem; color: var(--text-secondary); margin-bottom: 2.5rem; line-height: 1.7; }
.storage-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.storage-category h3 { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem; }
.storage-category ul { display: flex; flex-direction: column; gap: 0.4rem; }
.storage-category li { font-size: 0.875rem; color: var(--text-secondary); padding-left: 0.875rem; position: relative; }
.storage-category li::before { content: '·'; position: absolute; left: 0; color: var(--teal); }
.rack-diagram { display: flex; flex-direction: column; gap: 0.5rem; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.rack-unit { height: 52px; border-radius: var(--radius-sm); display: flex; align-items: center; padding-left: 1rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; border: 1px solid; }
.rack-unit--gpu     { background: rgba(72,85,128,0.2);  border-color: rgba(72,85,128,0.4);  color: #7C9FE0; }
.rack-unit--storage { background: rgba(52,146,128,0.15); border-color: rgba(52,146,128,0.35); color: #6DCCB8; }
.rack-unit--mem     { background: rgba(147,161,128,0.15); border-color: rgba(147,161,128,0.35); color: #B8C89E; }
.rack-unit--net     { background: rgba(124,85,128,0.15); border-color: rgba(124,85,128,0.35); color: #C49FD8; }
.rack-unit--psu     { background: rgba(255,255,255,0.04); border-color: var(--border-md); color: var(--text-muted); }

/* ── WHY US ──────────────────────────────────────────────── */
.why-us { background: var(--dark-2); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.25rem; }
.why-card { background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; position: relative; overflow: hidden; transition: border-color 0.2s, transform 0.2s; }
.why-card:hover { border-color: rgba(52,146,128,0.3); transform: translateY(-2px); }
.why-number { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.04); position: absolute; top: 0.75rem; right: 1.25rem; line-height: 1; letter-spacing: -0.05em; pointer-events: none; user-select: none; }
.why-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.625rem; }
.why-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact { position: relative; background: var(--dark); overflow: hidden; }
.contact-bg-accent { position: absolute; bottom: -150px; left: -150px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(72,85,128,0.12) 0%, transparent 70%); pointer-events: none; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 700; margin-bottom: 1.25rem; line-height: 1.25; }
.contact-lead { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-detail-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.contact-detail-value { font-size: 0.95rem; color: var(--text-primary); }
.contact-detail a:hover { color: var(--teal); }
.contact-form-wrapper { background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.04em; }
.form-group label span[aria-label="required"] { color: var(--teal); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-md); border-radius: var(--radius-sm);
  padding: 0.7rem 0.875rem; color: var(--text-primary); font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s; width: 100%; -webkit-appearance: none; appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7499' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; padding-right: 2.5rem; background-color: rgba(255,255,255,0.04); }
.form-group select option { background: var(--dark-3); color: var(--text-primary); }
.form-group select optgroup { color: var(--text-muted); font-size: 0.8rem; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(72,85,128,0.2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input.field-error, .form-group select.field-error, .form-group textarea.field-error { border-color: #E24B4A; }
.form-privacy { display: flex; align-items: flex-start; gap: 0.75rem; }
.form-privacy input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 0.15rem; accent-color: var(--teal); cursor: pointer; }
.form-privacy label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.form-privacy a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.form-submit { width: 100%; justify-content: center; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--dark-4); border-top: 1px solid var(--border); padding-top: 2.5rem; padding-bottom: 1.5rem; }
.footer-top { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.625rem; line-height: 1.6; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-nav-col h3 { font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.footer-nav-col ul { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-nav-col li a { font-size: 0.8rem; color: var(--text-secondary); transition: color 0.15s; }
.footer-nav-col li a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-bottom p { font-size: 0.72rem; color: var(--text-muted); }
.footer-note { opacity: 0.6; }

/* ── WORDPRESS CONTENT AREA ──────────────────────────────── */
.site-main { padding-top: 68px; }
.entry-content { max-width: var(--max-w); margin-inline: auto; padding: 3rem var(--gutter); color: var(--text-secondary); line-height: 1.75; }
.entry-content h1, .entry-content h2, .entry-content h3 { color: var(--text-primary); margin-bottom: 1rem; margin-top: 2rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rtx-inner { grid-template-columns: 1fr; }
  .rtx-card { position: static; }
  .rtx-options { grid-template-columns: 1fr 1fr; }
  .storage-inner { grid-template-columns: 1fr; }
  .storage-visual { display: none; }
  .storage-categories { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  :root { --section-v: clamp(3.5rem, 7vw, 5rem); }
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--dark-2); padding: 1rem var(--gutter) 2rem; border-bottom: 1px solid var(--border); gap: 0.25rem; z-index: 99; }
  .nav-menu.open > li > a { padding: 0.75rem 0.5rem; font-size: 1rem; }
  .dropdown { position: static; display: none; background: none; border: none; padding: 0 0 0 1rem; box-shadow: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { gap: 1.25rem; padding: 1.25rem 1.5rem; }
  .stat-divider { display: none; }
  .gpu-grid, .services-grid, .why-grid { grid-template-columns: 1fr; }
  .rtx-options, .storage-categories { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .footer-nav { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }

/* ── PAGE TEMPLATES ──────────────────────────────────────── */
.site-main { padding-top: 68px; }

.page-hero {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--dark);
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(72,85,128,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(72,85,128,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(72,85,128,0.15) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.page-hero-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.page-hero-eyebrow a { color: var(--teal); }
.page-hero-eyebrow a:hover { text-decoration: underline; }
.page-hero-eyebrow span { opacity: 0.5; }
.page-hero-title {
  font-size: clamp(2.25rem, 6vw, 4rem); font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 1.25rem; color: var(--text-primary);
}
.page-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-secondary);
  max-width: 580px; margin-inline: auto; line-height: 1.7;
}

/* Page content (default page.php) */
.page-content-inner {
  max-width: 760px; margin-inline: auto;
  color: var(--text-secondary); font-size: 1rem; line-height: 1.8;
}
.page-content-inner h2 { color: var(--text-primary); font-size: 1.75rem; margin: 2rem 0 0.75rem; }
.page-content-inner h3 { color: var(--text-primary); font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }
.page-content-inner p  { margin-bottom: 1.25rem; }
.page-content-inner a  { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.page-content-inner ul { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.page-content-inner ul li { margin-bottom: 0.4rem; list-style: disc; }

/* CTA strip */
.page-cta-strip {
  background: var(--dark-4);
  border-top: 1px solid var(--border);
  padding: clamp(5rem, 10vw, 7rem) 0;
}
.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.page-cta-inner h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700; color: var(--text-primary); margin-bottom: 0.375rem;
}
.page-cta-inner p { font-size: 0.95rem; color: var(--text-secondary); }
.page-cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

@media (max-width: 640px) {
  .page-cta-inner { flex-direction: column; text-align: center; }
  .page-cta-buttons { justify-content: center; }
}



/* ═══════════════════════════════════════════════════════════
   STORE PAGE
   ═══════════════════════════════════════════════════════════ */

.store-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.store-cat-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  position: relative;
}
.store-cat-card:hover {
  border-color: rgba(72,85,128,0.5);
  background: rgba(72,85,128,0.05);
  transform: translateY(-2px);
}
.store-cat-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.store-cat-content { flex: 1; }
.store-cat-content h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 0.25rem;
}
.store-cat-content p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 0.4rem; }
.store-cat-count { font-size: 0.72rem; color: var(--teal); font-weight: 600; letter-spacing: 0.06em; }
.store-cat-arrow {
  font-size: 1rem; color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.store-cat-card:hover .store-cat-arrow { color: var(--teal); transform: translateX(3px); }

/* B2B section */
.store-b2b-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: center;
}
.store-b2b-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700; margin-bottom: 1.25rem;
}
.store-b2b-content p {
  font-size: 0.95rem; color: var(--text-secondary);
  line-height: 1.75; margin-bottom: 1rem;
}
.store-b2b-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.metric {
  background: var(--color-background-secondary, rgba(255,255,255,0.04));
  border-radius: var(--radius-md);
  padding: 1rem;
}
.metric-label { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.3rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.metric-value { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════════
   DATACENTER SERVICES SUBNAV
   ═══════════════════════════════════════════════════════════ */

.dc-subnav {
  background: var(--dark-4);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 68px;
  z-index: 50;
}
.dc-subnav-list {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
}
.dc-subnav-list::-webkit-scrollbar { display: none; }
.dc-subnav-list li a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.dc-subnav-list li a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════
   NAV DROPDOWN — wider for 11 items
   ═══════════════════════════════════════════════════════════ */

.has-dropdown:hover .dropdown { display: block; }
.nav-menu .has-dropdown .dropdown {
  min-width: 240px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE UPDATES
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .store-b2b-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .dc-subnav { top: 68px; }
  .store-cat-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   COLOCATION PAGE
   ═══════════════════════════════════════════════════════════ */

/* strip default padding-top from site-main on this page */
.colo-page { padding-top: 0 !important; }
.colo-page .site-main,
.colo-page#colo-main { padding-top: 0; }

/* ── Hero ─────────────────────────────────────────────────── */
.cg-hero {
  position: relative;
  width: 100%; height: 75svh; min-height: 520px;
  overflow: hidden; background: #050a12;
  display: flex; align-items: center; justify-content: center;
}
#cg-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  cursor: grab; touch-action: none; display: block;
}
#cg-canvas:active { cursor: grabbing; }
.cg-hero-text-section {
  background: #050a12;
  padding: 2rem var(--gutter) 5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* floating chips */
.cg-chips {
  position: absolute; top: 88px; inset-inline: 0;
  display: flex; justify-content: center; gap: 0.625rem;
  flex-wrap: wrap; padding: 0 var(--gutter);
  z-index: 3; pointer-events: none;
  transition: opacity 0.15s;
}
.cg-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(5,10,18,0.72); border: 1px solid rgba(255,255,255,0.1);
  padding: 0.35rem 0.875rem; border-radius: 99px; backdrop-filter: blur(14px);
}
.cg-chip-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.cg-chip-dot--1 { background: #485580; box-shadow: 0 0 6px #485580; }
.cg-chip-dot--2 { background: #7C5580; box-shadow: 0 0 6px #7C5580; }
.cg-chip-dot--3 { background: #349280; box-shadow: 0 0 6px #349280; }

/* hero copy */
.cg-hero-copy {
  position: relative; z-index: 2; text-align: center;
  padding: 0 var(--gutter); max-width: 860px;
  margin: 0 auto;
  transition: opacity 0.12s linear;
}
.cg-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); background: rgba(52,146,128,0.1); border: 1px solid rgba(52,146,128,0.25);
  padding: 0.4rem 1rem; border-radius: 99px; margin-bottom: 1.75rem;
}
.cg-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0;
  animation: cg-pulse 2s ease-in-out infinite;
}
@keyframes cg-pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.4;transform:scale(.7);} }

.cg-hero-h1 {
  font-size: clamp(2.25rem, 6.5vw, 5rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.06; color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.cg-gradient-text {
  background: linear-gradient(90deg,#7C9FE0 0%,#A87CC4 40%,#4DB8A0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cg-hero-power {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(0.95rem, 2.2vw, 1.5rem); letter-spacing: 0.2em; text-transform: uppercase;
  background: linear-gradient(90deg,#7C9FE0,#4DB8A0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1rem;
}
.cg-hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem); color: var(--text-secondary);
  line-height: 1.7; max-width: 620px; margin: 0 auto 2rem;
}
.cg-hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.cg-hero-stats {
  display: inline-flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-lg); padding: 1.1rem 2rem;
}
.cg-stat { text-align: center; }
.cg-stat-n {
  display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  background: linear-gradient(90deg,#7C9FE0,#4DB8A0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cg-stat-l { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.06em; }
.cg-stat-sep { width: 1px; height: 30px; background: rgba(255,255,255,0.09); }

.cg-scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2;
  animation: cg-bounce 2.5s ease-in-out infinite;
}
.cg-scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--teal), transparent);
}
.cg-scroll-cue span { font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
@keyframes cg-bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(7px);} }

/* ── Locations ────────────────────────────────────────────── */
.cg-locations { background: var(--dark-2); position: relative; overflow: hidden; }
.cg-loc-glow {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 560px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(52,146,128,0.07) 0%, transparent 65%);
}
.cg-loc-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(295px,1fr));
  gap: 1.5rem; margin-bottom: 2.5rem;
}

.cg-loc-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  cursor: default; outline-offset: 3px;
}
.cg-loc-card:hover,.cg-loc-card:focus-visible {
  transform: translateY(-5px); outline: none;
  border-color: rgba(72,85,128,.5);
  box-shadow: 0 28px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(72,85,128,.18);
}
.cg-loc-card--featured { border-color: rgba(52,146,128,.3); background: rgba(52,146,128,.04); }
.cg-loc-card--featured:hover,.cg-loc-card--featured:focus-visible {
  border-color: rgba(52,146,128,.65);
  box-shadow: 0 28px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(52,146,128,.28);
}

.cg-loc-card-bg {
  position: absolute; top:-80px; right:-80px;
  width: 220px; height: 220px; border-radius: 50%; pointer-events: none;
}
.cg-loc-card-bg--blue   { background: radial-gradient(circle,rgba(72,85,128,.18) 0%,transparent 70%); }
.cg-loc-card-bg--purple { background: radial-gradient(circle,rgba(124,85,128,.18) 0%,transparent 70%); }
.cg-loc-card-bg--teal   { background: radial-gradient(circle,rgba(52,146,128,.18) 0%,transparent 70%); }

.cg-loc-badge {
  position: absolute; top:1.25rem; right:1.25rem;
  font-size:.67rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:.25rem .7rem; border-radius:99px;
  background:rgba(52,146,128,.15); color:#6DCCB8; border:1px solid rgba(52,146,128,.35);
}
.cg-loc-head {
  display:flex; align-items:center; gap:.625rem; margin-bottom:1.25rem;
}
/* pulse dots */
.cg-loc-pulse {
  position:relative; display:block; width:14px; height:14px; flex-shrink:0;
}
.cg-loc-pulse::before,.cg-loc-pulse::after { content:''; position:absolute; border-radius:50%; }
.cg-loc-pulse::before { inset:2px; }
.cg-loc-pulse::after  { inset:-2px; border:1.5px solid; opacity:.6; animation:cg-ring 2.8s ease-out infinite; }
.cg-loc-pulse--blue::before   { background:var(--blue);   box-shadow:0 0 8px var(--blue); }
.cg-loc-pulse--blue::after    { border-color:var(--blue); }
.cg-loc-pulse--purple::before { background:var(--purple); box-shadow:0 0 8px var(--purple); }
.cg-loc-pulse--purple::after  { border-color:var(--purple); animation-delay:.9s; }
.cg-loc-pulse--teal::before   { background:var(--teal);   box-shadow:0 0 8px var(--teal); }
.cg-loc-pulse--teal::after    { border-color:var(--teal); animation-delay:1.8s; }
@keyframes cg-ring { 0%{transform:scale(1);opacity:.6;} 100%{transform:scale(2.8);opacity:0;} }

.cg-loc-tag { font-size:.73rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted); }

.cg-loc-mw-block { margin-bottom:1.5rem; }
.cg-loc-mw {
  display:block; font-family:var(--font-display); font-size:3rem; font-weight:700; line-height:1;
  background:linear-gradient(90deg,#7C9FE0,#4DB8A0);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.cg-loc-mw-sub { font-size:.76rem; color:var(--text-muted); display:block; margin-top:.2rem; }

.cg-loc-spec-list { display:flex; flex-direction:column; margin-bottom:1.5rem; }
.cg-loc-spec {
  display:flex; justify-content:space-between; align-items:center;
  padding:.52rem 0; border-bottom:1px solid var(--border); font-size:.845rem;
}
.cg-loc-spec:last-child { border-bottom:none; }
.cg-loc-spec dt { color:var(--text-muted); }
.cg-loc-spec dd { color:var(--text-primary); font-weight:500; text-align:right; }
.cg-loc-cta { width:100%; justify-content:center; }

/* totals bar */
.cg-totals-bar {
  display:flex; align-items:center; justify-content:center;
  gap:2.5rem; flex-wrap:wrap;
  background:rgba(255,255,255,.025); border:1px solid var(--border-md);
  border-radius:var(--radius-lg); padding:1.75rem 2.5rem;
}
.cg-total { text-align:center; }
.cg-total-n {
  display:block; font-family:var(--font-display); font-size:1.85rem; font-weight:700;
  background:linear-gradient(90deg,#7C9FE0,#4DB8A0);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.cg-total-l { font-size:.72rem; color:var(--text-muted); margin-top:.2rem; }
.cg-total-sep { width:1px; height:38px; background:var(--border-md); }

/* ── Services grid ────────────────────────────────────────── */
.cg-svc-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.25rem;
}
.cg-svc-card {
  background:rgba(255,255,255,.025); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.75rem; position:relative; overflow:hidden;
  transition:border-color .2s, transform .2s;
}
.cg-svc-card:hover { border-color:rgba(52,146,128,.35); transform:translateY(-2px); }
.cg-svc-num {
  font-family:var(--font-display); font-size:3.2rem; font-weight:800;
  color:rgba(255,255,255,.04); position:absolute; top:.5rem; right:1rem; line-height:1;
  user-select:none; pointer-events:none;
}
.cg-svc-card h3 {
  font-family:var(--font-display); font-size:1.05rem; font-weight:600;
  color:var(--text-primary); margin-bottom:.5rem;
}
.cg-svc-card p { font-size:.89rem; color:var(--text-secondary); line-height:1.65; }

/* ── Pricing ──────────────────────────────────────────────── */
.cg-price-cards {
  display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-bottom:2rem;
}
.cg-price-card {
  border-radius:var(--radius-xl); padding:2.25rem; text-align:center;
  border:1px solid var(--border); background:rgba(255,255,255,.025);
  transition:border-color .2s, transform .2s;
}
.cg-price-card:hover { border-color:rgba(72,85,128,.4); transform:translateY(-2px); }
.cg-price-card--cap { border-color:rgba(52,146,128,.35); background:rgba(52,146,128,.05); }
.cg-price-label { font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--teal); margin-bottom:.875rem; }
.cg-price-num {
  font-family:var(--font-display); font-size:2.75rem; font-weight:700; line-height:1;
  background:linear-gradient(90deg,#7C9FE0,#4DB8A0);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  margin-bottom:.5rem;
}
.cg-price-unit { font-size:1rem; display:block; margin-top:.35rem; }
.cg-price-desc { font-size:.88rem; color:var(--text-secondary); line-height:1.65; margin-top:1rem; }

.cg-power-options { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-bottom:1.5rem; }
.cg-power-opt {
  position:relative; border-radius:var(--radius-xl); padding:2rem;
  border:1px solid var(--border); background:rgba(255,255,255,.025);
  transition:border-color .2s, transform .2s;
}
.cg-power-opt:hover { border-color:rgba(72,85,128,.4); transform:translateY(-2px); }
.cg-power-opt--featured { border-color:rgba(124,85,128,.38); background:rgba(124,85,128,.05); }
.cg-power-opt-badge {
  position:absolute; top:1.25rem; right:1.25rem;
  font-size:.67rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:.25rem .7rem; border-radius:99px;
  background:rgba(124,85,128,.18); color:#C49FD8; border:1px solid rgba(124,85,128,.38);
}
.cg-power-opt-header { display:flex; align-items:center; gap:.875rem; margin-bottom:.75rem; }
.cg-power-opt-icon {
  width:46px; height:46px; border-radius:var(--radius-sm); flex-shrink:0;
  background:rgba(255,255,255,.04); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
}
.cg-power-opt h3 { font-family:var(--font-display); font-size:1.05rem; font-weight:600; color:var(--text-primary); }
.cg-power-opt > p { font-size:.88rem; color:var(--text-secondary); line-height:1.65; margin-bottom:1rem; }

.cg-check-list { display:flex; flex-direction:column; gap:.45rem; }
.cg-check-list li {
  display:flex; align-items:flex-start; gap:.5rem;
  font-size:.86rem; color:var(--text-secondary);
  list-style:none; padding:0;
}
.cg-check-list li::before {
  content:'✓'; color:var(--teal); font-weight:700; flex-shrink:0; margin-top:.05em;
}

.cg-capacity-note {
  display:flex; gap:1rem; align-items:flex-start;
  background:rgba(72,85,128,.07); border:1px solid rgba(72,85,128,.2);
  border-radius:var(--radius-md); padding:1.25rem 1.5rem;
  font-size:.875rem; color:var(--text-secondary); line-height:1.65;
  max-width:900px; margin-inline:auto;
}
.cg-capacity-note-icon { color:var(--blue); font-size:1.1rem; flex-shrink:0; margin-top:.1em; }
.cg-capacity-note p { margin:0; }
.cg-capacity-note strong { color:var(--text-primary); }

/* ── Norway power zones ───────────────────────────────────── */
.cg-zones-layout {
  display:grid; grid-template-columns:300px 1fr; gap:4rem; align-items:start;
}
.cg-map-fig {
  margin:0; background:rgba(255,255,255,.02); border:1px solid var(--border);
  border-radius:var(--radius-xl); padding:1.5rem; overflow:hidden;
}
.cg-map-svg { width:100%; height:auto; display:block; }

/* zone paths */
.cg-zp { transition:fill-opacity .2s; cursor:pointer; }
.cg-zp:hover { fill-opacity:.5 !important; }
.cg-zp--no4 { fill:rgba(72,85,128,.2);  stroke:rgba(100,120,180,.5); stroke-width:1.2; }
.cg-zp--no3 { fill:rgba(124,85,128,.18); stroke:rgba(160,100,170,.5); stroke-width:1.2; }
.cg-zp--no1 { fill:rgba(52,146,128,.18); stroke:rgba(52,180,150,.5);  stroke-width:1.2; }
.cg-zp--no5 { fill:rgba(147,161,128,.17); stroke:rgba(160,175,130,.5); stroke-width:1.2; }
.cg-zp--no2 { fill:rgba(72,85,128,.14); stroke:rgba(100,120,180,.42); stroke-width:1.2; }
.cg-zl { fill:var(--text-primary); font-family:'Space Grotesk',sans-serif; font-size:13px; font-weight:700; pointer-events:none; }
.cg-zs { fill:rgba(168,175,204,.6); font-family:'Inter',sans-serif; font-size:8.5px; pointer-events:none; }

.cg-zone-intro { font-size:1rem; color:var(--text-secondary); line-height:1.75; margin-bottom:1.75rem; }
.cg-zone-rows { display:flex; flex-direction:column; gap:.625rem; }
.cg-zone-row {
  display:flex; align-items:center; gap:1rem;
  padding:.875rem 1.25rem; background:rgba(255,255,255,.025);
  border:1px solid var(--border); border-radius:var(--radius-md);
  transition:border-color .18s, background .18s;
}
.cg-zone-row:hover { background:rgba(255,255,255,.04); border-color:var(--border-md); }
.cg-zone-code {
  font-family:var(--font-display); font-size:.95rem; font-weight:700;
  min-width:40px; flex-shrink:0;
}
.cg-zone-code--no4 { color:#7C9FE0; }
.cg-zone-code--no3 { color:#C49FD8; }
.cg-zone-code--no1 { color:#6DCCB8; }
.cg-zone-code--no5 { color:#B8C89E; }
.cg-zone-code--no2 { color:#7C9FE0; }
.cg-zone-row strong { display:block; font-size:.88rem; font-weight:600; color:var(--text-primary); }
.cg-zone-row span   { display:block; font-size:.76rem; color:var(--text-muted); margin-top:.12rem; }

/* ── Why Norway ───────────────────────────────────────────── */
.cg-why-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(275px,1fr)); gap:1.25rem;
}
.cg-why-card {
  background:rgba(255,255,255,.025); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.75rem;
  transition:border-color .2s, transform .2s;
}
.cg-why-card:hover { border-color:rgba(52,146,128,.35); transform:translateY(-2px); }
.cg-why-ico {
  width:46px; height:46px; border-radius:var(--radius-sm);
  background:rgba(255,255,255,.04); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; margin-bottom:1rem;
}
.cg-why-card h3 { font-family:var(--font-display); font-size:1rem; font-weight:600; color:var(--text-primary); margin-bottom:.5rem; }
.cg-why-card p  { font-size:.88rem; color:var(--text-secondary); line-height:1.65; }

/* ── Expansion ────────────────────────────────────────────── */
.cg-expansion { position:relative; overflow:hidden; }
.cg-exp-bg {
  position:absolute; bottom:-150px; right:-150px;
  width:600px; height:600px; border-radius:50%; pointer-events:none;
  background:radial-gradient(circle,rgba(52,146,128,.07) 0%,transparent 70%);
}
.cg-exp-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.5rem; max-width:860px; margin-inline:auto;
}
.cg-exp-card {
  background:rgba(255,255,255,.025); border:1px solid var(--border);
  border-radius:var(--radius-xl); padding:2rem;
}
.cg-exp-card--future { border-color:rgba(52,146,128,.28); background:rgba(52,146,128,.04); }
.cg-exp-card h3 {
  font-family:var(--font-display); font-size:1rem; font-weight:600;
  color:var(--text-primary); margin-bottom:1.25rem;
}
.cg-exp-card > p { font-size:.88rem; color:var(--text-secondary); line-height:1.65; }
.cg-exp-total { margin-top:1.5rem; padding-top:1.5rem; border-top:1px solid var(--border); }
.cg-exp-total span {
  display:block; font-family:var(--font-display); font-size:2.25rem; font-weight:700;
  background:linear-gradient(90deg,#7C9FE0,#4DB8A0);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.cg-exp-total small { font-size:.76rem; color:var(--text-muted); margin-top:.25rem; display:block; }

/* ── Contact tags ─────────────────────────────────────────── */
.cg-contact-tags { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1.5rem; }
.cg-tag {
  font-size:.73rem; font-weight:500; padding:.3rem .75rem; border-radius:99px;
  background:rgba(255,255,255,.04); border:1px solid var(--border); color:var(--text-secondary);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width:1024px) {
  .cg-zones-layout   { grid-template-columns:1fr; }
  .cg-map-fig        { max-width:280px; margin-inline:auto; }
  .cg-price-cards    { grid-template-columns:1fr; }
  .cg-power-options  { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .cg-stat-sep       { display:none; }
  .cg-hero-stats     { gap:1.2rem; padding:1rem 1.25rem; }
  .cg-total-sep      { display:none; }
  .cg-totals-bar     { gap:1.25rem; }
  .cg-chips          { gap:.5rem; }
  .cg-loc-mw         { font-size:2.5rem; }
}
@media (max-width:480px) {
  .cg-hero-actions   { flex-direction:column; }
  .cg-hero-actions .btn { text-align:center; justify-content:center; }
  .cg-chips          { display:none; }
}

/* ── Logo fix ─────────────────────────────────────────────── */
.nav-logo { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; flex-shrink: 0; }
.nav-logo-img {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
  /* Remove any WordPress custom-logo wrapper weirdness */
  max-width: 36px;
}
/* WordPress wraps custom logos in <a><figure><img> — flatten it */
.nav-logo .custom-logo-link { display: contents; }
.nav-logo .custom-logo-link img {
  width: 36px !important; height: 36px !important;
  object-fit: contain; display: block;
}



/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — Clean minimal CoreWeave-style
   ═══════════════════════════════════════════════════════════ */

.hp-wrap {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hp-hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  background: #0A0F1A;
  overflow: hidden;
  padding-top: 68px;
  text-align: center;
}
.hp-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(72,85,128,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72,85,128,0.055) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hp-hero-grid::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 40%, transparent 20%, #0A0F1A 100%);
}
.hp-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(72,85,128,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 85% 20%, rgba(124,85,128,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 50% 85%, rgba(52,146,128,0.12) 0%, transparent 60%);
}
.hp-hero-inner {
  position: relative; z-index: 2;
  max-width: 820px; width: 100%;
  margin: 0 auto;
  padding: clamp(4rem,10vw,6rem) clamp(1.5rem,5vw,3rem);
}

/* eyebrow */
.hp-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: #349280;
  border: 1px solid rgba(52,146,128,0.28);
  background: rgba(52,146,128,0.07);
  padding: 0.42rem 1.1rem; border-radius: 99px;
  margin-bottom: 2.25rem;
}
.hp-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #349280; flex-shrink: 0;
  animation: hpDot 2.2s ease-in-out infinite;
}
@keyframes hpDot { 0%,100%{opacity:1;} 50%{opacity:0.25;} }

/* headline */
.hp-h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif !important;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.02 !important;
  color: #F0F2F8 !important;
  margin: 0 0 1.625rem !important;
}
.hp-h1-grad {
  background: linear-gradient(95deg, #7C9FE0 0%, #B07CC4 50%, #4DB8A0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hp-sub {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: #A8AFCC; max-width: 560px;
  margin: 0 auto 2.75rem;
  line-height: 1.74;
}

/* buttons */
.hp-ctas {
  display: flex; gap: 0.875rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 3.75rem;
}
.hp-btn-primary {
  display: inline-flex; align-items: center;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #485580 0%, #7C5580 50%, #349280 100%);
  color: #fff; font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem; font-weight: 600; border-radius: 8px;
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
}
.hp-btn-primary:hover { opacity: 0.84; transform: translateY(-1px); }
.hp-btn-ghost {
  display: inline-flex; align-items: center;
  padding: 0.875rem 1.75rem;
  background: rgba(255,255,255,0.05);
  color: #F0F2F8; font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem; font-weight: 500; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none; transition: background 0.18s, border-color 0.18s;
}
.hp-btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.22); }
.hp-btn-outline {
  display: inline-flex; align-items: center;
  padding: 0.75rem 1.5rem;
  background: transparent; color: #349280;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  border: 1px solid rgba(52,146,128,0.38); border-radius: 8px;
  text-decoration: none; transition: background 0.18s, border-color 0.18s;
}
.hp-btn-outline:hover { background: rgba(52,146,128,0.08); border-color: rgba(52,146,128,0.65); }

/* stat row */
.hp-stats-row {
  display: inline-flex; align-items: center; gap: 2.25rem; flex-wrap: wrap;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  border-radius: 12px; padding: 1.2rem 2.25rem;
}
.hp-stat { text-align: center; }
.hp-stat-n {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  background: linear-gradient(90deg, #7C9FE0, #4DB8A0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1;
}
.hp-stat-l { font-size: 0.67rem; color: #6B7499; letter-spacing: 0.06em; display: block; margin-top: 0.2rem; }
.hp-stat-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* ── Marquee ──────────────────────────────────────────────── */
.hp-marquee {
  width: 100%; overflow: hidden;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.85rem 0;
}
.hp-marquee-inner {
  display: flex; align-items: center; gap: 1.5rem;
  white-space: nowrap; width: max-content;
  animation: hpMarquee 30s linear infinite;
}
.hp-marquee-inner span {
  font-size: 0.75rem; font-weight: 600; color: #6B7499;
  letter-spacing: 0.07em; text-transform: uppercase; flex-shrink: 0;
}
.hp-dot { color: rgba(255,255,255,0.12) !important; }
@keyframes hpMarquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ── Sections ─────────────────────────────────────────────── */
.hp-section { padding: clamp(5rem,10vw,8rem) 0; }
.hp-section--dark { background: #0A0F1A; }
.hp-section--mid  { background: #0E1525; border-top: 1px solid rgba(255,255,255,0.06); }

.hp-label {
  font-size: 0.71rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #349280; margin-bottom: 0.875rem;
}
.hp-h2 {
  font-family: 'Space Grotesk', system-ui, sans-serif !important;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem) !important;
  font-weight: 700 !important; letter-spacing: -0.03em !important;
  color: #F0F2F8 !important; margin: 0 0 2.5rem !important;
  max-width: 560px; line-height: 1.15 !important;
}
.hp-body {
  font-size: 0.95rem; color: #A8AFCC; line-height: 1.8; margin-bottom: 2rem;
  max-width: 480px;
}

/* ── Service cards ────────────────────────────────────────── */
.hp-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; overflow: hidden;
  gap: 1px; background: rgba(255,255,255,0.07);
}
.hp-card {
  background: #0E1525; padding: 2rem 1.75rem;
  text-decoration: none; display: flex; flex-direction: column; gap: 0.875rem;
  transition: background 0.2s;
}
.hp-card:hover { background: #111e32; }
.hp-card--accent { background: #0d1e1e; }
.hp-card--accent:hover { background: #102422; }
.hp-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1rem;
  color: #349280;
}
.hp-card-arrow { font-size: 1rem; color: rgba(255,255,255,0.18); transition: color 0.2s; }
.hp-card:hover .hp-card-arrow { color: #349280; }
.hp-card-badge {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.22rem 0.65rem; border-radius: 99px;
  background: rgba(52,146,128,0.15); color: #6DCCB8;
  border: 1px solid rgba(52,146,128,0.3);
}
.hp-card h3 {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.1rem !important; font-weight: 600 !important;
  color: #F0F2F8 !important; margin: 0 !important;
}
.hp-card p { font-size: 0.875rem; color: #A8AFCC; line-height: 1.68; margin: 0; }

/* ── Big numbers ──────────────────────────────────────────── */
.hp-numbers {
  background: #0E1525;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: clamp(3.5rem,7vw,5.5rem) 0;
}
.hp-numbers-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; overflow: hidden;
}
.hp-number {
  background: #0E1525; padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.hp-number-n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem,4vw,3rem); font-weight: 700;
  letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, #7C9FE0, #4DB8A0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hp-number-l { font-size: 0.82rem; color: #6B7499; line-height: 1.4; }

/* ── Split layout ─────────────────────────────────────────── */
.hp-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.hp-split-left { display: flex; flex-direction: column; }
.hp-facts { display: flex; flex-direction: column; }
.hp-fact {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hp-fact:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.hp-fact > span { font-size: 1rem; flex-shrink: 0; width: 22px; text-align: center; margin-top: 0.1rem; }
.hp-fact strong { display: block; font-size: 0.88rem; font-weight: 600; color: #F0F2F8; margin-bottom: 0.2rem; }
.hp-fact p { font-size: 0.8rem; color: #6B7499; margin: 0; line-height: 1.5; }

/* ── Final CTA ────────────────────────────────────────────── */
.hp-cta-section {
  position: relative; overflow: hidden;
  background: #0A0F1A;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(5rem,10vw,8rem) 0;
  text-align: center;
}
.hp-cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(72,85,128,0.16) 0%, transparent 70%);
}
.hp-cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.hp-cta-inner h2 {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: clamp(2rem,5vw,3.5rem) !important;
  font-weight: 700 !important; letter-spacing: -0.04em !important;
  color: #F0F2F8 !important; margin: 0 !important; line-height: 1.1 !important;
}
.hp-cta-inner p { font-size: 1rem; color: #A8AFCC; max-width: 480px; line-height: 1.7; }
.hp-cta-btns { display: flex; gap: 0.875rem; flex-wrap: wrap; justify-content: center; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hp-cards       { grid-template-columns: 1fr; }
  .hp-numbers-grid{ grid-template-columns: 1fr 1fr; }
  .hp-split       { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 580px) {
  .hp-numbers-grid{ grid-template-columns: 1fr; }
  .hp-stat-sep    { display: none; }
  .hp-stats-row   { gap: 1.25rem; padding: 1rem 1.25rem; }
  .hp-ctas        { flex-direction: column; align-items: center; }
}

/* ── RTX 5090 Pricing Calculator ─────────────────────────── */
.rtx-calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin-inline: auto;
}
.rtx-calc-inputs {
  display: flex; flex-direction: column; gap: 2rem;
}
.rtx-calc-field label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--text-secondary); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.rtx-calc-input-wrap { position: relative; }
.rtx-calc-input-wrap input[type="number"] {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-md); border-radius: var(--radius-md);
  padding: 0.875rem 1rem; color: var(--text-primary);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}
.rtx-calc-input-wrap input[type="number"]::-webkit-outer-spin-button,
.rtx-calc-input-wrap input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }
.rtx-calc-input-wrap input:focus { outline: none; border-color: var(--teal); }
.rtx-calc-hint {
  display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 0.4rem;
}
.rtx-calc-slider {
  width: 100%; margin-top: 1rem;
  accent-color: var(--teal);
  cursor: pointer;
}

.rtx-calc-term-btns {
  display: flex; gap: 0.75rem;
}
.rtx-term-btn {
  flex: 1; padding: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.rtx-term-btn:hover { border-color: var(--teal); color: var(--text-primary); }
.rtx-term-btn--active {
  background: rgba(52,146,128,0.12);
  border-color: var(--teal);
  color: var(--teal);
}

.rtx-calc-result {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}
.rtx-calc-breakdown { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.rtx-calc-line {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem; color: var(--text-secondary);
}
.rtx-calc-line span:last-child { font-weight: 500; color: var(--text-primary); }
.rtx-calc-line--total {
  font-size: 1.1rem; font-weight: 700;
}
.rtx-calc-line--total span:last-child {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rtx-calc-divider {
  height: 1px; background: var(--border); margin: 0.25rem 0;
}
.rtx-calc-note {
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.6;
  border-top: 1px solid var(--border); padding-top: 1rem;
}

@media (max-width: 700px) {
  .rtx-calc { grid-template-columns: 1fr; }
}

/* ── Order estimate box ───────────────────────────────────── */
.ord-estimate {
  background: rgba(52,146,128,0.08);
  border: 1px solid rgba(52,146,128,0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.ord-estimate-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem;
}
.ord-estimate-price {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.4rem;
}
.ord-estimate-note {
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM 7 — Override default styling
   ═══════════════════════════════════════════════════════════ */

/* Wrapper */
.wpcf7 { width: 100%; }
.wpcf7-form { display: flex; flex-direction: column; gap: 1.25rem; }

/* Labels */
.wpcf7-form label {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.4rem !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #A8AFCC !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

/* All inputs, selects, textareas */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="url"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100% !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
  padding: 0.8rem 1rem !important;
  color: #F0F2F8 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: #349280 !important;
  box-shadow: 0 0 0 3px rgba(52,146,128,0.12) !important;
  background: rgba(255,255,255,0.06) !important;
}

/* Placeholder */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #3D4460 !important;
}

/* Select arrow */
.wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7499' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.875rem center !important;
  padding-right: 2.5rem !important;
  cursor: pointer !important;
}
.wpcf7-form select option {
  background: #131c30 !important;
  color: #F0F2F8 !important;
}

/* Textarea */
.wpcf7-form textarea {
  resize: vertical !important;
  min-height: 110px !important;
}

/* Acceptance / checkbox */
.wpcf7-form .wpcf7-acceptance {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
}
.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  margin-top: 0.2rem !important;
  accent-color: #349280 !important;
  cursor: pointer !important;
  border-radius: 3px !important;
  padding: 0 !important;
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 0.8rem !important;
  color: #6B7499 !important;
  line-height: 1.55 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
}

/* Submit button */
.wpcf7-form input[type="submit"],
.wpcf7-form .wpcf7-submit {
  display: block !important;
  width: 100% !important;
  padding: 1rem 2rem !important;
  background: linear-gradient(135deg, #485580, #7C5580, #349280) !important;
  color: #fff !important;
  font-family: 'Space Grotesk', system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: opacity 0.18s, transform 0.18s !important;
  letter-spacing: 0.01em !important;
  margin-top: 0.5rem !important;
  text-transform: none !important;
  -webkit-appearance: none !important;
}
.wpcf7-form input[type="submit"]:hover {
  opacity: 0.85 !important;
  transform: translateY(-1px) !important;
}
.wpcf7-form input[type="submit"]:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* Validation errors */
.wpcf7-form .wpcf7-not-valid {
  border-color: rgba(220,80,80,0.6) !important;
  box-shadow: 0 0 0 3px rgba(220,80,80,0.1) !important;
}
.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 0.72rem !important;
  color: #F08080 !important;
  margin-top: 0.25rem !important;
  display: block !important;
}

/* Success / error response */
.wpcf7-form .wpcf7-response-output {
  border-radius: 8px !important;
  padding: 1rem 1.25rem !important;
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
  border: none !important;
}
.wpcf7-form.sent .wpcf7-response-output {
  background: rgba(52,146,128,0.1) !important;
  border: 1px solid rgba(52,146,128,0.3) !important;
  color: #6DCCB8 !important;
}
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output {
  background: rgba(220,80,80,0.08) !important;
  border: 1px solid rgba(220,80,80,0.25) !important;
  color: #F08080 !important;
}

/* Spinner */
.wpcf7-form .wpcf7-spinner {
  display: none !important;
}

/* ── Catalogue item as button ─────────────────────────────── */
button.catalogue-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  text-align: center;
}
button.catalogue-item:hover {
  color: var(--teal);
  border-color: rgba(52,146,128,0.4);
  background: rgba(52,146,128,0.05);
}

/* ── Fix native dropdown option visibility ── */
select option {
  background: #131c30 !important;
  color: #F0F2F8 !important;
}
select option:disabled {
  color: #6B7499 !important;
}
