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

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
    --color-primary:   #0d9488;
    --color-primary-d: #0f766e;
    --color-accent:    #2dd4bf;
    --color-accent-d:  #14b8a6;
    --color-dark:      #0b2b26;
    --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;
    --radius-pill: 999px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,.08);
}

/* Bootstrap 3.4.1's normalize reset sets a 10px html font-size so its own
   rem-based utilities compute against a 10px base; every rem value in our
   own CSS assumes the browser default of 16px, so undo Bootstrap's override
   here (loaded after bootstrap.min.css) or all rem sizing shrinks to 62.5%. */
html { font-size: 16px; }

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

/* ── Fix: stop style.css forcing ALL headings centered ──────────── */
/* :where() keeps this a zero-specificity default (0,0,1) so any scoped
   heading rule — e.g. .win-cta h2 {color:#fff} on a dark section — wins
   without needing !important. */
:where(body.websnp-frontend) h1,
:where(body.websnp-frontend) h2,
:where(body.websnp-frontend) h3,
:where(body.websnp-frontend) h4,
:where(body.websnp-frontend) h5,
:where(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.
   Every dark-background hero/CTA container must be listed here, because the
   zero-specificity default above still direct-targets h1-h6 and therefore
   beats the white color these sections rely on inheriting. */
.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,
.about-hero h1, .about-hero h2, .about-hero h3,
.office-section h1, .office-section h2, .office-section h3,
.ssl-hero h1, .ssl-hero h2, .ssl-hero h3,
.ssl-cta-box h1, .ssl-cta-box h2, .ssl-cta-box h3,
.crypto-hero h1, .crypto-hero h2, .crypto-hero h3,
.crypto-cta h1, .crypto-cta h2, .crypto-cta h3,
.sec-hero h1, .sec-hero h2, .sec-hero h3,
.sec-cta h1, .sec-cta h2, .sec-cta h3,
.compare-hero h1, .compare-hero h2, .compare-hero h3,
.contact-hero h1, .contact-hero h2, .contact-hero h3,
.wap-section-dark h1, .wap-section-dark h2, .wap-section-dark h3,
.wap-cta h1, .wap-cta h2, .wap-cta h3,
.migr-hero h1, .migr-hero h2, .migr-hero h3,
.migr-cta h1, .migr-cta h2, .migr-cta h3,
.primary-cta-widget h1, .primary-cta-widget h2, .primary-cta-widget h3,
.team-hero h1, .team-hero h2, .team-hero h3,
.aff-hero h1, .aff-hero h2, .aff-hero h3,
.faq-hero h1, .faq-hero h2, .faq-hero h3,
.faq-cta h1, .faq-cta h2, .faq-cta h3,
.wds-section-dark h1, .wds-section-dark h2, .wds-section-dark h3,
.wrp-section-dark h1, .wrp-section-dark h2, .wrp-section-dark h3,
.wrp-cta h1, .wrp-cta h2, .wrp-cta h3,
.reviews-hero h1, .reviews-hero h2, .reviews-hero h3,
.svc-hero h1, .svc-hero h2, .svc-hero h3,
.svc-cta h1, .svc-cta h2, .svc-cta 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: 14px; 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: #14b8a6; font-size: 14px; }
.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: 14px;
    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: 14px; 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: 36px; font-weight: 800; letter-spacing: -.5px; 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: 14px;
}
.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: #99f6e4; transform: translateY(-3px); }
.ws-card.ws-card-featured { border-color: var(--color-primary); box-shadow: 0 4px 20px rgba(13,148,136,.15); }
.ws-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-primary);
    color: #fff;
    font-size: 14px;
    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: 14px; 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, #0b2b26 0%, #0f3a34 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: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2dd4bf;
    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: 14px; 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: 14px;
    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: #99f6e4; }
.ws-feature-icon {
    width: 52px; height: 52px;
    background: #f0fdfa;
    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: 14px; 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(20,184,166,.08); border-color: rgba(20,184,166,.2); }
