/**
 * 365ezone - Global Public Frontend Design System (Phase 1 Header & Navigation)
 * Brand Palette: Signature Green (#5ED000) + Dark Navy (#101C32) + White (#FFFFFF)
 */

:root {
    --brand-green: #5ED000;
    --brand-green-dark: #43A900;
    --navy: #101C32;
    --dark-navy: #101C32;
    --navy-2: #17243B;
    --light-green: #F1FBEA;
    --light-bg: #F6F9FC;
    --white: #FFFFFF;
    --text: #172033;
    --muted: #667085;
    --text-light: #94A3B8;
    --border: #E2E8F0;
    --positive: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;

    /* Radius & Shadows */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 6px rgba(16, 28, 50, 0.05);
    --shadow-md: 0 10px 25px rgba(16, 28, 50, 0.08);
    --shadow-lg: 0 20px 45px rgba(16, 28, 50, 0.14);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background-color: var(--light-bg);
    font-size: 16px;
    line-height: 1.6;
}

/* Scaled Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    color: var(--text);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.3rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.15rem; }
h5 { font-size: 0.95rem; }

a {
    color: var(--brand-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--brand-green-dark);
}

.text-center { text-align: center; }
.text-muted { color: var(--muted); font-size: 0.95rem; }
.text-light { color: var(--text-light); }
.text-white { color: #ffffff !important; }
.text-green { color: var(--brand-green) !important; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 18px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 48px; }
.mt-auto { margin-top: auto; }

/* SVG Icon Helper Container */
.svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--light-green);
    color: var(--brand-green-dark);
    margin-bottom: 14px;
}

.svg-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-warning { background: var(--warning); color: #000; }
.badge-danger { background: var(--danger); color: #fff; }
.badge-success { background: var(--positive); color: #fff; }
.badge-brand { background: var(--brand-green); color: #101C32; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none !important;
}

.btn-primary {
    background-color: var(--brand-green);
    color: #101C32 !important;
    box-shadow: 0 4px 18px rgba(94, 208, 0, 0.35);
}

.btn-primary:hover {
    background-color: var(--brand-green-dark);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(94, 208, 0, 0.45);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--navy) !important;
    border-color: var(--border);
}

.btn-secondary:hover, .btn-secondary.active {
    background-color: var(--light-green);
    border-color: var(--brand-green);
    color: var(--brand-green-dark) !important;
}

.btn-outline-green {
    background-color: transparent;
    color: var(--brand-green) !important;
    border-color: var(--brand-green);
}

.btn-outline-green:hover {
    background-color: var(--brand-green);
    color: #101C32 !important;
}

.btn-full { width: 100%; }

.btn-disabled {
    background-color: #CBD5E1 !important;
    color: #64748B !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
    border: none !important;
}

/* Global Cards */
.card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 8px 25px rgba(7, 22, 51, 0.05);
}

/* Layout Containers & Section Spacing */
.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 55px 0;
}

.section-lg {
    padding: 100px 0;
}

.section-padding {
    padding: 90px 0;
}

/* Global Grid System */
.grid {
    display: grid;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .section,
    .section-lg {
        padding: 55px 0;
    }
}

.bg-light-bg { background-color: var(--light-bg); }
.bg-white { background-color: var(--white); }
.bg-light-green { background-color: var(--light-green); }
.bg-dark { background-color: var(--navy); color: #ffffff; }
.bg-navy { 
    background: radial-gradient(circle at 85% 25%, rgba(0, 200, 83, 0.14) 0%, transparent 55%),
                radial-gradient(circle at 15% 75%, rgba(79, 142, 247, 0.10) 0%, transparent 50%),
                linear-gradient(135deg, #051329 0%, #0a1f42 50%, #071735 100%) !important; 
    color: #ffffff !important; 
}

/* Eye-Catching CTA Banner Styling */
.cta-banner-section {
    position: relative;
    background: radial-gradient(circle at 85% 25%, rgba(0, 200, 83, 0.18) 0%, transparent 55%),
                radial-gradient(circle at 15% 75%, rgba(79, 142, 247, 0.12) 0%, transparent 50%),
                linear-gradient(135deg, #051329 0%, #0a1f42 50%, #071735 100%);
    padding: 70px 0;
    color: #ffffff;
    overflow: hidden;
    text-align: center;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
}

.cta-banner-title {
    font-size: 2.35rem;
    font-weight: 900;
    color: #ffffff !important;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-banner-desc {
    font-size: 1.08rem;
    color: #cbd5e1 !important;
    max-width: 640px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* 1. TOP PROMOTIONAL BAR */
.announcement-bar-global {
    background-color: var(--navy-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
}

.announcement-bar-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.announcement-bar-global .announcement-badge {
    background: var(--brand-green);
    color: #101C32;
    font-weight: 900;
    padding: 3px 9px;
    border-radius: 4px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
}

.announcement-timer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.84rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    letter-spacing: 0.3px;
    vertical-align: middle;
}

.announcement-timer .timer-label {
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}

.announcement-timer .timer-clock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'JetBrains Mono', 'Courier New', monospace, sans-serif;
    font-weight: 800;
    color: #facc15;
}

.announcement-timer .timer-unit {
    display: inline-block;
}

.announcement-timer .timer-num {
    font-variant-numeric: tabular-nums;
}

.announcement-bar-global a.announcement-link,
.announcement-bar-global a {
    color: var(--brand-green) !important;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.announcement-bar-global a:hover {
    color: #4ade80 !important;
}

/* 2. CENTRAL GLOBAL STICKY HEADER */
.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    height: 86px;
    display: flex;
    align-items: center;
}

.site-header-inner,
.header-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-logo,
.brand-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.site-logo img,
.brand-logo img {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 48px;
    height: auto; /* height: 52px; */
    object-fit: contain;
    vertical-align: middle;
}

.header-actions,
.header-ctas {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-login,
.btn-nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 48px;
    padding: 0 24px;
    background: #00C853;
    color: #071633 !important;
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 200, 83, 0.25);
    transition: var(--transition);
}

.client-login:hover,
.btn-nav-login:hover {
    background-color: var(--brand-green-dark);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 200, 83, 0.35);
}

/* 3. DESKTOP PRIMARY NAVIGATION */
.main-navigation,
.desktop-nav-container {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-navigation > ul,
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text);
    font-weight: 700;
    font-size: 0.98rem;
    padding: 28px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active,
.nav-item.active > .nav-link {
    color: var(--brand-green-dark);
}

.dropdown-caret {
    font-size: 0.65rem;
    color: var(--muted);
    transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-caret {
    transform: rotate(180deg);
    color: var(--brand-green-dark);
}

/* Active Page Indicator Underline */
.nav-item.active > .nav-link::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--brand-green);
    border-radius: 2px;
}

/* 4. DESKTOP DROPDOWN & MEGA MENU PANELS */
.dropdown-menu,
.mega-dropdown {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 16px 0;
    min-width: 240px;
    z-index: 1100;
}

.mega-dropdown {
    left: 50%;
    transform: translateX(-50%);
    min-width: 580px;
    padding: 24px;
}

.dropdown-list,
.mega-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-link {
    display: block;
    padding: 10px 22px;
    color: var(--text);
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--light-green);
    color: var(--brand-green-dark);
}

.dropdown-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
}

.dropdown-item-desc {
    font-size: 0.82rem;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}

