/* Dreamscape – NordVPN-inspired */
:root {
    --bg: #ffffff;
    --bg-elevated: #ffffff;
    --bg-card: #ffffff;
    --bg-subtle: #f4f4f5;
    --bg-muted: #ececef;
    --bg-dark: #1b1f23;
    --bg-dark-elevated: #24282c;
    --bg-dark-card: #2d3139;
    --bg-glass: rgba(255, 255, 255, 0.96);
    --bg-glass-dark: rgba(27, 31, 35, 0.92);
    --border: #e4e4e7;
    --border-dark: rgba(255, 255, 255, 0.1);
    --border-hover: #4687ff;
    --text: #1b1f23;
    --text-muted: #5c6370;
    --text-dim: #8b919a;
    --text-on-dark: #ffffff;
    --text-muted-on-dark: #a8b0bb;
    --primary: #4687ff;
    --primary-dark: #3a6fd9;
    --primary-light: #6ba0ff;
    --accent: #3dd68c;
    --accent-warm: #f97316;
    --accent-gold: #fbbf24;
    --gradient: linear-gradient(135deg, #4687ff 0%, #6ba0ff 100%);
    --gradient-cta: #4687ff;
    --gradient-warm: linear-gradient(135deg, #ea580c, #f97316);
    --gradient-subtle: linear-gradient(135deg, rgba(70, 135, 255, 0.08) 0%, rgba(61, 214, 140, 0.05) 100%);
    --gradient-hero-mesh:
        radial-gradient(ellipse 60% 50% at 80% 10%, rgba(70, 135, 255, 0.35), transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(70, 135, 255, 0.15), transparent 50%);
    --success: #3dd68c;
    --error: #ef4444;
    --warning: #f59e0b;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 2px 8px rgba(27, 31, 35, 0.06);
    --shadow-md: 0 8px 30px rgba(27, 31, 35, 0.1);
    --shadow-glow: 0 8px 32px rgba(70, 135, 255, 0.35);
    --shadow-glow-warm: 0 8px 32px rgba(70, 135, 255, 0.35);
    --nav-height: 64px;
    --promo-height: 40px;
    --container: 1140px;
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: none;
}

body:not(.page-home)::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 90% 0%, rgba(59, 130, 246, 0.06), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-warm);
    margin-bottom: 20px;
    padding: 6px 14px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 100px;
}

.eyebrow--live::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.section-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 48px;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn:hover { transform: scale(1.03); }
.btn:active { transform: scale(0.98); }

.btn--primary {
    background: var(--gradient-cta);
    color: #fff;
    box-shadow: var(--shadow-glow);
    border-radius: 8px;
}
.btn--primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 12px 36px rgba(70, 135, 255, 0.45);
}

.btn--secondary {
    background: var(--bg-subtle);
    border-color: var(--border);
    color: var(--text);
}
.btn--secondary:hover { background: var(--bg-muted); border-color: #cbd5e1; }

.hero--home .btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-on-dark);
}
.hero--home .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--text-muted);
}
.btn--ghost:hover { color: var(--primary); background: rgba(37, 99, 235, 0.06); }

.btn--white {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}
.btn--white:hover { background: var(--primary-dark); box-shadow: var(--shadow-glow); }

.btn--outline {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}
.btn--outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(59, 130, 246, 0.04); }
.btn--outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}
.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.55);
}

.btn--sm { padding: 8px 18px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; }

/* Promo bar (Nord-style) */
.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--promo-height);
    background: linear-gradient(90deg, #3a6fd9, #4687ff);
    color: #fff;
    display: flex;
    align-items: center;
}

.promo-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.promo-bar__badge {
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.promo-bar__text { margin: 0; }
.promo-bar__text strong { font-weight: 700; }

.promo-bar__link {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}
.promo-bar__link:hover { opacity: 0.9; }

.page-home .navbar { top: var(--promo-height); }

.has-promo .navbar { top: var(--promo-height); }
.has-promo .mobile-menu { padding-top: var(--promo-height); }

/* Inner page heroes – Nord dark */
.page-hero--nord {
    background: var(--bg-dark) !important;
    color: var(--text-on-dark);
    padding: calc(var(--nav-height) + var(--promo-height) + 56px) 0 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero--nord::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero-mesh);
    pointer-events: none;
}

.page-hero--nord .container { position: relative; z-index: 1; }

