:root {
    --bg-primary: #030712;
    --bg-secondary: #0a0f1a;
    --bg-tertiary: #111827;
    --bg-card: rgba(15, 23, 42, 0.6);
    --accent-gold: #F5A623;
    --accent-gold-light: #FFC857;
    --accent-gold-dim: rgba(245, 166, 35, 0.15);
    --accent-gold-glow: rgba(245, 166, 35, 0.3);
    --accent-green: #22c55e;
    --accent-blue: #3b82f6;
    --accent-blue-dim: rgba(59, 130, 246, 0.15);
    --accent-purple: #a855f7;
    --accent-purple-dim: rgba(168, 85, 247, 0.15);
    --accent-red: #ef4444;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-subtle: rgba(148, 163, 184, 0.1);
    --gradient-primary: linear-gradient(135deg, #F5A623 0%, #FFC857 50%, #F5A623 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-grid {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(245, 166, 35, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 166, 35, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none; z-index: 0;
}

.bg-glow {
    position: fixed; top: -50%; left: -50%; width: 200%; height: 200%;
    background: var(--gradient-glow);
    will-change: transform;
    animation: rotateGlow 40s linear infinite;
    pointer-events: none; z-index: 0;
}

@keyframes rotateGlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

nav {
    position: fixed; top: 0; left: 0; width: 100%; padding: 1.25rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-subtle);
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 42px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--text-secondary); text-decoration: none; font-weight: 500;
    font-size: 0.95rem; transition: color 0.3s ease; position: relative;
    white-space: nowrap; display: flex; align-items: center; padding: 0.5rem 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0;
    height: 2px; background: var(--gradient-primary); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--accent-gold); }
.nav-links a:hover::after { width: 100%; }

.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-links .dropdown > a svg.dropdown-arrow {
    width: 14px; height: 14px; transition: transform 0.3s ease;
}
.nav-links .dropdown:hover > a svg.dropdown-arrow { transform: rotate(180deg); }
.nav-links .dropdown-menu {
    display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: rgba(3, 7, 18, 0.98); backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle); border-radius: 12px;
    padding: 0.6rem; min-width: 240px; z-index: 1000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.nav-links .dropdown-menu::before {
    content: ''; position: absolute; top: -0.75rem; left: 0; right: 0; height: 0.75rem;
}
.nav-links .dropdown:hover .dropdown-menu { display: flex; flex-direction: column; }
.nav-links .dropdown-menu a {
    padding: 0.7rem 1.15rem; border-radius: 8px; font-size: 0.93rem;
    white-space: nowrap;
}
.nav-links .dropdown-menu a::after { display: none; }
.nav-links .dropdown-menu a:hover { background: var(--bg-card); }

