*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black: #ffffff;
    --off-black: #f8fbff;
    --surface: #ffffff;
    --surface-2: #f4f8ff;
    --border: rgba(15, 23, 42, 0.12);
    --border-bright: rgba(30, 58, 138, 0.22);
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --accent: #000000;
    --accent-dim: rgba(0, 0, 0, 0.12);
    --accent-dim2: rgba(0, 0, 0, 0.06);
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
#plans.product-plans-anchor { scroll-margin-top: 80px; }

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--text-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ─────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0;
}

/* ── GLOW ORBS ─────────────────────────────────────── */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.glow-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,240,74,0.07) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.glow-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(200,240,74,0.04) 0%, transparent 70%);
    bottom: 100px; left: -150px;
}

/* ── HEADER ────────────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
    background: rgba(0,0,0,0.92) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 68px;
    gap: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
}
.logo-image {
    height: 78px;
    width: auto;
    display: block;
    max-width: none;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    padding: 8px;
    color: #ffffff !important;
    cursor: pointer;
    transition: background 0.2s;
}
.menu-toggle:hover { background: rgba(255,255,255,0.12); }
.menu-toggle svg { display: block; }

/* Nav */
nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.nav-item {
    position: relative;
}
.nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px;
}
.nav-right-start {
    margin-left: auto;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    color: #ffffff !important;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    text-decoration: none;
}
.nav-btn:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.14) !important;
}
.chat-bell-btn {
    position: relative;
}
.chat-bell-icon {
    font-size: 15px;
    line-height: 1;
}
.chat-bell-badge {
    position: absolute;
    top: 1px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.nav-btn svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-item:hover > .nav-btn svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    min-width: 200px;
    background: #0f0f0f !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 14px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
    pointer-events: none;
    max-height: 320px;
    overflow-y: auto;
}
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.dropdown a {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}
.dropdown a:hover {
    background: rgba(255,255,255,0.14) !important;
    color: #ffffff !important;
}

/* Locale modal */
.locale-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: none;
}
.locale-modal.open {
    display: block;
}
.locale-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
}
.locale-modal-panel {
    position: relative;
    margin: 0 auto;
    width: min(1120px, calc(100% - 40px));
    max-height: calc(100vh - 40px);
    margin-top: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.18);
    padding: 24px;
    overflow: auto;
}
.locale-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.locale-modal-head h2 {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1.05;
    color: #111827;
}
.locale-modal-close {
    border: none;
    background: none;
    font-size: 30px;
    line-height: 1;
    color: #111827;
    cursor: pointer;
}
.locale-modal-search-wrap {
    position: relative;
    margin-bottom: 20px;
    width: 340px;
    max-width: 100%;
}
.locale-modal-search-wrap i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 16px;
}
.locale-modal-search-wrap input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 38px 10px 12px;
    font-size: 14px;
    color: #111827;
    outline: none;
}
.locale-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px 22px;
}
.locale-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 2px;
    border-radius: 8px;
    text-decoration: none;
}
.locale-item:hover {
    background: rgba(2, 132, 199, 0.08);
}
.locale-item-flag {
    font-size: 16px;
}
.locale-item-country {
    font-size: 15px;
    color: #111827;
    font-weight: 500;
}
.locale-item-lang {
    font-size: 13px;
    color: #6b7280;
}

/* CTA button */
.btn-account {
    margin-left: 8px;
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--black);
    background: var(--accent);
    border: none;
    border-radius: 9px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-account:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── MAIN ─────────────────────────────────────────── */
main {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px 88px;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
}

.hero-kicker {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.hero-kicker span {
    color: #2563eb;
}

h1 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 10px;
    font-weight: 400;
}

.hero-benefits {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hero-benefits li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.45;
    color: var(--text-primary);
}
.hero-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-weight: 700;
}

.hero-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 6px;
}
.hero-price-original {
    font-size: 18px;
    line-height: 1.3;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    margin: 0 0 4px;
}
.hero-price-current {
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.hero-price-label {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-secondary);
    margin: 6px 0 0;
    font-weight: 500;
}
.hero-price .price-main {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--text-primary);
}
.hero-price .price-unit {
    font-size: 20px;
    line-height: 1.2;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-renewal {
    font-size: 16px;
    line-height: 1.45;
    color: #4b5563;
    margin-bottom: 10px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 13px 26px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    background: var(--accent);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary svg { width: 14px; height: 14px; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 13px 26px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border-bright);
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: var(--accent-dim2); transform: translateY(-1px); }

.hero-guarantee {
    font-size: 16px;
    line-height: 1.45;
    color: var(--text-primary);
    margin: 0;
}

/* ── FOUNDER'S HOSTING (HOME) ──────────────────────── */
.founders-home-section {
    margin: 56px 0 12px;
}
.founders-home-card {
    border-radius: 20px;
    border: 1px solid rgba(200, 240, 74, 0.22);
    background:
        radial-gradient(ellipse 70% 80% at 100% 0%, rgba(200, 240, 74, 0.12), transparent 55%),
        linear-gradient(145deg, #0a0a0a 0%, #121212 55%, #0a0a0a 100%);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.founders-home-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
    padding: 32px;
}
.founders-home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
}
.founders-home-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #c8f04a;
    box-shadow: 0 0 10px rgba(200, 240, 74, 0.7);
}
.founders-home-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 12px;
}
.founders-home-lead {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
    max-width: 560px;
    margin-bottom: 16px;
}
.founders-home-stacks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.founders-home-stacks span {
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid rgba(200, 240, 74, 0.28);
    background: rgba(200, 240, 74, 0.08);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #c8f04a;
}
.founders-home-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
}
.founders-home-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}
.founders-home-features i {
    color: #c8f04a;
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}
.founders-home-pricing {
    padding: 26px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}
.founders-home-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: #c8f04a;
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.founders-home-from {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 6px;
}
.founders-home-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}
.founders-home-currency {
    font-family: var(--font-display);
    font-size: 28px;
    color: #c8f04a;
    font-weight: 700;
}
.founders-home-amount {
    font-family: var(--font-display);
    font-size: 52px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #ffffff;
    font-weight: 700;
}
.founders-home-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.48);
}
.founders-home-billing {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
    line-height: 1.5;
}
.founders-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 20px;
    border-radius: 10px;
    background: #c8f04a;
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}
.founders-home-btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
    color: #0a0a0a;
}
.founders-home-note {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 960px) {
    .founders-home-section {
        margin-top: 40px;
    }
    .founders-home-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .founders-home-features {
        grid-template-columns: 1fr;
    }
}

/* ── HERO RIGHT (DOMAIN SEARCH) ───────────────────── */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-domain-card {
    width: 100%;
    max-width: 440px;
    padding: 28px 26px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}
.hero-domain-kicker {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.hero-domain-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0 0 14px;
}
.hero-domain-title-sm {
    display: block;
    font-size: 0.62em;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 4px;
}
.hero-domain-tlds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}
.hero-domain-tld {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hero-domain-tld:hover,
.hero-domain-tld:focus-visible {
    border-color: var(--text-primary);
    background: var(--accent-dim2);
    outline: none;
}
.hero-domain-field {
    display: block;
    margin-bottom: 14px;
}
.hero-domain-field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.hero-domain-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-domain-input-wrap:focus-within {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.hero-domain-input-wrap i {
    font-size: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
}
.hero-domain-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-size: 16px;
    color: var(--text-primary);
    outline: none;
}
.hero-domain-input::placeholder {
    color: var(--text-muted);
}
.hero-domain-submit {
    width: 100%;
    justify-content: center;
    gap: 8px;
    font-size: 17px;
    padding: 14px 20px;
    border-radius: 10px;
}
.hero-domain-submit i {
    font-size: 18px;
    transition: transform 0.2s;
}
.hero-domain-submit:hover i {
    transform: translateX(3px);
}
.hero-domain-note {
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
    text-align: center;
}

/* Legacy blueprint (unused) ─────────────────────────── */
.hero-engine-card {
    position: relative;
    width: min(100%, 460px);
    aspect-ratio: 1 / 1;
    background: #060913 !important;
    border: 1px solid rgba(56, 189, 248, 0.25) !important;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.85), inset 0 0 32px rgba(14, 165, 233, 0.15) !important;
    overflow: hidden;
    color: #e2e8f0;
}

/* Blueprint Grid Overlay */
.bp-grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-size: 20px 20px;
    background-image: 
        linear-gradient(to right, rgba(56, 189, 248, 0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(56, 189, 248, 0.045) 1px, transparent 1px);
    z-index: 1;
}