/* 2-Column Mega Menu (Reseller & Services) */
.mega-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mega-col-heading {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--brand-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.mega-sub-link {
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mega-sub-link:hover {
    background: var(--light-green);
}

.mega-sub-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    display: block;
}

.mega-sub-desc {
    font-size: 0.82rem;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}

/* VPS 2-Column Compact Mega Menu */
.vps-mega-dropdown {
    width: 580px !important;
    max-width: calc(100vw - 40px) !important;
    min-width: 0 !important;
    padding: 20px !important;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 40px rgba(11, 25, 53, 0.12);
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* Invisible hover bridge to prevent premature closing */
.vps-mega-dropdown::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.vps-dropdown-header {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.vps-dropdown-title {
    font-size: 15px;
    font-weight: 800;
    color: #0B1935;
    margin: 0 0 3px 0;
    line-height: 1.2;
}

.vps-dropdown-subtitle {
    font-size: 12px;
    color: #64748B;
    margin: 0;
    line-height: 1.4;
}

.vps-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.vps-menu-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-sizing: border-box;
    height: 100%;
}

.vps-menu-card:hover {
    background: #f0fdf4;
    border-color: #86efac;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.08);
    transform: translateY(-2px);
}

.vps-menu-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.vps-menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vps-menu-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #0B1935;
    line-height: 1.3;
    transition: color 0.15s ease;
}

.vps-menu-card:hover .vps-menu-title {
    color: #16a34a;
}

.vps-menu-desc {
    font-size: 12px;
    color: #64748B;
    line-height: 1.4;
    margin-top: 3px;
}

/* Hover Reveal for Desktop Dropdowns */
.nav-item.has-dropdown:hover > .dropdown-menu,
.nav-item.has-dropdown:hover > .mega-dropdown {
    display: block !important;
    animation: fadeIn 0.2s ease;
}

/* 5. MOBILE HAMBURGER & DRAWER NAVIGATION */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text);
    padding: 6px;
}

/* Mobile drawer toggle compatibility: .nav-menu.open */

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 310px;
    height: 100vh;
    background: #ffffff;
    z-index: 1200;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    padding: 0 6px;
}

.mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.mobile-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(16, 28, 50, 0.5);
    z-index: 1150;
}

.mobile-drawer-overlay.open {
    display: block;
}

/* Mobile Accordion Navigation */
.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-link {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    flex: 1;
}

.mobile-nav-link.active,
.mobile-nav-item.active > .mobile-nav-link {
    color: var(--brand-green-dark);
}

.mobile-accordion-toggle {
    background: none;
    border: none;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--brand-green-dark);
    padding: 10px 14px;
    cursor: pointer;
}

.mobile-accordion-body {
    display: none;
    padding: 0 0 14px 16px;
}

.mobile-nav-item.open > .mobile-accordion-body {
    display: block;
}

.mobile-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-sub-link {
    display: block;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 600;
}

.mobile-sub-link:hover {
    color: var(--brand-green-dark);
}

/* Shared Section Components from Previous Stages */
/* ==========================================================================
   HOMEPAGE HERO SECTION — MANAGED WEB & RESELLER HOSTING
   High-converting, data-driven, clean white background with signature green accents
   ========================================================================== */

.hero-section-light {
    background: #ffffff;
    color: #0f172a;
    padding: 64px 0 44px 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.hero-light-grid {
    display: grid;
    grid-template-columns: 1.16fr 0.84fr;
    gap: 48px;
    align-items: center;
}

/* Left Column Content */
.hero-light-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 5px 12px;
    border-radius: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-offer-badge .badge-dot {
    width: 7px;
    height: 7px;
    background: #16a34a;
    border-radius: 50%;
    display: inline-block;
}

.hero-light-title {
    font-size: clamp(34px, 4.2vw, 50px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 16px 0;
    max-width: 650px;
}

.hero-light-title .highlight-green {
    color: #16a34a;
}

.hero-light-desc {
    font-size: 1.02rem;
    color: #475569;
    line-height: 1.55;
    margin: 0 0 22px 0;
    max-width: 580px;
}

.hero-light-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    max-width: 600px;
}

.hero-light-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: #1e293b;
    font-weight: 600;
}

.hero-light-checklist .check-icon {
    color: #16a34a;
    font-weight: 900;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.hero-light-cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #16a34a;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
    transition: all 0.2s ease;
    cursor: pointer;
}

.hero-btn-primary:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.4);
    color: #ffffff !important;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #0f172a !important;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1.5px solid #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.hero-btn-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
    color: #0f172a !important;
}

.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #64748b;
    flex-wrap: wrap;
}

.hero-trust-indicators .check-green {
    color: #16a34a;
    margin-right: 4px;
}

/* Right Column: Compact, Premium & High-Converting Promotional Offer Card */
.hero-light-visual-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-promotional-card {
    background: #ffffff;
    border: 1.5px solid #dcfce7;
    border-radius: 24px;
    padding: 34px 32px;
    box-shadow: 0 16px 40px -8px rgba(16, 28, 50, 0.08);
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-promo-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 800;
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.hero-promo-badge-tag.badge-standard {
    color: #1e3a8a;
    background: #eff6ff;
    border-color: #bfdbfe;
}

.hero-promo-discount-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.hero-promo-save-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: #101c32;
    letter-spacing: 0.14em;
    line-height: 1;
    margin-bottom: 2px;
}

.hero-promo-discount-num {
    font-size: clamp(68px, 7.5vw, 96px);
    font-weight: 900;
    color: #16a34a;
    line-height: 0.86;
    letter-spacing: -0.04em;
    margin: 2px 0;
}

.hero-promo-off-label {
    font-size: 0.95rem;
    font-weight: 900;
    color: #101c32;
    letter-spacing: 0.14em;
    line-height: 1;
    margin-top: 2px;
}

.hero-promo-plan-label {
    font-size: 0.96rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 14px;
}

.hero-promo-pricing-stack {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 14px;
    padding: 12px 20px;
    width: 90%;
    margin-bottom: 16px;
}

.hero-promo-price-label {
    font-size: 0.76rem;
    font-weight: 600;
    color: #64748b;
    display: block;
    margin-bottom: 2px;
}

.hero-promo-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.hero-promo-price-num {
    font-size: 2.35rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-promo-price-period {
    font-size: 1.05rem;
    font-weight: 700;
    color: #64748b;
}

.hero-promo-regular-price {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 4px;
}

.hero-promo-regular-price del {
    color: #64748b;
    text-decoration: line-through;
}

.hero-promo-cta-box {
    width: 90%;
    margin-bottom: 0;
}

.hero-promo-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background: #16a34a;
    color: #ffffff !important;
    font-size: 1.02rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
    transition: all 0.2s ease;
}

.hero-promo-order-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.4);
    color: #ffffff !important;
}

/* Bottom Hero Trust Strip */
.hero-trust-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    border-top: 1px solid #f1f5f9;
    padding-top: 32px;
    margin-top: 48px;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-strip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-strip-text {
    display: flex;
    flex-direction: column;
}

.trust-strip-text strong {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.trust-strip-text span {
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-light-title {
        font-size: 2.45rem;
    }
    .hero-promotional-card {
        max-width: 380px;
        padding: 24px 20px;
    }
    .hero-trust-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .hero-section-light {
        padding: 44px 0 34px 0;
    }
    .hero-light-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-light-content {
        align-items: flex-start;
        text-align: left;
    }
    .hero-light-title {
        font-size: 2.15rem;
    }
    .hero-light-checklist {
        grid-template-columns: 1fr;
    }
    .hero-promotional-card {
        max-width: 100%;
    }
    .hero-trust-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 36px;
        padding-top: 24px;
    }
}