/* Mega menu for Industries */
.nav-links .dropdown.mega .dropdown-menu {
    min-width: 720px; left: 50%; transform: translateX(-50%);
    padding: 1.25rem 1.5rem; display: none;
}
.nav-links .dropdown.mega:hover .dropdown-menu {
    display: block;
}
.mega-menu-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.25rem 2rem;
}
.mega-menu-grid .mega-col-title {
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--accent-gold); padding: 0.5rem 0.85rem 0.35rem; margin-bottom: 0;
    grid-column: span 1; pointer-events: none;
}
.mega-menu-grid a {
    padding: 0.55rem 0.85rem; border-radius: 6px; font-size: 0.9rem;
    white-space: nowrap; display: block; color: var(--text-secondary); text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.mega-menu-grid a:hover { background: var(--bg-card); color: var(--text-primary); }

/* 4-column mega menu for Products */
.nav-links .dropdown.mega-4 .dropdown-menu {
    min-width: 960px; left: 50%; transform: translateX(-50%);
    padding: 1.25rem 1.5rem; display: none;
}
.nav-links .dropdown.mega-4:hover .dropdown-menu { display: block; }
.mega-menu-grid-4 {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.25rem 2rem;
}
.mega-menu-grid-4 .mega-col-title {
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--accent-gold); padding: 0.5rem 0.85rem 0.35rem; margin-bottom: 0;
    pointer-events: none;
}
.mega-menu-grid-4 a {
    padding: 0.55rem 0.85rem; border-radius: 6px; font-size: 0.9rem;
    white-space: nowrap; display: block; color: var(--text-secondary); text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.mega-menu-grid-4 a:hover { background: var(--bg-card); color: var(--text-primary); }

/* Mobile menu section divider */
.mobile-menu-divider { height: 1px; background: var(--border-subtle); margin: 0.5rem 0; }

@media (max-width: 1200px) {
    .nav-links .dropdown.mega-4 .dropdown-menu { min-width: 720px; }
    .mega-menu-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .nav-links .dropdown.mega .dropdown-menu { min-width: 540px; }
    .mega-menu-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links .dropdown.mega-4 .dropdown-menu { min-width: 540px; }
    .mega-menu-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Cost-Benefit Analysis section for industry pages */
.cba-section { position: relative; z-index: 1; padding: 6rem 3rem; background: var(--bg-secondary); }
.cba-inner { max-width: 1200px; margin: 0 auto; }
.cba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
.cba-cost-card, .cba-gain-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 20px;
    padding: 2.5rem; backdrop-filter: blur(10px); position: relative; overflow: hidden;
}
.cba-cost-card { border-color: rgba(239, 68, 68, 0.2); }
.cba-cost-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #ef4444, #f87171);
}
.cba-gain-card { border-color: rgba(34, 197, 94, 0.2); }
.cba-gain-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #22c55e, #4ade80);
}
.cba-card-label {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.cba-cost-card .cba-card-label { color: var(--accent-red); }
.cba-gain-card .cba-card-label { color: var(--accent-green); }
.cba-card-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.cba-card-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; }
.cba-metric {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.85rem 0; border-bottom: 1px solid var(--border-subtle);
}
.cba-metric:last-child { border-bottom: none; }
.cba-metric-label { font-size: 0.9rem; color: var(--text-secondary); }
.cba-metric-value {
    font-family: 'Space Mono', monospace; font-size: 1rem; font-weight: 700;
}
.cba-cost-card .cba-metric-value { color: #f87171; }
.cba-gain-card .cba-metric-value { color: #4ade80; }
.cba-bottom {
    margin-top: 3rem; text-align: center; padding: 2rem;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: 16px; backdrop-filter: blur(10px);
}
.cba-bottom-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.cba-bottom-value {
    font-family: 'Space Mono', monospace; font-size: 2.5rem; font-weight: 700;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cba-bottom-desc { font-size: 0.9rem; color: var(--text-secondary); margin-top: 0.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
@media (max-width: 768px) {
    .cba-section { padding: 3rem 1.5rem; }
    .cba-grid { grid-template-columns: 1fr; }
    .cba-bottom-value { font-size: 1.75rem; }
}

/* Starlink Connectivity section */
.starlink-section { position: relative; z-index: 1; padding: 5rem 3rem; background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(3, 7, 18, 0.98)); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.starlink-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.starlink-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; color: var(--accent-blue); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.starlink-title { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
.starlink-title span { background: linear-gradient(135deg, #3b82f6, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.starlink-desc { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 2rem; }
.starlink-features { display: flex; flex-direction: column; gap: 1rem; }
.starlink-feature { display: flex; align-items: flex-start; gap: 0.75rem; }
.starlink-feature-icon { width: 24px; height: 24px; border-radius: 6px; background: rgba(59, 130, 246, 0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.starlink-feature-icon svg { width: 14px; height: 14px; color: var(--accent-blue); }
.starlink-feature-text { font-size: 0.95rem; color: var(--text-secondary); }
.starlink-feature-text strong { color: var(--text-primary); }
.starlink-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.starlink-stat { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 1.75rem; text-align: center; backdrop-filter: blur(10px); }
.starlink-stat-value { font-family: 'Space Mono', monospace; font-size: 1.75rem; font-weight: 700; background: linear-gradient(135deg, #3b82f6, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.25rem; }
.starlink-stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 1024px) { .starlink-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 768px) { .starlink-section { padding: 3rem 1.5rem; } .starlink-title { font-size: 1.5rem; } .starlink-stats { grid-template-columns: 1fr 1fr; } }

.mobile-menu .mobile-dropdown-title {
    color: var(--accent-gold); font-weight: 600; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.1em; padding: 0.75rem 1rem 0.2rem;
}

.nav-cta { display: flex; gap: 1rem; align-items: center; }

.mobile-menu-btn {
    display: none; background: none; border: none; color: var(--text-secondary);
    cursor: pointer; padding: 0.5rem; margin-left: 0.5rem;
}
.mobile-menu-btn:hover { color: var(--accent-gold); }

.mobile-menu {
    display: none; position: fixed; top: 80px; left: 0; right: 0;
    bottom: 0; overflow-y: auto; -webkit-overflow-scrolling: touch;
    background: rgba(3, 7, 18, 0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle); padding: 1rem;
    flex-direction: column; gap: 0.25rem; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: var(--text-secondary); text-decoration: none; padding: 0.6rem 1rem;
    border-radius: 8px; transition: all 0.2s ease; font-size: 0.9rem;
}
.mobile-menu a:hover { background: var(--bg-card); color: var(--accent-gold); }

.btn {
    padding: 0.8rem 1.75rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-ghost {
    background: transparent; border: 1px solid var(--border-subtle); color: var(--text-secondary);
}
.btn-ghost:hover {
    background: var(--bg-card); color: var(--text-primary); border-color: var(--accent-gold);
}
.btn-primary {
    background: var(--gradient-primary); border: none; color: var(--bg-primary); font-weight: 700;
}
.btn-primary:hover {
    transform: translateY(-2px); box-shadow: 0 10px 40px var(--accent-gold-glow);
}

.hero {
    position: relative; min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; padding: 8rem 3rem 4rem; z-index: 1;
}
.hero-content { max-width: 900px; margin: 0 auto; text-align: center; }

.hero-badges { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem;
    background: var(--accent-gold-dim); border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 100px; font-size: 0.85rem; color: var(--accent-gold);
    animation: fadeInUp 0.8s ease forwards;
}
.hero-badge-green {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--accent-green);
}
.hero-badge-purple {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
    color: var(--accent-purple);
}

.pulse-dot {
    width: 8px; height: 8px; background: var(--accent-green); border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 800; line-height: 1.05;
    margin-bottom: 1.5rem; letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease 0.1s forwards; opacity: 0;
}
.hero h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem; color: var(--text-secondary); max-width: 600px;
    margin: 0 auto 2.5rem; line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0;
}

.hero-cta {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    margin-bottom: 4rem; animation: fadeInUp 0.8s ease 0.3s forwards; opacity: 0;
}
.btn-large { padding: 1rem 2rem; font-size: 1rem; }

.stats-strip {
    display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
    padding-top: 3rem; border-top: 1px solid var(--border-subtle);
    animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0;
}
.stat-item { text-align: center; }
.stat-value {
    font-family: 'Space Mono', monospace; font-size: 2.5rem; font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

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

.trust-section {
    position: relative; padding: 4rem 3rem; z-index: 1;
    border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}
.trust-content {
    max-width: 1200px; margin: 0 auto; display: flex; justify-content: center;
    align-items: center; gap: 4rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 1rem; color: var(--text-secondary); }
.trust-icon {
    width: 48px; height: 48px; background: var(--accent-gold-dim);
    border: 1px solid rgba(245, 166, 35, 0.2); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: var(--accent-gold);
}
.trust-text { font-size: 0.9rem; line-height: 1.4; }
.trust-text strong { color: var(--text-primary); display: block; }

/* Awards Bar - HostAdvice recognition badges */
.awards-bar {
    position: relative; z-index: 1; padding: 4rem 3rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
}
.awards-bar-inner {
    max-width: 1200px; margin: 0 auto; text-align: center;
}
.awards-bar-label {
    font-family: 'Space Mono', monospace; font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--text-muted); margin-bottom: 2rem;
}
.awards-grid {
    display: flex; justify-content: center; align-items: center;
    gap: 3rem; flex-wrap: wrap;
}
.award-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
    text-decoration: none; transition: transform 0.3s ease;
}
.award-item:hover { transform: translateY(-4px); }
.award-badge {
    width: 100px; height: 100px; border-radius: 50%;
    border: 2px solid rgba(245, 166, 35, 0.2);
    background: rgba(245, 166, 35, 0.04);
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.award-badge img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.award-item:hover .award-badge {
    border-color: rgba(245, 166, 35, 0.5);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.15);
}
.award-text {
    font-size: 0.78rem; font-weight: 600; color: var(--text-secondary);
    text-align: center; line-height: 1.35; max-width: 120px;
}
.award-text span {
    display: block; font-family: 'Space Mono', monospace;
    font-size: 0.65rem; color: var(--text-muted);
    margin-top: 0.15rem;
}
@media (max-width: 768px) {
    .awards-bar { padding: 3rem 1.5rem; }
    .awards-grid { gap: 2rem; }
    .award-text { font-size: 0.72rem; }
}
@media (max-width: 480px) {
    .awards-bar { padding: 2.5rem 1rem; }
    .awards-grid { gap: 1.5rem; }
}

.pricing-section { position: relative; padding: 8rem 3rem; z-index: 1; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-label {
    display: inline-block; font-size: 0.85rem; font-weight: 600; color: var(--accent-gold);
    text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1rem;
}
.section-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.02em; }
.section-subtitle { color: var(--text-secondary); font-size: 1.1rem; }

.billing-cycle-select {
    text-align: center; margin: 0 auto 2.5rem; max-width: 800px;
}
.billing-cycle-label {
    font-size: 0.75rem; color: var(--text-muted); opacity: 0.7;
    display: block; margin-bottom: 0.6rem; text-transform: uppercase;
    letter-spacing: 0.05em;
}
.billing-cycle-options {
    display: inline-flex; flex-wrap: wrap; gap: 0.35rem;
    background: rgba(255,255,255,0.02); border-radius: 10px;
    padding: 0.3rem; border: 1px solid var(--border-subtle);
    justify-content: center;
}
.billing-cycle-option {
    display: flex; align-items: center; justify-content: center;
    padding: 0.5rem 1rem; background: transparent;
    border: 1px solid transparent; border-radius: 8px;
    font-size: 0.8rem; color: var(--text-muted); cursor: pointer;
    transition: all 0.2s ease; white-space: nowrap;
}
.billing-cycle-option:hover { background: rgba(255,255,255,0.04); color: var(--text-secondary); }
.billing-cycle-option.selected {
    border-color: var(--accent-gold); color: var(--text-primary);
    background: rgba(245,166,35,0.1); font-weight: 600;
}
.billing-cycle-option input { display: none; }
.billing-cycle-option span { pointer-events: none; display: flex; align-items: center; gap: 0.35rem; }
.billing-discount {
    font-style: normal; font-size: 0.65rem; font-weight: 700;
    color: var(--accent-green); background: rgba(34,197,94,0.1);
    padding: 0.1rem 0.35rem; border-radius: 4px;
}

.effective-monthly {
    font-size: 0.75rem; color: var(--accent-green); margin-top: 0.4rem;
    font-weight: 500;
}

.pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem; max-width: 1500px; margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: 20px; padding: 2rem; position: relative; overflow: hidden;
    transition: all 0.4s ease; backdrop-filter: blur(10px);
}
.pricing-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary); opacity: 0; transition: opacity 0.4s ease;
}
.pricing-card:hover { border-color: rgba(245, 166, 35, 0.3); box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4); }
.pricing-card:hover::before { opacity: 1; }

.pricing-card.popular {
    border-color: var(--accent-gold);
    background: linear-gradient(180deg, rgba(245, 166, 35, 0.08) 0%, var(--bg-card) 100%);
}
.pricing-card.popular::before { opacity: 1; }

.popular-badge {
    position: absolute; top: 1.5rem; right: 1.5rem; background: var(--gradient-primary);
    color: var(--bg-primary); font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; padding: 0.35rem 0.75rem; border-radius: 100px;
}

.plan-header { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-subtle); }
.plan-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.plan-desc { font-size: 0.85rem; color: var(--text-muted); }

.plan-price {
    margin-bottom: 1.5rem; text-align: center; padding: 1.5rem;
    background: rgba(245, 166, 35, 0.05); border-radius: 12px;
    border: 1px solid rgba(245, 166, 35, 0.1);
}
.price-specs { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 0.5rem; opacity: 0.7; }
.price-value {
    font-family: 'Space Mono', monospace; font-size: 2.75rem; font-weight: 700;
    color: var(--text-primary);
}
.price-currency { font-size: 1.25rem; vertical-align: top; color: var(--accent-gold); }
.price-period { font-size: 1rem; color: var(--text-muted); }

.resource-config { margin-bottom: 0.75rem; }

.resource-details { padding: 0.75rem 0 0; }

.resource-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.5rem 0;
}
.resource-header { display: none; }
.resource-label { font-size: 0.8rem; color: var(--text-muted); opacity: 0.7; min-width: 60px; }
.resource-value {
    font-family: 'Space Mono', monospace; font-size: 0.85rem;
    color: var(--text-secondary); min-width: 55px; text-align: center;
}

.resource-controls { display: flex; align-items: center; gap: 0.4rem; }
.resource-btn {
    width: 34px; height: 34px; border-radius: 5px; border: none;
    background: rgba(255,255,255,0.03); color: var(--text-muted);
    font-size: 1rem; cursor: pointer; transition: all 0.15s ease;
    display: flex; align-items: center; justify-content: center; opacity: 0.5;
}
.resource-btn:hover:not(:disabled) { opacity: 1; background: rgba(255,255,255,0.06); }
.resource-btn:disabled { opacity: 0.1; cursor: not-allowed; }

.resource-slider { display: none; }
.resource-range { display: none; }

.location-select { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.05); }
.location-select-label { font-size: 0.65rem; color: var(--text-muted); opacity: 0.7; display: block; margin-bottom: 0.4rem; }
.location-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem; }
.location-option {
    display: flex; align-items: center; justify-content: center;
    padding: 0.35rem 0.5rem; background: rgba(255,255,255,0.02);
    border: 1px solid transparent; border-radius: 4px;
    font-size: 0.65rem; color: var(--text-muted); cursor: pointer;
    transition: all 0.15s ease;
}
.location-option:hover { background: rgba(255,255,255,0.04); }
.location-option.selected { border-color: var(--accent-gold); color: var(--text-secondary); background: rgba(245,166,35,0.05); }
.location-option input { display: none; }
.location-option span { pointer-events: none; }