.page-hero--nord .page-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff !important;
    margin-bottom: 16px;
}

.page-hero--nord .page-hero__sub {
    font-size: 1.125rem;
    color: var(--text-muted-on-dark) !important;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero--left { text-align: left; }
.page-hero--left .page-hero__sub { margin: 0; text-align: left; }

.eyebrow--nord {
    color: var(--primary-light);
    background: rgba(70, 135, 255, 0.12);
    border-color: rgba(70, 135, 255, 0.25);
}

.auth-page {
    padding-top: calc(var(--nav-height) + var(--promo-height) + 40px);
    background: var(--bg-subtle);
    min-height: 100vh;
}

.pricing-card--popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(70, 135, 255, 0.06) 0%, var(--bg-card) 45%);
    box-shadow: var(--shadow-glow);
}

.pricing-card__badge--savings {
    background: var(--primary);
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(70, 135, 255, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(70, 135, 255, 0); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--border);
    box-shadow: var(--shadow-md);
}

/* Transparent nav only on homepage dark hero */
.page-home .navbar:not(.is-scrolled) {
    background: transparent;
    border-bottom-color: transparent;
}

.page-home .navbar:not(.is-scrolled) .navbar__brand,
.page-home .navbar:not(.is-scrolled) .navbar__link {
    color: rgba(255, 255, 255, 0.9);
}

.page-home .navbar:not(.is-scrolled) .navbar__link:hover,
.page-home .navbar:not(.is-scrolled) .navbar__link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.page-home .navbar:not(.is-scrolled) .btn--ghost {
    color: rgba(255, 255, 255, 0.85);
}
.page-home .navbar:not(.is-scrolled) .btn--ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.page-home .navbar:not(.is-scrolled) .navbar__toggle span {
    background: #fff;
}

/* Inner pages: solid navbar with dark readable links */
.has-promo:not(.page-home) .navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow);
}

.has-promo:not(.page-home) .navbar .navbar__brand {
    color: var(--text);
}

.has-promo:not(.page-home) .navbar .navbar__link {
    color: var(--text-muted);
}

.has-promo:not(.page-home) .navbar .navbar__link:hover,
.has-promo:not(.page-home) .navbar .navbar__link.is-active {
    color: var(--primary);
    background: rgba(70, 135, 255, 0.08);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.navbar__shield { width: 32px; height: 32px; }

.navbar__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__link {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.navbar__link:hover, .navbar__link.is-active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.06);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.navbar__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-menu.is-open .mobile-menu__overlay { opacity: 1; }

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 360px);
    height: 100%;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow-y: auto;
}

.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu__close {
    font-size: 2rem;
    line-height: 1;
    color: var(--text-muted);
    padding: 4px 8px;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu__links a {
    display: block;
    padding: 14px 16px;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: background var(--transition);
}

.mobile-menu__links a:hover { background: var(--bg-muted); color: var(--primary); }

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

/* Hero */
.hero {
    padding: calc(var(--nav-height) + 80px) 0 100px;
    position: relative;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero__content { max-width: 560px; }

.hero__title {
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    box-shadow: var(--shadow);
}

.chip svg { width: 16px; height: 16px; color: var(--accent); }

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.hero__globe {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    position: relative;
}

.globe-mesh {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.2), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.15), transparent 50%),
        linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.04));
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-glow), inset 0 0 60px rgba(37, 99, 235, 0.06);
    animation: globePulse 4s ease-in-out infinite;
}

.globe-ring {
    position: absolute;
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

.globe-ring--1 { inset: -20px; }
.globe-ring--2 { inset: -40px; animation-direction: reverse; animation-duration: 30s; }

.globe-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes globePulse {
    0%, 100% { box-shadow: var(--shadow-glow), inset 0 0 60px rgba(37, 99, 235, 0.06); }
    50% { box-shadow: 0 0 64px rgba(37, 99, 235, 0.22), inset 0 0 80px rgba(6, 182, 212, 0.1); }
}

@keyframes ringRotate { to { transform: rotate(360deg); } }

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

/* Page hero (inner pages) */
.page-hero {
    padding: calc(var(--nav-height) + 64px) 0 56px;
    text-align: center;
}

.page-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.page-hero__sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Trust bar */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-subtle);
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-bar__stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.trust-bar__stat span {
    font-size: 0.875rem;
    color: var(--text-dim);
}

