/* ================================================================
   WebsNP Design System – websnp-design.css
   Loaded after style.css to provide the modern professional layer.
   ================================================================ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
    --color-primary:   #2563eb;
    --color-primary-d: #1d4ed8;
    --color-dark:      #0a1628;
    --color-dark-2:    #0f172a;
    --color-body:      #334155;
    --color-muted:     #64748b;
    --color-light-bg:  #f8fafc;
    --color-border:    #e2e8f0;
    --font-main: 'Inter', 'Hind', Arial, sans-serif;
    --radius: 8px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,.08);
}

/* ── Global Body Override ───────────────────────────────────────── */
body.websnp-frontend {
    font-family: var(--font-main);
    background: #ffffff;
    color: var(--color-body);
    font-size: 15px;
    line-height: 1.6;
}

/* ── Fix: stop style.css forcing ALL headings centered ──────────── */
body.websnp-frontend h1,
body.websnp-frontend h2,
body.websnp-frontend h3,
body.websnp-frontend h4,
body.websnp-frontend h5,
body.websnp-frontend h6 {
    font-family: var(--font-main);
    text-align: left; /* override style.css h2-h6 {text-align:center} */
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-top: 0;
}

/* Force white color on headings in dark sections */
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
.section-dark-2 h1, .section-dark-2 h2, .section-dark-2 h3, .section-dark-2 h4,
.inner-hero h1, .inner-hero h2, .inner-hero h3,
.hp-hero h1, .hp-hero h2, .hp-hero h3,
.hp-cta h1, .hp-cta h2, .hp-cta h3,
.zo-hero h1, .zo-hero h2, .zo-hero h3,
.ds-hero h1, .ds-hero h2, .ds-hero h3 {
    color: #ffffff !important;
}

/* Sections that want centred headings use text-center */
body.websnp-frontend .text-center h1,
body.websnp-frontend .text-center h2,
body.websnp-frontend .text-center h3,
body.websnp-frontend .text-center h4 { text-align: center; }

/* ── Fix: Bootstrap .container inside the custom .row ───────────── */
/* style.css sets .row { max-width:1280px; margin:auto } which breaks
   Bootstrap's grid when rows are INSIDE .container.
   We scope Bootstrap-grid rows with .bs-row so they keep correct margins. */
body.websnp-frontend .container { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 20px; }
body.websnp-frontend .container > .row { max-width: 100%; margin-left: -15px; margin-right: -15px; }

/* ── Fix: bare .row inside sections (no .container) – VPS page, etc. ── */
/* Pages that use .row directly inside @section('main-content') get shifted
   left because style.css { .row { max-width:1280px; margin:0 auto } } sets
   auto margins, but Bootstrap column padding needs them negative. 
   We add horizontal padding to the section so the content never bleeds edge. */
/* Handled at page level where container wraps are more reliable */