.os-select { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.05); }
.os-select-label { font-size: 0.65rem; color: var(--text-muted); opacity: 0.7; display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.4rem; }
.os-select-label svg.os-label-icon { width: 14px; height: 14px; flex-shrink: 0; }
.os-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem; }
.os-option {
    display: flex; align-items: center; justify-content: center; gap: 0.3rem;
    padding: 0.35rem 0.5rem; background: rgba(255,255,255,0.02);
    border: 1px solid transparent; border-radius: 4px;
    font-size: 0.65rem; color: var(--text-muted); cursor: pointer;
    transition: all 0.15s ease;
}
.os-option svg.os-icon { width: 12px; height: 12px; flex-shrink: 0; pointer-events: none; }
.os-option:hover { background: rgba(255,255,255,0.04); }
.os-option.selected { border-color: var(--accent-gold); color: var(--text-secondary); background: rgba(245,166,35,0.05); }
.os-option input { display: none; }
.os-option span { pointer-events: none; }
.os-options-older { display: none; margin-top: 0.3rem; grid-template-columns: 1fr 1fr; gap: 0.3rem; }
.os-select.expanded .os-options-older { display: grid; }
.os-toggle {
    display: block; margin-top: 0.4rem; font-size: 0.6rem; color: var(--accent-gold);
    cursor: pointer; text-align: center; opacity: 0.7; transition: opacity 0.15s ease;
}
.os-toggle:hover { opacity: 1; }