/* Features grid */
.section { padding: 100px 0; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.feature-card__icon svg { width: 24px; height: 24px; }

.feature-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card__desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.feature-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-light);
    transition: color var(--transition);
}

.feature-card__link:hover { color: var(--accent); }

/* How it works */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.3;
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient-subtle);
    border: 2px solid rgba(37, 99, 235, 0.25);
    border-radius: 50%;
    color: var(--primary-light);
    position: relative;
    z-index: 1;
}

.step__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step__desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* Server locations */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.server-region {
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.server-region:hover {
    border-color: var(--border-hover);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
}

.server-region__dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 12px;
    box-shadow: 0 0 10px var(--accent);
}

.server-region__name {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.server-region__count {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.servers-cta { text-align: center; }

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform var(--transition), border-color var(--transition);
}

.pricing-card:hover { transform: translateY(-2px); }

.pricing-card--popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, var(--bg-card) 45%);
    box-shadow: var(--shadow-glow);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--gradient);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-card--popular .pricing-card__badge { animation: badgePulse 2.5s ease-in-out infinite; }

.pricing-card__badge--savings {
    background: linear-gradient(135deg, #1d4ed8, #06b6d4);
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
}

.pricing-card__plan {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.pricing-card__price {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.pricing-card__price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dim);
}

.pricing-card__note {
    font-size: 0.875rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.pricing-card__devices {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-card__features {
    margin-bottom: 28px;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pricing-card__features svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card__guarantee {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin-top: 16px;
}

.pricing-link {
    text-align: center;
    margin-top: 40px;
}

.pricing-link a {
    font-weight: 600;
    color: var(--primary-light);
}

.pricing-link a:hover { color: var(--accent); }

/* Comparison table */
.compare-table-wrap {
    overflow-x: auto;
    margin: 48px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.compare-table th,
.compare-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.compare-table thead th {
    background: var(--bg-subtle);
    font-weight: 700;
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table .check { color: var(--success); font-size: 1.25rem; }
.compare-table .dash { color: var(--text-dim); }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.testimonial-card__stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card__quote {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-card__author span {
    font-size: 0.875rem;
    color: var(--text-dim);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
}

.cta-banner__inner {
    text-align: center;
    padding: 72px 48px;
    background: linear-gradient(135deg, #0c1222 0%, #1e293b 50%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f97316' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-banner__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.cta-banner__lead {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0 auto 28px;
    line-height: 1.7;
    position: relative;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    position: relative;
}

.cta-banner__sub {
    margin-top: 20px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

/* Footer */
.footer {
    padding: 80px 0 0;
    border-top: 1px solid var(--border-dark);
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.footer__blurb {
    font-size: 0.9375rem;
    color: var(--text-muted-on-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    color: var(--text-muted-on-dark);
    transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.footer__social a:hover { color: #fff; background: rgba(249, 115, 22, 0.15); border-color: rgba(249, 115, 22, 0.3); }
.footer__social svg { width: 18px; height: 18px; }

.footer__heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer__links li { margin-bottom: 12px; }

.footer__links a {
    font-size: 0.9375rem;
    color: var(--text-muted-on-dark);
    transition: color var(--transition);
}

.footer__links a:hover { color: #fff; }

.footer__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--border-dark);
    font-size: 0.875rem;
    color: var(--text-muted-on-dark);
}

.footer__bar-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__bar-links a { color: var(--text-muted); }
.footer__bar-links a:hover { color: var(--text); }

/* Feature deep-dive */
.feature-dive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 64px 0;
}

.feature-dive--reverse .feature-dive__visual { order: 2; }
.feature-dive--reverse .feature-dive__content { order: 1; }

.feature-dive__visual {
    aspect-ratio: 4/3;
    background: var(--gradient-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-dive__visual-icon {
    width: 80px;
    height: 80px;
    color: var(--primary-light);
    opacity: 0.8;
}

.feature-dive__visual-icon svg { width: 100%; height: 100%; }

.feature-dive__tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 12px;
}

.feature-dive__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.feature-dive__text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.feature-dive__list {
    margin-top: 20px;
}

.feature-dive__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.feature-dive__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Server table */
.server-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.server-search {
    margin-bottom: 24px;
    max-width: 400px;
}

.server-search input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.9375rem;
    transition: border-color var(--transition);
}

.server-search input:focus {
    outline: none;
    border-color: var(--primary);
}

.server-search {
    position: relative;
}

.server-search::before {
    content: '🔍';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    opacity: 0.5;
}

.server-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.server-table th,
.server-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.server-table thead th {
    background: var(--bg-subtle);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.server-table tbody tr:hover { background: var(--bg-subtle); }
.server-table tbody tr:last-child td { border-bottom: none; }

.server-flag { font-size: 1.25rem; margin-right: 10px; }

/* Download */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.platform-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
}

.platform-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.platform-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    color: var(--text-muted);
}

.platform-card__icon svg { width: 100%; height: 100%; }

.platform-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.platform-card__version {
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.badge-soon {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Accordion */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }

.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: background var(--transition);
}

.accordion-trigger:hover { background: var(--bg-subtle); }

.accordion-trigger svg {
    width: 20px;
    height: 20px;
    color: var(--text-dim);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.accordion-item.is-open .accordion-trigger svg { transform: rotate(180deg); }

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-panel__inner {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category__label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-light);
    margin-bottom: 16px;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.value-card__title {
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
}

.team-card__photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-subtle);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-dim);
}

.team-card__name { font-weight: 700; margin-bottom: 4px; }
.team-card__role { font-size: 0.875rem; color: var(--text-dim); }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.9375rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-textarea { min-height: 140px; resize: vertical; }

.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error {
    font-size: 0.8125rem;
    color: var(--error);
    margin-top: 6px;
}

.form-success {
    padding: 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius);
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }

.info-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.info-card__item {
    margin-bottom: 24px;
}

.info-card__item:last-child { margin-bottom: 0; }

.info-card__label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.info-card__value {
    font-size: 1rem;
    color: var(--text);
}

.info-card__value a { color: var(--primary-light); }
.info-card__value a:hover { color: var(--accent); }

/* Auth cards */
.auth-page {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 40px) 24px 80px;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    padding: 40px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.auth-card__title {
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}

.auth-card__sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 28px;
}

.plan-summary {
    padding: 16px 20px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius);
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-summary__name { font-weight: 600; }
.plan-summary__price { color: var(--primary-light); font-weight: 700; }

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-checkbox input { margin-top: 3px; accent-color: var(--primary); }
.form-checkbox a { color: var(--primary-light); }

.auth-card__footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.auth-card__footer a { color: var(--primary-light); font-weight: 600; }

.forgot-link {
    display: block;
    text-align: right;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin: -12px 0 20px;
}

.forgot-link:hover { color: var(--accent); }

/* Legal prose */
.legal-page {
    padding: calc(var(--nav-height) + 48px) 0 80px;
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.legal-content .legal-date {
    color: var(--text-dim);
    font-size: 0.9375rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 40px 0 16px;
}

.legal-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 28px 0 12px;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

/* 404 */
.error-page {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 40px) 24px 80px;
}

.error-page__code {
    font-size: clamp(5rem, 15vw, 8rem);
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.error-page__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.error-page__text {
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.error-page__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.error-page__links a {
    font-size: 0.9375rem;
    color: var(--primary-light);
    font-weight: 500;
}

/* Enterprise row */
.enterprise-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 40px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-top: 48px;
}

.enterprise-row__text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.enterprise-row__text p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Help card */
.help-card {
    text-align: center;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-top: 48px;
}

.help-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.help-card p { color: var(--text-muted); margin-bottom: 20px; }

/* Mission */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mission__text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission__image {
    aspect-ratio: 4/3;
    background: var(--gradient-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.5;
}

/* Requirements */
.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.requirements-col h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.requirements-col li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 10px;
    padding-left: 0;
}

.requirements-col li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

/* Utilities */
.hidden { display: none !important; }

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero .fade-up:nth-child(1) { transition-delay: 0.1s; }
.hero .fade-up:nth-child(2) { transition-delay: 0.2s; }
.hero .fade-up:nth-child(3) { transition-delay: 0.3s; }
.hero .fade-up:nth-child(4) { transition-delay: 0.4s; }
.hero .fade-up:nth-child(5) { transition-delay: 0.5s; }
.hero__visual.fade-up { transition-delay: 0.35s; }

/* Homepage – mission (see editorial overrides below) */

.mission-block__text p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission-block__highlight {
    font-size: 1.125rem !important;
    font-weight: 600;
    color: var(--primary-light) !important;
    margin-top: 24px !important;
}

/* 4-column features */
.features-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Platform product suite */
.section--platform {
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.product-suite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.platform-product {
    padding: 36px 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.platform-product:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.platform-product--live {
    border-color: rgba(249, 115, 22, 0.35);
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.06) 0%, var(--bg-elevated) 50%);
}

.platform-product__badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.platform-product--live .platform-product__badge {
    background: var(--gradient);
    color: #fff;
}

.platform-product--soon .platform-product__badge {
    background: rgba(251, 191, 36, 0.15);
    color: var(--accent);
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.platform-product__name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.platform-product__tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.platform-product__detail {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Trust section */
.trust-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-stat {
    padding: 32px 24px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition);
}

.trust-stat:hover { border-color: var(--border-hover); }

.trust-stat__value {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6ba0ff, #4687ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.trust-stat__label {
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.4;
}

/* Footer extensions */
.footer__grid--5 {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
}

.footer__company {
    padding: 32px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    text-align: center;
}

.footer__company-name {
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.footer__company-meta,
.footer__company-contact {
    font-size: 0.875rem;
    color: var(--text-muted-on-dark);
    margin-bottom: 6px;
}

.footer__company-contact a {
    color: var(--accent-warm);
}
.footer__company-contact a:hover { color: #fff; }

.footer__payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 24px 0;
}

.payment-badge {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted-on-dark);
    letter-spacing: 0.03em;
}

.footer__bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
}

.footer__bar-tagline {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    padding: 16px 24px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.08);
}

.cookie-banner__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 0.875rem;
    color: var(--text-muted);
    flex: 1;
    min-width: 240px;
}

.cookie-banner__text a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* About page */
.page-hero--about {
    padding-bottom: 72px;
    text-align: left;
}

.page-hero--about .page-hero__title {
    max-width: 820px;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.12;
}

.page-hero--about .page-hero__sub {
    margin: 0;
    text-align: left;
    max-width: 720px;
}

.section--light {
    background: var(--bg-subtle);
    color: var(--text);
}

.section--light + .section--light {
    padding-top: 0;
}

.section-header--left {
    text-align: left;
    margin-bottom: 40px;
}

.section-heading--dark {
    color: var(--text);
}

.about-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-story__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
}

.about-story__lead {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: #1c1917;
    margin-bottom: 24px;
}

.about-story__text p {
    color: #57534e;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-story__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-info-card {
    padding: 28px 32px;
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
}

.about-info-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-info-card__text {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.6;
    color: #1c1917;
}

.about-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-principle-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.about-principle-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
}

.about-principle-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1c1917;
    margin-bottom: 10px;
    line-height: 1.4;
}

.about-principle-card__desc {
    font-size: 0.9375rem;
    color: #57534e;
    line-height: 1.7;
}

.about-company__header {
    margin-bottom: 32px;
}

.about-company__table {
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-company__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding: 20px 28px;
    border-bottom: 1px solid #e7e5e4;
}

.about-company__row:last-child {
    border-bottom: none;
}

.about-company__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #78716c;
}

.about-company__value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1c1917;
    margin: 0;
}