/* Crosshair Markers in Corners */
.bp-crosshair {
    position: absolute;
    font-family: monospace;
    font-size: 14px;
    color: rgba(56, 189, 248, 0.35);
    pointer-events: none;
    user-select: none;
    z-index: 2;
}
.bp-ch-tl { top: 8px; left: 12px; }
.bp-ch-tr { top: 8px; right: 12px; }
.bp-ch-bl { bottom: 8px; left: 12px; }
.bp-ch-br { bottom: 8px; right: 12px; }

/* Technical Coordinates Text */
.bp-coordinate {
    position: absolute;
    font-family: monospace;
    font-size: 8px;
    letter-spacing: 0.1em;
    color: rgba(56, 189, 248, 0.45);
    z-index: 2;
    pointer-events: none;
    user-select: none;
}
.bp-coord-left {
    bottom: 8px;
    left: 28px;
}
.bp-coord-right {
    top: 10px;
    right: 28px;
}

/* Blueprint Line Vectors */
.bp-vector-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* HUD Panels */
.bp-panel {
    position: absolute;
    background: rgba(6, 9, 19, 0.88);
    border: 1px solid rgba(56, 189, 248, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.bp-panel:hover {
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.25);
    transform: translateY(-2px);
}

/* Panel 1: ECU Status */
.panel-ecu {
    top: 24px;
    left: 24px;
    border-radius: 10px;
    padding: 8px 12px;
    min-width: 135px;
}
.panel-ecu .panel-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    padding-bottom: 4px;
}
.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
.panel-ecu .panel-title {
    font-family: monospace;
    font-size: 8px;
    font-weight: bold;
    color: rgba(56, 189, 248, 0.8);
    letter-spacing: 0.05em;
}
.ecu-metric {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 9px;
    margin-top: 3px;
}
.ecu-metric .lbl { color: rgba(255, 255, 255, 0.5); }
.text-cyan { color: #38bdf8; text-shadow: 0 0 6px rgba(56, 189, 248, 0.5); }
.text-green { color: #10b981; text-shadow: 0 0 6px rgba(16, 185, 129, 0.5); }

/* Panel 2: 80% OFF (Styled like an automotive performance dial/badge) */
.panel-discount {
    top: 130px;
    right: 24px;
    border-radius: 14px;
    padding: 12px 16px;
    text-align: center;
    border-style: dashed;
    border-width: 1.5px;
    background: rgba(6, 9, 19, 0.82);
}
.discount-percent {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 0.95;
    color: #38bdf8;
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}
.discount-badge-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}
.discount-sub {
    font-family: monospace;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

/* Panel 3: Trust Metric */
.panel-trust {
    bottom: 28px;
    left: 24px;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 155px;
}
.trust-icon {
    font-size: 20px;
    color: #38bdf8;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-content {
    display: flex;
    flex-direction: column;
}
.trust-number {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
}
.trust-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Panel 4: Global Datacenter */
.panel-datacenter {
    bottom: 28px;
    right: 24px;
    border-radius: 12px;
    padding: 10px 12px;
    min-width: 175px;
}
.datacenter-title {
    font-size: 9.5px;
    text-transform: uppercase;
    font-family: monospace;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 4px;
}
.flags-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}
.flag-item {
    font-size: 9.5px;
    color: #ffffff;
    font-weight: 500;
    white-space: nowrap;
}

/* Central Hologram Screen */
.engine-hologram {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.engine-svg {
    width: 90%;
    height: 90%;
}

/* Responsive adjustments for HUD panels on mobile */
@media (max-width: 480px) {
    .panel-ecu {
        top: 12px;
        left: 12px;
        min-width: 100px;
        padding: 4px 8px;
    }
    .panel-discount {
        top: 90px;
        right: 12px;
        padding: 8px 10px;
    }
    .discount-percent {
        font-size: 22px;
    }
    .discount-badge-label {
        font-size: 10px;
    }
    .panel-trust {
        bottom: 12px;
        left: 12px;
        min-width: 110px;
        padding: 6px 8px;
        gap: 6px;
    }
    .trust-icon {
        font-size: 14px;
    }
    .trust-number {
        font-size: 13px;
    }
    .trust-label {
        font-size: 8px;
    }
    .panel-datacenter {
        bottom: 12px;
        right: 12px;
        min-width: 125px;
        padding: 6px 8px;
    }
    .datacenter-title {
        font-size: 8px;
        margin-bottom: 4px;
    }
    .flags-grid {
        gap: 2px;
    }
    .flag-item {
        font-size: 7.5px;
    }
}

/* ── SVG ENGINE ANIMATIONS (Migrated to native SVG SMIL animations for precise browser synchronization) ── */

/* ── TRUST BAR ────────────────────────────────────── */
.trust-bar {
    margin-top: 96px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}
.trust-label {
    font-size: 11.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    margin-bottom: 32px;
}
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}
.trust-stat {
    background: var(--off-black);
    padding: 28px 20px;
    text-align: center;
}
.trust-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.trust-num span { color: var(--accent); }
.trust-desc {
    font-size: 13px;
    color: var(--text-muted);
}



/* ── PRICING SECTION ─────────────────────────────── */
.pricing-section {
    margin-top: 88px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px 5px 8px;
    background: var(--accent-dim2);
    border: 1px solid rgba(200,240,74,0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.05;
    margin-bottom: 14px;
}
.section-title .acc { color: var(--accent); }
.section-sub {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 500px;
    line-height: 1.7;
    margin: 0 auto 36px;
}
.duration-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    justify-content: center;
}
.duration-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}
.duration-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.dur-btn {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid var(--border-bright);
    background: rgba(255,255,255,0.03);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.dur-btn:hover { border-color: rgba(200,240,74,0.25); color: var(--text-primary); }
.dur-btn.active {
    background: var(--accent-dim);
    border-color: rgba(200,240,74,0.25);
    color: var(--accent);
    font-weight: 500;
}
.dur-save {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: var(--accent);
    color: var(--black);
    padding: 2px 7px;
    border-radius: 100px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 340px));
    justify-content: center;
    gap: 22px;
    align-items: stretch;   /* make all plan boxes same height */
    justify-items: stretch; /* keep full-width inside the column */
}
.pricing-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    width: 100%;
}
.pricing-section:has(.pricing-grid--4) {
    max-width: 1320px;
}
.pricing-grid--4 .plan-inner {
    padding: 24px 18px 20px;
}
.pricing-grid--4 .plan-name {
    font-size: 22px;
}
.pricing-grid--4 .plan-desc {
    font-size: 13px;
}
.pricing-grid--4 .price-amount {
    font-size: 34px;
}
.pricing-grid--4 .feat-text {
    font-size: 13px;
}
.plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.25s, transform 0.25s;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.plan-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-3px);
}
.plan-card.featured {
    border-color: rgba(200,240,74,0.25);
    background: linear-gradient(180deg, rgba(200,240,74,0.04) 0%, var(--surface) 60%);
}
.feat-bar {
    background: var(--accent);
    padding: 7px 0;
    text-align: center;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
}
.plan-inner {
    padding: 28px 26px 24px;
    flex: 1; /* let the card stretch nicely */
    display: flex;
    flex-direction: column;
}
.plan-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.plan-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}
.plan-price-row { margin-bottom: 6px; }
.plan-discount-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.plan-discount-badge {
    font-size: 12px;
    font-weight: 700;
    color: #16a34a;
}
.plan-price-original {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}
.plan-price-original-currency {
    font-size: 12px;
}
.plan-price-original-amount {
    font-size: 15px;
    font-weight: 600;
}
.plan-price { display: flex; align-items: baseline; gap: 2px; }
.price-curr {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.price-amount {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
}
.plan-card.featured .price-amount { color: var(--accent); }
.price-mo { font-size: 13px; color: var(--text-muted); margin-left: 2px; }
.price-note {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.plan-cta {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 12px;
}
.cta-default {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-bright);
    color: var(--text-primary);
}
.cta-featured {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--black);
}
.renewal-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px;
    background: rgba(200,240,74,0.06);
    border: 1px solid rgba(200,240,74,0.12);
    border-radius: 8px;
    font-size: 11px;
    color: var(--accent);
    margin-bottom: 20px;
}
.plan-divider {
    height: 1px;
    background: var(--border);
    margin: 0 -24px 20px;
}
.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.4;
}
.feat-item.crossed {
    opacity: 0.35;
    text-decoration: line-through;
}
.feat-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid rgba(200,240,74,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.feat-cross {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.feat-text strong { color: var(--text-primary); font-weight: 500; }
.feat-badge {
    display: inline-flex;
    align-items: center;
    padding: 1px 7px;
    border-radius: 4px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-left: 5px;
}
.badge-free { background: rgba(200,240,74,0.12); color: var(--accent); border: 1px solid rgba(200,240,74,0.25); }
.badge-new { background: rgba(100,180,255,0.12); color: #6ab4ff; border: 1px solid rgba(100,180,255,0.2); }
.feat-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 14px 0 0;
    background: none;
    border: none;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 12.5px;
    cursor: pointer;
    transition: color 0.2s;
    margin-top: 16px;
}
.feat-toggle svg { transition: transform 0.3s; }
.feat-toggle.open svg { transform: rotate(180deg); }
.extra-features { display: none; padding-top: 12px; }
.extra-features.open { display: flex; flex-direction: column; gap: 9px; }
.guarantee-strip {
    margin-top: 64px;
    padding: 28px 36px;
    background: var(--surface);
    border: 1px solid var(--border-bright);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.guarantee-item { display: flex; align-items: center; gap: 14px; }
.guarantee-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-dim);
    border: 1px solid rgba(200,240,74,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.guarantee-icon i {
    font-size: 18px;
    color: var(--accent);
    line-height: 1;
}
.guarantee-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.guarantee-desc { font-size: 12px; color: var(--text-muted); }

/* ── TRUST BADGES BAR ─────────────────────────────── */
.trust-badges-bar {
    margin: 28px 0 8px;
    padding: 18px 24px;
    background: #f3f4f6;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
}
.trust-badges-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.trust-badge-icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}
.trust-badge-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
}

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials-section {
    margin: 48px 0 12px;
}
.testimonials-head {
    margin-bottom: 20px;
}
.testimonials-kicker {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.testimonials-head h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.1;
    color: var(--text-primary);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
    color: #f59e0b;
    font-size: 13px;
}
.testimonial-card blockquote {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 0 14px;
}
.testimonial-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}
.testimonial-company {
    font-size: 12px;
    color: var(--text-muted);
    margin: 2px 0 0;
}