.password-field { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.05); }
.password-field-label { font-size: 0.65rem; color: var(--text-muted); opacity: 0.7; display: block; margin-bottom: 0.4rem; }
.password-input-wrap {
    position: relative; display: flex; align-items: center;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(148,163,184,0.12);
    border-radius: 6px; transition: border-color 0.15s ease;
}
.password-input-wrap:focus-within { border-color: var(--accent-gold); }
.password-input-wrap.invalid { border-color: var(--accent-red); }
.password-input {
    flex: 1; background: none; border: none; outline: none;
    padding: 0.55rem 0.65rem; font-size: 0.75rem; font-family: 'Space Mono', monospace;
    color: var(--text-primary); letter-spacing: 0.04em;
}
.password-input::placeholder { color: var(--text-muted); opacity: 0.5; font-family: 'Outfit', sans-serif; letter-spacing: 0; }
.password-toggle {
    background: none; border: none; cursor: pointer; padding: 0.4rem 0.55rem;
    color: var(--text-muted); opacity: 0.5; transition: opacity 0.15s ease;
    display: flex; align-items: center;
}
.password-toggle:hover { opacity: 0.9; }
.password-generate {
    background: none; border: none; border-left: 1px solid rgba(148,163,184,0.1); cursor: pointer; padding: 0.4rem 0.55rem;
    color: var(--accent-gold); opacity: 0.55; transition: opacity 0.15s ease;
    display: flex; align-items: center;
}
.password-generate:hover { opacity: 1; }
.password-hint {
    display: block; margin-top: 0.3rem; font-size: 0.55rem; color: var(--text-muted); opacity: 0.5;
}
.password-error {
    display: none; margin-top: 0.3rem; font-size: 0.55rem; color: var(--accent-red);
}
.password-error.visible { display: block; }

.btn-card { width: 100%; justify-content: center; padding: 1rem; margin-top: 0.5rem; }

/* Payment Methods Strip */
.payment-methods {
    position: relative; z-index: 1; padding: 2.5rem 3rem;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}
.payment-methods-label {
    display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.25rem;
}
.payment-methods-list {
    display: flex; justify-content: center; align-items: center; gap: 0.75rem;
    flex-wrap: wrap; max-width: 900px; margin: 0 auto;
}
.payment-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.5rem 1rem; background: var(--bg-card);
    border: 1px solid var(--border-subtle); border-radius: 8px;
    font-size: 0.85rem; color: var(--text-secondary); font-weight: 500;
}
.payment-badge svg { flex-shrink: 0; }
.payment-divider {
    width: 1px; height: 24px; background: var(--border-subtle); margin: 0 0.25rem;
}

.features-section { position: relative; padding: 8rem 3rem; z-index: 1; background: var(--bg-secondary); }
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: 16px; padding: 2rem; transition: all 0.3s ease;
}
.feature-card:hover { border-color: rgba(245, 166, 35, 0.3); background: rgba(15, 23, 42, 0.8); }
.feature-icon {
    width: 56px; height: 56px; background: var(--accent-gold-dim); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; color: var(--accent-gold);
}
.feature-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

.locations-section { position: relative; padding: 8rem 3rem; z-index: 1; }
.locations-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.location-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: 16px; padding: 1.5rem; display: flex; align-items: center;
    gap: 1rem; transition: all 0.3s ease;
}
.location-card:hover { border-color: var(--accent-gold); transform: translateY(-4px); }
.location-flag {
    width: 48px; height: 48px; border-radius: 12px; background: var(--bg-tertiary);
    display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
}
.location-info h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.location-info p { font-size: 0.85rem; color: var(--text-muted); }
.location-status {
    margin-left: auto; display: flex; align-items: center; gap: 0.5rem;
    color: var(--accent-green); font-size: 0.8rem;
}

.cta-section { position: relative; padding: 8rem 3rem; z-index: 1; text-align: center; }
.cta-box {
    max-width: 800px; margin: 0 auto;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(255, 200, 87, 0.05) 100%);
    border: 1px solid rgba(245, 166, 35, 0.2); border-radius: 24px; padding: 4rem 3rem;
}
.cta-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
.cta-subtitle { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-features { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.cta-feature { display: flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); font-size: 0.9rem; }
.cta-feature svg { color: var(--accent-gold); width: 20px; height: 20px; }

footer {
    position: relative; padding: 4rem 3rem 2rem; z-index: 1;
    border-top: 1px solid var(--border-subtle); background: var(--bg-secondary);
}
.footer-top {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    color: var(--text-secondary); transition: all 0.3s ease;
}
.footer-social a:hover { color: var(--accent-gold); border-color: var(--accent-gold); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-col-title {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--accent-gold); margin-bottom: 1rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0; }
.footer-col a {
    color: var(--text-secondary); text-decoration: none; font-size: 0.88rem;
    padding: 0.3rem 0; transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--accent-gold); }