.about-company__value a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-company__value a:hover {
    color: var(--primary);
}

.page-about .section--light {
    padding: 80px 0;
}

.page-about .section--light.about-principles {
    padding-top: 48px;
}

/* Contact page */
.page-hero--contact {
    padding-bottom: 72px;
    text-align: left;
}

.page-hero--contact .page-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    max-width: 480px;
}

.page-hero--contact .page-hero__sub {
    text-align: left;
    margin: 0;
    max-width: 640px;
}

.contact-section {
    padding-top: 0;
    padding-bottom: 100px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
}

.contact-form-wrap {
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 8px 40px rgba(28, 25, 23, 0.06);
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-header__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1c1917;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.contact-form-header__sub {
    font-size: 0.9375rem;
    color: #57534e;
    line-height: 1.6;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label--light {
    color: #44403c;
    font-weight: 600;
}

.form-required {
    color: var(--primary);
}

.form-input--light,
.form-select.form-input--light,
.form-textarea.form-input--light {
    background: #fafaf9;
    border-color: #d6d3d1;
    color: #1c1917;
}

.form-input--light::placeholder,
.form-textarea.form-input--light::placeholder {
    color: #a8a29e;
}

.form-input--light:focus,
.form-select.form-input--light:focus,
.form-textarea.form-input--light:focus {
    background: #fff;
    border-color: var(--primary);
}

.form-checkbox--light {
    color: #57534e;
    margin: 8px 0 24px;
}

.form-checkbox--light a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-form-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: #78716c;
    text-align: center;
}

.form-success--light {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.25);
    color: #15803d;
}