/* ── FAQ ──────────────────────────────────────────── */
.faq-section {
    max-width: 1280px;
    margin: 48px auto 32px;
    padding: 0 24px;
}
.faq-head {
    margin-bottom: 18px;
}
.faq-kicker {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.faq-head h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.1;
    color: var(--text-primary);
}
.faq-intro {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 640px;
    margin-top: 8px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    font-size: 20px;
    line-height: 1;
    color: var(--text-muted);
    flex-shrink: 0;
}
.faq-item[open] summary::after {
    content: "−";
}
.faq-answer {
    padding: 0 18px 16px;
}
.faq-answer p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}
.faq-answer p:last-child {
    margin-bottom: 0;
}
.faq-answer ul {
    margin: 0 0 12px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.faq-answer li {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}
.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}
.faq-answer code {
    font-size: 13px;
    padding: 1px 5px;
    border-radius: 4px;
    background: var(--surface-2);
    border: 1px solid var(--border);
}
.faq-answer a {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.faq-item p {
    padding: 0 18px 16px;
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ── FOOTER ───────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px 56px;
}
.site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.site-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
}
.site-footer-col h4 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.site-footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.site-footer-col-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
}
.site-footer-col-links a:hover {
    color: var(--text-primary);
}
.site-footer-credibility {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.site-footer-company p {
    margin: 0 0 4px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.site-footer-managed-label {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px !important;
}
.site-footer-company strong {
    color: var(--text-primary);
}
.site-footer-company-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
}
.site-footer-company-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.site-footer-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.site-footer-ssl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}
.site-footer-ssl-badge i {
    color: #16a34a;
}
.site-footer-payments {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
}

/* ── MONEY BACK SECTION ─────────────────────────────── */
.moneyback-section {
    max-width: 1280px;
    margin: 44px auto 24px;
    padding: 0 24px;
}
.moneyback-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
}
.moneyback-copy,
.moneyback-founder {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
}
.moneyback-kicker {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.moneyback-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.moneyback-copy p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 760px;
}
.moneyback-founder {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.moneyback-sign {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.moneyback-founder h3 {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.moneyback-founder p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ── EXPERT SUPPORT SECTION ─────────────────────────── */
.expert-support-section {
    max-width: 1280px;
    margin: 12px auto 32px;
    padding: 0 24px;
}
.expert-support-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
}
.expert-support-kicker {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.expert-support-card h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.expert-support-intro {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 900px;
    margin-bottom: 16px;
}
.expert-support-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}
.expert-support-highlight {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-2);
    padding: 14px 16px;
}
.expert-support-highlight h3 {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.expert-support-highlight p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.expert-support-help h3 {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.expert-support-help ul {
    list-style: none;
    display: grid;
    gap: 8px;
}
.expert-support-help li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.7;
}
.expert-support-help li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; gap: 56px; }
    .hero-domain-card { max-width: none; }
    h1 { font-size: clamp(38px, 8vw, 60px); }
    .trust-stats { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, minmax(280px, 360px)); }
    .pricing-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .moneyback-grid { grid-template-columns: 1fr; }
    .expert-support-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    main { padding: 64px 20px 80px; }
    .logo-image { height: 50px; }

    /* Mobile nav */
    .menu-toggle { display: flex; }

    nav {
        display: none;
        position: absolute;
        left: 0; right: 0;
        top: 68px;
        flex-direction: column;
        align-items: stretch;
        background: #000000 !important;
        border-bottom: 1px solid rgba(255,255,255,0.15) !important;
        padding: 12px 16px;
        gap: 2px;
        z-index: 100;
    }
    nav.open { display: flex; }

    .nav-item { width: 100%; }
    .nav-btn { width: 100%; justify-content: space-between; font-size: 15px; padding: 10px 12px; }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--surface);
        border-radius: 10px;
        border-color: var(--border);
        margin: 4px 0 4px 0;
        display: none;
        pointer-events: auto;
    }
    .nav-item.open .dropdown { display: block; }
    .nav-item.open > .nav-btn svg { transform: rotate(180deg); }

    .btn-account { width: 100%; text-align: center; justify-content: center; margin: 8px 0 4px; padding: 11px 18px; font-size: 14px; }

    .hero { gap: 40px; }
    .pricing-grid { grid-template-columns: minmax(0, 460px); gap: 16px; }
    .pricing-grid--4 { grid-template-columns: 1fr; }
    .guarantee-strip { flex-direction: column; align-items: flex-start; }
    .trust-badges-inner { grid-template-columns: 1fr 1fr; }
    .trust-badge-item { justify-content: flex-start; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .site-footer-credibility { flex-direction: column; }
    .hero-actions { gap: 10px; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .trust-stats { grid-template-columns: 1fr 1fr; }
    .trust-num { font-size: 26px; }

    .locale-modal-panel {
        width: calc(100% - 20px);
        margin-top: 10px;
        max-height: calc(100vh - 20px);
        padding: 16px;
    }
    .locale-modal-head h2 { font-size: 30px; }
    .locale-grid { grid-template-columns: 1fr 1fr; gap: 2px 12px; }
}

@media (max-width: 480px) {
    h1 { font-size: 36px; }
    .trust-stats { grid-template-columns: 1fr; }
}

/* ── PRODUCT PAGE HERO ───────────────────────────────── */
.product-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px 24px 72px;
}
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    min-height: calc(100vh - 140px);
    margin-bottom: 52px;
}
.product-hero-left {
    max-width: 620px;
}
.product-hero-kicker {
    font-size: 20px;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}