.footer-badges {
    display: flex; align-items: center; gap: 1rem; margin-top: 1rem;
    flex-wrap: wrap;
}
.footer-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; color: var(--text-muted); padding: 0.4rem 0.75rem;
    background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 6px;
}
.footer-badge svg { width: 16px; height: 16px; color: var(--accent-gold); flex-shrink: 0; }
.footer-bottom {
    max-width: 1200px; margin: 2rem auto 0; padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.footer-copy { color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-cta .btn-ghost { display: none; }

    .hero { padding: 7rem 1.5rem 3rem; }
    .hero-badges { flex-direction: column; align-items: center; }
    .stats-strip { gap: 2rem; }
    .stat-value { font-size: 2rem; }

    .payment-methods { padding: 2rem 1.5rem; }
    .payment-divider { display: none; }

    .pricing-section, .features-section, .locations-section, .cta-section { padding: 4rem 1.5rem; }
    .billing-cycle-options { gap: 0.25rem; padding: 0.25rem; }
    .billing-cycle-option { padding: 0.4rem 0.65rem; font-size: 0.7rem; }
    .pricing-grid, .features-grid { grid-template-columns: 1fr; }
    .features-grid { gap: 1rem; }
    .feature-card { padding: 1.5rem; }

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

    .cta-box { padding: 2.5rem 1.5rem; }
    .cta-features { flex-direction: column; align-items: center; gap: 1rem; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { margin-bottom: 1rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .trust-content { gap: 1.5rem; flex-direction: column; }
    .trust-item { width: 100%; justify-content: center; }

    /* H/A Section Mobile */
    .ha-section { padding: 4rem 1.5rem; overflow-x: hidden; }
    .ha-container { flex-direction: column; flex-wrap: nowrap; gap: 2rem; }
    .ha-content, .ha-visual { max-width: 100%; min-width: 0; }
    .ha-visual { width: 100%; overflow: hidden; }
    .ha-title { font-size: 2rem; }
    .ha-subtitle { font-size: 1rem; }
    .ha-stats { flex-direction: column; gap: 1rem; }
    .ha-stat-value { font-size: 1.25rem; }
    .ha-stat-label { font-size: 0.65rem; }
    .ha-features { gap: 0.5rem; }
    .ha-feature { font-size: 0.85rem; }

    .ha-cluster { padding: 1rem; overflow: hidden; max-width: 100%; }
    .ha-nodes-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
    .ha-arch-node { padding: 0.6rem 0.4rem; }
    .ha-arch-node-icon svg { width: 18px; height: 18px; }
    .ha-arch-node-name { font-size: 0.7rem; }
    .ha-arch-node-status { font-size: 0.55rem; }

    .ha-arch-vps { padding: 0.75rem 1rem; }
    .ha-vps-icon svg { width: 24px; height: 24px; }
    .ha-vps-label { font-size: 0.85rem; }
    .ha-vps-desc { font-size: 0.7rem; }

    .ha-storage-layer { padding: 0.75rem; }
    .ha-storage-systems { flex-direction: column; gap: 0.5rem; }
    .ha-storage-system { padding: 0.5rem 0.75rem; }
    .ha-storage-note { font-size: 0.7rem; }

    .ha-benefits { gap: 0.4rem; }
    .ha-benefit { font-size: 0.75rem; }
    .pricing-card { padding: 1.5rem; }
    .plan-price { padding: 1rem; }
    .price-value { font-size: 2.25rem; }

    .section-header { margin-bottom: 2.5rem; }
    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 1rem; }
}

@media (max-width: 480px) {
    nav { padding: 0.75rem 1rem; }
    .nav-cta .btn-primary { padding: 0.6rem 1rem; font-size: 0.85rem; }
    .logo img { height: 36px; }
    .mobile-menu { top: 60px; }

    .hero { padding: 6rem 1rem 2rem; }
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; gap: 0.75rem; }
    .btn-large { width: 100%; justify-content: center; }

    .stats-strip { flex-direction: column; gap: 1.5rem; padding-top: 2rem; }

    .payment-methods { padding: 1.5rem 1rem; }
    .payment-methods-list { gap: 0.5rem; }
    .payment-badge { padding: 0.4rem 0.75rem; font-size: 0.8rem; }

    .pricing-section, .features-section, .locations-section, .cta-section {
        padding: 3rem 1rem;
    }
    .ha-section { padding: 2rem 1rem; }

    .ha-container { gap: 1.25rem; }
    .ha-visual { width: 100%; min-width: 0; overflow: hidden; }
    .ha-cluster { padding: 0.75rem; }
    .ha-label { margin-bottom: 0.75rem; }
    .ha-title { font-size: 1.75rem; margin-bottom: 1rem; }
    .ha-subtitle { margin-bottom: 1.25rem; font-size: 0.95rem; }
    .ha-stats { margin-bottom: 1rem; padding: 0.75rem 0; flex-wrap: wrap; }
    .ha-stat { flex: 1; min-width: 80px; text-align: center; }

    .ha-nodes-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
    .ha-arch-node { padding: 0.5rem 0.3rem; }
    .ha-arch-vps { padding: 0.6rem 0.75rem; gap: 0.75rem; }
    .ha-storage-layer { padding: 0.5rem; margin-top: 0.75rem; }
    .ha-benefit { font-size: 0.7rem; }

    .pricing-card { padding: 1.25rem; }
    .plan-header { margin-bottom: 1rem; padding-bottom: 1rem; }

    .cta-title { font-size: 1.5rem; }

    .footer-top { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-badges { justify-content: center; }
    .footer-col a { font-size: 0.8rem; }
}

/* High Availability Section */
.ha-section {
    position: relative; padding: 8rem 3rem; z-index: 1;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    overflow: hidden;
}
.ha-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.ha-container {
    max-width: 1400px; margin: 0 auto; display: flex; align-items: flex-start;
    gap: 4rem; flex-wrap: wrap;
}
.ha-content { flex: 1; min-width: min(320px, 100%); max-width: 440px; }
.ha-label {
    display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem;
    font-weight: 600; color: var(--accent-gold); text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.ha-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1;
    margin-bottom: 1.5rem; letter-spacing: -0.03em;
}
.ha-highlight {
    position: relative; display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ha-subtitle {
    font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 2rem;
}
.ha-subtitle strong { color: var(--accent-gold); }
.ha-stats {
    display: flex; gap: 2rem; margin-bottom: 2rem; padding: 1.25rem 0;
    border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
}
.ha-stat { text-align: left; }
.ha-stat-value {
    font-family: 'Space Mono', monospace; font-size: 1.5rem; font-weight: 700;
    color: var(--accent-gold); line-height: 1;
}
.ha-stat-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.25rem; }
.ha-features { display: flex; flex-direction: column; gap: 0.6rem; }
.ha-feature {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.9rem; color: var(--text-secondary);
}
.ha-feature svg { color: var(--accent-gold); flex-shrink: 0; }

.ha-visual { flex: 1.5; min-width: min(480px, 100%); }

/* Cluster Diagram */
.ha-cluster {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: 20px; padding: 1.5rem; position: relative;
}

.ha-diagram-proxmox { position: relative; }

.ha-cluster-label {
    display: flex; align-items: center; gap: 0.5rem; justify-content: center;
    font-size: 0.8rem; font-weight: 600; color: var(--accent-gold);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem;
}

/* Architecture Layout */
.ha-architecture { display: flex; flex-direction: column; gap: 1rem; }

.ha-nodes-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem;
}
.ha-arch-node {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    padding: 1rem 0.75rem; background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle); border-radius: 12px;
}
.ha-arch-node-more {
    border-style: dashed; background: transparent;
}
.ha-arch-node-more .ha-arch-node-icon { color: var(--text-muted); opacity: 0.6; }
.ha-arch-node-more .ha-arch-node-name { color: var(--text-muted); }
.ha-arch-node-more .ha-arch-node-status { color: var(--text-muted); font-size: 0.65rem; }
.ha-arch-node-icon { color: var(--text-muted); }
.ha-arch-node-name { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.ha-arch-node-status {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.7rem; color: var(--text-muted);
}
.ha-status-dot {
    width: 6px; height: 6px; border-radius: 50%;
}
.ha-status-dot.active {
    background: var(--accent-green);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
    animation: pulse 2s infinite;
}

.ha-arch-connector {
    display: flex; align-items: center; gap: 1rem; padding: 0.5rem 0;
}
.ha-connector-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.3;
}
.ha-connector-label {
    font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.05em; white-space: nowrap;
}