.form-alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.form-alert--error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #b91c1c;
}

.contact-sidebar__heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1c1917;
    margin-bottom: 16px;
}

.contact-sidebar__block {
    margin-bottom: 28px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-channel {
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-channel:hover {
    border-color: rgba(37, 99, 235, 0.3);
    background: #f8fafc;
}

.contact-channel.is-active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.03));
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.contact-channel__title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1c1917;
    margin-bottom: 4px;
}

.contact-channel__desc {
    display: block;
    font-size: 0.8125rem;
    color: #78716c;
    line-height: 1.5;
}

.contact-company-card {
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: var(--radius-lg);
    padding: 28px;
}

.contact-company-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #1c1917;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e7e5e4;
}

.contact-company-card__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-company-card__item dt {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #78716c;
    margin-bottom: 4px;
}

.contact-company-card__item dd {
    font-size: 0.9375rem;
    color: #1c1917;
    margin: 0;
    line-height: 1.5;
}

.contact-company-card__item a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-company-card__item a:hover {
    color: var(--primary);
}

/* Homepage hero mockup components */
.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.hero-mockup__glow {
    position: absolute;
    inset: -25%;
    background: radial-gradient(circle at 50% 50%, rgba(70, 135, 255, 0.25), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-mockup__card {
    position: relative;
    z-index: 1;
    background: var(--bg-dark-elevated);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
}

.hero-mockup__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-mockup__bar-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.hero-mockup__dots { display: flex; gap: 6px; }

.hero-mockup__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.hero-mockup__dot--green { background: var(--success); box-shadow: 0 0 8px var(--success); }

.hero-mockup__body { padding: 28px 24px 32px; }

.hero-mockup__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(20, 184, 166, 0.08));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    margin-bottom: 20px;
}

