/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/inter-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/inter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* =============================================
   CSS Custom Properties
   ============================================= */
:root {
    --color-bg:         #0a0d14;
    --color-bg-alt:     #0f1320;
    --color-surface:    #141827;
    --color-surface-2:  #1c2235;
    --color-border:     rgba(255,255,255,0.07);

    --color-primary:    #00c2ff;
    --color-primary-dark: #0099cc;
    --color-accent:     #7c3aed;

    --color-text:       #e2e8f0;
    --color-text-muted: #8892a4;
    --color-text-faint: #4a5568;

    --gradient-primary: linear-gradient(135deg, #00c2ff 0%, #7c3aed 100%);

    --font-sans:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
    --shadow-md:  0 4px 20px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px rgba(0,194,255,0.12);

    --nav-height: 70px;

    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: #fff; }

ul { list-style: none; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { color: var(--color-text-muted); }

/* =============================================
   Layout
   ============================================= */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section--alt {
    background-color: var(--color-bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header p {
    margin-top: 0.75rem;
    font-size: 1.1rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

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

/* =============================================
   Gradient Text
   ============================================= */
.gradient-text {
    background: var(--gradient-primary);
    -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.6rem 1.4rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn--primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
}
.btn--primary:hover {
    opacity: 0.88;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,194,255,0.25);
}

.btn--outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.btn--outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn--ghost {
    background: var(--color-surface-2);
    border-color: var(--color-border);
    color: var(--color-text);
}
.btn--ghost:hover {
    background: var(--color-surface);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
}

.btn--sm { padding: 0.4rem 1rem; font-size: 0.875rem; }
.btn--lg { padding: 0.85rem 2rem; font-size: 1rem; }

/* =============================================
   Navigation
   ============================================= */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(10, 13, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-accent {
    /*color: var(--color-primary);*/
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
    list-style: none;
}

.nav-link {
    padding: 0.45rem 0.8rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
}

.nav-link:hover {
    color: #fff;
    background: var(--color-surface-2);
}

.nav-link--dropdown {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    min-width: 220px;
    box-shadow: var(--shadow-md);
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.9rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
}

.dropdown-menu a i {
    color: var(--color-primary);
    width: 16px;
    text-align: center;
}

.dropdown-menu a:hover {
    color: #fff;
    background: var(--color-surface-2);
}

.nav-dropdown:hover .dropdown-menu { display: block; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* =============================================
   Hero
   ============================================= */
.hero {
    position: relative;
    padding: 7rem 0 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 30%, rgba(0,194,255,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(124,58,237,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content { max-width: 680px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,194,255,0.1);
    border: 1px solid rgba(0,194,255,0.25);
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.25rem; }

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 120px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =============================================
   Features Grid
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    border-color: rgba(0,194,255,0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,194,255,0.1);
    border: 1px solid rgba(0,194,255,0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.feature-card h3 { margin-bottom: 0.5rem; }

/* =============================================
   CTA Section
   ============================================= */
.cta-section { padding: 5rem 0; }

.cta-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    background-image: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,194,255,0.06) 0%, transparent 70%);
}

.cta-card h2 { margin-bottom: 0.75rem; }
.cta-card p  { margin-bottom: 2rem; font-size: 1.05rem; }

/* =============================================
   Pricing Table
   ============================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: border-color var(--transition), transform var(--transition);
}

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

.pricing-card--featured {
    border-color: var(--color-primary);
    background: linear-gradient(160deg, rgba(0,194,255,0.07) 0%, var(--color-surface) 60%);
}

.pricing-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.pricing-name { font-size: 1rem; color: var(--color-text-muted); margin-bottom: 0.25rem; }

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-price .amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.pricing-price .currency {
    font-size: 1rem;
    color: var(--color-text-muted);
    align-self: flex-start;
    margin-top: 0.4rem;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.pricing-hourly {
    font-size: 0.8rem;
    color: var(--color-text-faint);
    margin-top: 0.35rem;
}

.pricing-card--featured .pricing-hourly {
    color: var(--color-text-muted);
}

.pricing-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}

.pricing-specs li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.pricing-specs li i {
    color: var(--color-primary);
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
}

/* =============================================
   Pricing Groups
   ============================================= */
.pricing-group { margin-bottom: 1rem; }

.pricing-group-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-group-title h2 {
    margin: 0.5rem 0 0.4rem;
    font-size: 1.75rem;
}

.pricing-group-title p {
    max-width: 480px;
    font-size: 0.9rem;
}

.pricing-group-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    min-width: 220px;
    flex-shrink: 0;
    align-self: flex-start;
}

.pg-spec {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.pg-spec span:first-child { color: var(--color-text-muted); }
.pg-spec span:last-child  { color: #fff; font-weight: 600; }

.pricing-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 4rem 0;
    position: relative;
}

.pricing-divider::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* CPU Badges */
.cpu-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.cpu-badge--ryzen {
    background: rgba(237, 92, 58, 0.12);
    border: 1px solid rgba(237, 92, 58, 0.3);
    color: #ed5c3a;
}

.cpu-badge--epyc {
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #a78bfa;
}

@media (max-width: 768px) {
    .pricing-group-header { flex-direction: column; }
    .pricing-group-specs  { width: 100%; }
}

/* =============================================
   Footer
   ============================================= */
#site-footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding-top: 4rem;
}

.footer-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
}

.footer-brand p {
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: all var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 1.25rem 1.5rem;
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-faint);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-brand .nav-logo img {
    width: 50%;
}

/* =============================================
   Back to Top
   ============================================= */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 500;
}

#back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

#back-to-top:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* =============================================
   Cookie Banner
   ============================================= */
#cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
    z-index: 900;
    white-space: nowrap;
}

#cookie-banner span { color: var(--color-text-muted); }
#cookie-banner a { color: var(--color-primary); }

#cookie-accept {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
}

/* =============================================
   Page Hero (inner pages)
   ============================================= */
.page-hero {
    padding: 5rem 0 3.5rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.page-hero h1 { margin-bottom: 0.75rem; }

.page-hero p {
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto;
}

/* =============================================
   Prose (legal/info pages)
   ============================================= */
.prose {
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.prose h2 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.prose h3 { font-size: 1.1rem; margin: 1.75rem 0 0.5rem; }

.prose p, .prose li {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.prose ul { list-style: disc; padding-left: 1.5rem; }

.prose a { color: var(--color-primary); }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
    user-select: none;
    gap: 1rem;
}

.faq-question i {
    color: var(--color-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    display: none;
    padding: 0 0 1.25rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* =============================================
   Network Page
   ============================================= */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.location-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.location-flag { font-size: 2.5rem; margin-bottom: 1rem; }
.location-card h3 { margin-bottom: 0.25rem; }
.location-card p  { font-size: 0.875rem; }

.location-specs {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-spec {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.location-spec span:first-child { color: var(--color-text-muted); }
.location-spec span:last-child  { color: #fff; font-weight: 500; }

/* =============================================
   Table
   ============================================= */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    background: var(--color-surface);
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--color-border);
}

.data-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.data-table tr:hover td { background: var(--color-surface); }

/* =============================================
   About Page
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.value-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: border-color var(--transition);
}

.value-card:hover { border-color: rgba(0,194,255,0.3); }
.value-card .feature-icon { margin-bottom: 1rem; }
.value-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.value-card p  { font-size: 0.875rem; }

/* =============================================
   Data Centre Card
   ============================================= */
.dc-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.dc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.dc-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.dc-header > div > p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.dc-badge-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.dc-badge i { color: var(--color-primary); }

.dc-specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 1.5rem;
}

.dc-spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.25rem;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.dc-spec-item:last-child { border-right: none; }

.dc-spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-faint);
    font-weight: 600;
}

.dc-spec-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

/* =============================================
   Latency Badges
   ============================================= */
.latency-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.latency--excellent {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.latency--good {
    background: rgba(0, 194, 255, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(0, 194, 255, 0.2);
}

.latency--fair {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

/* =============================================
   Live Traffic Graph
   ============================================= */
.traffic-graph-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.traffic-graph-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    gap: 1rem;
}

.traffic-graph-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: #4ade80;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.75); }
}

.traffic-graph-body {
    padding: 1.5rem;
    background: #000;
    text-align: center;
}

.traffic-graph-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

.traffic-graph-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.875rem 1.5rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.traffic-legend {
    display: inline-block;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    vertical-align: middle;
    margin-left: 0.35rem;
}

.traffic-legend--in  { background: #4ade80; }
.traffic-legend--out { background: var(--color-primary); }

.nav-links li {
    display: flex;
}

/* =============================================
   Responsive – Tablet (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        padding: 5rem 0 3.5rem;
    }
}

/* =============================================
   Responsive – Mobile (≤ 768px)
   ============================================= */
@media (max-width: 768px) {

    /* Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 0.25rem;
        overflow-y: auto;
        z-index: 999;
        margin-left: 0;
        min-height: 340px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .nav-dropdown { width: 100%; }

    .dropdown-menu {
        position: static;
        display: block;
        border: none;
        background: var(--color-surface);
        border-radius: var(--radius-md);
        padding: 0.5rem;
        margin-top: 0.25rem;
        box-shadow: none;
        min-width: unset;
    }

    /* Hero */
    .hero {
        padding: 3.5rem 0 2.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .stat-card {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: unset;
        padding: 1rem;
    }

    /* Sections */
    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Grids */
    .features-grid,
    .pricing-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* CTA */
    .cta-card {
        padding: 2.5rem 1.25rem;
    }

    /* DC Card */
    .dc-header {
        flex-direction: column;
    }

    .dc-specs {
        grid-template-columns: 1fr 1fr;
    }

    /* Table – horizontal scroll */
    .data-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: var(--radius-md);
        border: 1px solid var(--color-border);
    }

    /* Cookie banner */
    #cookie-banner {
        flex-direction: column;
        white-space: normal;
        text-align: center;
        width: calc(100% - 2rem);
        bottom: 1rem;
    }

    /* Traffic graph header */
    .traffic-graph-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .traffic-graph-footer {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

/* =============================================
   Responsive – Small Mobile (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
    html { font-size: 15px; }

    .container { padding: 0 1rem; }

    .stat-card {
        flex: 1 1 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .dc-specs {
        grid-template-columns: 1fr;
    }

    .dc-spec-item {
        border-right: none;
    }

    .pricing-group-specs {
        width: 100%;
    }

    .hero-badge {
        font-size: 0.78rem;
    }

    .btn--lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}