@media (max-width: 480px) {
    .hero-light-title {
        font-size: 1.85rem;
    }
    .hero-offer-badge {
        font-size: 0.72rem;
        padding: 4px 10px;
    }
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
    }
    .hero-trust-strip {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* ==========================================================================
   Modern Domain Search Showcase Module (Homepage - Full Width Seamless)
   ========================================================================== */
.domain-search-section {
    background: #ffffff;
    padding: 55px 0 65px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.domain-search-content {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.domain-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e9;
    color: #008738;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.domain-eyebrow-pill .pill-dot {
    width: 7px;
    height: 7px;
    background: #00c853;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px rgba(0, 200, 83, 0.6);
}

.domain-section-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.domain-section-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Unified Pill Search Bar */
.domain-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 780px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 60px;
    padding: 6px 8px 6px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.domain-search-form:focus-within {
    border-color: #00c853;
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.domain-search-icon {
    color: #94a3b8;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.domain-input {
    flex: 1;
    min-width: 180px;
    padding: 12px 10px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #0f172a;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
}

.domain-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.domain-select {
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #0f172a;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
    flex-shrink: 0;
    font-family: inherit;
}

.domain-select:hover {
    border-color: #cbd5e1;
    background: #ffffff;
}

.domain-search-btn {
    background: linear-gradient(135deg, #00c853 0%, #00a844 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.98rem;
    padding: 13px 26px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: inherit;
}

.domain-search-btn:hover {
    background: linear-gradient(135deg, #00d659 0%, #00b84b 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.45);
}

/* Interactive TLD Badges */
.tld-badges-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.tld-badges-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 4px;
}

.tld-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
}

.tld-price-pill:hover {
    border-color: #00c853;
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.15);
}

.tld-price-pill .tld-name {
    font-weight: 800;
    color: #0f172a;
}

.tld-price-pill .tld-cost {
    font-weight: 700;
    color: #008738;
}

.tld-price-pill .tld-tag {
    font-size: 0.68rem;
    font-weight: 800;
    background: #e8f5e9;
    color: #008738;
    padding: 1px 6px;
    border-radius: 10px;
    text-transform: uppercase;
}

.tld-price-pill .tld-tag.hot {
    background: #fee2e2;
    color: #dc2626;
}

/* Trust Highlights Strip */
.domain-trust-strip {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.domain-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #475569;
}

.domain-trust-item i {
    color: #00c853;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .domain-search-section {
        padding: 40px 0 45px 0;
    }
    .domain-section-title {
        font-size: 1.6rem;
    }
    .domain-search-form {
        border-radius: 16px;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 10px;
    }
    .domain-search-icon {
        display: none;
    }
    .domain-input {
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        padding: 12px 14px;
        background: #ffffff;
    }
    .domain-select {
        width: 100%;
        border-radius: 10px;
    }
    .domain-search-btn {
        width: 100%;
        justify-content: center;
        border-radius: 10px;
    }
    .domain-trust-strip {
        gap: 12px;
        justify-content: flex-start;
    }
}

.category-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 34px 28px; height: 100%; display: flex; flex-direction: column; }
.category-icon { font-size: 2.5rem; margin-bottom: 14px; }

/* BILLING SWITCHER TABS SYSTEM */
.billing-switcher-container {
    display: flex;
    justify-content: center;
    margin-bottom: 44px;
    position: relative;
    z-index: 10;
}

.billing-cycle-toggle {
    display: inline-flex;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 40px;
    padding: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.billing-cycle-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.billing-cycle-btn:hover {
    color: #0f172a;
}

/* ==========================================================================
   COMPETITOR-GRADE CONVERSION PRICING SECTION & CARDS
   Inspired by Hostinger, Bluehost, HostGator & SiteGround modern designs
   ========================================================================== */

.billing-switcher-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 36px auto;
    position: relative;
}

.billing-cycle-toggle,
.reseller-billing-toggle {
    display: inline-flex;
    align-items: center;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    gap: 6px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
}