.hero-mockup__toggle-info strong {
    display: block;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 2px;
}

.hero-mockup__toggle-info span {
    font-size: 0.8125rem;
    color: var(--text-muted-on-dark);
}

.hero-mockup__switch {
    width: 52px;
    height: 28px;
    background: var(--success);
    border-radius: 100px;
    position: relative;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.4);
}

.hero-mockup__switch::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
}

.hero-mockup__rows { display: flex; flex-direction: column; gap: 10px; }

.hero-mockup__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    font-size: 0.875rem;
}

.hero-mockup__row-label { color: var(--text-muted-on-dark); font-weight: 500; }
.hero-mockup__row-value { font-weight: 700; color: #fff; }
.hero-mockup__row-value--accent { color: var(--accent-gold); }

.hero-mockup__float {
    position: absolute;
    z-index: 2;
    padding: 12px 16px;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(12px);
}

.hero-mockup__float--tl { top: -16px; left: -32px; }
.hero-mockup__float--br { bottom: 32px; right: -36px; }

.hero-mockup__float-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 8px;
    color: var(--accent-warm);
}

.hero-mockup__float-icon--blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-light);
}

.hero-mockup__float-icon svg { width: 16px; height: 16px; }

/* Product showcase – NordVPN style */
.product-showcase {
    background: var(--bg-dark-elevated);
    border-top: 1px solid var(--border-dark);
    padding: 56px 0 72px;
    position: relative;
}

.product-showcase__header {
    text-align: center;
    margin-bottom: 48px;
}

.product-showcase__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-warm);
    margin-bottom: 12px;
}

.product-showcase__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.product-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-feature {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), background var(--transition);
}

.product-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(249, 115, 22, 0.25);
}

.product-feature__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    color: var(--accent-gold);
    margin-bottom: 18px;
}

.product-feature__icon svg { width: 22px; height: 22px; }

.product-feature__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.product-feature__desc {
    font-size: 0.875rem;
    color: var(--text-muted-on-dark);
    line-height: 1.6;
}

/* Trust strip */
.hero-trust {
    padding: 28px 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.hero-trust__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 48px;
}

.hero-trust__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
}

.hero-trust__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px 40px;
}

.hero-trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-trust__item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-warm);
    flex-shrink: 0;
}

/* Editorial mission */
.section--mission {
    background: #fff;
    border: none;
}

.mission-block {
    max-width: none;
    text-align: left;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 64px;
    align-items: start;
}