.product-hero-title {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 10px;
    max-width: 460px;
}
.product-hero-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 680px;
    line-height: 1.5;
    white-space: pre-line;
}
.product-hero-bullets {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
    gap: 6px;
}
.product-hero-bullets li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.45;
}
.product-hero-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-weight: 700;
}
.product-hero-actions {
    margin-top: 14px;
}
.product-hero-starting-price {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}
.product-hero-starting-price strong {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-size: 22px;
    letter-spacing: -0.02em;
}
.product-hero-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.product-hero-side-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    grid-column: 1 / -1;
}
.product-highlight-card {
    background: rgba(2, 6, 23, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 18px 42px rgba(2, 6, 23, 0.34);
}
.product-highlight-card h3 {
    font-family: var(--font-body);
    font-size: 14px;
    color: #f8fafc;
    margin-bottom: 4px;
    font-weight: 600;
}
.product-highlight-card p {
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.5;
}

/* ── WEBSITE PERFORMANCE & UPTIME MONITOR DASHBOARD ────────────────── */
.perf-dashboard-container {
    grid-column: 1 / -1;
    background: #060913;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(3, 7, 18, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    font-family: var(--font-body);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Browser mock header */
.perf-browser-header {
    background: #0b0f19;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.perf-window-dots {
    display: flex;
    gap: 6px;
}
.perf-window-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.perf-window-dots .dot.red { background: #ef4444; }
.perf-window-dots .dot.yellow { background: #f59e0b; }
.perf-window-dots .dot.green { background: #10b981; }

.perf-address-bar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 3px 20px;
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.02em;
}
.perf-address-bar .lock-icon {
    color: #10b981;
}

.perf-status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

/* Dashboard body content */
.perf-dashboard-content {
    padding: 20px;
    position: relative;
    background-image: radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Laser scan line overlay */
.perf-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.4), rgba(16, 185, 129, 0.4), transparent);
    animation: perf-scanner 4s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}
@keyframes perf-scanner {
    0% { top: 0%; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.perf-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

/* Panels generic styling */
.perf-panel {
    background: rgba(11, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    padding: 14px;
    position: relative;
    z-index: 2;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.perf-panel:hover {
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

.perf-panel-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}
.perf-panel-tag {
    font-size: 8px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.perf-panel-title {
    font-size: 11px;
    font-weight: 600;
    color: #f8fafc;
    letter-spacing: 0.02em;
    margin-top: 1px;
}

/* Top Row: Score & Uptime side-by-side */
.perf-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Score Panel Specific */
.perf-score-visual {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.score-circle-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.circle-progress {
    animation: perf-gauge-fill 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes perf-gauge-fill {
    0% { stroke-dashoffset: 264; }
    100% { stroke-dashoffset: 0; }
}

.perf-score-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
.score-number {
    font-size: 26px;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}
.score-label {
    font-size: 8px;
    color: #94a3b8;
    margin-top: 2px;
    font-weight: 500;
}

.perf-score-details {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.perf-score-details .detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.perf-score-details .detail-item .lbl {
    font-size: 7.5px;
    color: #64748b;
    font-weight: 600;
}
.perf-score-details .detail-item .val {
    font-size: 10px;
    color: #f1f5f9;
    font-weight: 700;
    margin-top: 1px;
}

/* Uptime Panel Specific */
.perf-uptime-visual {
    text-align: center;
    margin-bottom: 8px;
}
.uptime-percentage {
    font-size: 20px;
    font-weight: 800;
    color: #10b981;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}
.uptime-badge {
    font-size: 7.5px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(16, 185, 129, 0.9);
    padding: 1.5px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.perf-uptime-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.uptime-stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 8.5px;
}
.uptime-stat-row .lbl {
    color: #64748b;
    font-weight: 600;
}
.uptime-stat-row .val {
    color: #e2e8f0;
    font-weight: 700;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    margin-top: 8px;
}
.server-grid .srv-dot {
    height: 5px;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.06);
}
.server-grid .srv-dot.active {
    background: #10b981;
    box-shadow: 0 0 4px rgba(16, 185, 129, 0.6);
}

/* Bottom Panel: Revenue Chart Specific */
.perf-bottom-panel {
    background: rgba(11, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    padding: 14px;
    position: relative;
    z-index: 2;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.perf-bottom-panel:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}
.perf-bottom-panel .perf-panel-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}
.perf-bottom-panel .perf-panel-header .header-left {
    display: flex;
    flex-direction: column;
}
.perf-bottom-panel .perf-panel-header .header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.rev-val {
    font-size: 17px;
    font-weight: 800;
    color: #f8fafc;
    line-height: 1.1;
}
.rev-val .sub {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
}
.rev-growth {
    font-size: 9px;
    font-weight: 700;
    color: #10b981;
    margin-top: 1px;
}

.perf-chart-container {
    width: 100%;
    height: 70px;
    position: relative;
    margin-bottom: 12px;
}
.revenue-chart-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Chart Animations */
.chart-line {
    stroke-dasharray: 450;
    stroke-dashoffset: 450;
    animation: perf-draw-chart 2.2s ease-in-out forwards;
}
.chart-area {
    opacity: 0;
    animation: perf-fade-area 1s ease-in-out 1.2s forwards;
}
@keyframes perf-draw-chart {
    to { stroke-dashoffset: 0; }
}
@keyframes perf-fade-area {
    to { opacity: 1; }
}

.chart-peak-dot {
    animation: perf-pulse-dot 1.5s infinite alternate;
}
.chart-peak-pulse {
    transform-origin: 360px 15px;
    animation: perf-pulse-ring 1.8s infinite;
}
@keyframes perf-pulse-dot {
    0% { r: 4; fill: #10b981; }
    100% { r: 6; fill: #06b6d4; }
}
@keyframes perf-pulse-ring {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Results Footer Statistics */
.perf-results-footer {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 10px;
}
.perf-results-footer .footer-stat {
    display: flex;
    flex-direction: column;
}
.perf-results-footer .footer-stat .lbl {
    font-size: 7.5px;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.perf-results-footer .footer-stat .val {
    font-size: 11px;
    color: #f1f5f9;
    font-weight: 700;
    margin-top: 1.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.perf-results-footer .footer-stat .val .arrow {
    font-size: 8.5px;
    font-weight: 800;
}

/* Pulsing Status Lights */
.pulse-dot, .pulse-dot-small {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.pulse-dot.green, .pulse-dot-small.green { background: #10b981; }
.pulse-dot.green::after, .pulse-dot-small.green::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.4);
    animation: dot-pulse 1.8s infinite;
}
.pulse-dot-small {
    width: 4px;
    height: 4px;
}
.pulse-dot-small.green::after {
    inset: -2px;
}
@keyframes dot-pulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Helper text colors */
.green-text { color: #10b981 !important; }
.cyan-text { color: #06b6d4 !important; }

/* Responsive tweaks for Web Hosting Dashboard on small screens */
@media (max-width: 480px) {
    .perf-dashboard-container {
        border-radius: 12px;
    }
    .perf-dashboard-content {
        padding: 12px;
        gap: 12px;
    }
    .perf-top-row {
        gap: 10px;
    }
    .perf-score-visual {
        width: 64px;
        height: 64px;
        margin-bottom: 6px;
    }
    .score-number {
        font-size: 20px;
    }
    .score-label {
        font-size: 7px;
    }
    .perf-score-details .detail-item .val {
        font-size: 8.5px;
    }
    .uptime-percentage {
        font-size: 16px;
    }
    .uptime-badge {
        font-size: 7px;
        padding: 1px 4px;
    }
    .uptime-stat-row {
        font-size: 7.5px;
    }
    .server-grid {
        gap: 2px;
        margin-top: 6px;
    }
    .server-grid .srv-dot {
        height: 4px;
    }
    .rev-val {
        font-size: 14px;
    }
    .rev-val .sub {
        font-size: 8px;
    }
    .perf-results-footer .footer-stat .val {
        font-size: 9.5px;
    }
}
.product-plans-title {
    font-family: var(--font-display);
    font-size: 30px;
    letter-spacing: -.02em;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.product-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.product-plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
}
.product-plan-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.product-plan-price {
    font-size: 28px;
    color: var(--accent);
    font-family: var(--font-display);
    margin-bottom: 12px;
}
.product-plan-link {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--text-primary);
    text-decoration: none;
}
.product-plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-plan-features li {
    font-size: 13px;
    color: var(--text-secondary);
}

@media (max-width: 960px) {
    .product-main {
        padding: 56px 20px 80px;
    }
    .product-hero {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
        align-items: start;
    }
}

/* ── LEGAL PAGE ─────────────────────────────────────── */
.legal-main {
    padding-top: 54px;
}
.legal-hero {
    margin-bottom: 18px;
}
.legal-hero-inner {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
}
.legal-kicker {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.legal-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.6vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.legal-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}
.legal-updated {
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-muted);
}
.legal-sections {
    display: grid;
    gap: 12px;
}
.legal-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
}
.legal-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.legal-card-copy {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
}
.legal-card-copy + .legal-card-copy,
.legal-card-list + .legal-card-copy {
    margin-top: 12px;
}
.legal-card-list {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.75;
}
.legal-card-list li + li {
    margin-top: 8px;
}

/* ── ABOUT PAGE ────────────────────────────────────── */
.about-main {
    padding-top: 54px;
    max-width: 920px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 72px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.about-stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
}
.about-stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    color: var(--text-primary);
    margin-bottom: 6px;
}
.about-stat-card span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}
.about-sections {
    margin-bottom: 28px;
}
.about-cta-inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}
.about-cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 32px);
    color: var(--text-primary);
    margin-bottom: 10px;
}
.about-cta-inner p {
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.about-cta-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}
.about-cta-link:hover {
    text-decoration: underline;
}
@media (max-width: 720px) {
    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-cta-actions {
        flex-direction: column;
    }
    .about-cta-actions .btn-primary,
    .about-cta-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ── BLOG ──────────────────────────────────────────── */
.blog-main {
    padding-top: 54px;
}
.blog-hero {
    margin-bottom: 24px;
}
.blog-hero--compact {
    margin-bottom: 18px;
}
.blog-hero-inner {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
}
.blog-kicker {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    font-size: 13px;
}
.blog-back-link:hover {
    text-decoration: underline;
}
.blog-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.6vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.blog-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 760px;
}
.blog-meta {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}
.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-card-meta {
    font-size: 12px;
    color: var(--text-muted);
}
.blog-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.25;
}
.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
}
.blog-card-title a:hover {
    text-decoration: underline;
}
.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}
.blog-card-link:hover {
    text-decoration: underline;
}
.blog-article {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}
.blog-section {
    margin-bottom: 0;
}
.blog-cta {
    margin-bottom: 48px;
}
.blog-cta-inner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}
.blog-cta-inner h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.blog-cta-inner p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ── HOSTING INDEX ─────────────────────────────────── */
.hosting-main {
    padding-top: 56px;
}
.hosting-grouped-pricing {
    margin-top: 28px;
}
.hosting-group-block {
    margin-top: 26px;
    margin-bottom: 80px;
}
.hosting-group-title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
}
.hosting-group-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 16px;
}
.hosting-hero {
    margin-bottom: 16px;
}
.hosting-hero-starting {
    font-size: 15px;
    color: var(--text-secondary);
}
.hosting-hero-starting strong {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.hosting-options-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin: 0 auto 32px;
}
.hosting-option-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.hosting-option-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-bright);
    box-shadow: 0 16px 35px rgba(2, 6, 23, 0.10);
}
.hosting-option-card h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.hosting-option-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 14px;
}
.hosting-option-starting {
    font-size: 13px !important;
    color: var(--text-primary) !important;
    margin-bottom: 10px !important;
    font-weight: 600;
}
.hosting-option-card span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
}
.hosting-all-pricing {
    margin-top: 24px;
}
.hosting-all-pricing h2 {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.hosting-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.hosting-price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
}
.hosting-price-section {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.hosting-price-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.hosting-price-amount {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}
.hosting-price-amount span {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 2px;
}
.hosting-price-cycle {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 960px) {
    .hosting-options-grid {
        grid-template-columns: 1fr;
    }
    .hosting-pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ── UNLIMITED HOSTING LANDING ─────────────────────── */
body.unlimited-theme {
    background: #050505;
    color: #f4f4f5;
}
body.unlimited-theme::before {
    opacity: 0;
}
body.unlimited-theme main {
    padding: 0;
    max-width: none;
}
.unlimited-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(200, 240, 74, 0.08), transparent 55%),
        linear-gradient(180deg, #050505 0%, #0a0a0a 40%, #050505 100%);
}
.unlimited-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.unlimited-glow-1 {
    width: 420px;
    height: 420px;
    top: -80px;
    right: 10%;
    background: rgba(200, 240, 74, 0.12);
}
.unlimited-glow-2 {
    width: 360px;
    height: 360px;
    bottom: 20%;
    left: -5%;
    background: rgba(255, 255, 255, 0.04);
}
.unlimited-hero {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px 72px;
}
.unlimited-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    min-height: calc(100vh - 120px);
}
.unlimited-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
}
.unlimited-kicker-center {
    justify-content: center;
    width: 100%;
}
.unlimited-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #c8f04a;
    box-shadow: 0 0 12px rgba(200, 240, 74, 0.8);
}
.unlimited-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 18px;
}
.unlimited-accent {
    color: #c8f04a;
}
.unlimited-lead {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    max-width: 520px;
    margin-bottom: 24px;
}
.unlimited-hero-stats {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}
.unlimited-hero-stats li {
    min-width: 110px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}