.billing-cycle-btn,
.reseller-billing-btn {
    border: none;
    background: transparent;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.billing-cycle-btn:hover,
.reseller-billing-btn:hover {
    color: #0f172a;
}

.billing-cycle-btn.active,
.reseller-billing-btn.active {
    background: #00c853;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.billing-cycle-btn .cycle-save-pill,
.reseller-billing-btn .reseller-discount-pill {
    background: #fee2e2;
    color: #dc2626;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.billing-cycle-btn.active .cycle-save-pill,
.reseller-billing-btn.active .reseller-discount-pill {
    background: #ffffff;
    color: #008738;
}

.pricing-callout-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    color: #008738;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 200, 83, 0.15);
}

/* Pricing Grid */
.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(3, minmax(0, 1fr)); 
    gap: 24px; 
    align-items: stretch;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* 4-Column Pricing Grid for Homepage Multi-Category Showcase */
.pricing-grid.grid-4,
.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .pricing-grid.grid-4,
    .pricing-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .pricing-grid.grid-4,
    .pricing-grid-4 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Competitor-Grade Pricing Card Container */
.pricing-card { 
    background: #ffffff; 
    border: 1.5px solid #e2e8f0; 
    border-radius: 16px; 
    padding: 26px 22px 20px 22px; 
    position: relative; 
    display: flex; 
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
    transform: translateY(-3px);
}

/* Featured / Most Popular Highlight Card */
.pricing-card.featured,
.reseller-pricing-card.featured-card { 
    border: 2px solid #00c853; 
    background: #ffffff;
    box-shadow: 0 12px 32px -4px rgba(0, 200, 83, 0.18); 
    transform: translateY(-4px);
}

.pricing-card.featured:hover,
.reseller-pricing-card.featured-card:hover {
    box-shadow: 0 18px 40px -4px rgba(0, 200, 83, 0.25);
    transform: translateY(-6px);
}

.popular-badge-wrapper {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    white-space: nowrap;
}

.popular-badge-pill {
    background: linear-gradient(135deg, #00c853, #009639);
    color: #ffffff;
    font-size: 0.70rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 200, 83, 0.35);
    text-transform: uppercase;
    display: inline-block;
}

/* Card Header: Plan Name & Benefit Subtitle */
.pricing-card-header {
    margin-bottom: 6px;
}

.pricing-plan-title {
    font-size: 1.40rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pricing-plan-subtitle {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.35;
    min-height: 32px;
    margin-bottom: 6px;
}

/* Discount Pill & Strikethrough Regular Retail Price */
.pricing-discount-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}

.pricing-discount-pill {
    background: #fff1f2;
    color: #e11d48;
    border: 1px solid #ffe4e6;
    font-size: 0.74rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pricing-discount-pill.save-green {
    background: #dcfce7;
    color: #15803d;
    border-color: #bbf7d0;
}

.pricing-original-price {
    font-size: 0.88rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

/* Hero Price Display */
.pricing-hero-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin: 2px 0 2px 0;
}

.pricing-hero-price .pricing-currency {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.pricing-hero-price .pricing-amount {
    font-size: 2.35rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.pricing-hero-price .pricing-period {
    font-size: 0.88rem;
    font-weight: 700;
    color: #64748b;
    margin-left: 2px;
}

/* Commitment Term Breakdown & Bonus Incentives */
.pricing-term-note {
    font-size: 0.78rem;
    color: #475569;
    font-weight: 600;
    margin-bottom: 6px;
}

.pricing-perks-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
    min-height: 20px;
}

.pricing-perk-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.pricing-perk-badge.perk-free {
    color: #008738;
    background: #e8f5e9;
    border-bottom: 1px dashed #00c853;
}

.pricing-perk-badge.perk-deal {
    color: #ea580c;
    background: #fff7ed;
}

.pricing-perk-badge.perk-domain {
    color: #16a34a;
    background: #f0fdf4;
}

/* High-Converting CTA Buttons */
.pricing-cta-wrap {
    margin-bottom: 8px;
}

.pricing-btn-primary {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 42px !important;
    background: linear-gradient(135deg, #00c853, #00a844) !important;
    color: #ffffff !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    border: none !important;
    box-shadow: 0 3px 10px rgba(0, 200, 83, 0.28) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.pricing-btn-primary:hover {
    background: linear-gradient(135deg, #00d659, #00b84b) !important;
    box-shadow: 0 5px 14px rgba(0, 200, 83, 0.4) !important;
    transform: translateY(-1px) !important;
    color: #ffffff !important;
}

.pricing-btn-outline {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 42px !important;
    background: #ffffff !important;
    color: #008738 !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    border: 1.5px solid #00c853 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.pricing-btn-outline:hover {
    background: #00c853 !important;
    color: #ffffff !important;
    box-shadow: 0 3px 10px rgba(0, 200, 83, 0.3) !important;
    transform: translateY(-1px) !important;
}

/* Divider & Feature Specs Checklist (Below Button) */
.pricing-card-divider {
    width: 100%;
    height: 1px;
    background: #f1f5f9;
    margin: 0 0 8px 0;
}

.pricing-spec-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pricing-spec-list li {
    list-style: none !important;
    padding: 4px 0 !important;
    font-size: 0.84rem !important;
    line-height: 1.35 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #334155 !important;
    border-bottom: 1px solid #f8fafc !important;
}

.pricing-spec-list li:last-child {
    border-bottom: none !important;
}

.spec-check-icon {
    color: #16a34a;
    font-weight: 900;
    font-size: 0.90rem;
    flex-shrink: 0;
}

.pricing-spec-list li strong {
    color: #0f172a;
    font-weight: 700;
}

.pricing-spec-list li .spec-tooltip {
    border-bottom: 1px dotted #94a3b8;
    cursor: help;
}

/* PREMIUM HOSTING PRICING SECTION STYLING */
.plan-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.pricing-card.featured .plan-icon-badge {
    background: #e8f5e9;
}

.price-display-block {
    background: #f8fafc;
    border-radius: 14px;
    padding: 20px 16px;
    margin: 24px 0;
    border: 1px solid #f1f5f9;
}

.pricing-card.featured .price-display-block {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 200, 83, 0.06);
}

.price-main {
    font-size: 3rem;
    font-weight: 900;
    color: #071735;
    line-height: 1;
    letter-spacing: -0.03em;
}

.billing-note-pill {
    display: inline-block;
    background: #e8f5e9;
    color: #1b5e20;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    margin-top: 8px;
}

/* ENTERPRISE CHECKLIST FEATURE LIST */
.pricing-spec-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 24px 0 !important;
}

.pricing-spec-list li {
    list-style: none !important;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
}

.pricing-spec-list li:last-child {
    border-bottom: none;
}

.spec-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #00c853;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
}

/* EYE-CATCHING HIGH-CONTRAST PRICING CTA BUTTONS */
.btn-cta-standard {
    background: #071735 !important;
    color: #ffffff !important;
    border: 2px solid #071735 !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    font-size: 0.98rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em !important;
    box-shadow: 0 4px 14px rgba(7, 23, 53, 0.18) !important;
    transition: all 0.25s ease-in-out !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    text-decoration: none !important;
}

.btn-cta-standard:hover {
    background: #00c853 !important;
    border-color: #00c853 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 22px rgba(0, 200, 83, 0.35) !important;
    transform: translateY(-2px) !important;
}

.btn-cta-featured {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 15px 30px !important;
    font-size: 1.02rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4) !important;
    transition: all 0.25s ease-in-out !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    text-decoration: none !important;
}

.btn-cta-featured:hover {
    background: linear-gradient(135deg, #00b048 0%, #00c853 100%) !important;
    box-shadow: 0 10px 28px rgba(0, 200, 83, 0.55) !important;
    transform: translateY(-3px) scale(1.02) !important;
}

.btn-disabled.stock-out-btn {
    background: #e2e8f0 !important;
    color: #94a3b8 !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

.plan-features-list { list-style: none; margin: 28px 0; flex: 1; }
.plan-features-list li { padding: 12px 0; border-bottom: 1px dashed var(--border); font-size: 0.92rem; display: flex; gap: 12px; }
.plan-features-list li::before { content: "✓"; color: var(--brand-green); font-weight: 900; }

.tech-logo-strip { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.tech-partner-badge { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 28px; font-weight: 800; }

.awards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.award-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 24px; }
.award-stars { color: var(--warning); font-size: 1.3rem; margin-bottom: 10px; }

/* MODERN FAQ ACCORDION COMPONENT */
.faq-accordion,
.faq-accordion-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: #00C853;
    box-shadow: 0 6px 16px rgba(0, 200, 83, 0.08);
}

.faq-question,
.faq-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 22px 28px;
    font-family: inherit;
    font-size: 1.08rem;
    font-weight: 700;
    color: #0B1B3D;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.faq-question:hover,
.faq-question-btn:hover,
.faq-item.active .faq-question,
.faq-item.active .faq-question-btn {
    color: #00C853;
}

.faq-toggle-icon,
.faq-icon {
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1;
    color: #00C853;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
}

.faq-item.active .faq-toggle-icon,
.faq-item.active .faq-icon {
    background: #00C853;
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer,
.faq-answer-content {
    padding: 0 28px 24px;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.65;
    display: none;
}

.faq-item.active .faq-answer,
.faq-item.active .faq-answer-content {
    display: block;
    animation: fadeInFaq 0.3s ease;
}

@keyframes fadeInFaq {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .faq-question,
    .faq-question-btn {
        padding: 18px 20px;
        font-size: 1.02rem;
    }
    .faq-answer,
    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 0.92rem;
    }
    .faq-toggle-icon,
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
}

/* GLOBAL FOOTER COMPONENT */
.site-footer {
    background-color: var(--navy);
    color: #D1D5DB;
    padding: 80px 0 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 45px;
    margin-bottom: 20px;
}

.footer-brand, .footer-brand-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo {
    height: 48px;
    max-height: 48px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.footer-description, .footer-brand-desc {
    font-size: 1.02rem;
    line-height: 1.65;
    color: #9CA3AF;
    margin: 18px 0 24px;
    max-width: 340px;
}

.footer-social, .social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-link, .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transition: var(--transition);
}

.footer-social-link:hover, .social-icon:hover {
    background: var(--brand-green);
    color: #101C32 !important;
    transform: translateY(-3px);
}

.footer-column-title, .footer-col h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-green);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

.footer-links, .footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li, .footer-col li {
    margin-bottom: 13px;
}

.footer-links a, .footer-col a {
    font-size: 1.05rem;
    color: #D1D5DB;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover, .footer-col a:hover {
    color: var(--brand-green);
    transform: translateX(4px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.95rem;
    color: #9CA3AF;
}

.footer-copyright {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9CA3AF;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--brand-green);
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }
}

@media (max-width: 1100px) {
    .desktop-nav-container { display: none; }
    .mobile-toggle { display: block; }
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-ctas, .hero-chips-row { justify-content: center; }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   Dedicated Hosting Page Component Styles (Stage 12 Modernization)
   ========================================================================== */
.dedicated-hosting-page {
    background-color: #f8fafc;
}

/* Reusable Section Heading Component */
.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-heading .eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #00C853;
    background: rgba(0, 200, 83, 0.1);
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.section-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    color: #0B1B3D;
    font-weight: 800;
}

.section-heading p {
    margin: 0 auto;
    line-height: 1.7;
    color: #64748b;
    font-size: 1.02rem;
}

.dedicated-hero {
    background: linear-gradient(135deg, #0B1B3D 0%, #061129 100%);
    color: #ffffff;
    padding: 90px 0;
}

.dedicated-hero .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.dedicated-hero .hero-badge {
    display: inline-block;
    background: rgba(0, 200, 83, 0.18);
    color: #00E676;
    border: 1px solid rgba(0, 200, 83, 0.35);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.6px;
    margin-bottom: 18px;
}

.dedicated-hero .hero-title {
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    color: #ffffff;
}

.dedicated-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 28px;
}

.dedicated-hero .hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.server-card-preview {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.server-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #38bdf8;
    margin-bottom: 20px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #00E676;
    border-radius: 50%;
    box-shadow: 0 0 8px #00E676;
}

.server-visual-specs {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.vspec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.vspec-label {
    color: #94a3b8;
}

.vspec-val {
    color: #ffffff;
    font-weight: 600;
}

.server-guarantee {
    font-size: 0.82rem;
    color: #94a3b8;
    text-align: center;
}

/* Feature Strip */
.feature-strip {
    background-color: #061129;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 32px 0;
}

.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.strip-item {
    padding: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-item:last-child {
    border-right: none;
}

.strip-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00E676;
    margin-bottom: 4px;
}

.strip-desc {
    font-size: 0.88rem;
    color: #94a3b8;
    font-weight: 500;
}

.promo-offer-section {
    padding: 85px 0 35px 0;
}

.promo-section-header {
    margin-bottom: 38px;
}

.promo-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.promo-offers-grid.promo-grid-count-1 {
    max-width: 480px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

.promo-offers-grid.promo-grid-count-2 {
    max-width: 860px;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promo-card {
    background: #ffffff;
    border: 2px solid #00C853;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-card:hover {
    box-shadow: 0 12px 32px rgba(0, 200, 83, 0.16);
}

.promo-card-top {
    flex-grow: 1;
}

.promo-badge-wrap {
    margin-bottom: 12px;
}

.promo-badge {
    display: inline-block;
    background: #00C853;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.promo-product-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0B1B3D;
    margin-bottom: 4px;
    line-height: 1.25;
}

.promo-offer-subtitle {
    font-size: 0.86rem;
    font-weight: 700;
    color: #00C853;
    margin-bottom: 8px;
}

.promo-desc {
    color: #64748b;
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.promo-features-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
}

.promo-features-grid li {
    font-size: 0.84rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promo-bottom-section {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.promo-reg-price {
    font-size: 0.85rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.promo-sale-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0B1B3D;
    line-height: 1;
    margin-bottom: 10px;
}

.promo-sale-price span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

.promo-scarcity {
    margin-bottom: 16px;
}

.scarcity-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
}

.scarcity-tag.active-qty {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.scarcity-tag.sold-out {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 1000px) {
    .promo-offers-grid,
    .promo-offers-grid.promo-grid-count-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }
}

@media (max-width: 650px) {
    .promo-offers-grid,
    .promo-offers-grid.promo-grid-count-1,
    .promo-offers-grid.promo-grid-count-2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .promo-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Dedicated Server Plans Section */
.server-plans-section {
    padding: 85px 0;
}

.desktop-table-container {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: 10px;
}

.dedicated-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.dedicated-table th {
    background: #0B1B3D;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 18px 16px;
    border-bottom: 2px solid #00C853;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dedicated-table td {
    padding: 22px 16px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
    color: #334155;
    vertical-align: middle;
}

.dedicated-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

.dedicated-table tbody tr:hover {
    background-color: #f1f5f9;
}

.server-name {
    color: #0B1B3D;
    font-size: 1.08rem;
    font-weight: 800;
}

.table-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0B1B3D;
}

.table-price span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Option B Mobile Cards */
.mobile-cards-container {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.mobile-server-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mcard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 2px solid #00C853;
    margin-bottom: 16px;
}

.mcard-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0B1B3D;
    margin: 0;
}

.mcard-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #00C853;
}

.mcard-price span {
    font-size: 0.85rem;
    color: #64748b;
}

.mcard-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.mcard-spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e2e8f0;
}

.mspec-key {
    color: #64748b;
    font-weight: 600;
}

.mspec-val {
    color: #0f172a;
    font-weight: 700;
}

/* Free DDoS Protection Section */
.ddos-protection-section {
    background: #0B1B3D;
    color: #ffffff;
    padding: 90px 0;
}

.ddos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ddos-content .eyebrow-badge {
    display: inline-block;
    background: rgba(0, 200, 83, 0.2);
    color: #00E676;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 4px;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.ddos-content h2 {
    color: #ffffff;
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.ddos-main-desc {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.ddos-stat-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 10px;
}

.stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: #00E676;
}

.stat-text {
    font-size: 0.9rem;
    color: #e2e8f0;
    font-weight: 600;
}

.ddos-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ddos-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 22px;
}

.ddos-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.ddos-card-desc {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.45;
}

/* 8-Card Server Features Section */
.server-features-section {
    padding: 85px 0;
    background: #ffffff;
}

.features-8grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-8card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    min-height: 170px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-8card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.feature-8card .ficon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.feature-8card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0B1B3D;
    margin-bottom: 10px;
}

.feature-8card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0B1B3D 0%, #061129 100%);
    color: #ffffff;
    padding: 85px 20px;
}