.mission-block__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    padding-top: 8px;
    border-top: 2px solid var(--accent-warm);
}

.mission-block__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text);
}

.mission-block__highlight {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--text) !important;
    border-left: 3px solid var(--accent-warm);
    padding-left: 20px;
    margin-top: 28px !important;
}

/* Dark trust band */
.section--trust {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.section--trust .section-heading { color: #fff; }
.section--trust .section-sub { color: var(--text-muted-on-dark); }
.section--trust .trust-intro { color: var(--text-muted-on-dark); }

.trust-stat {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.trust-stat:hover { border-color: rgba(70, 135, 255, 0.35); }

.trust-stat__label { color: var(--text-muted-on-dark); }

/* Enhanced cards */
.feature-card { box-shadow: var(--shadow); }
.feature-card:hover { box-shadow: var(--shadow-md); border-color: rgba(249, 115, 22, 0.2); }

.platform-product { box-shadow: var(--shadow); }

.page-hero:not(.page-hero--nord) {
    background: linear-gradient(180deg, var(--bg-subtle) 0%, #fff 100%);
}

/* ─── NordVPN-style homepage ─── */
.hero--nord,
.hero--home {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    padding: calc(var(--nav-height) + var(--promo-height) + 72px) 0 80px;
    position: relative;
    overflow: hidden;
}

.hero--nord::before,
.hero--home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero-mesh);
    pointer-events: none;
}

.hero--nord .hero__title,
.hero--home .hero__title {
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 20px;
}

.hero--nord .hero__title span,
.hero--home .hero__title span {
    color: var(--primary-light);
    background: none;
    -webkit-text-fill-color: unset;
}

.hero--nord .hero__sub,
.hero--home .hero__sub {
    font-size: 1.125rem;
    color: var(--text-muted-on-dark);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero__guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted-on-dark);
    margin-top: 16px;
}

.hero__guarantee svg { color: var(--accent); flex-shrink: 0; }

.hero-mockup--nord .hero-mockup__card {
    background: var(--bg-dark-elevated);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.hero-mockup__bar-status {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}

.hero-mockup__map {
    height: 140px;
    background:
        radial-gradient(circle at 50% 50%, rgba(70, 135, 255, 0.12), transparent 70%),
        linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
    position: relative;
    margin-top: 8px;
}

.hero-mockup__map-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(70, 135, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hero-mockup__map-dot--active {
    width: 12px;
    height: 12px;
    background: var(--accent);
    box-shadow: 0 0 16px var(--accent);
}

/* Awards bar */
.awards-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}

.awards-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.awards-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    justify-content: center;
    text-align: center;
}

.awards-bar__item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* Nord pillars */
.section--light { background: var(--bg-subtle); }

.nord-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nord-pillar {
    padding: 36px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.nord-pillar:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(70, 135, 255, 0.25);
}

.nord-pillar__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(70, 135, 255, 0.1);
    border-radius: 12px;
    color: var(--primary);
    margin-bottom: 20px;
}

.nord-pillar__icon svg { width: 26px; height: 26px; }

.nord-pillar__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.nord-pillar__desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Feature dives */
.nord-dive { padding: 88px 0; }

.nord-dive:nth-child(even) { background: var(--bg-subtle); }

.nord-dive__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.nord-dive--reverse .nord-dive__visual { order: 2; }
.nord-dive--reverse .nord-dive__content { order: 1; }

.nord-dive__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.nord-dive__graphic {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border: 1px solid var(--border);
}

.nord-dive__graphic--shield svg {
    width: 120px;
    height: 120px;
    color: var(--primary);
    opacity: 0.85;
}

.nord-globe {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(70, 135, 255, 0.3), transparent 55%),
        radial-gradient(circle at 65% 65%, rgba(61, 214, 140, 0.15), transparent 50%);
    border: 2px solid rgba(70, 135, 255, 0.25);
    box-shadow: 0 0 60px rgba(70, 135, 255, 0.2);
}

.nord-dive__graphic--devices {
    flex-wrap: wrap;
    gap: 12px;
    padding: 32px;
    aspect-ratio: unset;
    min-height: 200px;
}

.nord-device-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.nord-dive__tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}

.nord-dive__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.nord-dive__text {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.nord-dive__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 500;
}