.unlimited-hero-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    color: #c8f04a;
    line-height: 1.1;
    margin-bottom: 4px;
}
.unlimited-hero-stats span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}
.unlimited-hero-price-block {
    margin-bottom: 24px;
    padding: 20px 22px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    max-width: 440px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.unlimited-hero-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}
.unlimited-hero-price-currency {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 38px);
    line-height: 1;
    color: #c8f04a;
    font-weight: 700;
}
.unlimited-hero-price-amount {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 58px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: #ffffff;
    font-weight: 700;
}
.unlimited-hero-price-period {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.48);
    font-weight: 500;
}
.unlimited-hero-billing {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.58);
}
.unlimited-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.unlimited-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s, background 0.2s, border-color 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
}
.unlimited-btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}
.unlimited-btn-primary {
    background: #c8f04a;
    color: #0a0a0a;
    border-color: #c8f04a;
}
.unlimited-btn-ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
}
.unlimited-btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
    width: 100%;
}
.unlimited-btn-outline:hover {
    border-color: #c8f04a;
    color: #c8f04a;
}
.unlimited-hero-visual {
    position: relative;
    min-height: 380px;
}
.unlimited-visual-ring {
    position: absolute;
    inset: 8% 5%;
    border-radius: 50%;
    border: 1px solid rgba(200, 240, 74, 0.15);
    box-shadow: inset 0 0 60px rgba(200, 240, 74, 0.06);
    animation: unlimited-pulse 4s ease-in-out infinite;
}
@keyframes unlimited-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.03); opacity: 1; }
}
.unlimited-visual-card {
    position: relative;
    z-index: 1;
    width: min(100%, 480px);
    margin: 0 auto;
}
.unlimited-car-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
}
.unlimited-float {
    position: absolute;
    z-index: 2;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.unlimited-float span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 3px;
}
.unlimited-float strong {
    font-size: 13px;
    color: #ffffff;
}
.unlimited-float-top {
    top: 6%;
    right: 0;
}
.unlimited-float-bottom {
    bottom: 8%;
    left: 0;
}
.unlimited-specs {
    position: relative;
    z-index: 1;
    padding: 0 24px 56px;
}
.unlimited-specs-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.unlimited-spec {
    padding: 20px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}
.unlimited-spec i {
    font-size: 22px;
    color: #c8f04a;
    margin-bottom: 12px;
    display: block;
}
.unlimited-spec h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
}
.unlimited-spec p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.52);
}
.unlimited-single {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px 80px;
}
.unlimited-duration-wrap {
    margin-bottom: 20px;
    justify-content: center;
}
.unlimited-duration-wrap .duration-label {
    color: rgba(255, 255, 255, 0.72);
}
.unlimited-duration-wrap .dur-btn {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.72);
}
.unlimited-duration-wrap .dur-btn:hover {
    border-color: rgba(200, 240, 74, 0.35);
    color: #fff;
}
.unlimited-duration-wrap .dur-btn.active {
    background: rgba(200, 240, 74, 0.12);
    border-color: rgba(200, 240, 74, 0.35);
    color: #c8f04a;
}
.unlimited-single-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 28px;
}
.unlimited-single-head h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 10px;
}
.unlimited-single-head p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}
.unlimited-single-card {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(200, 240, 74, 0.35);
    background: linear-gradient(160deg, rgba(22, 26, 10, 0.98) 0%, rgba(8, 8, 8, 0.98) 55%);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    padding: 36px 32px 32px;
    overflow: hidden;
}
.unlimited-single-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 100% 0%, rgba(200, 240, 74, 0.1), transparent 60%);
    pointer-events: none;
}
.unlimited-single-ribbon {
    display: inline-block;
    margin-bottom: 24px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #c8f04a;
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.unlimited-single-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: start;
}
.unlimited-single-pricing {
    padding-right: 12px;
}
.unlimited-single-discount {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}
.unlimited-single-discount span {
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(200, 240, 74, 0.18);
    color: #c8f04a;
    font-weight: 700;
    font-size: 13px;
}
.unlimited-single-discount s {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}
.unlimited-single-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 10px;
}
.unlimited-single-billing {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}
.unlimited-single-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}
.unlimited-btn-large {
    width: 100%;
    max-width: 280px;
    padding: 15px 28px;
    font-size: 15px;
}
.unlimited-single-features h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 16px;
}
.unlimited-single-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
}
.unlimited-single-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}
.unlimited-single-features i {
    color: #c8f04a;
    font-size: 15px;
    margin-top: 1px;
    flex-shrink: 0;
}
.unlimited-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px 22px 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(165deg, rgba(18, 18, 18, 0.95) 0%, rgba(8, 8, 8, 0.98) 100%);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.unlimited-plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 240, 74, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.unlimited-plan-card.is-featured {
    border-color: rgba(200, 240, 74, 0.55);
    background: linear-gradient(165deg, rgba(24, 28, 12, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    box-shadow: 0 0 0 1px rgba(200, 240, 74, 0.2), 0 24px 60px rgba(0, 0, 0, 0.5);
}
.unlimited-plan-ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px 14px;
    border-radius: 999px;
    background: #c8f04a;
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.unlimited-plan-code {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 6px;
}
.unlimited-plan-name {
    font-family: var(--font-display);
    font-size: 28px;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 6px;
}
.unlimited-plan-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 20px;
    min-height: 38px;
}
.unlimited-plan-price-block {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.unlimited-plan-discount {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
}
.unlimited-plan-discount span {
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(200, 240, 74, 0.15);
    color: #c8f04a;
    font-weight: 600;
    font-size: 12px;
}
.unlimited-plan-discount s {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}
.unlimited-plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 6px;
}
.unlimited-plan-currency {
    font-size: 22px;
    color: #c8f04a;
    font-weight: 600;
}
.unlimited-plan-amount {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -0.02em;
}
.unlimited-plan-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
}
.unlimited-plan-billing {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.42);
}
.unlimited-plan-features {
    list-style: none;
    flex: 1;
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}
.unlimited-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}
.unlimited-plan-features i {
    color: #c8f04a;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}
.unlimited-cta {
    position: relative;
    z-index: 1;
    padding: 0 24px 48px;
}
.unlimited-cta-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(135deg, rgba(200, 240, 74, 0.06) 0%, transparent 50%),
        rgba(12, 12, 12, 0.9);
}
.unlimited-cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 12px;
}
.unlimited-cta-inner p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
    line-height: 1.65;
}
.unlimited-guarantee {
    position: relative;
    z-index: 1;
    padding: 0 24px 48px;
}
.unlimited-guarantee-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 36px;
    border-radius: 20px;
    border: 1px solid rgba(200, 240, 74, 0.18);
    background:
        linear-gradient(135deg, rgba(200, 240, 74, 0.07) 0%, transparent 55%),
        rgba(12, 12, 12, 0.92);
    text-align: center;
}
.unlimited-guarantee-copy {
    width: 100%;
}
.unlimited-guarantee-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 36px);
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 12px;
}
.unlimited-guarantee-copy > p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.58);
    max-width: 620px;
    margin: 0 auto 20px;
}
.unlimited-guarantee-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin-bottom: 24px;
}
.unlimited-guarantee-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}
.unlimited-guarantee-list i {
    color: #c8f04a;
    font-size: 14px;
    flex-shrink: 0;
}