.ws-features-dark .ws-feature-icon { background: rgba(20,184,166,.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: 14px; 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: 14px; 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, #0b2b26 0%, #0f3a34 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: 14px; 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: 14px; 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: 14px; 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: 14px; 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: 14px; color: var(--color-muted); }
.sf-results-bar select { border: 1px solid var(--color-border); border-radius: 4px; padding: 4px 10px; font-size: 14px; 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: #99f6e4; }
.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: 14px; 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: 14px; }
.server-card-specs { flex: 1; }
.specs-grid { display: grid; grid-template-columns: 90px 1fr; gap: 3px 10px; font-size: 14px; }
.spec-label { color: #64748b; font-weight: 500; }
.spec-value { color: #1e293b; font-weight: 500; }
.spec-tag { display: inline-block; background: #ccfbf1; color: #0f766e; font-size: 14px; 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: 14px; vertical-align: super; font-weight: 600; }
.price-main small { font-size: 14px; font-weight: 600; }
.price-from { font-size: 14px; color: #94a3b8; margin-bottom: 2px; }
.price-period { font-size: 14px; color: #64748b; }
.price-hourly { font-size: 14px; color: #94a3b8; margin-bottom: 5px; }
.price-setup-free { display: inline-block; background: #dcfce7; color: #15803d; font-size: 14px; 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: 14px;
    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: 14px;
    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: 14px; color: #94a3b8; margin-top: 4px; text-align: right; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.ws-footer { background: #0b2b26; }
.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: 14px; 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: 14px; 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: #2dd4bf; }
.ws-footer-links li i { color: #14b8a6; font-size: 14px; 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: 14px; 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; }
}

/* ── Shared social login/continue buttons (login page, checkout pages) ── */
.social-login-row { display: flex; gap: 12px; margin-bottom: 22px; }
.social-login-btn {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 13px 14px;
    border-radius: 11px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
}
.social-login-btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.social-login-google {
    background: #fff;
    color: #3c4043;
    border-color: #dadce0;
    box-shadow: 0 2px 6px rgba(60,64,67,0.18);
}
.social-login-google:hover {
    background: #f8faff;
    border-color: #0d9488;
    box-shadow: 0 6px 16px rgba(13,148,136,0.22);
    transform: translateY(-2px);
    text-decoration: none;
    color: #3c4043;
}
.social-login-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C5DD9 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(24,119,242,0.38);
}
.social-login-facebook:hover {
    box-shadow: 0 10px 22px rgba(24,119,242,0.48);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

/* ── Add-to-Cart toast (WsnpCart.toast) ──────────────────────────────── */
/* bottom offset clears the fixed WhatsApp chat button (#wa-chat-widget,
   also bottom-right) so the two never overlap */
.wsnp-cart-toast {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 9998;
    max-width: 360px;
    background: #0f172a;
    color: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 10px 32px rgba(0,0,0,.28);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(16px);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
}
.wsnp-cart-toast.show { transform: translateY(0); opacity: 1; }
.wsnp-cart-toast .wct-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.wsnp-cart-toast .wct-body { flex: 1; min-width: 0; }
.wsnp-cart-toast .wct-title { font-size: 14px; font-weight: 700; margin: 0 0 2px; }
.wsnp-cart-toast .wct-msg { font-size: 14px; color: #cbd5e1; margin: 0; line-height: 1.4; }
.wsnp-cart-toast .wct-actions { display: flex; gap: 8px; margin-top: 8px; }
.wsnp-cart-toast .wct-btn {
    font-size: 14px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 7px;
    text-decoration: none;
    white-space: nowrap;
}
.wsnp-cart-toast .wct-btn.primary { background: #f59e0b; color: #1a1203; }
.wsnp-cart-toast .wct-btn.primary:hover { background: #d97706; color: #1a1203; text-decoration: none; }
.wsnp-cart-toast .wct-btn.secondary { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); cursor: pointer; }
.wsnp-cart-toast .wct-btn.secondary:hover { background: rgba(255,255,255,.16); text-decoration: none; color: #fff; }
@media (max-width: 480px) {
    .wsnp-cart-toast { left: 12px; right: 12px; bottom: 84px; max-width: none; }
}

/* ── 2026 polish layer ──────────────────────────────────────────────
   Site-wide finishing pass applied after the CSS was consolidated out
   of the blade files. Uses only the brand tokens above (logo teal +
   navy) so every page inherits the same professional finish. */

:root {
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, .12);
    --ring: 0 0 0 3px rgba(13, 148, 136, .35);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body.websnp-frontend {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection { background: var(--color-primary); color: #fff; }

/* Consistent, accessible keyboard focus everywhere */
body.websnp-frontend a:focus-visible,
body.websnp-frontend button:focus-visible,
body.websnp-frontend input:focus-visible,
body.websnp-frontend select:focus-visible,
body.websnp-frontend textarea:focus-visible {
    outline: none;
    box-shadow: var(--ring);
    border-radius: 4px;
}

/* Headings: tighter tracking reads more premium at display sizes */
body.websnp-frontend h1,
body.websnp-frontend h2 {
    letter-spacing: -.02em;
    text-wrap: balance;
}
body.websnp-frontend h3 { letter-spacing: -.01em; }

/* Slim brand scrollbar (WebKit + Firefox) */
body.websnp-frontend { scrollbar-color: #94a3b8 #f1f5f9; scrollbar-width: thin; }
body.websnp-frontend::-webkit-scrollbar { width: 10px; }
body.websnp-frontend::-webkit-scrollbar-track { background: #f1f5f9; }
body.websnp-frontend::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 6px;
    border: 2px solid #f1f5f9;
}
body.websnp-frontend::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

/* Images never overflow their column */
body.websnp-frontend main img { max-width: 100%; height: auto; }

/* Second dark-section allowlist — generated from a scan of every page
   stylesheet for containers that pair a dark background with white text
   but whose headings would otherwise fall back to the global navy default. */
.wds-hero h1,
.wds-hero h2,
.wds-hero h3,
.be-btn h1,
.be-btn h2,
.be-btn h3,
.be-badge h1,
.be-badge h2,
.be-badge h3,
.esewa-hero h1,
.esewa-hero h2,
.esewa-hero h3,
.esewa-cta h1,
.esewa-cta h2,
.esewa-cta h3,
.btn-browse-plans h1,
.btn-browse-plans h2,
.btn-browse-plans h3,
.cwd-hero-cta h1,
.cwd-hero-cta h2,
.cwd-hero-cta h3,
.cwd-step-num h1,
.cwd-step-num h2,
.cwd-step-num h3,
.cwh-hero-cta h1,
.cwh-hero-cta h2,
.cwh-hero-cta h3,
.cwh-domain-cta h1,
.cwh-domain-cta h2,
.cwh-domain-cta h3,
.cwh-feature-icon h1,
.cwh-feature-icon h2,
.cwh-feature-icon h3,
.cloud-why-icon h1,
.cloud-why-icon h2,
.cloud-why-icon h3,
.cpl-hero-eyebrow h1,
.cpl-hero-eyebrow h2,
.cpl-hero-eyebrow h3,
.cpl-plan-badge h1,
.cpl-plan-badge h2,
.cpl-plan-badge h3,
.cpl-btn h1,
.cpl-btn h2,
.cpl-btn h3,
.plesk-divider-badge h1,
.plesk-divider-badge h2,
.plesk-divider-badge h3,
.plesk-plan-badge h1,
.plesk-plan-badge h2,
.plesk-plan-badge h3,
.plesk-plan-icon h1,
.plesk-plan-icon h2,
.plesk-plan-icon h3,
.plesk-btn h1,
.plesk-btn h2,
.plesk-btn h3,
.wap-pricing-cta h1,
.wap-pricing-cta h2,
.wap-pricing-cta h3,
.dip-step-num h1,
.dip-step-num h2,
.dip-step-num h3,
.dip-ts-num h1,
.dip-ts-num h2,
.dip-ts-num h3,
.aipro-panel-badge h1,
.aipro-panel-badge h2,
.aipro-panel-badge h3,
.gw-btn h1,
.gw-btn h2,
.gw-btn h3,
.gw-badge h1,
.gw-badge h2,
.gw-badge h3,
.gw-cta h1,
.gw-cta h2,
.gw-cta h3,
.hc-btn h1,
.hc-btn h2,
.hc-btn h3,
.hp-announce-bar h1,
.hp-announce-bar h2,
.hp-announce-bar h3,
.hp-pt-badge h1,
.hp-pt-badge h2,
.hp-pt-badge h3,
.ds-hero-cta h1,
.ds-hero-cta h2,
.ds-hero-cta h3,
.team-avatar h1,
.team-avatar h2,
.team-avatar h3,
.team-office-img h1,
.team-office-img h2,
.team-office-img h3,
.wh-plan-btn h1,
.wh-plan-btn h2,
.wh-plan-btn h3,
.win-specs-badge h1,
.win-specs-badge h2,
.win-specs-badge h3,
.wd-btn-primary h1,
.wd-btn-primary h2,
.wd-btn-primary h3,
.wds-price-type h1,
.wds-price-type h2,
.wds-price-type h3,
.wds-cta h1,
.wds-cta h2,
.wds-cta h3,
.wrp-pricing-cta h1,
.wrp-pricing-cta h2,
.wrp-pricing-cta h3,
.review-avatar h1,
.review-avatar h2,
.review-avatar h3,
.win-card-btn h1,
.win-card-btn h2,
.win-card-btn h3,
.zm-cta-btn h1,
.zm-cta-btn h2,
.zm-cta-btn h3,
.zw-cta-btn h1,
.zw-cta-btn h2,
.zw-cta-btn h3 {
    color: #ffffff !important;
}