.final-cta-section h2 {
    color: #ffffff;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    margin-bottom: 14px;
}

.final-cta-section p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Media Queries for Responsive Option B Mobile Cards */
@media (max-width: 992px) {
    .features-8grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strip-item:nth-child(2) {
        border-right: none;
    }

    .ddos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dedicated-hero .hero-grid {
        grid-template-columns: 1fr;
    }

    .promo-body {
        grid-template-columns: 1fr;
    }

    .desktop-table-container {
        display: none;
    }

    .mobile-cards-container {
        display: flex;
    }

    .ddos-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Fully Managed Dedicated Server Components */
.badge-sub {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}
.badge-sub.text-success { background: #e8f5e9; color: #2e7d32; }
.badge-sub.text-info { background: #e3f2fd; color: #1565c0; }

.why-managed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.managed-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.managed-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.managed-card .micon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}
.managed-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0B1B3D;
    margin-bottom: 10px;
}
.managed-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.managed-services-section .section-header {
    text-align: center;
    margin-bottom: 34px;
}
.managed-services-section .section-header h2 {
    margin-bottom: 12px;
}
.managed-services-section .section-subtitle {
    margin-bottom: 0;
    line-height: 1.6;
}

.services-16grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    transition: border-color 0.2s ease;
}
.service-card:hover {
    border-color: #00C853;
}
.service-card .sicon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.service-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0B1B3D;
    margin-bottom: 6px;
}
.service-card p {
    color: #64748b;
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.4;
}

.scope-limitations-box {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-left: 4px solid #00C853;
    border-radius: 10px;
    padding: 24px;
    margin-top: 30px;
}
.scope-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.scope-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0B1B3D;
    margin: 0;
}
.scope-limitations-box p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}
.scope-limitations-box .scope-note {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    font-style: italic;
}

/* Bare Metal Cloud Server Styles */
.bg-navy-card {
    background: rgba(11, 27, 61, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 28px;
    backdrop-filter: blur(10px);
}
.spec-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.spec-checklist li {
    color: #e2e8f0;
    font-size: 0.95rem;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.spec-checklist .check-icon {
    color: #00C853;
    font-weight: 800;
}
.border-left-green {
    border-left: 4px solid #00C853;
}
.check-list-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.check-list-grid li {
    position: relative;
    padding-left: 20px;
}
.check-list-grid li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00C853;
    font-weight: 800;
}
.badge-stock-in {
    background: rgba(0, 200, 83, 0.15);
    color: #00C853;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
}
.badge-stock-out {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
}
.btn-disabled {
    background: #cbd5e1 !important;
    color: #64748b !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    border: none !important;
}

.security-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sec-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 22px;
}
.sec-card .sec-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.sec-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #0B1B3D;
    margin-bottom: 6px;
}
.sec-card p {
    color: #64748b;
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.45;
}

@media (max-width: 992px) {
    .why-managed-grid,
    .services-16grid,
    .security-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .why-managed-grid,
    .services-16grid,
    .security-cards-grid {
        grid-template-columns: 1fr;
    }
    .managed-services-section .section-header {
        margin-bottom: 26px;
    }
}

