/* ============================================
   Sable Servers - Professional Dark Theme
    with Top Navigation
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #050507;
    --bg-secondary: #09090b;
    --bg-elevated: #111114;
    --bg-overlay: rgba(5, 5, 7, 0.96);
    --text-primary: #f0f0f5;
    --text-muted: #9ca3b8;
    --accent: #4f8efa;
    --accent-hover: #6ba3ff;
    --accent-soft: rgba(79, 143, 250, 0.1);
    --accent-gradient: linear-gradient(135deg, #4f8efa, #38bdf8);
    --accent-rgb: 79, 143, 250;
    --on-accent: #ffffff;
    --chip-bg: #0c0c10;
    --chip-border: rgba(79, 143, 250, 0.25);
    --plan-bg: #0a0a0e;
    --plan-border: rgba(255, 255, 255, 0.08);
    --plan-border-strong: rgba(79, 143, 250, 0.35);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(79, 143, 250, 0.3);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow-soft: 0 24px 48px rgba(0, 0, 0, 0.6);
    --shadow-card: 0 16px 32px rgba(0, 0, 0, 0.5);
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Sora", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --sidebar-width: 280px;
    --top-nav-height: 84px;
    --mobile-header-height: 70px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 20% 0%, rgba(var(--accent-rgb), 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 100%, rgba(56, 189, 248, 0.03) 0%, transparent 40%),
        var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.72;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
}

body::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.35) 100%);
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-header h2,
.category-title,
.sidebar-logo-text {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

/* Layout with Top Navigation */
body.has-sidebar {
    display: flex;
    flex-direction: column;
}

.main-wrapper {
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Promotional Banner */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f0f12 0%, #111114 100%);
    border-bottom: 1px solid rgba(79, 143, 250, 0.2);
    color: #ffffff;
    z-index: 1100;
    /* Extra right padding leaves room for the absolutely-positioned close
       button so the centered content never slides under it. */
    padding: 0.75rem 3.5rem 0.75rem 2rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.promo-banner.visible {
    display: flex;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: center;
    max-width: 1200px;
}

.promo-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.promo-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
}

.promo-text strong {
    font-weight: 700;
    color: #38bdf8;
}

.promo-cta {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition);
    white-space: nowrap;
}

.promo-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.promo-close {
    /* Pin to the right edge of the banner so the X is always at the far
       right of the screen regardless of the centered content's width. */
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    margin-left: 0;
    opacity: 0.8;
    transition: opacity var(--transition);
    line-height: 1;
}

.promo-close:hover {
    opacity: 1;
}

/* Adjust main content when promo banner is visible.
   Uses --promo-banner-height published by site-sync.js (dynamic measurement
   of the actual banner). Falls back to 3rem for one-frame before JS runs. */
body.has-promo .main-content,
body:has(.promo-banner.visible) .main-content {
    padding-top: calc(var(--top-nav-height) + var(--promo-banner-height, 3rem));
}
body.has-promo .mobile-header,
body:has(.promo-banner.visible) .mobile-header {
    top: var(--promo-banner-height, 3rem);
}
body.has-promo .sidebar,
body:has(.promo-banner.visible) .sidebar {
    top: var(--promo-banner-height, 3rem);
}

@media (max-width: 768px) {
    .promo-banner {
        left: 0;
        padding: 0.65rem 1rem;
    }

    .promo-content {
        gap: 0.75rem;
    }

    .promo-text {
        font-size: 0.85rem;
    }

    .promo-cta {
        display: none;
    }

    .promo-icon {
        font-size: 1.2rem;
    }

    body:has(.promo-banner.visible) .main-content {
        padding-top: calc(var(--mobile-header-height) + 2.5rem);
    }
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--mobile-header-height);
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 0 1.5rem;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    backdrop-filter: blur(20px);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.mobile-header-spacer {
    flex: 1;
}

.mobile-login-btn {
    background: var(--accent);
    color: var(--on-accent);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Top Navigation */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--top-nav-height);
    background: rgba(5, 5, 7, 0.92);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    z-index: 900;
    overflow: visible;
    backdrop-filter: blur(14px);
}

.sidebar-header {
    padding: 0 1.25rem;
    border-bottom: none;
    background: transparent;
    height: 100%;
    display: flex;
    align-items: center;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.sidebar-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.sidebar-nav {
    flex: 1;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: visible;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 auto;
}

.nav-item {
    margin: 0;
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.62rem 0.9rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    min-height: auto;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.15);
}