/* Hosting landing extras + footer on dark unlimited theme */
.hosting-landing-extras {
    position: relative;
    z-index: 1;
    padding: 0 0 48px;
}
body.unlimited-theme .hosting-landing-extras .trust-badges-bar {
    max-width: 1280px;
    margin: 0 auto 40px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}
body.unlimited-theme .hosting-landing-extras .trust-badge-label {
    color: #ffffff;
}
body.unlimited-theme .hosting-landing-extras .testimonials-section {
    max-width: 1280px;
    margin: 0 auto 40px;
    padding: 0 24px;
}
body.unlimited-theme .hosting-landing-extras .testimonials-kicker,
body.unlimited-theme .hosting-landing-extras .faq-kicker {
    color: #c8f04a;
}
body.unlimited-theme .hosting-landing-extras .testimonials-head h2,
body.unlimited-theme .hosting-landing-extras .faq-head h2 {
    color: #ffffff;
}
body.unlimited-theme .hosting-landing-extras .faq-intro {
    color: rgba(255, 255, 255, 0.58);
}
body.unlimited-theme .hosting-landing-extras .testimonial-card,
body.unlimited-theme .hosting-landing-extras .faq-item {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}
body.unlimited-theme .hosting-landing-extras .testimonial-author,
body.unlimited-theme .hosting-landing-extras .faq-item summary {
    color: #ffffff;
}
body.unlimited-theme .hosting-landing-extras .testimonial-card blockquote,
body.unlimited-theme .hosting-landing-extras .testimonial-company,
body.unlimited-theme .hosting-landing-extras .faq-answer p,
body.unlimited-theme .hosting-landing-extras .faq-answer li {
    color: rgba(255, 255, 255, 0.62);
}
body.unlimited-theme .hosting-landing-extras .faq-answer strong {
    color: rgba(255, 255, 255, 0.88);
}
body.unlimited-theme .hosting-landing-extras .faq-answer code {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #c8f04a;
}
body.unlimited-theme .hosting-landing-extras .faq-answer a {
    color: #c8f04a;
}
body.unlimited-theme .hosting-landing-extras .faq-item summary::after {
    color: rgba(255, 255, 255, 0.45);
}
body.unlimited-theme .hosting-landing-extras .faq-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 24px;
}
body.unlimited-theme .site-footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body.unlimited-theme .site-footer-col h4,
body.unlimited-theme .site-footer-company strong {
    color: #ffffff;
}
body.unlimited-theme .site-footer-col-links a,
body.unlimited-theme .site-footer-company p,
body.unlimited-theme .site-footer-company-link,
body.unlimited-theme .site-footer-payments {
    color: rgba(255, 255, 255, 0.62);
}
body.unlimited-theme .site-footer-managed-label {
    color: rgba(255, 255, 255, 0.42);
}
body.unlimited-theme .site-footer-col-links a:hover,
body.unlimited-theme .site-footer-company-link:hover {
    color: #c8f04a;
}
body.unlimited-theme .site-footer-credibility {
    border-top-color: rgba(255, 255, 255, 0.1);
}
body.unlimited-theme .site-footer-ssl-badge {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

@media (max-width: 1024px) {
    .unlimited-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 32px;
    }
    .unlimited-hero-visual {
        min-height: 300px;
    }
    .unlimited-specs-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .unlimited-single-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .unlimited-single-features ul {
        grid-template-columns: 1fr;
    }
    .unlimited-btn-large {
        max-width: none;
    }
    body.unlimited-theme .hosting-landing-extras .trust-badges-inner {
        grid-template-columns: 1fr 1fr;
    }
    body.unlimited-theme .hosting-landing-extras .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .unlimited-hero {
        padding-top: 32px;
    }
    .unlimited-hero-price-block {
        max-width: none;
        padding: 18px 16px;
    }
    .unlimited-hero-actions {
        flex-direction: column;
    }
    .unlimited-btn {
        width: 100%;
    }
    .unlimited-specs-inner {
        grid-template-columns: 1fr;
    }
    .unlimited-float-top,
    .unlimited-float-bottom {
        display: none;
    }
}