/* ==========================================================================
   PURE SSD HOSTING HERO & MODERN SHOWCASE STYLING
   ========================================================================== */
.ssd-hero-section {
    position: relative;
    background: radial-gradient(circle at 85% 30%, rgba(0, 230, 118, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 15% 80%, rgba(79, 142, 247, 0.08) 0%, transparent 50%),
                linear-gradient(135deg, #051329 0%, #0a1f42 50%, #071735 100%);
    padding: 70px 0 80px;
    color: #ffffff;
    overflow: hidden;
}

.ssd-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
}

.ssd-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 83, 0.12);
    color: #00e676;
    border: 1px solid rgba(0, 230, 118, 0.35);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.2);
    margin-bottom: 18px;
}

.ssd-hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 18px;
}

.ssd-title-highlight {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.ssd-hero-desc {
    font-size: 1.12rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 28px;
    max-width: 560px;
}

.ssd-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.ssd-btn-primary {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%) !important;
    color: #ffffff !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    padding: 15px 34px !important;
    border-radius: 12px !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 24px rgba(0, 200, 83, 0.45) !important;
    transition: all 0.25s ease !important;
}

.ssd-btn-primary:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.6) !important;
    color: #ffffff !important;
}

.ssd-btn-outline {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    font-size: 1.02rem !important;
    font-weight: 700 !important;
    padding: 15px 28px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(8px) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.ssd-btn-outline:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

.ssd-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.ssd-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 7px 15px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #e2e8f0;
    backdrop-filter: blur(6px);
}

.ssd-feature-pill i {
    color: #00e676;
    font-size: 0.95rem;
}

.ssd-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ssd-stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.ssd-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00e676, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ssd-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 118, 0.45);
    box-shadow: 0 14px 40px rgba(0, 200, 83, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.ssd-stat-card:hover::before {
    opacity: 1;
}

.ssd-stat-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 200, 83, 0.12);
    color: #00e676;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.ssd-stat-num {
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #00e676 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.ssd-stat-title {
    font-size: 0.90rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}

.ssd-stat-sub {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.ssd-trust-bar {
    background: #040e24;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

.ssd-trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}

.ssd-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #e2e8f0;
}

.ssd-trust-item i {
    color: #00e676;
    font-size: 1.1rem;
}

.ssd-trust-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 992px) {
    .ssd-hero-title {
        font-size: 2.6rem;
    }
    .ssd-stats-grid {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .ssd-hero-title {
        font-size: 2.2rem;
    }
    .ssd-stats-grid {
        grid-template-columns: 1fr;
    }
    .ssd-trust-sep {
        display: none;
    }
}

/* ==========================================================================
   SHARED LINUX WEB HOSTING HERO & SHOWCASE STYLING
   ========================================================================== */
.hosting-hero-section {
    position: relative;
    background: radial-gradient(circle at 85% 25%, rgba(0, 200, 83, 0.14) 0%, transparent 55%),
                radial-gradient(circle at 15% 75%, rgba(79, 142, 247, 0.09) 0%, transparent 50%),
                linear-gradient(135deg, #051329 0%, #0a1f42 50%, #071735 100%);
    padding: 70px 0 80px;
    color: #ffffff;
    overflow: hidden;
}

.hosting-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
}

.hosting-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 83, 0.12);
    color: #00e676;
    border: 1px solid rgba(0, 230, 118, 0.35);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.2);
    margin-bottom: 18px;
}

.hosting-hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 18px;
}

.hosting-title-highlight {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hosting-hero-desc {
    font-size: 1.12rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 28px;
    max-width: 560px;
}

.hosting-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.hosting-btn-primary {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%) !important;
    color: #ffffff !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    padding: 15px 34px !important;
    border-radius: 12px !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 24px rgba(0, 200, 83, 0.45) !important;
    transition: all 0.25s ease !important;
}

.hosting-btn-primary:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.6) !important;
    color: #ffffff !important;
}

.hosting-btn-outline {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    font-size: 1.02rem !important;
    font-weight: 700 !important;
    padding: 15px 28px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(8px) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.hosting-btn-outline:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

.hosting-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.hosting-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 7px 15px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #e2e8f0;
    backdrop-filter: blur(6px);
}

.hosting-feature-pill i {
    color: #00e676;
    font-size: 0.95rem;
}

/* Glass Showcase Card (Right Column) */
.hosting-glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hosting-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00e676, transparent);
}

.hosting-glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 20px 50px rgba(0, 200, 83, 0.2);
}

.hosting-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 18px;
    margin-bottom: 20px;
}

.hosting-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.hosting-card-tag {
    font-size: 0.76rem;
    font-weight: 800;
    color: #00e676;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hosting-card-price-badge {
    background: rgba(0, 200, 83, 0.15);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 12px;
    padding: 6px 14px;
    text-align: right;
}

.hosting-card-price-val {
    font-size: 1.3rem;
    font-weight: 900;
    color: #00e676;
    line-height: 1;
}

.hosting-card-price-lbl {
    font-size: 0.72rem;
    color: #cbd5e1;
    font-weight: 600;
}

.hosting-spec-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
}

.hosting-spec-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    color: #e2e8f0;
}

.hosting-spec-checklist li:last-child {
    border-bottom: none;
}

.hosting-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 200, 83, 0.15);
    color: #00e676;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
}

.hosting-metrics-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #cbd5e1;
}

.hosting-metrics-bar span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 992px) {
    .hosting-hero-title {
        font-size: 2.6rem;
    }
    .hosting-glass-card {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hosting-hero-title {
        font-size: 2.2rem;
    }
    .hosting-card-header {
        flex-direction: column;
        gap: 12px;
    }
    .hosting-card-price-badge {
        text-align: left;
    }
}

/* ==========================================================================
   BARE METAL CLOUD SERVER CARD & PURCHASE BLOCK STYLING
   ========================================================================== */
.section-plans .plan-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 4px 18px rgba(7, 23, 53, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.section-plans .plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(7, 23, 53, 0.12);
    border-color: #cbd5e1;
}

.section-plans .plan-specs-list {
    margin-bottom: 0;
}

.section-plans .plan-purchase-block {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-plans .plan-purchase-divider {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 20px;
}

.section-plans .plan-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 18px;
}

.section-plans .plan-price-num {
    font-size: 2.25rem; /* ~36px */
    font-weight: 900;
    line-height: 1;
    color: #071735;
    letter-spacing: -0.02em;
}

.section-plans .plan-price-period {
    font-size: 0.90rem;
    font-weight: 600;
    color: #64748b;
}

.section-plans .plan-cta-wrap {
    width: 100%;
}

.section-plans .plan-cta-wrap .btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 13px 22px;
    font-size: 0.98rem;
    font-weight: 800;
    border-radius: 10px;
}

/* ==========================================================================
   LINUX RESELLER HOSTING HERO, PRICING & FEATURE TABS STYLING
   ========================================================================== */
.reseller-hero-section {
    position: relative;
    background: radial-gradient(circle at 80% 25%, rgba(0, 200, 83, 0.14) 0%, transparent 55%),
                radial-gradient(circle at 20% 75%, rgba(79, 142, 247, 0.10) 0%, transparent 50%),
                linear-gradient(135deg, #051329 0%, #0a1f42 50%, #071735 100%);
    padding: 70px 0 80px;
    color: #ffffff;
    overflow: hidden;
}

.reseller-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
}

.reseller-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 83, 0.12);
    color: #00e676;
    border: 1px solid rgba(0, 230, 118, 0.35);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.2);
    margin-bottom: 18px;
}

.reseller-hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 18px;
}