.ha-arch-vps {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    padding: 1rem 1.5rem; background: var(--accent-gold-dim);
    border: 1px solid rgba(245, 166, 35, 0.3); border-radius: 12px;
}
.ha-vps-icon { color: var(--accent-gold); }
.ha-vps-info { display: flex; flex-direction: column; gap: 0.15rem; }
.ha-vps-label { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.ha-vps-desc { font-size: 0.75rem; color: var(--text-muted); }

/* Shared Storage Layer */
.ha-storage-layer {
    background: rgba(0,0,0,0.3); border: 1px solid var(--border-subtle);
    border-radius: 12px; padding: 1rem; margin-top: 1rem;
}
.ha-storage-header {
    display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem;
    font-weight: 600; color: var(--text-primary); margin-bottom: 0.75rem;
}
.ha-storage-header svg { color: var(--accent-gold); }
.ha-storage-badge {
    margin-left: auto; font-size: 0.6rem; padding: 0.2rem 0.5rem;
    background: rgba(34, 197, 94, 0.2); color: var(--accent-green);
    border-radius: 4px; font-weight: 600;
}
.ha-storage-systems { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }
.ha-storage-system {
    flex: 1; display: flex; align-items: center; gap: 0.6rem;
    padding: 0.6rem 0.75rem; background: var(--bg-tertiary);
    border-radius: 8px; border: 1px solid var(--border-subtle);
}
.ha-system-icon { color: var(--accent-gold); }
.ha-system-info { display: flex; flex-direction: column; gap: 0.1rem; }
.ha-system-name { font-size: 0.75rem; font-weight: 600; color: var(--text-primary); }
.ha-system-desc { font-size: 0.65rem; color: var(--text-muted); }
.ha-system-status { margin-left: auto; font-size: 0.65rem; font-weight: 600; }
.ha-system-status.healthy { color: var(--accent-green); }
.ha-storage-note {
    font-size: 0.75rem; color: var(--text-muted); text-align: center;
    padding-top: 0.5rem; border-top: 1px solid var(--border-subtle);
}

/* Benefits */
.ha-benefits {
    display: flex; flex-direction: column; gap: 0.5rem;
    margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border-subtle);
}
.ha-benefit {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.8rem; color: var(--text-secondary);
}
.ha-benefit svg { color: var(--accent-green); flex-shrink: 0; }

/* ======================================================================
   Comparison Pages — shared table & differentiator styles
   ====================================================================== */
.comparison-section { position: relative; padding: 6rem 3rem; z-index: 1; }
.comparison-table-wrapper {
    max-width: 1200px; margin: 0 auto; overflow-x: auto; border-radius: 20px;
    border: 1px solid var(--border-subtle); background: var(--bg-card);
}
.comparison-table { width: 100%; border-collapse: collapse; min-width: 800px; }
.comparison-table thead { background: var(--bg-secondary); }
.comparison-table th {
    padding: 1.5rem 1.25rem; text-align: left; font-weight: 600;
    font-size: 0.9rem; color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}