.nav-icon {
    width: 22px;
    margin-right: 0.85rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.nav-link:hover .nav-icon { color: #fff; }
.nav-link.active .nav-icon { color: var(--accent); }

.nav-icon svg {
    width: 20px;
    height: 20px;
}

.nav-label {
    flex: 1;
    white-space: nowrap;
    font-weight: 600;
}

.nav-arrow {
    width: 20px;
    margin-left: auto;
    font-size: 1.1rem;
    color: #fff;
    transition: transform var(--transition);
    flex-shrink: 0;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.submenu-trigger {
    width: 100%;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    padding: 0;
    appearance: none;
    color: inherit;
}

button.nav-link.submenu-trigger {
    padding: 0.62rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    box-sizing: border-box;
}

.submenu-trigger .nav-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.has-submenu.open .nav-arrow {
    transform: rotate(180deg);
}

.nav-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), opacity var(--transition), transform var(--transition);
    margin: 0;
    border-left: none;
    padding: 0;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    background: #0d0d10;
    border: 1px solid var(--border);
    border-radius: 14px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    box-shadow: var(--shadow-card);
}

.has-submenu.open .nav-submenu {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-submenu li {
    margin: 2px 0;
}

.nav-sublink {
    display: block;
    padding: 0.6rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 8px;
    margin: 0 0.4rem;
    border: 1px solid transparent;
}

.nav-sublink:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
}

.nav-sublink.active {
    color: var(--accent);
    background: rgba(79, 143, 250, 0.12);
    border-color: rgba(79, 143, 250, 0.2);
    font-weight: 600;
}

.sidebar-footer {
    padding: 0 1.25rem;
    border-top: none;
    background: transparent;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-portal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: #111114;
    color: #ffffff;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    transition: all var(--transition);
    border: 2px solid #2ec4b6;
}

.sidebar-portal-btn:hover {
    background: #1a1a1e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 196, 182, 0.35);
    border-color: #5cd6cb;
}

.sidebar-tagline {
    display: none;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 850;
    backdrop-filter: blur(4px);
}

/* Main Content Area */
.main-content {
    margin-left: 0;
    padding-top: var(--top-nav-height);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(79, 143, 250, 0.25);
}

.btn-portal-primary {
    background: #239e93;
    color: #ffffff;
    border: 3px solid #239e93;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    padding: 0.85rem 2.25rem;
    box-shadow: 0 4px 16px rgba(35, 158, 147, 0.35);
}

.btn-portal-primary:hover {
    background: #1a857c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(35, 158, 147, 0.4);
    border-color: #1a857c;
}

.btn-portal {
    background: #111114;
    color: #ffffff;
    border: 3px solid #2ec4b6;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    padding: 0.75rem 3.25rem;
    box-shadow: 0 4px 12px rgba(46, 196, 182, 0.2);
}

.btn-portal:hover {
    background: #1a1a1e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 196, 182, 0.35);
    border-color: #5cd6cb;
}

/* Themed button hover glows */
.category-windows .btn-primary:hover { box-shadow: 0 12px 24px rgba(0, 120, 212, 0.3); }
.category-linux .btn-primary:hover { box-shadow: 0 12px 24px rgba(34, 197, 94, 0.3); }
.category-storage .btn-primary:hover { box-shadow: 0 12px 24px rgba(245, 158, 11, 0.3); }
.category-webhosting .btn-primary:hover { box-shadow: 0 12px 24px rgba(124, 58, 237, 0.3); }
.category-homelab .btn-primary:hover { box-shadow: 0 12px 24px rgba(8, 145, 178, 0.3); }
.category-managed .btn-primary:hover { box-shadow: 0 12px 24px rgba(220, 38, 38, 0.3); }

.btn-secondary {
    background: var(--bg-elevated);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--on-accent);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large {
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.pricing-card .btn-block {
    margin-top: auto;
}

/* Page Header */
.page-header {
    padding: 4rem 0 3rem;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/fc2c812a-54d6-4072-8e14-49ea76996449.jpg') right center / cover no-repeat;
}
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 15, 0.7);
}
.page-header .container {
    position: relative;
    z-index: 1;
}
@keyframes bannerPulse {
    0% { transform: scale(1.05) translate(0, 0); }
    50% { transform: scale(1.12) translate(-2%, -1%); }
    100% { transform: scale(1.08) translate(1%, 0.5%); }
}

.page-header h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-intro {
    font-size: 1.2rem;
    color: var(--text-primary);
    max-width: 700px;
    line-height: 1.7;
}

/* Section Styles */
section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: url('../img/New-main-page.jpg') center center / cover no-repeat;
    animation: heroPan 18s ease-in-out infinite alternate;
}

@keyframes heroPan {
    0% {
        transform: scale(1.12) translate(0, 0);
    }
    50% {
        transform: scale(1.22) translate(-3.5%, -2.5%);
    }
    100% {
        transform: scale(1.12) translate(3.5%, 1.5%);
    }
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 15, 0.7);
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    animation: scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes scrollArrow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Loyalty Badge */
.hero-loyalty-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1.4rem;
    background: rgba(230, 179, 30, 0.18);
    border: 2px solid rgba(230, 179, 30, 0.55);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
    box-shadow: 0 0 18px rgba(230, 179, 30, 0.15), inset 0 0 12px rgba(230, 179, 30, 0.06);
}