/* ── VPS PREMIUM PAGE ──────────────────────────────── */
body.vps-premium-theme {
    background: #050505;
    color: #f4f4f5;
}
body.vps-premium-theme::before {
    opacity: 0;
}
body.vps-premium-theme header {
    background: rgba(0, 0, 0, 0.88) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(16px);
}
body.vps-premium-theme .nav-btn {
    color: #ffffff !important;
}
body.vps-premium-theme .nav-btn:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}
body.vps-premium-theme main {
    padding: 0;
    max-width: none;
}
.vps-premium-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 45% at 50% -5%, rgba(200, 240, 74, 0.09), transparent 50%),
        radial-gradient(ellipse 40% 30% at 90% 40%, rgba(255, 255, 255, 0.03), transparent 45%),
        linear-gradient(180deg, #050505 0%, #080808 45%, #050505 100%);
}
.vps-premium-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
.vps-premium-glow-1 {
    width: 480px;
    height: 480px;
    top: -100px;
    right: 5%;
    background: rgba(200, 240, 74, 0.14);
}
.vps-premium-glow-2 {
    width: 320px;
    height: 320px;
    top: 40%;
    left: -8%;
    background: rgba(255, 255, 255, 0.05);
}
.vps-premium-glow-3 {
    width: 280px;
    height: 280px;
    bottom: 10%;
    right: 15%;
    background: rgba(200, 240, 74, 0.06);
}
.vps-premium-hero {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 56px;
}
.vps-premium-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    min-height: min(88vh, 780px);
}
.vps-premium-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}
.vps-premium-kicker-center {
    justify-content: center;
    width: 100%;
}
.vps-premium-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #c8f04a;
    box-shadow: 0 0 14px rgba(200, 240, 74, 0.85);
    animation: vps-premium-pulse 2.5s ease-in-out infinite;
}
@keyframes vps-premium-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.92); }
}
.vps-premium-hero h1,
.vps-premium-plans-head h2,
.vps-premium-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.2vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 18px;
}
.vps-premium-accent {
    color: #c8f04a;
}
.vps-premium-lead {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    max-width: 540px;
    margin-bottom: 28px;
}
.vps-premium-hero-stats {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.vps-premium-hero-stats li {
    min-width: 100px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}
.vps-premium-hero-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    color: #c8f04a;
    line-height: 1.1;
    margin-bottom: 4px;
}
.vps-premium-hero-stats span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.48);
}
.vps-premium-hero-price {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
}
.vps-premium-hero-price strong {
    font-family: var(--font-display);
    font-size: 34px;
    color: #fff;
    margin-right: 4px;
}
.vps-premium-hero-price span {
    display: block;
    font-size: 13px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.45);
}
.vps-premium-hero-actions,
.vps-premium-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.vps-premium-hero-trust {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    font-style: italic;
}
.vps-premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
    border: 1px solid transparent;
    cursor: pointer;
}
.vps-premium-btn:hover {
    transform: translateY(-2px);
}
.vps-premium-btn-primary {
    background: #c8f04a;
    color: #0a0a0a;
    border-color: #c8f04a;
    box-shadow: 0 8px 32px rgba(200, 240, 74, 0.25);
}
.vps-premium-btn-primary:hover {
    box-shadow: 0 12px 40px rgba(200, 240, 74, 0.35);
}
.vps-premium-btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}
.vps-premium-btn-ghost:hover {
    border-color: #c8f04a;
    color: #c8f04a;
}
.vps-premium-btn-large {
    padding: 16px 32px;
    font-size: 15px;
}
.vps-premium-hero-visual {
    position: relative;
    min-height: 360px;
}
.vps-premium-visual-ring {
    position: absolute;
    inset: 6% 4%;
    border-radius: 50%;
    border: 1px solid rgba(200, 240, 74, 0.18);
    box-shadow: inset 0 0 80px rgba(200, 240, 74, 0.06);
    animation: vps-premium-ring 5s ease-in-out infinite;
}
@keyframes vps-premium-ring {
    0%, 100% { transform: scale(1); opacity: 0.75; }
    50% { transform: scale(1.04); opacity: 1; }
}
.vps-premium-visual-card {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.vps-premium-hero-image {
    width: 100%;
    height: auto;
    display: block;
}
.vps-premium-float {
    position: absolute;
    z-index: 2;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.vps-premium-float span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 4px;
}
.vps-premium-float strong {
    font-family: var(--font-display);
    font-size: 14px;
    color: #fff;
}
.vps-premium-float-top {
    top: 12%;
    right: -4%;
}
.vps-premium-float-bottom {
    bottom: 14%;
    left: -2%;
}
.vps-premium-proof {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}
.vps-premium-proof-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 40px;
}
.vps-premium-proof article {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}
.vps-premium-proof i {
    color: #c8f04a;
    font-size: 16px;
}
.vps-premium-plans {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px 80px;
}
.vps-premium-plans-head {
    text-align: center;
    margin-bottom: 48px;
}
.vps-premium-plans-head h2 {
    margin-bottom: 14px;
}
.vps-premium-plans-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.65;
}
.vps-premium-tabs {
    display: inline-flex;
    padding: 5px;
    gap: 4px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 12px;
}
.vps-premium-tab {
    padding: 11px 28px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.vps-premium-tab.active {
    background: #c8f04a;
    color: #0a0a0a;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(200, 240, 74, 0.2);
}
.vps-premium-tab-hint {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}
.vps-premium-tab-panel {
    display: none;
    animation: vps-premium-fade 0.35s ease;
}
.vps-premium-tab-panel.active {
    display: block;
}
@keyframes vps-premium-fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.vps-premium-managed-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 24px 28px;
    margin-bottom: 28px;
    border-radius: 18px;
    border: 1px solid rgba(200, 240, 74, 0.2);
    background: linear-gradient(135deg, rgba(200, 240, 74, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.vps-premium-managed-banner h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: #fff;
    margin-bottom: 6px;
}
.vps-premium-managed-banner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    line-height: 1.6;
    margin: 0;
}
.vps-premium-managed-badge {
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #c8f04a;
    border: 1px solid rgba(200, 240, 74, 0.35);
    background: rgba(200, 240, 74, 0.08);
    white-space: nowrap;
}
.vps-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.vps-premium-card {
    position: relative;
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.vps-premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.15), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.vps-premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 240, 74, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(200, 240, 74, 0.08);
}
.vps-premium-card.is-featured {
    border-color: rgba(200, 240, 74, 0.4);
    background: linear-gradient(165deg, rgba(200, 240, 74, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: 0 0 0 1px rgba(200, 240, 74, 0.15), 0 24px 64px rgba(0, 0, 0, 0.4);
}
.vps-premium-card-ribbon {
    background: #c8f04a;
    color: #0a0a0a;
    text-align: center;
    padding: 8px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.vps-premium-card-inner {
    padding: 26px 24px 24px;
}
.vps-premium-tier {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
}
.vps-premium-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 4px 0 6px;
}
.vps-premium-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 22px;
    line-height: 1.5;
}
.vps-premium-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 6px;
}
.vps-premium-currency {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}
.vps-premium-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1;
}
.vps-premium-card.is-featured .vps-premium-amount {
    color: #c8f04a;
}
.vps-premium-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}
.vps-premium-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}
.vps-premium-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 22px;
    transition: all 0.2s;
}
.vps-premium-cta-primary {
    background: #c8f04a;
    color: #0a0a0a;
    border: 1px solid #c8f04a;
}
.vps-premium-cta-primary:hover {
    box-shadow: 0 8px 28px rgba(200, 240, 74, 0.3);
    transform: translateY(-1px);
}
.vps-premium-cta-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.vps-premium-cta-ghost:hover {
    border-color: rgba(200, 240, 74, 0.5);
    color: #c8f04a;
}
.vps-premium-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}
.vps-premium-spec {
    padding: 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.vps-premium-spec-label {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 4px;
}
.vps-premium-spec-value {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.vps-premium-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
}
.vps-premium-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.45;
}
.vps-premium-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(200, 240, 74, 0.15);
    border: 1px solid rgba(200, 240, 74, 0.4);
    position: relative;
}
.vps-premium-check::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 3px;
    width: 4px;
    height: 7px;
    border: solid #c8f04a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.vps-premium-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    padding: 48px 24px;
}
.vps-premium-compare {
    margin-top: 64px;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}
.vps-premium-compare-head {
    margin-bottom: 24px;
}
.vps-premium-compare-head h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
}
.vps-premium-compare-head p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}
.vps-premium-compare-scroll {
    overflow-x: auto;
}
.vps-premium-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}
.vps-premium-compare-table th,
.vps-premium-compare-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}
.vps-premium-compare-table thead th {
    font-family: var(--font-display);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
}
.vps-premium-compare-table tbody td {
    color: rgba(255, 255, 255, 0.6);
}
.vps-premium-compare-table tbody td:first-child {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.vps-premium-compare-table th.is-hl,
.vps-premium-compare-table td.is-hl {
    color: #c8f04a;
    background: rgba(200, 240, 74, 0.04);
}
.vps-premium-compare-price-row td {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #fff !important;
}
.vps-premium-tick {
    color: #c8f04a;
    font-weight: 700;
}
.vps-premium-dash {
    color: rgba(255, 255, 255, 0.25);
}
.vps-premium-trust {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 72px;
}
.vps-premium-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.vps-premium-trust-grid article {
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.25s, transform 0.25s;
}
.vps-premium-trust-grid article:hover {
    border-color: rgba(200, 240, 74, 0.25);
    transform: translateY(-3px);
}
.vps-premium-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 240, 74, 0.12);
    border: 1px solid rgba(200, 240, 74, 0.25);
    margin-bottom: 14px;
    font-size: 20px;
    color: #c8f04a;
}
.vps-premium-trust-grid h3 {
    font-family: var(--font-display);
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
}
.vps-premium-trust-grid p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.55;
    margin: 0;
}
.vps-premium-cta {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto 80px;
    padding: 0 24px;
}
.vps-premium-cta-inner {
    text-align: center;
    padding: 56px 40px;
    border-radius: 24px;
    border: 1px solid rgba(200, 240, 74, 0.2);
    background:
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(200, 240, 74, 0.12), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.vps-premium-cta-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.65;
}
.vps-premium-cta-actions {
    justify-content: center;
    margin-bottom: 16px;
}
.vps-premium-cta-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

@media (max-width: 1100px) {
    .vps-premium-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 36px;
    }
    .vps-premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .vps-premium-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .vps-premium-float-top,
    .vps-premium-float-bottom {
        display: none;
    }
}