.comparison-table th:first-child { border-top-left-radius: 20px; }
.comparison-table th:last-child { border-top-right-radius: 20px; }
.comparison-table th.mg-col {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.05) 100%);
    color: var(--accent-gold); position: relative;
}
.comparison-table th.mg-col::before {
    content: '\2605  RECOMMENDED'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent-gold); color: var(--bg-primary);
    font-size: 0.65rem; font-weight: 700; padding: 0.25rem 0.75rem;
    border-radius: 100px; letter-spacing: 0.05em;
}
.comparison-table td {
    padding: 1.25rem; font-size: 0.95rem;
    border-bottom: 1px solid var(--border-subtle); transition: background 0.2s ease;
}
.comparison-table tr:hover td { background: rgba(255, 255, 255, 0.02); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 500; color: var(--text-primary); }
.comparison-table td.mg-col {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(245, 166, 35, 0.02) 100%);
    font-weight: 500;
}
.comparison-table .feature-name { display: flex; align-items: center; gap: 0.75rem; }
.comparison-table .feature-icon {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-gold-dim); color: var(--accent-gold);
    flex-shrink: 0; margin-bottom: 0;
}
.check-icon { color: var(--accent-green); }
.x-icon { color: var(--accent-red); opacity: 0.7; }
.partial-icon { color: var(--accent-gold); }
.value-highlight { color: var(--accent-gold); font-weight: 600; }
.table-note { font-size: 0.8rem; color: var(--text-muted); display: block; margin-top: 0.25rem; }

.differentiators-section { position: relative; padding: 8rem 3rem; z-index: 1; background: var(--bg-secondary); }
.diff-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.diff-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: 20px; padding: 2.5rem; position: relative;
    transition: all 0.3s ease; overflow: hidden;
}
.diff-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s ease;
}
.diff-card:hover { border-color: rgba(245, 166, 35, 0.3); transform: translateY(-4px); }
.diff-card:hover::before { opacity: 1; }
.diff-number {
    font-family: 'Space Mono', monospace; font-size: 4rem; font-weight: 700; line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    opacity: 0.3; margin-bottom: 1rem;
}
.diff-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.diff-description { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.diff-stats {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
    padding-top: 1.5rem; border-top: 1px solid var(--border-subtle);
}
.diff-stat { text-align: center; }
.diff-stat-value {
    font-family: 'Space Mono', monospace; font-size: 1.5rem; font-weight: 700; color: var(--accent-gold);
}
.diff-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

@media (max-width: 768px) {
    .comparison-section, .differentiators-section { padding: 4rem 1.5rem; }
    .diff-grid { grid-template-columns: 1fr; }
    .comparison-table th.mg-col::before { font-size: 0.55rem; padding: 0.2rem 0.5rem; }
}
@media (max-width: 480px) {
    .diff-number { font-size: 3rem; }
}

/* ======================================================================
   Industry Pages — shared layout (gold theme default)
   ====================================================================== */
.ind-hero {
    position: relative; min-height: 80vh; display: flex; flex-direction: column;
    justify-content: center; padding: 10rem 3rem 5rem; z-index: 1; text-align: center;
}
.ind-hero-content { max-width: 950px; margin: 0 auto; }
.ind-hero .section-label { margin-bottom: 1.5rem; }
.ind-hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 800; line-height: 1.08;
    margin-bottom: 1.5rem; letter-spacing: -0.03em; animation: fadeInUp 0.8s ease forwards;
}
.ind-hero h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ind-hero p {
    font-size: 1.2rem; color: var(--text-secondary); max-width: 750px;
    margin: 0 auto 3rem; line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.15s forwards; opacity: 0;
}
.ind-hero-stats {
    display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
    padding-top: 2.5rem; border-top: 1px solid var(--border-subtle);
    animation: fadeInUp 0.8s ease 0.3s forwards; opacity: 0;
}
.ind-hero-stat { text-align: center; }
.ind-hero-stat-value {
    font-family: 'Space Mono', monospace; font-size: 2.25rem; font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ind-hero-stat-label {
    font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.12em; margin-top: 0.25rem;
}
.ind-hero-cta {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    margin-top: 2.5rem; animation: fadeInUp 0.8s ease 0.45s forwards; opacity: 0;
}

.ind-compliance {
    position: relative; z-index: 1; padding: 4rem 3rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
}
.ind-compliance-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.ind-compliance h2 {
    font-size: 1rem; font-weight: 600; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem;
}
.ind-badges { display: flex; justify-content: center; gap: 2rem; align-items: center; flex-wrap: wrap; }
.ind-badge {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    padding: 1.25rem 1.75rem; background: var(--bg-card);
    border: 1px solid var(--border-subtle); border-radius: 14px; min-width: 130px;
}
.ind-badge-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
    background: var(--accent-gold-dim); border: 1px solid rgba(245, 166, 35, 0.2);
}
.ind-badge-name { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.ind-badge-desc { font-size: 0.7rem; color: var(--text-muted); }

.ind-section { position: relative; z-index: 1; padding: 6rem 3rem; }
.ind-section:nth-child(even) { background: var(--bg-secondary); }
.ind-section-inner { max-width: 1400px; margin: 0 auto; }
.ind-section-header { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.5rem; }
.ind-section-icon {
    width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    background: var(--accent-gold-dim); border: 1px solid rgba(245, 166, 35, 0.2);
}
.ind-section-icon.gold { background: var(--accent-gold-dim); border-color: rgba(245, 166, 35, 0.2); }
.ind-section-icon.blue { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.2); }
.ind-section-icon.purple { background: rgba(168, 85, 247, 0.1); border-color: rgba(168, 85, 247, 0.2); }
.ind-section-icon.green { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.2); }
.ind-section-title { font-size: 2rem; font-weight: 700; margin-bottom: 0.25rem; }
.ind-section-subtitle { font-size: 1rem; color: var(--text-muted); }
.ind-section-desc {
    font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8;
    max-width: 800px; margin-bottom: 3rem;
}