/* Service Quick Links */
.service-quick-links {
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
}
.quick-links-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 196, 182, 0.15);
    border-radius: var(--radius-lg);
    background: transparent;
}
.quick-links-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(46,196,182,0.25) 0%, rgba(46,196,182,0.05) 50%, transparent 100%),
        radial-gradient(circle at 80% 50%, rgba(46,196,182,0.12) 0%, transparent 45%);
}
.quick-links-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,5,7,0.82) 0%, rgba(5,5,7,0.55) 50%, rgba(46,196,182,0.15) 100%);
}
.quick-links-header > * {
    position: relative;
    z-index: 1;
}
.quick-links-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}
.quick-links-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.quick-link-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.8rem 1.2rem 1.4rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    border-radius: 3px 3px 0 0;
    transition: height 0.3s ease;
}
.quick-link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    text-decoration: none;
}
.quick-link-card:hover::before {
    height: 3px;
}
.ql-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quick-link-card:hover .ql-icon {
    transform: scale(1.1);
}
.quick-link-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}
.quick-link-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.6rem;
}
.ql-price {
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.ql-arrow {
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateX(-4px);
}
.quick-link-card:hover .ql-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Windows theme */
.ql-windows::before { background: linear-gradient(90deg, #0078d4, #00a4ef); }
.ql-windows:hover { border-color: rgba(0, 120, 212, 0.4); box-shadow: 0 8px 28px rgba(0, 120, 212, 0.18); }
.ql-windows .ql-icon { background: rgba(0, 120, 212, 0.12); color: #00a4ef; }
.ql-windows .ql-price { color: #00a4ef; }
.ql-windows .ql-arrow { color: #00a4ef; }

/* Linux theme */
.ql-linux::before { background: linear-gradient(90deg, #22c55e, #4ade80); }
.ql-linux:hover { border-color: rgba(34, 197, 94, 0.4); box-shadow: 0 8px 28px rgba(34, 197, 94, 0.18); }
.ql-linux .ql-icon { background: rgba(34, 197, 94, 0.12); color: #4ade80; }
.ql-linux .ql-price { color: #4ade80; }
.ql-linux .ql-arrow { color: #4ade80; }

/* Web Hosting theme */
.ql-webhosting::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.ql-webhosting:hover { border-color: rgba(124, 58, 237, 0.4); box-shadow: 0 8px 28px rgba(124, 58, 237, 0.18); }
.ql-webhosting .ql-icon { background: rgba(124, 58, 237, 0.12); color: #a78bfa; }
.ql-webhosting .ql-price { color: #a78bfa; }
.ql-webhosting .ql-arrow { color: #a78bfa; }

/* Game Servers theme */
.ql-gameservers::before { background: linear-gradient(90deg, #e91e63, #f06292); }
.ql-gameservers:hover { border-color: rgba(233, 30, 99, 0.4); box-shadow: 0 8px 28px rgba(233, 30, 99, 0.18); }
.ql-gameservers .ql-icon { background: rgba(233, 30, 99, 0.12); color: #f06292; }
.ql-gameservers .ql-price { color: #f06292; }
.ql-gameservers .ql-arrow { color: #f06292; }

/* Storage theme */
.ql-storage::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.ql-storage:hover { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 8px 28px rgba(245, 158, 11, 0.18); }
.ql-storage .ql-icon { background: rgba(245, 158, 11, 0.12); color: #fbbf24; }
.ql-storage .ql-price { color: #fbbf24; }
.ql-storage .ql-arrow { color: #fbbf24; }

/* Managed Services theme (teal) */
.ql-managed::before { background: linear-gradient(90deg, #0f766e, #14b8a6); }
.ql-managed:hover { border-color: rgba(20, 184, 166, 0.4); box-shadow: 0 8px 28px rgba(20, 184, 166, 0.18); }
.ql-managed .ql-icon { background: rgba(20, 184, 166, 0.12); color: #14b8a6; }
.ql-managed .ql-price { color: #14b8a6; }
.ql-managed .ql-arrow { color: #14b8a6; }

.highlight-card {
    position: relative;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-card);
}

.highlight-copy {
    min-width: 0;
    max-width: calc(100% - 150px);
    position: relative;
    z-index: 1;
}

.highlight-logo-shell {
    position: absolute;
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%);
    display: block;
}

.highlight-logo {
    display: block;
    width: 132px;
    height: 132px;
    margin: 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.highlight-card h2 {
    text-align: left;
    margin-bottom: 0.5rem;
}

.highlight-subtitle {
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
}

.highlight-features {
    list-style: none;
    margin-top: 1.5rem;
}

.highlight-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.highlight-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

@media (max-width: 600px) {
    .highlight-card {
        padding: 1.8rem;
    }

    .highlight-copy {
        max-width: 100%;
    }

    .highlight-logo-shell {
        position: static;
        transform: none;
        margin: 1.25rem auto 0;
    }

    .highlight-logo {
        width: 112px;
        height: 112px;
    }

    .highlight-card h2,
    .highlight-subtitle {
        text-align: center;
    }
}

/* Services Grid */
.services-section {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card:nth-child(1):hover { border-color: rgba(79, 143, 250, 0.4); box-shadow: 0 8px 28px rgba(79, 143, 250, 0.12); }
.service-card:nth-child(2):hover { border-color: rgba(124, 58, 237, 0.4); box-shadow: 0 8px 28px rgba(124, 58, 237, 0.12); }
.service-card:nth-child(3):hover { border-color: rgba(233, 30, 99, 0.4); box-shadow: 0 8px 28px rgba(233, 30, 99, 0.12); }
.service-card:nth-child(4):hover { border-color: rgba(220, 38, 38, 0.4); box-shadow: 0 8px 28px rgba(220, 38, 38, 0.12); }
.service-card:nth-child(5):hover { border-color: rgba(251, 146, 60, 0.4); box-shadow: 0 8px 28px rgba(251, 146, 60, 0.12); }

.service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.service-card:nth-child(1) .service-icon { color: #4f8efa; }
.service-card:nth-child(2) .service-icon { color: #a78bfa; }
.service-card:nth-child(3) .service-icon { color: #f06292; }
.service-card:nth-child(4) .service-icon { color: #ef4444; }
.service-card:nth-child(5) .service-icon { color: #fb923c; }

.service-card h3 {
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.75;
}

.service-features {
    list-style: none;
    margin: 0 0 1.5rem;
    flex-grow: 1;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.service-features li {
    padding: 0.35rem 0;
    padding-left: 1.3rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    background: var(--accent);
    color: var(--on-accent);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 999px;
    transition: all var(--transition);
    margin-top: auto;
    width: 100%;
    text-align: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.service-link:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(79, 143, 250, 0.35);
    color: var(--on-accent);
}

/* Features Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.feature-item {
    text-align: left;
    padding: 1.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(79, 143, 250, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.feature-item h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-secondary);
}

.pricing-category {
    margin-bottom: 4rem;
}

.category-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.category-header-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/fc2c812a-54d6-4072-8e14-49ea76996449.jpg') right center / cover no-repeat;
}
.category-header-row::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 15, 0.7);
}

/* Windows banner - blue angled grid */
.category-windows .category-header-row::before {
    background:
        linear-gradient(135deg, rgba(0,120,212,0.3) 0%, rgba(0,164,239,0.05) 50%, transparent 100%),
        linear-gradient(45deg, transparent 46%, rgba(0,164,239,0.07) 46%, rgba(0,164,239,0.07) 54%, transparent 54%),
        linear-gradient(-45deg, transparent 46%, rgba(0,164,239,0.05) 46%, rgba(0,164,239,0.05) 54%, transparent 54%),
        radial-gradient(circle at 80% 50%, rgba(0,164,239,0.12) 0%, transparent 50%);
}
.category-windows .category-header-row::after {
    background: linear-gradient(90deg, rgba(5,5,7,0.82) 0%, rgba(5,5,7,0.55) 50%, rgba(0,120,212,0.18) 100%);
}

/* Linux banner - green */
.category-linux .category-header-row::before {
    background:
        linear-gradient(135deg, rgba(34,197,94,0.25) 0%, rgba(74,222,128,0.05) 50%, transparent 100%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(74,222,128,0.04) 10px, rgba(74,222,128,0.04) 11px),
        radial-gradient(circle at 85% 50%, rgba(34,197,94,0.12) 0%, transparent 45%);
}
.category-linux .category-header-row::after {
    background: linear-gradient(90deg, rgba(5,5,7,0.82) 0%, rgba(5,5,7,0.55) 50%, rgba(34,197,94,0.15) 100%);
}

/* Storage banner - layered horizontal bands */
.category-storage .category-header-row::before {
    background:
        linear-gradient(135deg, rgba(245,158,11,0.25) 0%, rgba(251,191,36,0.05) 50%, transparent 100%),
        repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(251,191,36,0.05) 18px, rgba(251,191,36,0.05) 19px),
        radial-gradient(circle at 80% 40%, rgba(251,191,36,0.1) 0%, transparent 45%);
}
.category-storage .category-header-row::after {
    background: linear-gradient(90deg, rgba(5,5,7,0.82) 0%, rgba(5,5,7,0.55) 50%, rgba(245,158,11,0.15) 100%);
}

/* Web Hosting banner - purple radial */
.category-webhosting .category-header-row::before {
    background:
        linear-gradient(135deg, rgba(124,58,237,0.25) 0%, rgba(167,139,250,0.05) 50%, transparent 100%),
        radial-gradient(circle at 75% 50%, rgba(167,139,250,0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(124,58,237,0.08) 0%, transparent 30%);
}
.category-webhosting .category-header-row::after {
    background: linear-gradient(90deg, rgba(5,5,7,0.82) 0%, rgba(5,5,7,0.55) 50%, rgba(124,58,237,0.15) 100%);
}
.category-header-row > * {
    position: relative;
    z-index: 1;
}

.category-header-row > div {
    flex: 1;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.category-desc {
    text-align: left;
    color: var(--text-muted);
    margin-bottom: 0;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.view-more-btn:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent);
    transform: translateX(4px);
}

.view-more-btn .arrow {
    font-size: 1.2rem;
    transition: transform var(--transition);
}

.view-more-btn:hover .arrow {
    transform: translateX(4px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.hosting-pricing {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.hosting-pricing .pricing-card {
    padding: 1.25rem;
    gap: 0.75rem;
}
.hosting-pricing .pricing-features {
    padding: 0.75rem;
    margin-top: auto;
}
.hosting-pricing .pricing-features ul {
    columns: 1;
}
.hosting-pricing .pricing-features li {
    break-inside: avoid;
    padding: 0.15rem 0;
    font-size: 0.78rem;
}
@media (max-width: 1200px) {
    .hosting-pricing {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .hosting-pricing {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all var(--transition);
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-card);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #ffffff;
    border: none;
    padding: 0.45rem 1.3rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(79, 143, 250, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pricing-badge.custom {
    background: #7c3aed;
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
}

/* ── Category-themed pricing cards ── */

/* Windows - Microsoft blue */
.category-windows .pricing-badge {
    background: linear-gradient(135deg, #0078d4, #00a4ef);
    box-shadow: 0 2px 12px rgba(0, 120, 212, 0.35);
}
.category-windows .pricing-card {
    border-top: 3px solid #0078d4;
}
.category-windows .pricing-card:hover {
    border-color: #00a4ef;
    box-shadow: 0 8px 28px rgba(0, 120, 212, 0.15);
}
.category-windows .category-title {
    color: #00a4ef;
}
.category-windows .btn-primary {
    background: linear-gradient(135deg, #0078d4, #00a4ef);
}
.category-windows .btn-primary:hover {
    background: linear-gradient(135deg, #006cbd, #009ae0);
}

/* Linux - Green */
.category-linux .pricing-badge {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.35);
}
.category-linux .pricing-card {
    border-top: 3px solid #22c55e;
}
.category-linux .pricing-card:hover {
    border-color: #4ade80;
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.15);
}
.category-linux .category-title {
    color: #4ade80;
}
.category-linux .btn-primary {
    background: linear-gradient(135deg, #22c55e, #4ade80);
}
.category-linux .btn-primary:hover {
    background: linear-gradient(135deg, #1ea651, #38d96e);
}

/* Storage - Amber */
.category-storage .pricing-badge {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.35);
}
.category-storage .pricing-card {
    border-top: 3px solid #f59e0b;
}
.category-storage .pricing-card:hover {
    border-color: #fbbf24;
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.15);
}
.category-storage .category-title {
    color: #fbbf24;
}
.category-storage .btn-primary {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #000;
    text-shadow: none;
    font-weight: 800;
}
.category-storage .btn-primary:hover {
    background: linear-gradient(135deg, #e09000, #eab308);
}

/* Web Hosting - Purple */
.category-webhosting .pricing-badge {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.35);
}
.category-webhosting .pricing-card {
    border-top: 3px solid #7c3aed;
}
.category-webhosting .pricing-card:hover {
    border-color: #a78bfa;
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.15);
}
.category-webhosting .category-title {
    color: #a78bfa;
}
.category-webhosting .btn-primary {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}
.category-webhosting .btn-primary:hover {
    background: linear-gradient(135deg, #6d28d9, #8b5cf6);
}

/* Homelab - Teal/Cyan */
.category-homelab .pricing-badge {
    background: linear-gradient(135deg, #0891b2, #22d3ee);
    box-shadow: 0 2px 12px rgba(8, 145, 178, 0.35);
}
.category-homelab .pricing-card {
    border-top: 3px solid #0891b2;
}
.category-homelab .pricing-card:hover {
    border-color: #22d3ee;
    box-shadow: 0 8px 28px rgba(8, 145, 178, 0.15);
}
.category-homelab .category-title {
    color: #22d3ee;
}
.category-homelab .btn-primary {
    background: linear-gradient(135deg, #0891b2, #22d3ee);
}
.category-homelab .btn-primary:hover {
    background: linear-gradient(135deg, #0e7490, #06b6d4);
}
.category-homelab .category-header-row::before {
    background:
        linear-gradient(135deg, rgba(8,145,178,0.25) 0%, rgba(34,211,238,0.05) 50%, transparent 100%),
        radial-gradient(circle at 80% 50%, rgba(34,211,238,0.12) 0%, transparent 45%);
}
.category-homelab .category-header-row::after {
    background: linear-gradient(90deg, rgba(5,5,7,0.82) 0%, rgba(5,5,7,0.55) 50%, rgba(8,145,178,0.15) 100%);
}

/* Homelab info box */
.homelab-info-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(8, 145, 178, 0.06);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    color: var(--text-primary);
}
.homelab-info-icon {
    flex-shrink: 0;
    color: #22d3ee;
    margin-top: 2px;
}
.homelab-info-box strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.4rem;
}
.homelab-info-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.homelab-info-box ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0;
}
.homelab-info-box li {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 0.1rem 0;
}

/* Managed Services - Red */
.category-managed .pricing-badge {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.35);
}
.category-managed .pricing-card {
    border-top: 3px solid #dc2626;
}
.category-managed .pricing-card:hover {
    border-color: #ef4444;
    box-shadow: 0 8px 28px rgba(220, 38, 38, 0.15);
}
.category-managed .category-title {
    color: #ef4444;
}
.category-managed .btn-primary {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}
.category-managed .btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
}

/* Promo Badge — sits INSIDE the top-right corner of the pricing card so it
   never overlaps the centered tier badge ("Starter" / "Windows-Nano") nor
   the "Most Popular" / "Best Value" plan-tags inside cards. A softer red
   gradient + gentle pulse keep it eye-catching without being aggressive. */
.pricing-promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
    transform: none;
    background: #ef4444;
    color: #ffffff;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1;
    z-index: 20;
}
/* Inline variant — sits on the same row as the crossed-out original price.
   site-sync.js moves the badge into .price-original when applying a promo
   and toggles this class, which defeats the absolute positioning. */
.pricing-promo-badge.pricing-promo-badge--inline {
    position: static;
    top: auto;
    right: auto;
    margin-left: 0.5rem;
    padding: 0.25rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 5px;
    line-height: 1;
    align-self: center;
}
.pricing-card { position: relative; min-width: 0; }
/* Prevent content (long tier names like "Storage-MEGA" / "Storage-TITAN",
   long spec values like "500 GB @ 1 Gbps", add-on lines) from escaping
   the card bounds on narrower columns. Applies site-wide. */
.pricing-card > .pricing-badge,
.pricing-card .pricing-badge {
    max-width: calc(100% - 1.5rem) !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding: 0.35rem 0.9rem !important;
    font-size: 0.72rem !important;
}
.pricing-card .pricing-specs,
.pricing-card .pricing-specs li,
.pricing-card .spec-label,
.pricing-card .spec-value,
.pricing-card .pricing-addons,
.pricing-card .addon-list li,
.pricing-card .pricing-features li,
.pricing-card .plan-note {
    overflow-wrap: anywhere;
    word-break: break-word;
    min-width: 0;
    max-width: 100%;
}
/* Let spec rows wrap when label + value are too long to fit on one line. */
.pricing-card .pricing-specs li {
    flex-wrap: wrap;
    row-gap: 0.15rem;
}


.pricing-header h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.price-currency {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-currency-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.8;
    margin-left: 0.25rem;
    vertical-align: middle;
    letter-spacing: 0.05em;
}

/* Promotional Pricing — strike-through "original" row sits immediately
   above the discounted price so shoppers see the delta at a glance. */
.price-original {
    display: flex !important;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    text-align: center;
}

.price-original .price-currency {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    text-decoration-thickness: 2px !important;
    text-decoration-color: #f87171 !important;
}

.price-original .price-amount {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    text-decoration-thickness: 2px !important;
    text-decoration-color: #f87171 !important;
}

.price-save-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
    vertical-align: middle;
    letter-spacing: 0.03em;
}

.price-custom {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.pricing-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing-specs li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    gap: 0.5rem;
    overflow: visible;
    min-width: 0;
}

.spec-label {
    color: var(--text-muted);
    font-weight: 600;
    text-align: left;
    font-size: 0.95rem;
    min-width: 0;
}

.spec-value {
    text-align: right;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;
    font-size: 1rem;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.pricing-specs li > :last-child {
    text-align: right;
    line-height: 1.4;
    color: var(--text-primary);
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Storage Add-ons List */
.spec-addons {
    display: block !important;
    grid-column: 1 / -1;
    padding: 0.8rem 0;
    /* border-bottom already inherited from .pricing-specs li */
}

.spec-addons .spec-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.addon-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.addon-list li {
    padding: 0.25rem 0;
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.pricing-features {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.features-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 0.2rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.82rem;
    color: #fff;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.custom-quote-card {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(156, 83, 255, 0.1) 0%, var(--bg-elevated) 50%);
}

/* Spec Badge (for NVMe, etc.) */
.spec-badge {
    display: inline;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 1;
    letter-spacing: 0.03em;
    white-space: nowrap;
    margin-left: 0.2rem;
}

/* Custom Quote - Horizontal Layout */
.custom-quote-horizontal {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(156, 83, 255, 0.1) 0%, var(--bg-elevated) 50%);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
}

.custom-quote-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--on-accent);
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.custom-quote-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.custom-quote-left h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.custom-quote-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.custom-quote-left .btn {
    display: inline-flex;
}

.custom-quote-right {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.custom-quote-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
}

.custom-quote-features li {
    padding: 0.35rem 0;
    padding-left: 1.3rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.custom-quote-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

@media (max-width: 992px) {
    .custom-quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .custom-quote-features {
        grid-template-columns: 1fr;
    }
}

/* Comparison Table */
.comparison-section {
    background: var(--bg-secondary);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-elevated);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.3);
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.comparison-table td {
    color: var(--text-muted);
}

.comparison-table tbody tr:hover {
    background: rgba(79, 143, 250, 0.05);
}

/* Forms */
.quote-form-wrapper,
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.quote-form,
.contact-form {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.required {
    color: #ff6b6b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--bg-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(5, 5, 7, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2ec4b6;
    box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.15);
    background: rgba(5, 5, 7, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-actions .btn-primary {
    padding: 0.85rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Why Section */
.why-section {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.why-item {
    padding: 2rem 1.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.why-item:hover {
    border-color: rgba(79, 143, 250, 0.3);
    transform: translateY(-3px);
}

.why-number {
    display: inline-flex;
    width: 46px;
    height: 46px;
    background: var(--accent);
    color: var(--on-accent);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.why-item:nth-child(1) .why-number { background: #4f8efa; }
.why-item:nth-child(2) .why-number { background: #38bdf8; }
.why-item:nth-child(3) .why-number { background: #a78bfa; }
.why-item:nth-child(4) .why-number { background: #34d399; }

.why-item h3 {
    margin-bottom: 0.6rem;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
}

.why-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: radial-gradient(circle at center, rgba(79, 143, 250, 0.08), transparent 70%);
}

.cta-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.cta-card h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Styles */
.mission-section {
    padding: 4rem 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.mission-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.mission-stats {
    display: grid;
    gap: 1.25rem;
}

.stat-item {
    text-align: center;
    padding: 1.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.stat-item:hover {
    border-color: rgba(79, 143, 250, 0.3);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.values-section {
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.value-card:hover {
    border-color: rgba(79, 143, 250, 0.3);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 16px;
    background: rgba(79, 143, 250, 0.08);
}

.value-card h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.infra-item {
    padding: 1.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease, transform 0.2s ease;
    border-left: 3px solid var(--accent);
}

.infra-item:hover {
    border-color: rgba(79, 143, 250, 0.3);
    border-left-color: var(--accent);
    transform: translateY(-2px);
}

.infra-item h3 {
    margin-bottom: 0.6rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.infra-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.focus-section {
    background: var(--bg-secondary);
}

.focus-list {
    max-width: 900px;
    margin: 0 auto;
}

.focus-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.focus-item:last-child {
    border-bottom: none;
}

.focus-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--on-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.focus-content h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.focus-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.contact-method:hover {
    border-color: rgba(79, 143, 250, 0.3);
    transform: translateY(-2px);
}

.method-icon {
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(79, 143, 250, 0.08);
    border-radius: 12px;
}

.method-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.method-content a {
    color: var(--accent);
    font-weight: 500;
}

.method-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.enterprise-only {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(79, 143, 250, 0.15);
    border: 1px solid rgba(79, 143, 250, 0.4);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.discord-cta {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.12) 0%, var(--bg-elevated) 100%);
    border: 1px solid rgba(88, 101, 242, 0.25);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2.5rem;
    text-align: center;
}

.discord-cta h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.discord-cta p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.discord-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.discord-cta .btn span {
    font-size: 1.2rem;
}

.business-hours {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-top: 1.5rem;
}

.business-hours h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.business-hours p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(79, 143, 250, 0.3);
}

.faq-item h3 {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* Client Portal Page */
.portal-overview-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.portal-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--on-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.flow-step h3 {
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--accent);
}

/* Client Login Section */
.client-login-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.login-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.login-info > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.login-benefits {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.login-note {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.login-note a {
    color: var(--accent);
    font-weight: 600;
}

.login-form-container {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.login-redirect-box {
    text-align: center;
}

.login-redirect-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.redirect-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.panel-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.panel-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
}

.panel-option:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.panel-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.panel-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.panel-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 576px) {
    .panel-selection {
        grid-template-columns: 1fr;
    }
}

.portal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.portal-links a {
    color: var(--accent);
    text-decoration: none;
}

.portal-links a:hover {
    text-decoration: underline;
}

.portal-links .divider {
    color: var(--text-muted);
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    color: #10b981;
    font-size: 0.9rem;
}

.security-badge a {
    color: #10b981;
    font-weight: 600;
    text-decoration: underline;
}

.security-badge a:hover {
    color: #059669;
}

.badge-icon {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .login-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.portal-access-section {
    padding: 4rem 0;
}

.portal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.portal-cards-three {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portal-cards-four {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .portal-cards-three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .portal-cards-four {
        grid-template-columns: 1fr;
    }
}

.portal-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
}

.portal-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-card);
}

.portal-icon {
    margin: 0 auto 1.5rem;
    color: var(--accent);
}

.portal-card h2 {
    margin-bottom: 1rem;
}

.portal-card > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.portal-features {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.portal-features h4 {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.portal-features ul {
    list-style: none;
}

.portal-features li {
    padding: 0.4rem 0;
    padding-left: 1.3rem;
    position: relative;
    color: var(--text-muted);
}

.portal-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.portal-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.portal-note a {
    color: var(--accent);
    font-weight: 500;
}

.quick-links-section {
    background: var(--bg-secondary);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.quick-link-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.quick-link-card:hover {
    transform: translateY(-4px);
}

.link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.quick-link-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.help-section {
    padding: 3rem 0;
}

.help-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.help-content h2 {
    margin-bottom: 1rem;
}

.help-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.help-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.security-notice-section {
    background: var(--bg-secondary);
    padding: 3rem 0;
}

.security-notice {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.notice-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: #030304;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem 0 2rem;
    margin-top: auto;
    margin-left: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-disclaimer {
    margin-top: 0.75rem;
    opacity: 0.7;
}

.footer-disclaimer small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 1024px) {
    :root {
        --sidebar-width: 260px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hide sidebar, show mobile header */
    .sidebar {
        right: auto;
        width: var(--sidebar-width);
        height: 100vh;
        background: linear-gradient(180deg, #111114 0%, #09090b 100%);
        border-bottom: none;
        border-right: 1px solid var(--border);
        align-items: stretch;
        overflow-y: auto;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform var(--transition);
        padding-top: var(--mobile-header-height);
    }

    .sidebar-header {
        height: auto;
        padding: 2rem 1.5rem;
    }

    .sidebar-nav {
        height: auto;
        padding: 1rem 0.75rem;
        display: block;
    }

    .nav-menu {
        display: block;
    }

    .nav-item {
        margin: 3px 0;
    }

    .nav-link {
        border-radius: 10px;
        min-height: 48px;
    }

    .nav-submenu {
        position: static;
        top: auto;
        left: auto;
        min-width: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        margin: 4px 0.5rem 4px 1.2rem;
        border-left: 2px solid rgba(79, 143, 250, 0.22);
    }

    .sidebar-footer {
        height: auto;
        padding: 1.25rem;
        display: block;
    }

    .sidebar-tagline {
        display: block;
    }

    .sidebar.active {
        transform: translateX(0);
        z-index: 1050;
    }

    .sidebar-overlay {
        display: none;
    }

    .sidebar-overlay.active {
        display: block;
    }

    .mobile-header {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        padding-top: var(--mobile-header-height);
    }

    .site-footer {
        margin-left: 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick-link-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    .portal-cards {
        grid-template-columns: 1fr;
    }

    .portal-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .view-more-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0 1.5rem;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .quote-form,
    .contact-form {
        padding: 1.5rem;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    .quick-link-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
}

/* Smooth scroll for anchor links */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Datacenter location footnote */
.location-footnote {
    text-align: center;
    margin-top: 2.5rem;
}

.location-footnote small {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.01em;
}

/* VPS Grid - 4 cards horizontal */
.vps-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem;
}

.vps-grid .pricing-card {
    min-width: 0;
}

@media (max-width: 1600px) {
    .vps-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 1200px) {
    .vps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .vps-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-top: 2px solid var(--accent);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    z-index: 999;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.cookie-consent.show {
    display: block;
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-consent {
        left: 0;
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}

/* ========================================
   FAQ Page Styles
   ======================================== */

/* FAQ Search Section */
.faq-search-section {
    padding: 2rem 0;
    background: var(--surface-color);
}

.faq-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.faq-search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 143, 250, 0.1);
}

.faq-search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--text-muted);
    pointer-events: none;
}

.faq-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* FAQ Categories Navigation */
.faq-categories-section {
    padding: 1.5rem 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.faq-category-pills {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
}

.faq-category-pills::-webkit-scrollbar {
    height: 4px;
}

.faq-category-pills::-webkit-scrollbar-track {
    background: var(--surface-color);
    border-radius: 2px;
}

.faq-category-pills::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 2px;
}

.category-pill {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--surface-color);
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.category-pill:hover,
.category-pill.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* FAQ Content Section */
.faq-content-section {
    padding: 3rem 0;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(79, 143, 250, 0.15);
    border-color: rgba(79, 143, 250, 0.3);
}

.faq-item.active {
    border-color: rgba(79, 143, 250, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer code {
    background: var(--surface-color);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    color: var(--primary-color);
}

.faq-answer blockquote {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--surface-color);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
}

.faq-answer table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.faq-answer table td,
.faq-answer table tr {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
}

.faq-answer table tr:first-child {
    background: var(--surface-color);
    font-weight: 600;
}

/* No Results Message */
.faq-no-results {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--surface-color);
    border-radius: 12px;
    margin: 2rem 0;
}

.faq-no-results p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.faq-no-results a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-no-results a:hover {
    text-decoration: underline;
}

/* FAQ CTA Section */
.faq-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
}

.faq-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-buttons .btn {
    min-width: 150px;
}

.faq-cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.faq-cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.faq-cta-buttons .btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.faq-cta-buttons .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-icon {
        font-size: 1.25rem;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
    }

    .faq-cta h2 {
        font-size: 1.5rem;
    }

    .faq-cta p {
        font-size: 1rem;
    }

    .faq-cta-buttons {
        flex-direction: column;
    }

    .faq-cta-buttons .btn {
        width: 100%;
    }

    .faq-category-pills {
        gap: 0.5rem;
    }

    .category-pill {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
}

/* ========================================
   FAQ Dark Theme Override
   ======================================== */

/* Override FAQ styles for dark theme */
.faq-search-section {
    background: var(--bg-primary);
}

.faq-search-input {
    background: var(--surface-color);
    color: var(--text-primary);
    border-color: rgba(166, 173, 202, 0.2);
}

.faq-search-input::placeholder {
    color: var(--text-muted);
}

.faq-categories-section {
    background: var(--bg-primary);
    border-bottom-color: rgba(166, 173, 202, 0.1);
}

.faq-content-section {
    background: var(--bg-primary);
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(79, 143, 250, 0.15);
    border-color: rgba(79, 143, 250, 0.3);
}

.faq-no-results {
    background: var(--surface-color);
}

.faq-answer code {
    background: var(--bg-primary);
}

.faq-answer blockquote {
    background: var(--bg-primary);
}

.faq-answer table tr:first-child {
    background: var(--bg-primary);
}

.faq-answer table td,
.faq-answer table tr {
    border-color: rgba(166, 173, 202, 0.2);
}

/* Fix FAQ expansion */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 5000px !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* ========================================
   Legal Pages (TOS/AUP) Styles
   ======================================== */

.legal-content-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(4, 8, 18, 0.1);
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(166, 173, 202, 0.1);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-section h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.contact-box {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 1rem 0;
}

.contact-box p {
    margin: 0;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-color);
    text-align: center;
}

.legal-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
    }

    .legal-section ul {
        padding-left: 1.5rem;
    }
}

/* Footer legal links styling */
.footer-legal-links {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

/* Fix FAQ blockquote visibility in dark theme */
.faq-answer blockquote {
    background: var(--surface-color) !important;
    color: var(--text-primary) !important;
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
    margin: 1rem 0;
}

.faq-answer blockquote strong {
    color: var(--primary-color);
}

/* ============================================
   Mobile Responsive Fixes
   ============================================ */

/* Managed services pricing grid - prevent cutoff on mobile */
@media (max-width: 1024px) {
    .category-managed .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .category-managed .pricing-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Hero loyalty badge - prevent mangling on mobile */
@media (max-width: 768px) {
    .hero-loyalty-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
        font-size: 0.82rem;
        padding: 0.75rem 1rem;
    }
    
    .hero-loyalty-badge svg {
        flex-shrink: 0;
    }
}