.reseller-title-highlight {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.reseller-hero-desc {
    font-size: 1.12rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 28px;
    max-width: 580px;
}

/* ==========================================================================
   LINUX RESELLER PRICING TABLE & BILLING SWITCHER STYLING
   ========================================================================== */
.reseller-billing-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 32px 0 28px;
}

.reseller-billing-toggle {
    display: inline-flex;
    flex-wrap: wrap;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    padding: 5px;
    gap: 6px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.reseller-billing-btn {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.reseller-billing-btn:hover {
    color: #071735;
    border-color: #94a3b8;
}

.reseller-billing-btn.active {
    background: #00c853 !important;
    color: #ffffff !important;
    border-color: #00c853 !important;
    box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35) !important;
}

.reseller-discount-pill {
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(0, 200, 83, 0.15);
    color: #00c853;
    padding: 2px 8px;
    border-radius: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.reseller-billing-btn.active .reseller-discount-pill {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* 3-Column Pricing Grid on Desktop */
.reseller-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    margin: 24px 0;
}

.reseller-pricing-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(7, 23, 53, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.reseller-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(7, 23, 53, 0.10);
    border-color: #cbd5e1;
}

.reseller-pricing-card.featured-card {
    border: 2px solid #00c853;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.18);
}

.reseller-card-badge-wrap {
    min-height: 28px;
    margin-bottom: 8px;
}

.reseller-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.reseller-card-badge.badge-popular {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #000000;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.reseller-card-badge.badge-unlimited {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.reseller-card-badge.badge-value {
    background: rgba(0, 200, 83, 0.12);
    color: #00c853;
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.reseller-card-title {
    font-size: 1.45rem;
    font-weight: 900;
    color: #071735;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.reseller-card-subtitle {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 14px;
    min-height: 20px;
}

.reseller-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 14px;
}

.reseller-price-amount {
    font-size: 2.35rem; /* ~38px */
    font-weight: 900;
    color: #071735;
    line-height: 1;
    letter-spacing: -0.03em;
}

.reseller-price-cycle {
    font-size: 0.90rem;
    font-weight: 600;
    color: #64748b;
}

.reseller-card-divider {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    margin: 0 0 16px 0;
}

.reseller-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.reseller-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.88rem; /* ~14px */
    line-height: 1.5;
    color: #334155;
    border-bottom: 1px dashed #f1f5f9;
}

.reseller-features-list li:last-child {
    border-bottom: none;
}

.reseller-features-list li .spec-check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 200, 83, 0.12);
    color: #00c853;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.70rem;
    font-weight: 900;
    flex-shrink: 0;
}

.reseller-card-purchase-area {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.reseller-stock-indicator {
    font-size: 0.80rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.reseller-card-purchase-area .btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .reseller-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .reseller-pricing-grid {
        grid-template-columns: 1fr;
    }
    .reseller-billing-toggle {
        border-radius: 20px;
    }
    .reseller-billing-btn {
        width: 100%;
        justify-content: center;
    }
    .reseller-features-list li {
        font-size: 0.82rem; /* ~13px on mobile */
    }
}

/* Feature Tabs System */
.reseller-tabs-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(7, 23, 53, 0.05);
    overflow: hidden;
    margin-top: 24px;
}

.reseller-tabs-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 12px;
    gap: 8px;
    margin: 0;
    list-style: none;
}

.reseller-tabs-nav::-webkit-scrollbar {
    display: none;
}

.reseller-tab-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 12px 20px;
    text-align: center;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.reseller-tab-btn:hover {
    color: #071735;
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.reseller-tab-btn.active {
    color: #ffffff;
    border-color: #00c853;
    background: #00c853;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(0, 200, 83, 0.3);
}

.reseller-tab-btn.active i {
    color: #ffffff !important;
}

.reseller-tab-content {
    padding: 32px 28px;
}

.reseller-tab-pane {
    display: none;
    padding: 32px 28px;
}

.reseller-tab-content > .reseller-tab-pane {
    padding: 0;
}

.reseller-tab-pane.active {
    display: block;
    animation: fadeInTab 0.25s ease-in-out;
}

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

.reseller-tab-pane .grid-3,
.reseller-tab-pane .grid-4,
.reseller-tab-pane .grid-2 {
    width: 100%;
}

.reseller-tab-pane .card {
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reseller-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.reseller-feature-item-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s ease;
    min-width: 0;
    word-break: break-word;
}

.reseller-feature-item-card:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.reseller-feature-item-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #071735;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reseller-feature-item-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Free Goodies Grid */
.reseller-goodie-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.reseller-goodie-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    transition: all 0.2s ease;
    min-width: 0;
    word-break: break-word;
}

.reseller-goodie-card:hover {
    border-color: #00c853;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.1);
}

.reseller-goodie-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 200, 83, 0.1);
    color: #00c853;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.reseller-goodie-card h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: #071735;
    margin-bottom: 6px;
}

.reseller-goodie-card p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 992px) {
    .reseller-hero-title {
        font-size: 2.6rem;
    }
    .reseller-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
    .reseller-goodie-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
    .reseller-tab-pane,
    .reseller-tab-content {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .reseller-tabs-container {
        border-radius: 12px;
        margin-top: 18px;
    }
    .reseller-tabs-nav {
        padding: 6px 8px;
        gap: 6px;
    }
    .reseller-tab-btn {
        padding: 9px 15px;
        font-size: 0.85rem;
        border-radius: 24px;
    }
    .reseller-tab-pane,
    .reseller-tab-content {
        padding: 20px 14px;
    }
    .reseller-goodie-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .reseller-feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .reseller-hero-title {
        font-size: 2.0rem;
    }
    .reseller-tab-pane,
    .reseller-tab-content {
        padding: 16px 10px;
    }
    .reseller-tab-pane .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .reseller-tab-pane .grid-4 .card {
        padding: 12px 8px !important;
    }
    .reseller-tab-pane .grid-4 .card .font-bold {
        font-size: 0.82rem;
    }
    .reseller-tab-pane .grid-4 .card .text-xs {
        font-size: 0.72rem;
    }
}

/* ==========================================================================
   Modern Competitor-Grade 2-Column Final Conversion CTA Section (Homepage)
   ========================================================================== */
.hp-final-cta-section {
    background: linear-gradient(135deg, #070f26 0%, #0c1b3d 60%, #08142c 100%);
    padding: 55px 0 58px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 200, 83, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Subtle Green Radial Accent Glows */
.hp-final-cta-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 25%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hp-final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: 10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.final-cta-content-col {
    flex: 1 1 58%;
    max-width: 620px;
    text-align: left;
}

.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 83, 0.12);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: #00e676;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.final-cta-badge .pill-dot {
    width: 7px;
    height: 7px;
    background: #00c853;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px rgba(0, 200, 83, 0.8);
}

.final-cta-heading {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.22;
    margin-bottom: 12px;
}

.final-cta-subtext {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin: 0 0 24px 0;
    line-height: 1.55;
}

/* CTA Action Buttons */
.final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #00c853 0%, #00a844 100%);
    color: #ffffff !important;
    font-size: 1.02rem;
    font-weight: 800;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 200, 83, 0.4);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #00d659 0%, #00b84b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.6);
    color: #ffffff !important;
}

.btn-cta-primary .btn-arrow-icon {
    transition: transform 0.2s ease;
}

.btn-cta-primary:hover .btn-arrow-icon {
    transform: translateX(3px);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    font-size: 0.98rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Trust Line */
.final-cta-trust-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 600;
}

.final-cta-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e2e8f0;
}

.final-cta-trust-line .trust-dot {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
}