/* ── Impersonate Bar ────────────────────────────────────────────── */
.impersonate-bar {
    background: #dc3545;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    font-size: 14px;
}
.impersonate-bar a { color: #fff; text-decoration: underline; margin-left: 12px; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════════
   TOP NAV
═══════════════════════════════════════════════════════════════════ */
.websnp-topbar {
    background: #0f172a;
    padding: 7px 0;
    border-bottom: 1px solid #1e293b;
}
.websnp-topbar .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.websnp-topbar ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 20px; }
.websnp-topbar ul li { font-size: 12px; color: #94a3b8; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.websnp-topbar ul li a { color: #94a3b8; text-decoration: none; transition: color .2s; }
.websnp-topbar ul li a:hover { color: #fff; }
.websnp-topbar ul li i { color: #3b82f6; font-size: 12px; }
.topbar-cta-login { color: #94a3b8 !important; font-weight: 600 !important; letter-spacing: .4px; }
.topbar-cta-register {
    background: var(--color-primary) !important;
    color: #fff !important;
    padding: 4px 14px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    transition: background .2s !important;
}
.topbar-cta-register:hover { background: var(--color-primary-d) !important; color: #fff !important; }

/* ═══════════════════════════════════════════════════════════════════
   MAIN NAV
═══════════════════════════════════════════════════════════════════ */
.websnp-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.websnp-navbar .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 64px;
}
.websnp-navbar .logo img { max-height: 44px; display: block; }
.websnp-navbar .logo { padding: 10px 0; }

/* Nav links */
.websnp-navbar nav ul.sf-menu > li > a {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    padding: 22px 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: color .2s;
}
.websnp-navbar nav ul.sf-menu > li > a:hover,
.websnp-navbar nav ul.sf-menu > li.current > a { color: var(--color-primary); }
.websnp-navbar nav ul.sf-menu ul { background: #fff; border: 1px solid var(--color-border); border-radius: 8px; box-shadow: var(--shadow-md); min-width: 220px; }
.websnp-navbar nav ul.sf-menu ul li a { font-size: 13px; font-weight: 500; color: #475569; padding: 10px 18px; text-transform: none; letter-spacing: 0; border-bottom: 1px solid #f8fafc; transition: all .15s; }
.websnp-navbar nav ul.sf-menu ul li a:hover { color: var(--color-primary); padding-left: 24px; background: #f8fafc; }

/* Mobile menu */
.slicknav_menu { display: none; }
@media (max-width: 768px) {
    .slicknav_menu { display: block; background: #0f172a; }
    #desktop-menu > nav { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION UTILITY CLASSES
═══════════════════════════════════════════════════════════════════ */
.section-pad { padding: 60px 0; }
.section-pad-sm { padding: 40px 0; }
.section-dark { background: var(--color-dark); }
.section-dark-2 { background: var(--color-dark-2); }
.section-light { background: var(--color-light-bg); }
.section-white { background: #ffffff; }
.section-blue { background: var(--color-primary); }

.section-title { font-size: 30px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--color-muted); margin-bottom: 44px; max-width: 620px; }
.section-title-center, .section-subtitle-center { text-align: center; }
.section-subtitle-center { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════════════════ */
.page-breadcrumb {
    background: var(--color-light-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0;
}
.page-breadcrumb ol.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    font-size: 13px;
}
.page-breadcrumb ol.breadcrumb li a { color: var(--color-primary); }
.page-breadcrumb ol.breadcrumb li.active { color: var(--color-muted); }
.page-breadcrumb ol.breadcrumb > li + li::before { color: #94a3b8; }

/* ═══════════════════════════════════════════════════════════════════
   GLOBAL BUTTONS
═══════════════════════════════════════════════════════════════════ */
.btn-websnp-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: background .2s, transform .15s;
    line-height: 1;
}
.btn-websnp-primary:hover { background: var(--color-primary-d); border-color: var(--color-primary-d); transform: translateY(-1px); }

.btn-websnp-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--color-primary) !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: all .2s;
    line-height: 1;
}
.btn-websnp-outline:hover { background: var(--color-primary); color: #fff !important; }

.btn-websnp-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,.85) !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    border: 1.5px solid rgba(255,255,255,.3);
    transition: all .2s;
    line-height: 1;
}
.btn-websnp-ghost:hover { background: rgba(255,255,255,.1); color: #fff !important; border-color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════════════════
   PLAN / SERVICE CARDS (used on inner pages)
═══════════════════════════════════════════════════════════════════ */
.ws-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow .2s, border-color .2s, transform .2s;
    position: relative;
    overflow: hidden;
}
.ws-card:hover { box-shadow: var(--shadow-md); border-color: #bfdbfe; transform: translateY(-3px); }
.ws-card.ws-card-featured { border-color: var(--color-primary); box-shadow: 0 4px 20px rgba(37,99,235,.15); }
.ws-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}
.ws-card-badge.badge-green { background: #16a34a; }
.ws-card-title { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.ws-card-price { font-size: 32px; font-weight: 800; color: var(--color-primary); margin: 12px 0; line-height: 1; }
.ws-card-price sup { font-size: 16px; vertical-align: super; }
.ws-card-price small { font-size: 14px; font-weight: 500; color: var(--color-muted); }
.ws-card-features { list-style: none; margin: 0 0 20px; padding: 0; }
.ws-card-features li { display: flex; align-items: center; gap: 8px; padding: 8px 0; font-size: 14px; color: #475569; border-bottom: 1px solid #f8fafc; }
.ws-card-features li:last-child { border-bottom: none; }
.ws-card-features li i { color: #16a34a; font-size: 13px; flex-shrink: 0; }
.ws-card-footer { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════
   INNER PAGE HERO (for sub-pages)
═══════════════════════════════════════════════════════════════════ */
.inner-hero {
    background: linear-gradient(135deg, #0a1628 0%, #0f2044 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}
.inner-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.inner-hero-content { position: relative; z-index: 1; }
.inner-hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 12px;
}
.inner-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}
.inner-hero p {
    font-size: 16px;
    color: #94a3b8;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.inner-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 28px;
}
.inner-hero-stat { text-align: left; }
.inner-hero-stat .stat-val { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.inner-hero-stat .stat-lbl { font-size: 12px; color: #64748b; margin-top: 4px; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════════════ */
.ws-trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0;
}
.ws-trust-bar .trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}
.ws-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}
.ws-trust-bar .trust-item i { color: var(--color-primary); font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════════
   FEATURE GRID (used on multiple pages)
═══════════════════════════════════════════════════════════════════ */
.ws-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ws-feature-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    transition: box-shadow .2s, border-color .2s;
}
.ws-feature-card:hover { box-shadow: var(--shadow-md); border-color: #bfdbfe; }
.ws-feature-icon {
    width: 52px; height: 52px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.ws-feature-icon i { font-size: 20px; color: var(--color-primary); }
.ws-feature-card h3 { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 10px; text-align: center; }
.ws-feature-card p { font-size: 13px; color: var(--color-muted); line-height: 1.65; margin: 0; }

/* Dark variant */
.ws-features-dark { background: var(--color-dark-2); }
.ws-features-dark .ws-feature-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.07); }
.ws-features-dark .ws-feature-card:hover { background: rgba(59,130,246,.08); border-color: rgba(59,130,246,.2); }
.ws-features-dark .ws-feature-icon { background: rgba(59,130,246,.12); }
.ws-features-dark .ws-feature-card h3 { color: #f1f5f9; }
.ws-features-dark .ws-feature-card p { color: #94a3b8; }

/* ═══════════════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════════════ */
.ws-stats-bar { background: var(--color-primary); padding: 48px 0; }
.ws-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.ws-stat-val { font-size: 40px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.ws-stat-lbl { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════════ */
.ws-faq-section { background: var(--color-light-bg); padding: 60px 0; }
.ws-faq-item { background: #fff; border: 1px solid var(--color-border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.ws-faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px; font-size: 15px; font-weight: 600; color: #1e293b;
    cursor: pointer; text-decoration: none !important; transition: color .15s;
}
.ws-faq-question:hover, .ws-faq-question[aria-expanded="true"] { color: var(--color-primary); }
.ws-faq-question i { font-size: 11px; color: #94a3b8; transition: transform .2s; flex-shrink: 0; }
.ws-faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.ws-faq-answer { padding: 0 20px 16px; font-size: 14px; color: #475569; line-height: 1.75; border-top: 1px solid #f1f5f9; }

/* ═══════════════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════════════ */
.ws-cta { background: linear-gradient(135deg, #0a1628 0%, #0f2044 100%); padding: 64px 0; text-align: center; }
.ws-cta h2 { font-size: 34px; font-weight: 800; color: #fff; margin-bottom: 14px; text-align: center; }
.ws-cta p { font-size: 16px; color: #94a3b8; margin-bottom: 32px; }
.ws-cta .cta-buttons { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════
   SERVER LISTING CARD (homepage + dedicated server page)
═══════════════════════════════════════════════════════════════════ */
.server-finder-wrap { background: #f1f5f9; padding: 48px 0 60px; }
.sf-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; }
.sf-title { font-size: 24px; font-weight: 700; color: #0f172a; margin: 0; }

.sf-layout { display: flex; gap: 22px; align-items: flex-start; }

/* Sidebar */
.sf-sidebar {
    width: 210px; flex-shrink: 0;
    background: #fff; border: 1px solid var(--color-border);
    border-radius: 10px; padding: 18px 16px;
    position: sticky; top: 80px;
}
.sf-sidebar-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #94a3b8; margin-bottom: 14px; display: block; }
.sf-filter-group { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #f1f5f9; }
.sf-filter-group:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sf-filter-head { font-size: 11px; font-weight: 700; color: #334155; text-transform: uppercase; letter-spacing: .7px; margin-bottom: 8px; display: block; }
.sf-filter-opt { display: flex; align-items: center; gap: 7px; padding: 4px 0; font-size: 12px; color: #475569; cursor: pointer; }
.sf-filter-opt input[type="checkbox"] { accent-color: var(--color-primary); width: 13px; height: 13px; }
.sf-filter-opt label { cursor: pointer; margin: 0; font-weight: 400; }
.sf-sidebar-btn { display: block; width: 100%; background: var(--color-primary); color: #fff; text-align: center; padding: 9px; border-radius: 6px; font-weight: 700; font-size: 12px; text-decoration: none; margin-top: 14px; transition: background .2s; border: none; cursor: pointer; }
.sf-sidebar-btn:hover { background: var(--color-primary-d); color: #fff; }

/* Results area */
.sf-results { flex: 1; min-width: 0; }
.sf-results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--color-muted); }
.sf-results-bar select { border: 1px solid var(--color-border); border-radius: 4px; padding: 4px 10px; font-size: 12px; color: #334155; background: #fff; }

/* Individual server card */
.server-card {
    background: #fff; border: 1px solid var(--color-border);
    border-radius: 10px; padding: 18px 20px;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 18px;
    transition: box-shadow .2s, border-color .2s;
}
.server-card:hover { box-shadow: var(--shadow-md); border-color: #bfdbfe; }
.server-card-name { width: 155px; flex-shrink: 0; }
.server-card-model { font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 5px; }
.server-card-avail { font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.server-card-avail.avail-instant { color: #16a34a; }
.server-card-avail.avail-days { color: #d97706; }
.server-card-avail i { font-size: 7px; }
.server-card-specs { flex: 1; }
.specs-grid { display: grid; grid-template-columns: 90px 1fr; gap: 3px 10px; font-size: 12px; }
.spec-label { color: #64748b; font-weight: 500; }
.spec-value { color: #1e293b; font-weight: 500; }
.spec-tag { display: inline-block; background: #dbeafe; color: #1d4ed8; font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 3px; margin-right: 3px; }
.spec-tag.green { background: #dcfce7; color: #15803d; }
.server-card-price { text-align: right; width: 155px; flex-shrink: 0; }
.price-main { font-size: 22px; font-weight: 800; color: #0f172a; line-height: 1; }
.price-main sup { font-size: 13px; vertical-align: super; font-weight: 600; }
.price-main small { font-size: 13px; font-weight: 600; }
.price-from { font-size: 11px; color: #94a3b8; margin-bottom: 2px; }
.price-period { font-size: 11px; color: #64748b; }
.price-hourly { font-size: 10px; color: #94a3b8; margin-bottom: 5px; }
.price-setup-free { display: inline-block; background: #dcfce7; color: #15803d; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 3px; margin-bottom: 10px; }
.btn-order-now {
    display: block; background: var(--color-primary); color: #fff;
    padding: 8px 16px; border-radius: 5px; font-weight: 700; font-size: 12px;
    text-align: center; text-decoration: none; border: none; cursor: pointer;
    transition: background .2s; margin-bottom: 6px; white-space: nowrap;
}
.btn-order-now:hover { background: var(--color-primary-d); color: #fff; }
.btn-order-configure {
    display: block; background: #fff; color: var(--color-primary);
    padding: 7px 16px; border-radius: 5px; font-weight: 600; font-size: 11px;
    text-align: center; text-decoration: none; border: 1px solid var(--color-primary);
    transition: all .2s;
}
.btn-order-configure:hover { background: var(--color-primary); color: #fff; }
.price-excl-vat { font-size: 10px; color: #94a3b8; margin-top: 4px; text-align: right; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.ws-footer { background: #0a1628; }
.ws-footer-main { padding: 52px 0 36px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ws-footer-col { margin-bottom: 30px; }
.ws-footer-heading {
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: #e2e8f0;
    padding-bottom: 8px; margin-bottom: 16px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}
.ws-footer-links { list-style: none; margin: 0; padding: 0; }
.ws-footer-links li { margin-bottom: 7px; font-size: 13px; display: flex; align-items: center; gap: 7px; }
.ws-footer-links li a { color: #94a3b8; text-decoration: none; transition: color .2s; }
.ws-footer-links li a:hover { color: #60a5fa; }
.ws-footer-links li i { color: #3b82f6; font-size: 12px; width: 14px; flex-shrink: 0; }
.ws-footer-links li span, .ws-footer-links li:not(:has(a)) { color: #94a3b8; }
.ws-footer-bottom { background: #020617; padding: 16px 0; }
.ws-footer-copy { font-size: 12px; color: #475569; }
.ws-footer-copy a { color: #64748b; text-decoration: none; transition: color .2s; }
.ws-footer-copy a:hover { color: #94a3b8; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .ws-features-grid { grid-template-columns: repeat(2, 1fr); }
    .ws-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sf-layout { flex-direction: column; }
    .sf-sidebar { width: 100%; position: static; }
    .inner-hero h1 { font-size: 30px; }
    .server-card { flex-wrap: wrap; }
    .server-card-name { width: 100%; }
    .server-card-price { width: 100%; text-align: left; }
}
@media (max-width: 767px) {
    .ws-features-grid { grid-template-columns: 1fr; }
    .ws-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ws-footer-main { padding: 36px 0 20px; }
    .server-card { padding: 14px; }
    .inner-hero { padding: 36px 0; }
    .inner-hero h1 { font-size: 26px; }
}
@media (max-width: 575px) {
    .ws-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .inner-hero-stats { gap: 16px; }
    .ws-cta h2 { font-size: 26px; }
}