.nord-dive__list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* Dark stats section */
.section--nord-dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.section-heading--light { color: #fff; }
.section-sub--light { color: var(--text-muted-on-dark); }

.trust-stats--nord { margin-bottom: 40px; }

.nord-stats-cta { text-align: center; }

/* Devices grid */
.nord-devices {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.nord-device-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.nord-device-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.nord-device-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(70, 135, 255, 0.1);
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.nord-device-card__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Pricing teaser */
.nord-pricing-teaser {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.nord-pricing-teaser__inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: center;
}

.nord-pricing-teaser__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.nord-pricing-teaser__desc {
    color: var(--text-muted-on-dark);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.nord-pricing-teaser__perks {
    margin-bottom: 28px;
}

.nord-pricing-teaser__perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-muted-on-dark);
    margin-bottom: 8px;
}

.nord-pricing-teaser__perks li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

.nord-pricing-teaser__card {
    padding: 36px 28px;
    background: var(--bg-dark-elevated);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.nord-pricing-teaser__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: var(--primary);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.nord-pricing-teaser__plan {
    font-size: 0.9375rem;
    color: var(--text-muted-on-dark);
    margin-bottom: 8px;
    margin-top: 8px;
}

.nord-pricing-teaser__price {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.nord-pricing-teaser__price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted-on-dark);
}

.nord-pricing-teaser__save {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; gap: 48px; }
    .hero__visual { min-height: 320px; order: -1; }
    .hero__content { max-width: 100%; text-align: center; margin: 0 auto; }
    .hero__ctas, .hero__chips { justify-content: center; }
    .features-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .product-suite-grid { grid-template-columns: 1fr; }
    .trust-stats { grid-template-columns: repeat(2, 1fr); }
    .footer__grid--5 { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .servers-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .feature-dive { grid-template-columns: 1fr; gap: 32px; }
    .feature-dive--reverse .feature-dive__visual,
    .feature-dive--reverse .feature-dive__content { order: unset; }
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-story__grid { grid-template-columns: 1fr; gap: 40px; }
    .about-principles__grid { grid-template-columns: repeat(2, 1fr); }
    .about-company__row { grid-template-columns: 1fr; gap: 6px; }
    .mission-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .product-showcase__grid { grid-template-columns: 1fr; }
    .mission-block { grid-template-columns: 1fr; gap: 24px; }
    .nord-pillars__grid { grid-template-columns: 1fr; }
    .nord-dive__grid { grid-template-columns: 1fr; gap: 40px; }
    .nord-dive--reverse .nord-dive__visual,
    .nord-dive--reverse .nord-dive__content { order: unset; }
    .nord-devices { grid-template-columns: repeat(3, 1fr); }
    .nord-pricing-teaser__inner { grid-template-columns: 1fr; }
    .awards-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar__links, .navbar__actions { display: none; }
    .navbar__toggle { display: flex; }
    .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 40px; }
    .steps::before { display: none; }
    .servers-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; }
    .requirements-grid { grid-template-columns: 1fr; }
    .enterprise-row { flex-direction: column; text-align: center; padding: 32px 24px; }
    .cta-banner__inner { padding: 48px 24px; }
    .features-grid--4 { grid-template-columns: 1fr; }
    .trust-stats { grid-template-columns: 1fr; }
    .footer__grid--5 { grid-template-columns: 1fr; }
    .cookie-banner__inner { flex-direction: column; text-align: center; }
    .about-principles__grid { grid-template-columns: 1fr; }
    .page-hero--about { text-align: center; }
    .page-hero--about .page-hero__sub { text-align: center; margin: 0 auto; }
    .page-hero--contact { text-align: center; }
    .page-hero--contact .page-hero__sub { text-align: center; margin: 0 auto; }
    .hero-mockup__float--tl,
    .hero-mockup__float--br { display: none; }
    .hero-trust__inner { flex-direction: column; gap: 20px; }
    .section { padding: 72px 0; }
    .awards-bar__grid { grid-template-columns: 1fr; }
    .nord-devices { grid-template-columns: repeat(2, 1fr); }
    .promo-bar__inner { font-size: 0.8125rem; gap: 8px; }
}

@media (max-width: 480px) {
    .trust-bar__grid { grid-template-columns: 1fr; }
    .servers-grid { grid-template-columns: 1fr; }
    .platform-grid { grid-template-columns: 1fr; }
    .hero__ctas { flex-direction: column; }
    .cta-banner__actions { flex-direction: column; }
    .cta-banner__actions .btn { width: 100%; }
}