.ind-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.ind-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: 16px; padding: 2rem; position: relative; overflow: hidden;
    transition: all 0.3s ease; backdrop-filter: blur(10px);
}
.ind-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s ease;
}
.ind-card:hover { border-color: rgba(245, 166, 35, 0.3); transform: translateY(-3px); }
.ind-card:hover::before { opacity: 1; }
.ind-card-icon {
    width: 44px; height: 44px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 1.25rem;
}
.ind-card-icon.gold { background: var(--accent-gold-dim); border: 1px solid rgba(245, 166, 35, 0.2); }
.ind-card-icon.blue { background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); }
.ind-card-icon.purple { background: rgba(168, 85, 247, 0.1); border: 1px solid rgba(168, 85, 247, 0.2); }
.ind-card-icon.green { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2); }
.ind-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.ind-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.ind-card-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ind-card-tag {
    font-size: 0.7rem; font-weight: 600; padding: 0.3rem 0.65rem; border-radius: 100px;
    background: rgba(245, 166, 35, 0.08); color: var(--accent-gold);
    border: 1px solid rgba(245, 166, 35, 0.15);
}
.ind-card-tag.gold { background: rgba(245, 166, 35, 0.08); color: var(--accent-gold); border-color: rgba(245, 166, 35, 0.15); }
.ind-card-tag.blue { background: rgba(59, 130, 246, 0.08); color: var(--accent-blue); border-color: rgba(59, 130, 246, 0.15); }
.ind-card-tag.green { background: rgba(34, 197, 94, 0.08); color: var(--accent-green); border-color: rgba(34, 197, 94, 0.15); }
.ind-card-tag.purple { background: rgba(168, 85, 247, 0.08); color: var(--accent-purple); border-color: rgba(168, 85, 247, 0.15); }

@media (max-width: 768px) {
    .ind-hero { padding: 8rem 1.5rem 4rem; min-height: auto; }
    .ind-compliance, .ind-section { padding: 3rem 1.5rem; }
    .ind-grid { grid-template-columns: 1fr; }
    .ind-hero-stats { gap: 2rem; }
    .ind-badges { gap: 1rem; }
}
@media (max-width: 480px) {
    .ind-hero { padding: 7rem 1rem 3rem; }
    .ind-compliance, .ind-section { padding: 2.5rem 1rem; }
    .ind-hero-stats { flex-direction: column; gap: 1.5rem; }
    .ind-badges { gap: 0.75rem; }
    .ind-badge { min-width: 100px; padding: 1rem; }
}

/* ======================================================================
   Product Page Toggles — license, OS family, server type
   ====================================================================== */
.license-toggle { display: flex; gap: 0.25rem; margin-top: 0.6rem; }
.license-toggle-btn {
    flex: 1; padding: 0.35rem 0.4rem; border-radius: 6px;
    border: 1px solid var(--border-subtle); background: transparent;
    color: var(--text-muted); font-family: 'Outfit', sans-serif;
    font-size: 0.7rem; font-weight: 500; cursor: pointer;
    transition: all 0.25s ease; white-space: nowrap; text-align: center;
}
.license-toggle-btn.active {
    background: rgba(245, 166, 35, 0.08); color: var(--accent-gold);
    border-color: rgba(245, 166, 35, 0.3);
}
.license-toggle-btn:not(.active):hover {
    color: var(--text-secondary); border-color: rgba(148, 163, 184, 0.2);
}

.os-family-toggle { display: flex; gap: 0.25rem; margin-bottom: 0.5rem; }
.os-family-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.35rem;
    padding: 0.4rem 0.5rem; border-radius: 8px;
    border: 1px solid var(--border-subtle); background: transparent;
    color: var(--text-muted); font-family: 'Outfit', sans-serif;
    font-size: 0.75rem; font-weight: 500; cursor: pointer; transition: all 0.25s ease;
}
.os-family-btn.active {
    background: rgba(245, 166, 35, 0.08); color: var(--accent-gold);
    border-color: rgba(245, 166, 35, 0.3);
}
.os-family-btn:not(.active):hover {
    color: var(--text-secondary); border-color: rgba(148, 163, 184, 0.2);
}
.os-family-btn .os-icon { width: 14px; height: 14px; }

.server-type-select { text-align: center; margin-bottom: 2rem; }
.server-type-label {
    display: block; font-family: 'Space Mono', monospace; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.server-type-options {
    display: inline-flex; gap: 0.5rem; background: var(--bg-tertiary);
    padding: 0.35rem; border-radius: 12px; border: 1px solid var(--border-subtle);
}
.server-type-option {
    display: flex; flex-direction: column; align-items: center;
    padding: 0.6rem 1.5rem; border-radius: 10px; cursor: pointer;
    transition: all 0.25s ease; border: 1px solid transparent;
}
.server-type-option input { display: none; }
.server-type-option span {
    font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600;
    color: var(--text-secondary); transition: color 0.25s ease;
}
.server-type-option .server-type-desc {
    font-size: 0.7rem; color: var(--text-muted); font-style: normal;
    margin-top: 0.15rem; transition: color 0.25s ease;
}
.server-type-option.selected {
    background: rgba(245, 166, 35, 0.08); border-color: rgba(245, 166, 35, 0.3);
}
.server-type-option.selected span { color: var(--accent-gold); }
.server-type-option.selected .server-type-desc { color: rgba(245, 166, 35, 0.7); }
.server-type-option:not(.selected):hover { border-color: rgba(148, 163, 184, 0.15); }

.windows-pw-notice {
    display: none; margin-top: 0.75rem; padding: 0.65rem 0.75rem;
    border-radius: 8px; background: rgba(245, 166, 35, 0.05);
    border: 1px solid rgba(245, 166, 35, 0.15);
}
.windows-pw-notice-text {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-family: 'Outfit', sans-serif; font-size: 0.72rem;
    color: var(--text-secondary); line-height: 1.45;
}
.windows-pw-notice-text svg { flex-shrink: 0; width: 15px; height: 15px; margin-top: 1px; color: var(--accent-gold); }

.os-family-panel:not(.expanded) .os-options-older { display: none; }
.os-family-panel.expanded .os-options-older { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem; }

@media (max-width: 768px) {
    .server-type-options { flex-direction: column; width: 100%; max-width: 320px; }
    .server-type-option { padding: 0.5rem 1rem; }
}
@media (max-width: 480px) {
    .license-toggle-btn { padding: 0.3rem 0.25rem; font-size: 0.65rem; }
    .os-family-btn { font-size: 0.7rem; padding: 0.35rem 0.4rem; }
}
