:root {
    --bs-primary: #2563eb;
    --bs-primary-rgb: 37, 99, 235;
    --bs-dark: #0a1628;
    --bs-dark-rgb: 10, 22, 40;
    --bs-success: #10b981;
    --bs-warning: #f59e0b;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --border: #e2e8f0;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* { box-sizing: border-box; }
body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: var(--surface);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* Utility */
.text-primary { color: var(--bs-primary) !important; }
.bg-primary { background: var(--bs-primary) !important; }
.btn-primary {
    background: var(--bs-primary);
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.25); }
.btn-outline-primary {
    color: var(--bs-primary);
    border: 2px solid var(--bs-primary);
    background: transparent;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-outline-primary:hover {
    background: var(--bs-primary);
    color: #fff;
    transform: translateY(-1px);
}
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-outline-light:hover { background: #fff; color: #0a1628; border-color: #fff; transform: translateY(-1px); }
.btn-lg { padding: 14px 36px; font-size: 1.05rem; }

/* Section spacing */
.section { padding: 96px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark {
    background: linear-gradient(135deg, #0a1628, #132244, #0f1a2e);
    color: #fff;
}

/* Section headers */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bs-primary);
    margin-bottom: 0.75rem;
}
.section-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.section-dark .section-title h2 { color: #fff; }
.section-dark .section-title p { color: rgba(255,255,255,0.6); }

/* ===================== NAVBAR ===================== */
#navWrapp {
    background: #0a1628;
    padding: 0;
    min-height: 68px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: box-shadow 0.3s;
}
#navWrapp .container {
    display: flex;
    align-items: center;
    min-height: 68px;
}
#navWrapp .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    padding: 0;
    letter-spacing: -0.5px;
}
.brand-text { color: #fff; }
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 22px 16px;
    transition: var(--transition);
    position: relative;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus { color: #fff; }
.navbar-dark .navbar-nav .nav-link.dropdown-toggle::after {
    border-top-color: rgba(255,255,255,0.5);
    margin-left: 6px;
    font-size: 0.7rem;
}

/* Dropdown Hover */
.dropdown-hover { position: relative; }
@media (min-width: 992px) {
    .dropdown-hover .dropdown-menu {
        display: block !important;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
        transform: translateY(8px);
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        margin-top: 0;
        border: none;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        padding: 0;
        background: #fff;
    }
    .dropdown-hover:hover > .dropdown-menu,
    .dropdown-hover .dropdown-menu:hover,
    .dropdown-hover.is-open > .dropdown-menu {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
}
@media (max-width: 991.98px) {
    .dropdown-hover .dropdown-menu {
        margin-top: 0;
        border: none;
        box-shadow: none;
        background: transparent;
        padding-left: 0.5rem;
    }
    .navbar-dark .navbar-nav .nav-link { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .dropdown-hover .dropdown-menu .dropdown-item { color: rgba(255,255,255,0.7); }
    .dropdown-hover .dropdown-menu .dropdown-item:hover { color: #fff; background: rgba(255,255,255,0.06); }
    .mega-col-promo { display: none; }
}

/* Mega Menu */
.dropdown-mega {
    min-width: 780px;
    max-width: 860px;
    overflow: visible;
}
.dropdown-mega .mega-inner { display: flex; gap: 0; min-height: 420px; }
.dropdown-mega .mega-columns { display: flex; gap: 40px; padding: 28px 0 28px 28px; flex: 1; }
.dropdown-mega .mega-col { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.dropdown-mega .mega-col-promo { width: 240px; flex-shrink: 0; padding: 20px; }
.mega-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: var(--transition);
}
.mega-link:hover {
    background: var(--surface-soft);
    color: var(--bs-primary);
    transform: translateX(4px);
}
.mega-link-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}
.mega-link:hover .mega-link-icon { background: #dbeafe; color: var(--bs-primary); }
.mega-link-text { display: flex; flex-direction: column; min-width: 0; }
.mega-link-title { font-weight: 600; font-size: 0.88rem; color: #0f172a; transition: color 0.25s; }
.mega-link:hover .mega-link-title { color: var(--bs-primary); }
.mega-link-desc { font-size: 0.76rem; color: var(--text-light); line-height: 1.3; margin-top: 2px; }
.mega-link .badge { align-self: center; margin-left: auto; font-size: 0.65rem; }
.mega-link.info-link { cursor: default; background: var(--surface-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.mega-link.info-link:hover { transform: none; background: var(--surface-soft); }

/* Mega Promo Card */
.mega-promo-card {
    background: linear-gradient(150deg, #eff6ff, #dbeafe);
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.mega-promo-card-vps { background: linear-gradient(150deg, #eef2ff, #e0e7ff); }
.mega-promo-card-ddos { background: linear-gradient(150deg, #f0fdf4, #dcfce7); }
.mega-promo-icon { font-size: 2rem; color: var(--bs-primary); margin-bottom: 12px; opacity: 0.8; }
.mega-promo-card h6 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.mega-promo-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; }
.mega-promo-price {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--bs-primary);
    background: rgba(255,255,255,0.7);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.mega-promo-card .btn { width: 100%; border-radius: 8px; font-weight: 600; font-size: 0.82rem; }

/* Small dropdown */
.dropdown-menu-sm {
    min-width: 200px;
    padding: 8px;
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.dropdown-menu-sm .dropdown-item {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.86rem;
    color: var(--text);
    transition: var(--transition);
}
.dropdown-menu-sm .dropdown-item:hover { background: var(--surface-soft); color: var(--bs-primary); }

@media (max-width: 1199.98px) and (min-width: 992px) {
    .dropdown-mega { min-width: 700px; max-width: 740px; }
    .dropdown-mega .mega-columns { gap: 24px; padding: 24px 0 24px 24px; }
    .dropdown-mega .mega-col-promo { width: 180px; padding: 12px; }
    .mega-link-desc { display: none; }
}
@media (max-width: 991.98px) {
    .dropdown-mega { position: static; min-width: auto; max-width: 100%; box-shadow: none; border-radius: 0; background: transparent; }
    .dropdown-mega .mega-inner { flex-direction: column; min-height: auto; }
    .dropdown-mega .mega-columns { flex-direction: column; gap: 0; padding: 0; }
    .dropdown-mega .mega-col { gap: 0; }
    .mega-link { padding: 10px 12px; border-radius: 8px; color: rgba(255,255,255,0.7); }
    .mega-link:hover { background: rgba(255,255,255,0.06); color: #fff; transform: none; }
    .mega-link-icon { width: 28px; height: 28px; font-size: 0.9rem; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
    .mega-link:hover .mega-link-icon { background: rgba(255,255,255,0.12); color: #fff; }
    .mega-link-title { color: rgba(255,255,255,0.85); font-size: 0.85rem; }
    .mega-link:hover .mega-link-title { color: #fff; }
    .mega-link-desc { display: none; }
    .mega-link.info-link { background: transparent; border: none; }
    .mega-link .badge { display: none; }
    .dropdown-menu-sm { min-width: auto; box-shadow: none; background: transparent; padding-left: 0.5rem; }
    .dropdown-menu-sm .dropdown-item { color: rgba(255,255,255,0.7); padding: 8px 12px; }
    .dropdown-menu-sm .dropdown-item:hover { color: #fff; background: rgba(255,255,255,0.06); }
}

/* ===================== HERO ===================== */
.home-hero {
    background: linear-gradient(135deg, #0a1628 0%, #132244 40%, #1a365d 70%, #0f1a2e 100%);
    color: #fff;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}
.home-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.home-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #93c5fd;
    background: rgba(255,255,255,0.06);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.home-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 720px;
    letter-spacing: -0.5px;
}
.home-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    max-width: 580px;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.home-hero .btn { border-radius: var(--radius-sm); font-weight: 600; }
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stats span { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
@media (max-width: 767px) {
    .home-hero { padding: 80px 0 60px; }
    .home-hero h1 { font-size: 2.2rem; }
    .home-hero p { font-size: 1rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-stats strong { font-size: 1.3rem; }
}

/* ===================== PRODUCT CARDS ===================== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 991px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: var(--bs-primary);
    box-shadow: 0 12px 40px rgba(37,99,235,0.1);
    transform: translateY(-4px);
}
.product-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}
.icon-blue { background: #dbeafe; color: #2563eb; }
.icon-green { background: #d1fae5; color: #059669; }
.icon-orange { background: #fed7aa; color: #ea580c; }
.icon-purple { background: #ede9fe; color: #7c3aed; }
.icon-navy { background: #e0e7ff; color: #4338ca; }
.icon-slate { background: #f1f5f9; color: #475569; }
.product-card .badge-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-primary);
    background: #eff6ff;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    align-self: flex-start;
}
.product-card h3 { font-size: 1.15rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.product-card p { font-size: 0.88rem; color: var(--text-muted); flex: 1; line-height: 1.6; }
.product-card ul { list-style: none; padding: 0; margin: 1rem 0; }
.product-card ul li { font-size: 0.82rem; color: var(--text); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.product-card ul li i { color: var(--bs-success); font-size: 0.7rem; }
.product-card .card-footer-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bs-primary);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.product-card:hover .card-footer-link { gap: 10px; }
.product-card.featured { border-color: var(--bs-primary); box-shadow: 0 8px 32px rgba(37,99,235,0.12); position: relative; }
.product-card.featured::before {
    content: 'MÁS POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 20px;
}

/* ===================== USE CASES GRID ===================== */
.usecases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 991px) { .usecases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .usecases-grid { grid-template-columns: 1fr; } }
.usecase-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}
.usecase-card:hover { border-color: var(--bs-primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.usecase-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.usecase-card h4 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.4rem; }
.usecase-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.75rem; }
.usecase-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.usecase-tag {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--bs-primary);
    background: #eff6ff;
    padding: 3px 10px;
    border-radius: 12px;
}

/* ===================== FEATURES GRID ===================== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 991px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); border-color: #cbd5e1; transform: translateY(-2px); }
.feature-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.feature-card h4 { font-size: 0.95rem; font-weight: 700; color: #0f172a; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 991px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); }
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 0.75rem; }
.testimonial-card p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.6; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; margin-top: 1rem; }
.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(37,99,235,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--bs-primary);
    font-weight: 700;
}
.testimonial-author strong { font-size: 0.85rem; color: #fff; }
.testimonial-author small { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: linear-gradient(135deg, #0a1628, #1a365d);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}
.cta-section h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-badges { display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.cta-badges span { font-size: 0.85rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }
.cta-badges span i { color: var(--bs-success); }

/* ===================== PAGE HEADER ===================== */
.page-header {
    background: linear-gradient(135deg, #0a1628, #132244);
    color: #fff;
    padding: 60px 0 50px;
}
.page-header h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.3px; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 600px; }
.breadcrumb { background: transparent; padding: 0; margin-bottom: 0.75rem; }
.breadcrumb-item a { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.breadcrumb-item.active { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.2); }

/* ===================== PRICING TABLE ===================== */
.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.pricing-card.featured { border-color: var(--bs-primary); box-shadow: 0 8px 40px rgba(37,99,235,0.12); }
.pricing-card.featured::before {
    content: 'MÁS POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 20px;
}
.pricing-card:hover { border-color: var(--bs-primary); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(37,99,235,0.1); }
.pricing-card h3 { font-size: 1.05rem; font-weight: 700; color: #0f172a; }
.pricing-card .price { font-size: 2.5rem; font-weight: 800; color: #0f172a; margin: 1rem 0 0.25rem; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-card .period { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-card ul { text-align: left; list-style: none; padding: 0; margin-bottom: 1.5rem; }
.pricing-card ul li { padding: 6px 0; font-size: 0.85rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.pricing-card ul li i { color: var(--bs-success); font-size: 0.75rem; flex-shrink: 0; }

/* ===================== FEATURES CHECKLIST ===================== */
.features-checklist { list-style: none; padding: 0; }
.features-checklist li { padding: 10px 0; display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--text); border-bottom: 1px solid var(--surface-soft); }
.features-checklist li i { color: var(--bs-success); font-size: 0.9rem; flex-shrink: 0; }

/* ===================== CONTACT ===================== */
.contact-info-card {
    background: #0a1628;
    color: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
}
.contact-info-card i { color: var(--bs-primary); }
.contact-info-card h5 { font-weight: 600; margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-info-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
}
.form-control:focus, .form-select:focus { border-color: var(--bs-primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }

/* ===================== COMPARISON TABLE ===================== */
.table-comparison { border-radius: var(--radius); overflow: hidden; }
.table-comparison thead th { background: #0a1628; color: #fff; font-weight: 600; border: none; padding: 16px; }
.table-comparison tbody td { padding: 14px 16px; vertical-align: middle; border-color: var(--border); }
.table-comparison tbody tr:hover { background: var(--surface-soft); }

/* ===================== FOOTER ===================== */
.site-footer { background: #0a1628; color: #fff; }
.site-footer h6 { font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.3); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer-bottom small { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.35); font-size: 0.8rem; transition: var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* ===================== CHECKOUT ===================== */
.billing-option, .payment-option, .os-option, .panel-option, .domain-option, .extra-option { position: relative; }
.billing-option input, .payment-option input, .os-option input, .panel-option input, .domain-option input, .extra-option input { position: absolute; opacity: 0; width: 100%; height: 100%; top: 0; left: 0; cursor: pointer; z-index: 2; }
.billing-option label, .payment-option label, .os-option label, .panel-option label, .domain-option label, .extra-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-height: 65px;
    font-size: 0.82rem;
    background: #fff;
}
.billing-option label strong { font-size: 0.88rem; color: #0f172a; }
.billing-option label small { color: var(--bs-primary); font-weight: 600; font-size: 0.78rem; }
.payment-option label { min-height: 50px; font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }
.os-option label { min-height: 55px; }
.os-option label i { font-size: 1.2rem; margin-bottom: 4px; }
.billing-option input:checked + label, .payment-option input:checked + label, .os-option input:checked + label, .panel-option input:checked + label, .domain-option input:checked + label, .extra-option input:checked + label {
    border-color: var(--bs-primary);
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.billing-option input:checked + label strong { color: var(--bs-primary); }
.extra-option input:checked + label { border-color: var(--bs-success); background: #f0fdf4; }

/* ===================== ANIMATIONS ===================== */
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 767px) {
    .section { padding: 60px 0; }
    .section-title h2 { font-size: 1.8rem; }
    .home-hero h1 { font-size: 2rem; }
    .page-header h1 { font-size: 1.8rem; }
    .cta-section h2 { font-size: 1.8rem; }
    .hero-stats { gap: 1.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-stats strong { font-size: 1.1rem; }
}

/* Utility extras */
.rounded-12 { border-radius: 12px; }
.shadow-soft { box-shadow: var(--shadow); }
.bg-gradient-primary { background: linear-gradient(135deg, var(--bs-primary), #1d4ed8); }