@media (max-width: 768px) {
    .vps-premium-hero {
        padding-top: 28px;
    }
    .vps-premium-grid {
        grid-template-columns: 1fr;
    }
    .vps-premium-trust-grid {
        grid-template-columns: 1fr;
    }
    .vps-premium-proof-inner {
        gap: 16px 24px;
    }
    .vps-premium-proof article {
        white-space: normal;
    }
    .vps-premium-hero-actions,
    .vps-premium-cta-actions {
        flex-direction: column;
    }
    .vps-premium-btn {
        width: 100%;
    }
    .vps-premium-compare {
        padding: 20px 16px;
    }
    .vps-premium-cta-inner {
        padding: 40px 24px;
    }
}

/* ── WHATSAPP BUBBLE ───────────────────────────────── */
.whatsapp-bubble {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 190;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-bubble:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
    color: #fff;
}
.whatsapp-bubble i {
    font-size: 28px;
    line-height: 1;
}
body:has(#globalChatToggleBtn) .whatsapp-bubble {
    bottom: 88px;
}

/* ── FOUNDER'S HOSTING (extends unlimited theme) ───── */
.founders-stack-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.founders-stack-badges span {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(200, 240, 74, 0.28);
    background: rgba(200, 240, 74, 0.08);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #c8f04a;
}
.founders-stack-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.founders-stack-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-right: 4px;
}
.founders-stack-item {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

/* ==========================================================================
   NEW FOUNDERS SHOWCASE STYLES
   ========================================================================== */
.new-founders-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 480px;
    width: 100%;
}

/* Browser Window styling */
.founders-browser-frame {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(5, 5, 5, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    z-index: 2;
}

.founders-browser-frame:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(200, 240, 74, 0.25);
}

.browser-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.7;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.browser-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    padding: 3px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.browser-tab i {
    font-size: 12px;
}

.browser-tab.active {
    background: rgba(255, 255, 255, 0.08);
    color: #c8f04a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.browser-tab:hover:not(.active) {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.03);
}

.browser-address {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-address i {
    color: #27c93f;
    font-size: 9px;
}

.browser-body {
    position: relative;
    padding: 16px;
    min-height: 240px;
}

.browser-view {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.browser-view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* SaaS View styling */
.saas-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.saas-logo {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.saas-logo i {
    color: #c8f04a;
}

.saas-nav-links {
    display: flex;
    gap: 12px;
}

.saas-nav-links span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.saas-nav-links span.active {
    color: #c8f04a;
    font-weight: 600;
}

.saas-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.saas-metric-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px;
    position: relative;
}

.metric-label {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.metric-value-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.metric-currency {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.metric-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.15s ease, text-shadow 0.15s ease;
}

.metric-value.flash-update {
    color: #c8f04a;
    text-shadow: 0 0 12px rgba(200, 240, 74, 0.6);
}

.metric-trend {
    display: flex;
    align-items: center;
    font-size: 10px;
    color: #27c93f;
    margin-top: 4px;
}

.metric-trend i {
    font-size: 14px;
}

.metric-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

.status-pulse {
    width: 6px;
    height: 6px;
    background: #27c93f;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #27c93f;
    animation: status-blink 1.5s infinite ease-in-out;
}

@keyframes status-blink {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

.saas-chart-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px;
}

.chart-title {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.saas-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 60px;
    padding-top: 5px;
}

.saas-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.saas-bar {
    width: 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px 4px 0 0;
    transition: height 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.saas-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(200, 240, 74, 0.15), rgba(200, 240, 74, 0.6));
    opacity: 0.4;
    transition: opacity 0.3s;
}

.saas-bar-wrapper:hover .saas-bar::after {
    opacity: 1;
}

.saas-bar-wrapper span {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.35);
}

.saas-bar-wrapper span.highlight {
    color: #c8f04a;
    font-weight: 600;
}

.saas-bar-wrapper:last-child .saas-bar {
    background: #c8f04a;
    box-shadow: 0 0 10px rgba(200, 240, 74, 0.3);
}

.saas-bar-wrapper:last-child .saas-bar::after {
    display: none;
}

/* E-shop View styling */
.shop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-logo {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.shop-logo i {
    color: #ff5f56;
}

.shop-cart-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.cart-badge {
    background: #c8f04a;
    color: #050505;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 99px;
    min-width: 14px;
    text-align: center;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.pop {
    transform: scale(1.4);
}

.shop-product {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    align-items: center;
}

.product-preview-box {
    height: 100px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Beautiful custom CSS graphic representing a developer product */
.product-mesh-sphere {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8f04a 0%, #22c55e 100%);
    box-shadow: 
        0 10px 20px rgba(34, 197, 94, 0.3),
        inset -6px -6px 12px rgba(0, 0, 0, 0.4),
        inset 6px 6px 12px rgba(255, 255, 255, 0.6);
    animation: product-float 3s ease-in-out infinite;
}

@keyframes product-float {
    0%, 100% { transform: translateY(0) rotate(0deg); filter: hue-rotate(0deg); }
    50% { transform: translateY(-6px) rotate(180deg); filter: hue-rotate(15deg); }
}

.product-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(200, 240, 74, 0.2);
    color: #c8f04a;
    padding: 2px 4px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    border: 1px solid rgba(200, 240, 74, 0.3);
}

.product-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.product-price {
    font-size: 15px;
    font-weight: 700;
    color: #c8f04a;
}

.product-stock {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-pulse-green {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #27c93f;
    display: inline-block;
}

.shop-buy-btn {
    width: 100%;
    background: #ffffff;
    color: #050505;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.shop-buy-btn:hover {
    background: #c8f04a;
    transform: translateY(-1px);
}

.shop-buy-btn:active {
    transform: translateY(0);
}

.shop-buy-btn.added {
    background: #27c93f !important;
    color: #ffffff !important;
}

/* Floating "+1" animation styles */
.floating-plus-one {
    position: absolute;
    color: #c8f04a;
    font-weight: 700;
    font-size: 12px;
    pointer-events: none;
    animation: rise-and-fade 0.8s forwards ease-out;
    z-index: 10;
}

@keyframes rise-and-fade {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-30px) scale(0.8); }
}

/* Founder Identity Card overlay */
.founder-identity-card {
    position: absolute;
    bottom: -15px;
    left: -25px;
    width: 280px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 14px;
    z-index: 3;
    animation: float-card 6s ease-in-out infinite alternate;
}

@keyframes float-card {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.founder-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.founder-avatar-ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 240, 74, 0.4), rgba(255, 255, 255, 0.1));
    padding: 2px;
    position: relative;
}

.founder-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #151515;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.founder-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 9px;
    height: 9px;
    background: #27c93f;
    border: 2px solid #0a0a0a;
    border-radius: 50%;
    box-shadow: 0 0 6px #27c93f;
}

.founder-card-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.founder-card-meta strong {
    font-size: 12px;
    color: #ffffff;
    line-height: 1.2;
}

.founder-card-meta span {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.45);
}

.founder-card-badge {
    background: rgba(200, 240, 74, 0.15);
    border: 1px solid rgba(200, 240, 74, 0.25);
    border-radius: 20px;
    padding: 2px 8px;
}

.founder-card-badge span {
    font-size: 8px;
    font-weight: 700;
    color: #c8f04a;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.founder-terminal {
    background: #020202;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 10px;
    font-family: monospace;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-title {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.35);
}

.terminal-actions {
    display: flex;
    gap: 4px;
}

.terminal-actions span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.terminal-output {
    min-height: 75px;
    max-height: 75px;
    overflow-y: hidden;
    font-size: 8px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

.terminal-output p {
    margin: 0 0 2px 0;
    word-break: break-all;
    white-space: pre-wrap;
}

.terminal-prompt {
    color: #c8f04a;
    font-weight: 600;
}

.terminal-cursor {
    display: inline-block;
    width: 4px;
    height: 9px;
    background: #c8f04a;
    margin-left: 2px;
    animation: terminal-blink 0.8s infinite step-end;
    vertical-align: middle;
}

@keyframes terminal-blink {
    from, to { background: transparent; }
    50% { background: #c8f04a; }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .new-founders-showcase {
        margin-top: 40px;
        min-height: 440px;
    }
    .founder-identity-card {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        animation: float-card-mobile 6s ease-in-out infinite alternate;
    }
}

@keyframes float-card-mobile {
    0% { transform: translateX(-50%) translateY(0); }
    100% { transform: translateX(-50%) translateY(-6px); }
}

@media (max-width: 480px) {
    .new-founders-showcase {
        min-height: 460px;
    }
    .founders-browser-frame {
        width: 100%;
    }
    .founder-identity-card {
        width: 90%;
    }
}