/* RIGHT COLUMN — Glass Offer Card */
.final-cta-offer-col {
    flex: 1 1 38%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.final-cta-offer-card {
    width: 100%;
    max-width: 340px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.88) 0%, rgba(10, 18, 38, 0.95) 100%);
    border: 1px solid rgba(0, 200, 83, 0.28);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35), 0 0 25px rgba(0, 200, 83, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.final-cta-offer-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 200, 83, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 35px rgba(0, 200, 83, 0.16);
}

.offer-card-label {
    display: block;
    font-size: 0.76rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.final-cta-offer-card .offer-hero-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 14px;
}

.final-cta-offer-card .offer-hero-price .offer-currency {
    font-size: 1.45rem;
    font-weight: 800;
    color: #00e676;
}

.final-cta-offer-card .offer-hero-price .offer-amount {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.final-cta-offer-card .offer-hero-price .offer-period {
    font-size: 0.95rem;
    font-weight: 700;
    color: #94a3b8;
    margin-left: 2px;
}

.offer-discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.18) 0%, rgba(0, 168, 68, 0.28) 100%);
    border: 1px solid rgba(0, 200, 83, 0.45);
    color: #00e676;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 200, 83, 0.2);
    margin-bottom: 10px;
}

.offer-card-note {
    font-size: 0.84rem;
    color: #cbd5e1;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 991px) {
    .final-cta-wrapper {
        gap: 32px;
    }
    .final-cta-heading {
        font-size: 1.95rem;
    }
}

@media (max-width: 768px) {
    .hp-final-cta-section {
        padding: 45px 0 50px 0;
    }
    .final-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }
    .final-cta-content-col {
        max-width: 100%;
        text-align: center;
    }
    .final-cta-heading {
        font-size: 1.75rem;
    }
    .final-cta-subtext {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .final-cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    .final-cta-trust-line {
        justify-content: center;
        gap: 10px;
    }
    .final-cta-offer-col {
        justify-content: center;
        width: 100%;
    }
    .final-cta-offer-card {
        max-width: 100%;
    }
}

/* ==========================================================================
   Modern "Need More Power?" Upgrade Showcase Section (Homepage)
   ========================================================================== */
.hp-power-section {
    background: linear-gradient(135deg, #070f26 0%, #0c1b3d 60%, #08142c 100%);
    padding: 55px 0 60px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 200, 83, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hp-power-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hp-power-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.power-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 28px auto;
    position: relative;
    z-index: 2;
}

.power-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 83, 0.12);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: #00e676;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.power-eyebrow-pill .pill-dot {
    width: 7px;
    height: 7px;
    background: #00c853;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px rgba(0, 200, 83, 0.8);
}

.power-section-title {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.power-section-subtitle {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 auto 16px auto;
}

/* Subtle Visual Progression Indicator */
.power-progression-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px 16px;
    border-radius: 30px;
    margin: 0 auto;
    font-size: 0.82rem;
    font-weight: 700;
    color: #e2e8f0;
}

.power-step-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.power-step-arrow {
    color: #00c853;
    font-size: 0.75rem;
}

/* 3-Card Grid Layout (Tight & Unified Group) */
.power-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    width: 100%;
}

.power-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 26px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.power-card:hover {
    transform: translateY(-5px);
    border-color: #00c853;
    box-shadow: 0 20px 40px -10px rgba(0, 200, 83, 0.25), 0 0 0 1px rgba(0, 200, 83, 0.35);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%);
}

/* Card Top Row: Tier Level Tag */
.power-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 24px;
    margin-bottom: 4px;
}

.power-tier-badge {
    font-size: 0.70rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Standalone Clean Service Vector SVG Icons (No empty boxes) */
.power-service-svg {
    width: 36px;
    height: 36px;
    color: #00e676;
    display: block;
    margin: 16px 0 12px 0;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.power-card:hover .power-service-svg {
    transform: scale(1.08) translateY(-2px);
    color: #00ff84;
}

.power-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.power-card-desc {
    font-size: 0.90rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

/* Benefit Tags Strip */
.power-benefits-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    margin-top: auto;
}

.power-benefit-pill {
    font-size: 0.74rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f1f5f9;
    padding: 3px 9px;
    border-radius: 6px;
    white-space: nowrap;
}

/* CTA Buttons */
.power-cta-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 12px 18px !important;
    border-radius: 10px !important;
    font-size: 0.94rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-sizing: border-box !important;
}

.power-cta-btn.btn-glass {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
}

.power-card:hover .power-cta-btn.btn-glass,
.power-cta-btn.btn-glass:hover {
    background: linear-gradient(135deg, #00c853 0%, #00a844 100%) !important;
    border-color: #00c853 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(0, 200, 83, 0.4) !important;
    transform: translateY(-1px);
}

/* Card 3: Dedicated Servers (Featured "MAXIMUM POWER" Level) */
.power-card.featured-level {
    border: 2px solid #00c853;
    background: linear-gradient(180deg, rgba(0, 200, 83, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0 14px 35px -8px rgba(0, 200, 83, 0.28), 0 0 0 1px rgba(0, 200, 83, 0.35);
}

.power-card.featured-level .power-tier-badge {
    background: linear-gradient(135deg, #00c853 0%, #009639 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 200, 83, 0.4);
}

.power-cta-btn.btn-primary {
    background: linear-gradient(135deg, #00c853 0%, #00a844 100%) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35) !important;
}

.power-cta-btn.btn-primary:hover {
    background: linear-gradient(135deg, #00d659 0%, #00b84b 100%) !important;
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.5) !important;
    transform: translateY(-1px);
}

/* Bottom Comparison Line */
.power-compare-line {
    text-align: center;
    font-size: 0.92rem;
    color: #94a3b8;
    position: relative;
    z-index: 2;
    padding-top: 14px;
    margin: 0 auto;
}

.power-compare-link {
    color: #00e676;
    font-weight: 700;
    text-decoration: none;
    margin-left: 4px;
    transition: all 0.2s ease;
}

.power-compare-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .power-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .power-card.featured-level {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .hp-power-section {
        padding: 45px 0 50px 0;
    }
    .power-section-title {
        font-size: 1.75rem;
    }
    .power-progression-bar {
        flex-direction: column;
        gap: 6px;
        width: 100%;
        border-radius: 14px;
        padding: 10px 14px;
    }
    .power-step-arrow {
        transform: rotate(90deg);
    }
    .power-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .power-card.featured-level {
        grid-column: span 1;
    }
}

/* ==========================================================================
   Modern "Why Choose 365eZone?" Section (Homepage)
   ========================================================================== */
.hp-why-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 48px 0 52px 0;
    position: relative;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.why-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 26px auto;
}

.why-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e9;
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: #008738;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.why-eyebrow-pill .pill-dot {
    width: 6px;
    height: 6px;
    background: #00c853;
    border-radius: 50%;
    display: inline-block;
}

.why-section-title {
    color: #0f172a;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin: 0 0 6px 0;
}

.why-section-subtitle {
    color: #475569;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* 4-Card Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}

.why-benefit-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.why-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.25s ease;
}

.why-benefit-card:hover {
    transform: translateY(-4px);
    border-color: #00c853;
    box-shadow: 0 14px 28px -6px rgba(15, 23, 42, 0.10), 0 0 0 1px rgba(0, 200, 83, 0.25);
}

.why-benefit-card:hover::before {
    background: #00c853;
}

.why-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #e8f5e9;
    border: 1.5px solid rgba(0, 200, 83, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008738;
    margin-bottom: 14px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.why-icon-svg {
    width: 22px;
    height: 22px;
    stroke: #008738;
    fill: none;
    display: block;
}

.why-benefit-card:hover .why-icon-box {
    background: #dcfce7;
    border-color: #00c853;
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.25);
}

.why-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.why-card-desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .hp-why-section {
        padding: 38px 0 42px 0;
    }
    .why-section-title {
        font-size: 1.65rem;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .why-benefit-card {
        padding: 20px 18px;
    }
}



