/* Hosting Page Specific Styles */

/* ============================================
   New Hero Section
   ============================================ */
.hosting-hero-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
}

/* Hero Background */
.hosting-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.hero-gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.2));
    top: -200px;
    right: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.hero-gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(244, 114, 182, 0.15));
    bottom: -150px;
    left: -100px;
    animation: orbFloat2 25s ease-in-out infinite;
}

.hero-gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(16, 185, 129, 0.1));
    top: 40%;
    left: 30%;
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -30px) scale(1.05); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -40px) scale(0.95); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Hero Wrapper */
.hosting-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content (Left) */
.hosting-hero-content {
    max-width: 560px;
}

.hosting-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 1.5rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hosting-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hosting-hero-title .gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hosting-hero-desc {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Hero CTAs */
.hosting-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
    transform: translateX(4px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1e293b;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Trust Items */
.hosting-hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #64748b;
}

.trust-item i {
    color: #10b981;
    font-size: 1rem;
}

/* Hero Visual (Right) */
.hosting-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Server Card */
.hero-server-card {
    width: 100%;
    max-width: 420px;
    padding: 1.5rem;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.server-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #059669;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.server-location {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Server Specs */
.server-specs {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.spec-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon i {
    font-size: 1rem;
    color: #6366f1;
}

.spec-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-label {
    font-size: 0.6875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.spec-value {
    font-size: 0.875rem;
    color: #1e293b;
    font-weight: 600;
}

/* Server Metrics */
.server-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.metric-header span:first-child {
    font-size: 0.75rem;
    color: #64748b;
}

.metric-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
}

.metric-value.highlight {
    color: #10b981;
}

.metric-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 3px;
    transition: width 1.5s ease-out;
}

.metric-bar.full .metric-fill {
    background: linear-gradient(90deg, #10b981, #34d399);
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 5%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 10%;
    left: -5%;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-icon.green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.floating-card-icon i {
    font-size: 1.125rem;
    color: #fff;
}

.floating-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.floating-card-value {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
}

.floating-card-label {
    font-size: 0.6875rem;
    color: #64748b;
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .floating-card-1 {
        right: 0;
    }

    .floating-card-2 {
        left: 0;
    }
}

@media (max-width: 992px) {
    .hosting-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hosting-hero-content {
        max-width: 100%;
    }

    .hosting-hero-ctas {
        justify-content: center;
    }

    .hosting-hero-trust {
        justify-content: center;
    }

    .hosting-hero-visual {
        order: -1;
    }

    .hero-server-card {
        max-width: 380px;
        margin: 0 auto;
    }

    .hero-floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hosting-hero-new {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hosting-hero-title {
        font-size: 2rem;
    }

    .hosting-hero-desc {
        font-size: 1rem;
    }

    .hosting-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hosting-hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-server-card {
        padding: 1.25rem;
    }
}

/* ============================================
   Pricing Tabs & Enhancements
   ============================================ */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2.5rem auto 1rem;
    padding: 6px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    width: fit-content;
    position: relative;
}

.pricing-tab {
    position: relative;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.pricing-tab:hover {
    color: #1e293b;
}

.pricing-tab.active {
    color: #fff;
}

.pricing-tab-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.pricing-savings-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #059669;
}

.pricing-savings-badge i {
    color: #10b981;
}

/* Location Tabs (Dedicated Servers) */
.location-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.location-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 6px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    width: fit-content;
    position: relative;
}

.location-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.location-tab i {
    font-size: 1rem;
}

.location-tab:hover {
    color: #1e293b;
}

.location-tab.active {
    color: #fff;
}

.location-tab-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

@media (max-width: 768px) {
    .location-tabs {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .location-tab {
        justify-content: center;
        padding: 14px 20px;
    }

    .location-tab-indicator {
        display: none;
    }

    .location-tab.active {
        background: linear-gradient(135deg, #f97316, #ea580c);
        color: #fff;
    }
}

/* Pricing Card Enhancements */
.pricing-total {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: #64748b;
    text-align: center;
}

.pricing-total:empty {
    display: none;
}

.pricing-card.featured .pricing-total {
    color: #64748b;
}

/* Pricing Badges */
.pricing-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pricing-renewal {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
}

.pricing-renewal:empty {
    display: none;
}

.pricing-card.featured .pricing-renewal {
    color: #94a3b8;
}

.badge-promo {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 114, 182, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.25);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #db2777;
}

.badge-savings {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #059669;
}

.badge-savings:empty {
    display: none;
}

.pricing-card.featured .badge-promo {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 114, 182, 0.1));
    border-color: rgba(236, 72, 153, 0.25);
    color: #db2777;
}

.pricing-card.featured .badge-savings {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #059669;
}

/* Price amount animation */
.price-amount {
    transition: all 0.3s ease;
}

.price-amount.changing {
    opacity: 0;
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .pricing-tabs {
        flex-wrap: wrap;
        width: calc(100% - 2rem);
        max-width: 320px;
    }

    .pricing-tab {
        flex: 1 1 calc(50% - 0.25rem);
        padding: 10px 16px;
        font-size: 0.875rem;
        text-align: center;
    }

    .pricing-tab-indicator {
        display: none;
    }

    .pricing-tab.active {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        color: #fff;
    }
}

/* Awards Compact (in Pricing Section) */
.awards-compact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.awards-compact .award-item {
    padding: 0.75rem;
}

.awards-compact .award-item img {
    max-height: 70px;
    opacity: 0.7;
}

.awards-compact .award-item:hover img {
    opacity: 1;
}

/* Resource Tooltip */
.resource-tooltip-wrapper {
    position: relative;
    cursor: help;
}

.resource-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.resource-label .bi-info-circle {
    font-size: 0.75rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.resource-tooltip-wrapper:hover .resource-label .bi-info-circle {
    opacity: 1;
}

.resource-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    width: 240px;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    pointer-events: none;
}

.resource-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(15, 23, 42, 0.95);
}

.resource-tooltip-wrapper:hover .resource-tooltip {
    opacity: 1;
    visibility: visible;
}

.resource-tooltip-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-tooltip ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-tooltip ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    font-size: 0.8125rem;
    color: #e2e8f0;
}

.resource-tooltip ul li strong {
    color: #94a3b8;
    font-weight: 500;
}

.pricing-card.featured .resource-tooltip {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .resource-tooltip::after {
    border-top-color: rgba(255, 255, 255, 0.95);
}

.pricing-card.featured .resource-tooltip-title {
    color: #64748b;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .resource-tooltip ul li {
    color: #1e293b;
}

.pricing-card.featured .resource-tooltip ul li strong {
    color: #64748b;
}

/* ============================================
   Features Section
   ============================================ */
.section-features-hosting {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.features-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.features-orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: -150px;
    left: -150px;
}

.features-orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    bottom: -100px;
    right: -100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    position: relative;
    padding: 2rem;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.75) 100%
    );
    border: 1.5px solid transparent;
    border-radius: 20px;
    background-clip: padding-box;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        inset 0 -1px 1px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(150, 150, 160, 0.5) 0%,
        rgba(180, 180, 190, 0.25) 40%,
        rgba(160, 160, 170, 0.35) 60%,
        rgba(180, 180, 190, 0.2) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.4s ease;
}

.feature-card:hover::before {
    background: linear-gradient(
        135deg,
        rgba(245, 158, 11, 0.35) 0%,
        rgba(236, 72, 153, 0.2) 40%,
        rgba(244, 114, 182, 0.25) 60%,
        rgba(245, 158, 11, 0.18) 100%
    );
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #f59e0b, #ec4899, #f472b6);
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.feature-card:hover::after {
    opacity: 0.08;
}

.feature-card:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
    box-shadow:
        0 8px 32px rgba(236, 72, 153, 0.04),
        0 0 0 1px rgba(245, 158, 11, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 1),
        inset 0 -1px 1px rgba(255, 255, 255, 0.4);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-card-icon i {
    font-size: 1.375rem;
    color: #818cf8;
}

.feature-icon-storage {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(6, 182, 212, 0.1));
    border-color: rgba(34, 211, 238, 0.2);
}

.feature-icon-storage i {
    color: #22d3ee;
}

.feature-icon-panel {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.15), rgba(249, 115, 22, 0.1));
    border-color: rgba(251, 146, 60, 0.2);
}

.feature-icon-panel i {
    color: #fb923c;
}

.feature-icon-dev {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(16, 185, 129, 0.1));
    border-color: rgba(52, 211, 153, 0.2);
}

.feature-icon-dev i {
    color: #34d399;
}

.feature-icon-email {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(244, 114, 182, 0.1));
    border-color: rgba(236, 72, 153, 0.2);
}

.feature-icon-email i {
    color: #ec4899;
}

.feature-icon-network {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(59, 130, 246, 0.1));
    border-color: rgba(96, 165, 250, 0.2);
}

.feature-icon-network i {
    color: #60a5fa;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.feature-card > p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1.25rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #64748b;
}

.feature-list li i {
    font-size: 0.875rem;
    color: #10b981;
}

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

@media (max-width: 768px) {
    .section-features-hosting {
        padding: 5rem 0;
    }

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

    .feature-card {
        padding: 1.5rem;
    }
}

/* ============================================
   Security Section
   ============================================ */
.section-security {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.security-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.security-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.security-orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    top: -200px;
    right: -200px;
}

.security-orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    bottom: -150px;
    left: -150px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.security-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.security-card-large {
    grid-column: span 2;
}

/* Equal width cards modifier for panel options */
.security-grid-equal {
    grid-template-columns: repeat(3, 1fr);
}

.security-grid-equal .security-card-large {
    grid-column: span 1;
}

.security-grid-equal .security-card-large .security-card-inner {
    flex-direction: column;
    padding: 2rem;
}

.security-grid-equal .security-card-large .security-card-content {
    padding-left: 0;
    margin-top: 1rem;
}

/* Panel price badge for control panel cards */
.panel-price {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6366f1;
}

.panel-price.included {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

/* Consistent card inner styling for equal grid */
.security-grid-equal .security-card-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 2rem;
}

.security-grid-equal .security-card-inner h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.security-grid-equal .security-card-inner p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.security-grid-equal .security-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    font-size: 1.5rem;
}

.security-grid-equal .security-card-icon i {
    color: #fff;
}

.security-card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #f59e0b, #ec4899, #f472b6);
    border-radius: 26px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.security-card:hover .security-card-glow {
    opacity: 0.5;
}

.security-card-inner {
    position: relative;
    padding: 2rem;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.75) 100%
    );
    border: 1.5px solid transparent;
    border-radius: 24px;
    background-clip: padding-box;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        inset 0 -1px 1px rgba(255, 255, 255, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.4s ease;
}

.security-card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(150, 150, 160, 0.5) 0%,
        rgba(180, 180, 190, 0.25) 40%,
        rgba(160, 160, 170, 0.35) 60%,
        rgba(180, 180, 190, 0.2) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.security-card:hover .security-card-inner {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
    box-shadow:
        0 8px 32px rgba(236, 72, 153, 0.15),
        0 0 0 1px rgba(245, 158, 11, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 1),
        inset 0 -1px 1px rgba(255, 255, 255, 0.4);
}

.security-card:hover .security-card-inner::before {
    background: linear-gradient(
        135deg,
        rgba(245, 158, 11, 0.5) 0%,
        rgba(236, 72, 153, 0.35) 40%,
        rgba(244, 114, 182, 0.4) 60%,
        rgba(245, 158, 11, 0.25) 100%
    );
}

.security-card-large .security-card-inner {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.security-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

.security-card-icon i {
    font-size: 1.5rem;
    color: #ea580c;
}

.security-icon-ddos {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.08));
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.security-icon-ddos i {
    color: #7c3aed;
}

.security-icon-malware {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(244, 114, 182, 0.08));
    border-color: rgba(236, 72, 153, 0.2);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.1);
}

.security-icon-malware i {
    color: #db2777;
}

.security-icon-backup {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(34, 211, 238, 0.08));
    border-color: rgba(6, 182, 212, 0.2);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.1);
}

.security-icon-backup i {
    color: #0891b2;
}

.security-icon-ssl {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.08));
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.security-icon-ssl i {
    color: #059669;
}

.security-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.security-card-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
}

.security-card-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.security-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.security-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
}

.security-stat-label {
    font-size: 0.8125rem;
    color: #64748b;
}

.security-badge {
    margin-top: auto;
}

.security-badge span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

    .security-card-large {
        grid-column: span 2;
    }

    .security-card-large .security-card-inner {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section-security {
        padding: 5rem 0;
    }

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

    .security-card-large {
        grid-column: span 1;
    }

    .security-card-inner {
        padding: 1.5rem;
    }

    .security-grid-equal {
        grid-template-columns: 1fr;
    }

    .security-grid-equal .security-card-inner {
        padding: 1.5rem;
    }
}

/* ============================================
   Support & SLA Section
   ============================================ */
.section-support {
    padding: 8rem 0;
    position: relative;
}

.support-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-content .section-label {
    display: inline-block;
    margin-bottom: 1rem;
}

.support-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.support-content .section-desc {
    text-align: left;
    max-width: 480px;
    margin: 0;
}

.support-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.support-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.support-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.support-channel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(150, 150, 160, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    color: #475569;
}

.support-channel i {
    color: #a78bfa;
}

.support-visual {
    display: flex;
    justify-content: center;
}

.support-card {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.support-card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 26px;
    opacity: 0.5;
    filter: blur(20px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.02); }
}

.support-card-inner {
    position: relative;
    padding: 2rem;
    background: rgba(15, 15, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
}

.support-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: avatarFloat 3s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

@keyframes avatarFloat {
    0%, 100% { transform: translateY(0); box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4); }
    50% { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5); }
}

.support-avatar i {
    font-size: 1.25rem;
    color: #fff;
}

.support-meta h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.online-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #34d399;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.support-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.support-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.support-feature-item i {
    color: #34d399;
    font-size: 1rem;
}

.support-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

@media (max-width: 992px) {
    .support-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .support-content .section-title,
    .support-content .section-desc {
        text-align: center;
        max-width: 100%;
    }

    .support-stats {
        justify-content: center;
    }

    .support-channels {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-support {
        padding: 5rem 0;
    }

    .support-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .support-stat {
        text-align: center;
    }
}

/* ============================================
   CTA Section
   ============================================ */
.section-cta-hosting {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .section-cta-hosting {
        padding: 4rem 0;
    }

    .cta-content {
        padding: 2.5rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* ============================================
   Power+ Hero Section - Unique Design
   ============================================ */
.power-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
}

/* Background Elements */
.power-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.power-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 70%);
}

.power-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.power-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    animation: powerGlow1 8s ease-in-out infinite;
}

.power-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    bottom: 10%;
    left: 10%;
    animation: powerGlow2 10s ease-in-out infinite;
}

.power-glow-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    top: 30%;
    right: 5%;
    animation: powerGlow3 12s ease-in-out infinite;
}

@keyframes powerGlow1 {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

@keyframes powerGlow2 {
    0%, 100% { opacity: 0.5; transform: translate(0, 0); }
    50% { opacity: 0.7; transform: translate(30px, -20px); }
}

@keyframes powerGlow3 {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.15); }
}

/* Particles */
.power-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(99, 102, 241, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 60%; top: 30%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 6s; animation-duration: 16s; }
.particle:nth-child(5) { left: 40%; top: 50%; animation-delay: 8s; animation-duration: 20s; }
.particle:nth-child(6) { left: 90%; top: 40%; animation-delay: 10s; animation-duration: 13s; }

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Hero Badge */
.power-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    margin-bottom: 2rem;
}

.power-hero-badge .badge-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
}

.power-hero-badge .badge-icon i {
    font-size: 0.75rem;
    color: #fff;
}

.power-hero-badge span:last-child {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.02em;
}

/* Hero Content */
.power-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.power-hero-content {
    margin-bottom: 3rem;
}

.power-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.power-hero-title .power-word {
    display: block;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.4));
}

.power-hero-title .title-line {
    display: block;
    color: #111111;
    font-size: 0.5em;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.power-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Row */
.power-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.power-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.power-stat-visual {
    position: relative;
    width: 80px;
    height: 80px;
}

.power-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.08);
    stroke-width: 4;
}

.ring-fill {
    fill: none;
    stroke: url(#ring-gradient-1);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    animation: ringPulse 3s ease-in-out infinite;
}

/* Ring gradients defined inline won't work, use solid colors with glow */
.ring-fill {
    stroke: #6366f1;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
}

.ring-fill-2 {
    stroke: #a855f7;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
    animation-delay: 0.5s;
}

.ring-fill-3 {
    stroke: #ec4899;
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.6));
    animation-delay: 1s;
}

.ring-fill-4 {
    stroke: #10b981;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
    animation-delay: 1.5s;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.power-stat-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.power-stat-icon i {
    font-size: 1.125rem;
    color: #111111;
}

.power-stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.power-stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111111;
}

.power-stat-label {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Buttons */
.power-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.power-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.power-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.power-btn-primary i {
    transition: transform 0.3s ease;
}

.power-btn-primary:hover i {
    transform: translateX(4px);
}

.power-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a2e;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.power-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Server Rack Visual */
.power-visual {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.rack-unit {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.rack-unit.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
}

.rack-leds {
    display: flex;
    gap: 6px;
}

.led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.led-green {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: ledBlink 2s ease-in-out infinite;
}

.led-amber {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
    animation: ledBlink 1.5s ease-in-out infinite;
}

@keyframes ledBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.rack-label {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

.rack-unit.highlight .rack-label {
    color: #111111;
}

.rack-activity {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 20px;
}

.activity-bar {
    width: 4px;
    background: linear-gradient(to top, #6366f1, #a855f7);
    border-radius: 2px;
    animation: activityPulse 0.8s ease-in-out infinite;
}

.activity-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.activity-bar:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.activity-bar:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.activity-bar:nth-child(4) { height: 90%; animation-delay: 0.3s; }

@keyframes activityPulse {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

.your-server-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    margin-left: auto;
}

.your-server-badge i {
    font-size: 0.75rem;
    color: #10b981;
}

.your-server-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #34d399;
}

/* Floating Stats */
.power-float-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: floatStat 5s ease-in-out infinite;
}

.power-float-stat i {
    font-size: 1rem;
    color: #6366f1;
}

.power-float-stat span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
}

.float-stat-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.float-stat-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2.5s;
}

@keyframes floatStat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
    .power-stats-row {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .power-stat-visual {
        width: 70px;
        height: 70px;
    }

    .power-float-stat {
        display: none;
    }
}

@media (max-width: 768px) {
    .power-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .power-hero-badge {
        padding: 8px 14px;
        gap: 8px;
    }

    .power-hero-badge span:last-child {
        font-size: 0.6875rem;
    }

    .power-hero-title {
        font-size: 3rem;
    }

    .power-hero-title .title-line {
        font-size: 0.4em;
    }

    .power-hero-subtitle {
        font-size: 1rem;
    }

    .power-stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .power-stat-visual {
        width: 60px;
        height: 60px;
    }

    .power-stat-value {
        font-size: 1rem;
    }

    .power-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .power-btn-primary,
    .power-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .server-rack {
        padding: 16px;
    }

    .rack-unit {
        padding: 12px 14px;
        gap: 12px;
    }

    .rack-label {
        font-size: 0.75rem;
    }

    .your-server-badge {
        display: none;
    }
}

/* ============================================
   VPS Hero Section - Terminal Design
   ============================================ */
.vps-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
}

/* Background Elements */
.vps-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.vps-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 70%);
}

.vps-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.vps-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 70%);
    top: -100px;
    left: 10%;
    animation: vpsGlow1 10s ease-in-out infinite;
}

.vps-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    bottom: 0;
    right: 10%;
    animation: vpsGlow2 12s ease-in-out infinite;
}

@keyframes vpsGlow1 {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes vpsGlow2 {
    0%, 100% { opacity: 0.5; transform: translate(0, 0); }
    50% { opacity: 0.7; transform: translate(-20px, -30px); }
}

/* Code Rain Effect */
.code-rain {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.15;
}

.code-rain span {
    position: absolute;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 12px;
    color: #22c55e;
    animation: codeRain 15s linear infinite;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.code-rain span:nth-child(1) { left: 5%; animation-delay: 0s; }
.code-rain span:nth-child(2) { left: 15%; animation-delay: 2s; }
.code-rain span:nth-child(3) { left: 25%; animation-delay: 4s; }
.code-rain span:nth-child(4) { left: 35%; animation-delay: 1s; }
.code-rain span:nth-child(5) { left: 55%; animation-delay: 3s; }
.code-rain span:nth-child(6) { left: 65%; animation-delay: 5s; }
.code-rain span:nth-child(7) { left: 75%; animation-delay: 2.5s; }
.code-rain span:nth-child(8) { left: 90%; animation-delay: 4.5s; }

@keyframes codeRain {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* Hero Wrapper */
.vps-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.vps-hero-content {
    max-width: 540px;
}

.vps-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.vps-hero-badge .badge-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 6px;
}

.vps-hero-badge .badge-icon i {
    font-size: 0.7rem;
    color: #fff;
}

.vps-hero-badge span:last-child {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #22c55e;
}

.vps-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #111111;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.vps-hero-title .gradient-text {
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vps-hero-title .title-sub {
    display: block;
    font-size: 0.4em;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.vps-hero-desc {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* OS Options */
.vps-os-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.os-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.os-option:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
}

.os-option i {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.6);
}

.os-option span {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

/* VPS CTAs */
.vps-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vps-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.vps-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.vps-btn-primary i {
    transition: transform 0.3s ease;
}

.vps-btn-primary:hover i {
    transform: translateX(4px);
}

.vps-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a2e;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.vps-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* VPS Hero Features */
.vps-hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.vps-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
}

.vps-feature-item i {
    color: #22c55e;
    font-size: 1rem;
}

/* Terminal Window Visual */
.vps-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal-window {
    width: 100%;
    max-width: 500px;
    background: #0d1117;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.term-btn-close { background: #ff5f57; }
.term-btn-minimize { background: #febc2e; }
.term-btn-maximize { background: #28c840; }

.terminal-title {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    color: rgba(255, 255, 255, 0.5);
}

.terminal-body {
    padding: 16px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 0.75rem;
    line-height: 1.6;
}

.terminal-line {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.prompt {
    color: #22c55e;
    white-space: nowrap;
}

.command {
    color: #fff;
}

.command.typing {
    animation: typing 0.5s steps(8) forwards;
    overflow: hidden;
    white-space: nowrap;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.terminal-output {
    margin: 16px 0;
}

.neofetch-output {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.625rem;
    line-height: 1.4;
    margin: 0;
    white-space: pre;
    overflow-x: auto;
}

.terminal-line.active {
    display: flex;
    align-items: center;
}

.cursor {
    color: #22c55e;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* VPS Floating Badges */
.vps-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: floatBadge 5s ease-in-out infinite;
}

.vps-float-badge i {
    font-size: 1rem;
    color: #22c55e;
}

.vps-float-badge span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
}

.float-badge-1 {
    top: 5%;
    right: -5%;
    animation-delay: 0s;
}

.float-badge-2 {
    bottom: 10%;
    left: -10%;
    animation-delay: 2.5s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Dark Marquee */
.marquee-dark {
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-dark .marquee-inner span {
    color: rgba(0, 0, 0, 0.5);
}

.marquee-dark .marquee-inner .divider {
    color: #22c55e;
}

/* 4-Column Pricing Grid */
.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

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

/* VPS Hero Responsive */
@media (max-width: 1200px) {
    .vps-float-badge {
        display: none;
    }
}

@media (max-width: 992px) {
    .vps-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .vps-hero-content {
        max-width: 100%;
    }

    .vps-os-options {
        justify-content: center;
    }

    .vps-hero-ctas {
        justify-content: center;
    }

    .vps-hero-features {
        justify-content: center;
    }

    .vps-hero-visual {
        order: -1;
    }

    .terminal-window {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .vps-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .vps-hero-title {
        font-size: 2.25rem;
    }

    .vps-hero-desc {
        font-size: 1rem;
    }

    .vps-os-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .os-option {
        justify-content: center;
    }

    .vps-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .vps-btn-primary,
    .vps-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .vps-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .terminal-window {
        max-width: 100%;
    }

    .terminal-body {
        padding: 12px;
    }

    .neofetch-output {
        font-size: 0.5rem;
    }
}

/* ==========================================================================
   MANAGED VPS HERO SECTION
   ========================================================================== */

.managed-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
}

/* Background Elements */
.managed-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.managed-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.managed-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.managed-glow-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: -20%;
    right: -10%;
    animation: managedFloat 20s ease-in-out infinite;
}

.managed-glow-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    bottom: -10%;
    left: -5%;
    animation: managedFloat 25s ease-in-out infinite reverse;
}

.managed-glow-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #22c55e, #10b981);
    top: 40%;
    left: 30%;
    animation: managedFloat 30s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes managedFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -10px) scale(1.02); }
}

/* Hero Wrapper */
.managed-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.managed-hero-content {
    max-width: 560px;
}

.managed-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.managed-hero-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
}

.managed-hero-badge .badge-icon i {
    font-size: 0.75rem;
    color: #fff;
}

.managed-hero-badge span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.managed-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111111;
}

.managed-hero-title .title-sub {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
}

.managed-hero-desc {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Panel Options */
.panel-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.panel-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.panel-option:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
}

.panel-option.included {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border-color: rgba(34, 197, 94, 0.3);
}

.panel-option.upgrade {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(99, 102, 241, 0.2);
}

.panel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.panel-option.included .panel-icon {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.panel-option.upgrade .panel-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.panel-icon i {
    font-size: 1rem;
    color: #fff;
}

.panel-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.panel-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111111;
}

.panel-status {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
}

.panel-option.included .panel-status {
    color: #22c55e;
}

/* CTA Buttons */
.managed-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.managed-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.managed-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    color: #fff;
}

.managed-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.managed-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a1a2e;
}

/* Hero Features */
.managed-hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.managed-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
}

.managed-feature-item i {
    color: #22c55e;
    font-size: 1rem;
}

/* Dashboard Card Visual */
.managed-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-card {
    width: 100%;
    max-width: 480px;
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 100px rgba(99, 102, 241, 0.1);
}

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

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #22c55e;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.dashboard-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Dashboard Metrics */
.dashboard-metrics {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.metric-value {
    font-weight: 600;
    color: #fff;
}

.metric-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 3px;
    transition: width 1s ease-out;
}

/* Dashboard Services */
.dashboard-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 20px 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-item i {
    font-size: 0.875rem;
}

.service-item .text-success {
    color: #22c55e !important;
}

/* Dashboard Footer */
.dashboard-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.managed-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.managed-badge i {
    color: #6366f1;
}

.dashboard-footer-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.dashboard-footer-label i {
    color: #6366f1;
}

.dashboard-footer-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 600;
}

/* Floating Badges */
.managed-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: floatBadge 5s ease-in-out infinite;
}

.managed-float-badge i {
    font-size: 1rem;
}

.managed-float-badge span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1a1a2e;
}

.managed-float-badge.float-badge-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.managed-float-badge.float-badge-1 i {
    color: #22c55e;
}

.managed-float-badge.float-badge-2 {
    bottom: 15%;
    left: -8%;
    animation-delay: 2.5s;
}

.managed-float-badge.float-badge-2 i {
    color: #6366f1;
}

/* Managed Marquee */
.marquee-managed {
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.marquee-managed .marquee-inner span {
    color: rgba(0, 0, 0, 0.5);
}

.marquee-managed .marquee-inner .divider {
    color: #8b5cf6;
}

/* ==========================================================================
   MANAGED VPS RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .managed-float-badge {
        display: none;
    }
}

@media (max-width: 992px) {
    .managed-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .managed-hero-content {
        max-width: 100%;
    }

    .managed-hero-badge {
        justify-content: center;
    }

    .panel-options {
        justify-content: center;
    }

    .managed-hero-ctas {
        justify-content: center;
    }

    .managed-hero-features {
        justify-content: center;
    }

    .managed-hero-visual {
        order: -1;
    }

    .dashboard-card {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .managed-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .managed-hero-title {
        font-size: 2.5rem;
    }

    .managed-hero-title .title-sub {
        font-size: 1.5rem;
    }

    .managed-hero-desc {
        font-size: 1rem;
    }

    .panel-options {
        flex-direction: column;
        align-items: center;
    }

    .panel-option {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .managed-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .managed-btn-primary,
    .managed-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .managed-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .dashboard-card {
        max-width: 100%;
    }

    .dashboard-services {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   DEDICATED SERVERS HERO SECTION
   ========================================================================== */

.dedicated-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
}

/* Background Elements */
.dedicated-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.dedicated-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(251, 146, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 146, 60, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.dedicated-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.dedicated-glow-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    top: -15%;
    right: -5%;
    animation: dedicatedFloat 25s ease-in-out infinite;
}

.dedicated-glow-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    bottom: -15%;
    left: -10%;
    animation: dedicatedFloat 30s ease-in-out infinite reverse;
}

@keyframes dedicatedFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.03); }
    50% { transform: translate(-15px, 15px) scale(0.97); }
    75% { transform: translate(-20px, -10px) scale(1.01); }
}

/* Hero Wrapper */
.dedicated-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.dedicated-hero-content {
    max-width: 540px;
}

.dedicated-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 88, 12, 0.15));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.dedicated-hero-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
}

.dedicated-hero-badge .badge-icon i {
    font-size: 0.75rem;
    color: #fff;
}

.dedicated-hero-badge span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fdba74, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dedicated-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111111;
}

.dedicated-hero-desc {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Hero Specs */
.dedicated-hero-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.7);
}

.spec-item i {
    color: #f97316;
    font-size: 0.875rem;
}

/* CTA Buttons */
.dedicated-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.dedicated-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.dedicated-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
    color: #fff;
}

.dedicated-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dedicated-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
    color: #1a1a2e;
}

/* Hero Features */
.dedicated-hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dedicated-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
}

.dedicated-feature-item i {
    color: #22c55e;
    font-size: 1rem;
}

/* Server Hardware Visual */
.dedicated-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-hardware {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.server-chassis {
    background: linear-gradient(180deg, #1a1a24 0%, #0f0f16 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.chassis-front {
    padding: 0;
}

.chassis-bezel {
    background: linear-gradient(180deg, #1e1e2a 0%, #16161f 100%);
}

.bezel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.server-brand {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-leds {
    display: flex;
    gap: 8px;
}

.status-leds .led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-leds .led.power {
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: ledPulse 2s ease-in-out infinite;
}

.status-leds .led.hdd {
    background: #f97316;
    animation: hddBlink 0.3s ease-in-out infinite;
}

.status-leds .led.network {
    background: #22c55e;
    animation: ledPulse 1.5s ease-in-out infinite 0.5s;
}

@keyframes ledPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes hddBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Drive Bays */
.drive-bays {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.drive-bay {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 12px 8px;
    text-align: center;
}

.drive-bay.active {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
}

.drive-led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    margin: 0 auto 8px;
    box-shadow: 0 0 6px #22c55e;
}

.drive-led.off {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.drive-bay span {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drive-bay.active span {
    color: #f97316;
}

/* Chassis Info */
.chassis-info {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
}

/* Dedicated Floating Badges */
.dedicated-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: floatBadge 5s ease-in-out infinite;
}

.dedicated-float-badge i {
    font-size: 1rem;
}

.dedicated-float-badge span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
}

.dedicated-float-badge.float-badge-1 {
    top: 5%;
    right: -5%;
    animation-delay: 0s;
}

.dedicated-float-badge.float-badge-1 i {
    color: #f97316;
}

.dedicated-float-badge.float-badge-2 {
    bottom: 10%;
    left: -8%;
    animation-delay: 2.5s;
}

.dedicated-float-badge.float-badge-2 i {
    color: #22c55e;
}

/* Dedicated Marquee */
.marquee-dedicated {
    background: #f8fafc;
    border-top: 1px solid rgba(249, 115, 22, 0.1);
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

.marquee-dedicated .marquee-inner span {
    color: rgba(0, 0, 0, 0.5);
}

.marquee-dedicated .marquee-inner .divider {
    color: #f97316;
}

/* 3-Column Pricing Grid */
.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .pricing-grid-3 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* OS Options Section */
.section-os-options {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f4f8 0%, #f8fafb 50%, #f0f7f4 100%);
}

.section-os-options .section-title {
    color: #111111;
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.os-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.os-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.os-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
}

.os-icon i {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.6);
}

.os-card:hover .os-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.2));
}

.os-card:hover .os-icon i {
    color: #f97316;
}

.os-card span {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

.os-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .os-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .os-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   DEDICATED SERVERS RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .dedicated-float-badge {
        display: none;
    }
}

@media (max-width: 992px) {
    .dedicated-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .dedicated-hero-content {
        max-width: 100%;
    }

    .dedicated-hero-badge {
        justify-content: center;
    }

    .dedicated-hero-specs {
        justify-content: center;
    }

    .dedicated-hero-ctas {
        justify-content: center;
    }

    .dedicated-hero-features {
        justify-content: center;
    }

    .dedicated-hero-visual {
        order: -1;
    }

    .server-hardware {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .dedicated-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .dedicated-hero-title {
        font-size: 2.5rem;
    }

    .dedicated-hero-desc {
        font-size: 1rem;
    }

    .dedicated-hero-specs {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .spec-item {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }

    .dedicated-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .dedicated-btn-primary,
    .dedicated-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .dedicated-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

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

/* ==========================================================================
   MANAGED DEDICATED SERVERS HERO SECTION
   ========================================================================== */

.managed-dedicated-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
}

/* Background Elements */
.managed-dedicated-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.managed-dedicated-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249, 115, 22, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.managed-dedicated-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}

.managed-dedicated-glow-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    top: -20%;
    right: -10%;
    animation: managedDedicatedFloat 20s ease-in-out infinite;
}

.managed-dedicated-glow-2 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    bottom: -10%;
    left: -5%;
    animation: managedDedicatedFloat 25s ease-in-out infinite reverse;
}

.managed-dedicated-glow-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #22c55e, #10b981);
    top: 50%;
    left: 40%;
    animation: managedDedicatedFloat 30s ease-in-out infinite;
    opacity: 0.15;
}

@keyframes managedDedicatedFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(25px, -25px) scale(1.04); }
    50% { transform: translate(-15px, 15px) scale(0.96); }
    75% { transform: translate(-25px, -10px) scale(1.02); }
}

/* Hero Wrapper */
.managed-dedicated-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.managed-dedicated-hero-content {
    max-width: 560px;
}

.managed-dedicated-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 88, 12, 0.15));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.managed-dedicated-hero-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
}

.managed-dedicated-hero-badge .badge-icon i {
    font-size: 0.75rem;
    color: #fff;
}

.managed-dedicated-hero-badge span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fdba74, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.managed-dedicated-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111111;
}

.gradient-text-orange {
    background: linear-gradient(135deg, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.managed-dedicated-hero-desc {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* CTA Buttons */
.managed-dedicated-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.managed-dedicated-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.managed-dedicated-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
    color: #fff;
}

.managed-dedicated-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.managed-dedicated-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
    color: #1a1a2e;
}

/* Hero Features */
.managed-dedicated-hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.managed-dedicated-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
}

.managed-dedicated-feature-item i {
    color: #22c55e;
    font-size: 1rem;
}

/* Managed Server Card Visual */
.managed-dedicated-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.managed-server-card {
    width: 100%;
    max-width: 460px;
    background: rgba(13, 17, 23, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 0 80px rgba(249, 115, 22, 0.1);
}

.managed-server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(249, 115, 22, 0.05);
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

.server-status-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #22c55e;
}

.server-status-badge .status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.server-type {
    font-size: 0.75rem;
    color: #f97316;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Server Specs */
.managed-server-specs {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.server-spec-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.server-spec-row .spec-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.server-spec-row .spec-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
}

.spec-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}

.spec-fill {
    height: 100%;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 3px;
    transition: width 1s ease-out;
}

/* Server Services */
.managed-server-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 20px 20px;
}

.managed-service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.managed-service-item i {
    font-size: 0.8125rem;
}

.managed-service-item .text-success {
    color: #22c55e !important;
}

/* Server Footer */
.managed-server-footer {
    display: flex;
    justify-content: center;
    padding: 14px 20px;
    background: rgba(249, 115, 22, 0.05);
    border-top: 1px solid rgba(249, 115, 22, 0.1);
}

.managed-server-footer .managed-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #f97316;
    font-weight: 500;
}

.managed-server-footer .managed-badge i {
    font-size: 0.875rem;
}

/* Floating Badges */
.managed-dedicated-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: floatBadge 5s ease-in-out infinite;
}

.managed-dedicated-float-badge i {
    font-size: 1rem;
}

.managed-dedicated-float-badge span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.managed-dedicated-float-badge.float-badge-1 {
    top: 5%;
    right: -5%;
    animation-delay: 0s;
}

.managed-dedicated-float-badge.float-badge-1 i {
    color: #f97316;
}

.managed-dedicated-float-badge.float-badge-2 {
    bottom: 10%;
    left: -8%;
    animation-delay: 2.5s;
}

.managed-dedicated-float-badge.float-badge-2 i {
    color: #22c55e;
}

/* Managed Dedicated Marquee */
.marquee-managed-dedicated {
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.marquee-managed-dedicated .marquee-inner span {
    color: rgba(0, 0, 0, 0.5);
}

.marquee-managed-dedicated .marquee-inner .divider {
    color: #f97316;
}

/* ==========================================================================
   MANAGED DEDICATED RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .managed-dedicated-float-badge {
        display: none;
    }
}

@media (max-width: 992px) {
    .managed-dedicated-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .managed-dedicated-hero-content {
        max-width: 100%;
    }

    .managed-dedicated-hero-badge {
        justify-content: center;
    }

    .panel-options {
        justify-content: center;
    }

    .managed-dedicated-hero-ctas {
        justify-content: center;
    }

    .managed-dedicated-hero-features {
        justify-content: center;
    }

    .managed-dedicated-hero-visual {
        order: -1;
    }

    .managed-server-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .managed-dedicated-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .managed-dedicated-hero-title {
        font-size: 2.5rem;
    }

    .managed-dedicated-hero-desc {
        font-size: 1rem;
    }

    .managed-dedicated-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .managed-dedicated-btn-primary,
    .managed-dedicated-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .managed-dedicated-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .managed-server-card {
        max-width: 100%;
    }

    .managed-server-services {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Colocation Page Styles
   ============================================ */

/* Teal Gradient Text */
.gradient-text-teal {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Colocation Hero */
.colo-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #f0fdfa 0%, #f0f9ff 100%);
}

.colo-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.colo-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(20, 184, 166, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 184, 166, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.colo-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.colo-glow-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.25), rgba(6, 182, 212, 0.15));
    top: -200px;
    right: -100px;
}

.colo-glow-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(14, 165, 233, 0.1));
    bottom: -100px;
    left: -100px;
}

.colo-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.colo-hero-content {
    position: relative;
    z-index: 2;
}

.colo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0d9488;
    margin-bottom: 1.5rem;
}

.colo-hero-badge .badge-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    border-radius: 50%;
    color: white;
    font-size: 0.8rem;
}

.colo-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.colo-hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.colo-hero-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.colo-hero-specs .spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.colo-hero-specs .spec-item i {
    color: #14b8a6;
    font-size: 1rem;
}

.colo-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.colo-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: white;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.colo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
    color: white;
}

.colo-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.colo-btn-secondary:hover {
    background: var(--bg-subtle);
    border-color: #14b8a6;
    color: #0d9488;
}

.colo-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.colo-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.colo-feature-item i {
    color: #14b8a6;
}

/* Colocation Hero Visual */
.colo-hero-visual {
    position: relative;
    z-index: 2;
}

.datacenter-visual {
    position: relative;
}

.cabinet-frame {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    max-width: 320px;
    margin: 0 auto;
}

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

.cabinet-label {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cabinet-leds {
    display: flex;
    gap: 0.5rem;
}

.cabinet-leds .led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.cabinet-leds .led.power {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.cabinet-leds .led.network {
    background: #14b8a6;
    box-shadow: 0 0 8px rgba(20, 184, 166, 0.6);
    animation: ledBlink 1.5s ease-in-out infinite;
}

@keyframes ledBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.cabinet-units {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rack-unit {
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    transition: all 0.3s ease;
}

.rack-unit.filled {
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.rack-unit.empty {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.unit-leds {
    display: flex;
    gap: 0.25rem;
    margin-right: 0.75rem;
}

.led-small {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.led-small.amber {
    background: #f59e0b;
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
}

.unit-label {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 500;
}

.cabinet-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.power-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #22c55e;
    font-size: 0.8rem;
    font-weight: 500;
}

.power-indicator i {
    font-size: 0.9rem;
}

/* Colo Floating Badges */
.colo-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.colo-float-badge i {
    color: #14b8a6;
}

.colo-float-badge.float-badge-1 {
    top: 20px;
    right: -20px;
    animation: floatBadge1 4s ease-in-out infinite;
}

.colo-float-badge.float-badge-2 {
    bottom: 40px;
    left: -30px;
    animation: floatBadge2 5s ease-in-out infinite;
}

/* Colocation Marquee */
.marquee-colo {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.marquee-colo span {
    color: #fff;
}

.marquee-colo .divider {
    color: rgba(255, 255, 255, 0.4);
}

/* India Colocation Section */
.section-india-colo {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #f0fdfa 100%);
}

.india-facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.facility-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.facility-card-inner {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.facility-card:hover .facility-card-inner {
    border-color: rgba(20, 184, 166, 0.4);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.1);
    transform: translateY(-4px);
}

.facility-tier {
    margin-bottom: 1rem;
}

.tier-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-badge.tier-3 {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(6, 182, 212, 0.1));
    color: #0d9488;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.tier-badge.tier-4 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.facility-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(6, 182, 212, 0.05));
    border-radius: 16px;
}

.facility-icon i {
    font-size: 1.75rem;
    color: #14b8a6;
}

.facility-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.facility-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.facility-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.facility-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.facility-features li i {
    color: #14b8a6;
    font-size: 1rem;
}

/* India CTA Box */
.india-cta {
    max-width: 800px;
    margin: 0 auto;
}

.india-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(6, 182, 212, 0.04));
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 20px;
}

.india-cta-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    border-radius: 16px;
    flex-shrink: 0;
}

.india-cta-icon i {
    font-size: 1.5rem;
    color: white;
}

.india-cta-text {
    flex: 1;
}

.india-cta-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.india-cta-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* 2-column pricing grid */
.pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Colocation responsive */
@media (max-width: 991px) {
    .colo-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .colo-hero-content {
        order: 1;
    }

    .colo-hero-visual {
        order: 2;
    }

    .colo-hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .colo-hero-specs {
        justify-content: center;
    }

    .colo-hero-ctas {
        justify-content: center;
    }

    .colo-hero-features {
        justify-content: center;
    }

    .india-facilities-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .india-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .pricing-grid-2 {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

@media (max-width: 767px) {
    .colo-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .colo-hero-title {
        font-size: 2.25rem;
    }

    .colo-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .colo-btn-primary,
    .colo-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .colo-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .cabinet-frame {
        max-width: 280px;
    }

    .colo-float-badge.float-badge-1 {
        right: 0;
        top: -10px;
    }

    .colo-float-badge.float-badge-2 {
        left: 0;
        bottom: 20px;
    }
}

/* =============================================
   EMAIL SERVICE PAGE STYLES
   ============================================= */

/* Email Hero Section */
.email-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.email-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.email-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.email-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.email-glow-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.2));
    top: -200px;
    right: -100px;
}

.email-glow-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.2));
    bottom: -150px;
    left: -100px;
}

.email-hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.email-hero-content {
    max-width: 560px;
}

.email-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6366f1;
    margin-bottom: 1.5rem;
}

.email-hero-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
}

.email-hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.gradient-text-email {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.email-hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.email-hero-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.email-hero-specs .spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.email-hero-specs .spec-item i {
    color: #6366f1;
    font-size: 1.1rem;
}

.email-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.email-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.email-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    color: white;
}

.email-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.email-btn-secondary:hover {
    background: rgba(99, 102, 241, 0.15);
    color: #6366f1;
}

.email-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.email-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.email-feature-item i {
    color: #22c55e;
    font-size: 0.85rem;
}

/* Email Interface Visual */
.email-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-interface {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.email-client {
    background: white;
    border-radius: 16px;
    box-shadow:
        0 25px 80px rgba(99, 102, 241, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.email-client-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

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

.email-client-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.email-client-dots span:first-child {
    background: #ff5f57;
}

.email-client-dots span:nth-child(2) {
    background: #ffbd2e;
}

.email-client-dots span:last-child {
    background: #28ca42;
}

.email-client-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.email-client-actions {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.email-sidebar {
    padding: 0.75rem;
    background: #f8f9ff;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.email-nav-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.email-nav-item.active {
    background: white;
    color: #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.email-nav-item i {
    font-size: 0.9rem;
}

.email-badge {
    background: #6366f1;
    color: white;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    font-weight: 600;
}

.email-list {
    padding: 0.5rem;
}

.email-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.email-item:hover {
    background: #f8f9ff;
}

.email-item.unread {
    background: rgba(99, 102, 241, 0.05);
}

.email-item.unread .email-sender {
    font-weight: 600;
    color: var(--text);
}

.email-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
}

.email-content {
    flex: 1;
    min-width: 0;
}

.email-sender {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.15rem;
}

.email-subject {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.email-time {
    font-size: 0.7rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

/* Email Floating Badges */
.email-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 10;
}

.email-float-badge i {
    color: #6366f1;
}

.email-float-badge.float-badge-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.email-float-badge.float-badge-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 2s;
}

/* Email Marquee */
.marquee-email {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.marquee-email span {
    color: #fff;
}

.marquee-email .divider {
    color: rgba(255, 255, 255, 0.4);
}

/* Pricing Billed Text */
.pricing-billed {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Bulk Discount Banner */
.bulk-discount-banner {
    margin-top: 3rem;
    padding: 0 1rem;
}

.bulk-discount-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.bulk-discount-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bulk-discount-content {
    flex: 1;
}

.bulk-discount-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.bulk-discount-content p {
    color: var(--text-secondary);
    margin: 0;
}

.bulk-discount-content strong {
    color: #6366f1;
}

/* Protocols Section */
.section-protocols {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #f0f0ff 100%);
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.protocol-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.protocol-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.protocol-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #6366f1;
    font-size: 1.25rem;
}

.protocol-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.protocol-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Email Hero Responsive */
@media (max-width: 991px) {
    .email-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .email-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .email-hero-content {
        max-width: 100%;
    }

    .email-hero-badge {
        margin: 0 auto 1.5rem;
    }

    .email-hero-specs {
        justify-content: center;
    }

    .email-hero-ctas {
        justify-content: center;
    }

    .email-hero-features {
        justify-content: center;
    }

    .email-interface {
        max-width: 400px;
        margin: 0 auto;
    }

    .bulk-discount-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

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

@media (max-width: 575px) {
    .email-hero-title {
        font-size: 2.5rem;
    }

    .email-hero-ctas {
        flex-direction: column;
    }

    .email-btn-primary,
    .email-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .email-sidebar {
        padding: 0.5rem;
    }

    .email-nav-item span:not(.email-badge) {
        display: none;
    }

    .email-float-badge.float-badge-1 {
        right: 0;
        top: 0;
    }

    .email-float-badge.float-badge-2 {
        left: 0;
        bottom: 20px;
    }

    .bulk-discount-inner {
        padding: 1.5rem;
    }

    .protocols-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .protocol-card {
        padding: 1rem;
    }

    .protocol-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===========================================
   HOMEPAGE STYLES
   =========================================== */

/* Home Hero Section */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.home-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.home-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.home-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.home-glow-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    top: -200px;
    left: -100px;
}

.home-glow-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    top: 20%;
    right: -150px;
}

.home-glow-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    bottom: 0;
    left: 30%;
}

/* Floating Icons */
.home-float {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #6366f1;
    font-size: 1.5rem;
    animation: homeFloat 6s ease-in-out infinite;
}

.home-float-1 {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.home-float-2 {
    top: 40%;
    right: 15%;
    animation-delay: -2s;
}

.home-float-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes homeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.home-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Hero Badge */
.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.875rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Hero Content */
.home-hero-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.home-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.home-hero-title .title-line {
    display: block;
}

.home-hero-title .gradient-text {
    background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Hero CTAs */
.home-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    color: #1a1a2e;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.25);
    color: #1a1a2e;
}

/* Hero Stats Row */
.home-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.home-stat {
    text-align: center;
}

.home-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.home-stat-label {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
}

.home-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.15);
}

/* Marquee Home */
.marquee-home {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
}

.marquee-home .marquee-inner span {
    color: rgba(255, 255, 255, 0.85);
}

.marquee-sep {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.75rem;
    margin: 0 0.25rem;
}

/* Products Section */
.section-products {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.15);
    color: #6366f1;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.section-desc {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Product Card */
.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    color: inherit;
}

.product-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover .product-card-glow {
    opacity: 1;
}

.product-card-featured {
    border-color: rgba(99, 102, 241, 0.3);
}

.product-card-featured .product-card-glow {
    opacity: 0.5;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    z-index: 2;
}

.product-card-inner {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.product-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: 14px;
    font-size: 1.5rem;
    color: #6366f1;
    margin-bottom: 1.25rem;
}

.product-icon-power {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
    color: #f59e0b;
}

.product-icon-vps {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
    color: #22c55e;
}

.product-icon-managed {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
    color: #8b5cf6;
}

.product-icon-dedicated {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
    color: #3b82f6;
}

.product-icon-managed-ded {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.1));
    color: #ec4899;
}

.product-icon-colo {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(13, 148, 136, 0.1));
    color: #14b8a6;
}

.product-icon-email {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(79, 70, 229, 0.1));
    color: #6366f1;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

.product-desc {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.product-price .price-from {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
}

.product-price .price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a2e;
}

.product-price .price-period {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
}

.product-features li i {
    color: #22c55e;
    font-size: 0.75rem;
}

.product-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6366f1;
    transition: all 0.3s ease;
}

.product-card:hover .product-cta {
    gap: 0.75rem;
    color: #8b5cf6;
}

/* Services Section */
.section-services {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.12);
    color: inherit;
}

.service-card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    border-radius: 16px;
    font-size: 1.75rem;
    color: #6366f1;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.05);
}

.service-icon-app {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.1));
    color: #22c55e;
}

.service-icon-erp {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.1));
    color: #f59e0b;
}

.service-icon-strategy {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(219, 39, 119, 0.1));
    color: #ec4899;
}

.service-card-content {
    flex: 1;
    min-width: 0;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.service-card-desc {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.service-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.service-price-label {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
}

.service-price-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #6366f1;
}

.service-card-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    color: #6366f1;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-arrow {
    background: #6366f1;
    color: white;
    transform: translateX(4px);
}

/* Why Cenmax Section */
.section-why-cenmax {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.why-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: 14px;
    font-size: 1.5rem;
    color: #6366f1;
    margin-bottom: 1.25rem;
}

.why-card-icon-security {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
    color: #22c55e;
}

.why-card-icon-uptime {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
    color: #f59e0b;
}

.why-card-icon-support {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.1));
    color: #ec4899;
}

.why-card-icon-backup {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
    color: #3b82f6;
}

.why-card-icon-global {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(13, 148, 136, 0.1));
    color: #14b8a6;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

.why-card p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* Trust Stats Section */
.section-trust-stats {
    padding: 80px 0;
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trust-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    font-size: 1.25rem;
    color: #6366f1;
}

.trust-stat-content {
    display: flex;
    flex-direction: column;
}

.trust-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.trust-stat-label {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 0.25rem;
}

/* Testimonials Home */
.section-testimonials-home {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
}

.testimonials-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card-home {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card-home:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
}

.author-role {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
}

/* Contact Home Section */
.section-contact-home {
    padding: 100px 0;
}

.contact-wrapper-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-content-home .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-content-home .section-desc {
    text-align: left;
    margin: 0 0 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: 10px;
    font-size: 1.1rem;
    color: #6366f1;
}

.contact-method-content {
    display: flex;
    flex-direction: column;
}

.contact-method-label {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-method-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
}

.contact-method-value:hover {
    color: #6366f1;
}

/* Contact Form Home */
.contact-form-wrapper-home {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper-home .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form-wrapper-home .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form-wrapper-home .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-wrapper-home .form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

.contact-form-wrapper-home .form-group input,
.contact-form-wrapper-home .form-group select,
.contact-form-wrapper-home .form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.contact-form-wrapper-home .form-group input::placeholder,
.contact-form-wrapper-home .form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.contact-form-wrapper-home .form-group input:focus,
.contact-form-wrapper-home .form-group select:focus,
.contact-form-wrapper-home .form-group textarea:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 1);
}

.contact-form-wrapper-home .form-group select {
    cursor: pointer;
}

.contact-form-wrapper-home .form-group select option {
    background: white;
    color: #1a1a2e;
}

.contact-form-wrapper-home .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-wrapper-home .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper-home .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.contact-form-wrapper-home .btn-submit .btn-bg {
    display: none;
}

/* Final CTA Section */
.section-final-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.final-cta-content p {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
    color: white;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    color: #1a1a2e;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a1a2e;
}

/* Homepage Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 992px) {
    .home-hero {
        padding: 120px 0 60px;
    }

    .home-stats-row {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }

    .home-stat-divider {
        display: none;
    }

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

    .testimonials-grid-home {
        grid-template-columns: 1fr;
    }

    .contact-wrapper-home {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-float {
        display: none;
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .home-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .home-stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .home-stat {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-card-arrow {
        display: none;
    }

    .service-card-price {
        justify-content: center;
    }

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

    .trust-stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper-home .form-row {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===========================================
   DOMAIN PAGE STYLES
   =========================================== */

.domain-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.domain-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.domain-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.domain-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.domain-glow-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.domain-glow-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    bottom: 0;
    right: 10%;
}

.domain-hero .container {
    position: relative;
    z-index: 1;
}

.domain-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.domain-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.875rem;
    color: #6366f1;
    font-weight: 500;
    margin-bottom: 2rem;
}

.domain-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.domain-hero-title .title-line {
    display: block;
}

.domain-hero-title .gradient-text {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.domain-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Domain Search Box */
.domain-search-wrapper {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.domain-search-form {
    width: 100%;
}

.domain-search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.domain-search-box:focus-within {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
}

.search-icon {
    padding: 0 1rem;
    color: rgba(0, 0, 0, 0.3);
    font-size: 1.25rem;
}

.domain-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a2e;
    padding: 1rem 0.5rem;
    outline: none;
}

.domain-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.domain-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.domain-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.domain-hints {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.domain-hints > span {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
}

.domain-hint {
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.2s ease;
}

.domain-hint:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: #6366f1;
}

/* TLD Pricing Cards */
.tld-pricing {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.tld-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-width: 120px;
    transition: all 0.3s ease;
}

.tld-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.tld-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6366f1;
}

.tld-price {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.tld-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}

/* Domain Page Responsive */
@media (max-width: 768px) {
    .domain-hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .domain-search-box {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .search-icon {
        display: none;
    }

    .domain-input {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    .domain-search-btn {
        width: 100%;
        justify-content: center;
    }

    .tld-pricing {
        gap: 0.75rem;
    }

    .tld-card {
        min-width: 100px;
        padding: 1rem 1.25rem;
    }
}

/* ============================================
   About Page Styles
   ============================================ */

/* About Hero */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.about-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.15);
    top: -200px;
    right: -100px;
}

.about-glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.1);
    bottom: -200px;
    left: -100px;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6366f1;
    margin-bottom: 1.5rem;
}

.about-hero-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.about-hero-title .gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-desc {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.section-story {
    padding: 100px 0;
    background: #fff;
}

.story-content {
    max-width: 720px;
    margin: 0 auto;
}

.story-text {
    margin-top: 2rem;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
}

.story-text .story-lead {
    font-size: 1.35rem;
    color: #1a1a2e;
    font-weight: 500;
}

.story-text strong {
    color: #1a1a2e;
}

/* Values Section */
.section-values {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
}

.value-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-card-icon i {
    font-size: 1.5rem;
    color: #6366f1;
}

.value-card-icon.value-icon-support {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.value-card-icon.value-icon-support i {
    color: #10b981;
}

.value-card-icon.value-icon-simple {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.value-card-icon.value-icon-simple i {
    color: #ec4899;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-card p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
}

/* Team Section */
.section-team {
    padding: 100px 0;
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
}

.team-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.team-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.team-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.15);
    top: -200px;
    left: -100px;
}

.team-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(236, 72, 153, 0.1);
    bottom: -150px;
    right: -100px;
}

.team-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.team-text .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.team-text .section-title {
    color: #fff;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-tagline {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: #fff !important;
    margin-top: 1rem;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: center;
}

.team-stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.team-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Testimonials About Section */
.section-testimonials-about {
    padding: 100px 0;
    background: #fff;
}

.testimonials-note {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 3rem auto 0;
    font-style: italic;
}

/* Stats Secondary Grid */
.trust-stats-secondary {
    margin-top: 2rem;
    justify-content: center;
}

/* Infrastructure Section */
.section-infrastructure {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.infra-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.infra-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.infra-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.infra-card-header i {
    font-size: 1.25rem;
    color: #6366f1;
}

.infra-location {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
}

.infra-card p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.infra-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.infra-note {
    text-align: center;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 3rem auto 0;
}

/* About Page Responsive */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .team-stat {
        flex: 1;
        min-width: 140px;
    }

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

@media (max-width: 768px) {
    .about-hero {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-desc {
        font-size: 1.1rem;
    }

    .section-story,
    .section-values,
    .section-team,
    .section-testimonials-about,
    .section-infrastructure {
        padding: 60px 0;
    }

    .story-text p {
        font-size: 1rem;
    }

    .story-text .story-lead {
        font-size: 1.15rem;
    }

    .team-stats {
        flex-direction: column;
    }

    .team-stat {
        width: 100%;
    }
}

/* ============================================
   Careers Page Styles
   ============================================ */

/* Careers Hero */
.careers-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
}

.careers-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.careers-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.careers-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.careers-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.2);
    top: -150px;
    right: -100px;
}

.careers-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(236, 72, 153, 0.15);
    bottom: -100px;
    left: -100px;
}

.careers-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.careers-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4f46e5;
    margin-bottom: 1.5rem;
}

.careers-hero-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111111;
}

.careers-hero-title .gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-hero-desc {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Why Join Section */
.section-why-join {
    padding: 100px 0;
    background: #fff;
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-join-card {
    background: #f8f9fc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.why-join-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.why-join-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.why-join-icon i {
    font-size: 1.25rem;
    color: #6366f1;
}

.why-join-icon-growth {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.why-join-icon-growth i {
    color: #10b981;
}

.why-join-icon-team {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.why-join-icon-team i {
    color: #ec4899;
}

.why-join-icon-balance {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.why-join-icon-balance i {
    color: #f59e0b;
}

.why-join-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.why-join-card p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Positions Section */
.section-positions {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
    position: relative;
}

.positions-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.positions-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.5;
}

.positions-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.1);
    top: 20%;
    right: -100px;
}

.positions-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(236, 72, 153, 0.08);
    bottom: 10%;
    left: -50px;
}

.positions-category {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.positions-category:first-of-type {
    margin-top: 3rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.category-title i {
    font-size: 1.25rem;
    color: #6366f1;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.position-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.position-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
    transform: translateX(4px);
}

.position-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.position-info p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.position-tags .tag {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
}

.position-arrow {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
}

.position-arrow i {
    font-size: 1rem;
    color: #6366f1;
}

.position-card:hover .position-arrow {
    background: #6366f1;
}

.position-card:hover .position-arrow i {
    color: #fff;
}

/* Apply Section */
.section-apply {
    padding: 100px 0;
    background: #fff;
}

.apply-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.apply-content .section-title {
    margin-bottom: 1rem;
}

.apply-content > p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.apply-contact {
    margin-bottom: 2.5rem;
}

.apply-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apply-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    color: #fff;
}

.apply-email i {
    font-size: 1.25rem;
}

.apply-note {
    text-align: left;
    background: #f8f9fc;
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.apply-note p {
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.apply-note ul {
    margin: 0;
    padding-left: 1.25rem;
}

.apply-note li {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
}

/* Careers Responsive */
@media (max-width: 992px) {
    .why-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .careers-hero-title {
        font-size: 2rem;
    }

    .why-join-grid {
        grid-template-columns: 1fr;
    }

    .section-why-join,
    .section-positions,
    .section-apply {
        padding: 60px 0;
    }

    .position-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
    }

    .position-arrow {
        display: none;
    }

    .apply-email {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* ============================================
   Affiliate Page Styles
   ============================================ */

/* Affiliate Hero */
.affiliate-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
}

.affiliate-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.affiliate-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.affiliate-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.affiliate-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(16, 185, 129, 0.15);
    top: -150px;
    right: -100px;
}

.affiliate-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.1);
    bottom: -100px;
    left: -100px;
}

.affiliate-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.affiliate-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.affiliate-hero-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliate-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.affiliate-hero-title .gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.affiliate-hero-desc {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.affiliate-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Commission Highlight */
.commission-highlight {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.commission-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 2.5rem 4rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.commission-value {
    font-size: 5rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.commission-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.commission-desc {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.5);
}

/* How It Works Section */
.section-how-it-works {
    padding: 100px 0;
    background: #fff;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.step-card {
    background: #f8f9fc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 280px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: #6366f1;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-icon i {
    font-size: 1.75rem;
    color: #6366f1;
}

.step-icon-share {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.step-icon-share i {
    color: #ec4899;
}

.step-icon-earn {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.step-icon-earn i {
    color: #10b981;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin: 0;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
}

.step-connector i {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.15);
}

/* Commission Details Section */
.section-commission-details {
    padding: 100px 0;
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
}

.commission-details-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.commission-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.commission-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.15);
    top: -100px;
    left: -100px;
}

.commission-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(99, 102, 241, 0.1);
    bottom: -50px;
    right: -50px;
}

.commission-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.commission-details-content .section-badge {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.commission-details-content .section-title {
    color: #fff;
    margin-bottom: 1rem;
}

.commission-details-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.commission-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.commission-list li i {
    color: #10b981;
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.commission-list li strong {
    color: #fff;
}

/* Example Card */
.example-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.example-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.example-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.example-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.example-value {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.example-value.highlight {
    color: #10b981;
    font-size: 1.25rem;
}

.example-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

/* Why Promote Section */
.section-why-promote {
    padding: 100px 0;
    background: #fff;
}

.why-promote-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-promote-card {
    background: #f8f9fc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-promote-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.why-promote-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.why-promote-icon i {
    font-size: 1.5rem;
    color: #10b981;
}

.why-promote-icon-convert {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.why-promote-icon-convert i {
    color: #6366f1;
}

.why-promote-icon-range {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.why-promote-icon-range i {
    color: #ec4899;
}

.why-promote-icon-support {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.why-promote-icon-support i {
    color: #f59e0b;
}

.why-promote-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.why-promote-card p {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Who's It For Section */
.section-whos-it-for {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.audience-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.08);
}

.audience-card i {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.audience-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.audience-card p {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    margin: 0;
}

/* Join Section */
.section-join {
    padding: 100px 0;
    background: #fff;
}

.join-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.join-content .section-title {
    margin-bottom: 1rem;
}

.join-content > p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.join-cta {
    margin-bottom: 2.5rem;
}

.join-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.join-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    color: #fff;
}

.join-email i {
    font-size: 1.25rem;
}

.join-note {
    text-align: left;
    background: #f8f9fc;
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.join-note p {
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.join-note ul {
    margin: 0;
    padding-left: 1.25rem;
}

.join-note li {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
}

/* Affiliate Responsive */
@media (max-width: 992px) {
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 1rem 0;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

    .commission-details-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-promote-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .affiliate-hero {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .affiliate-hero-title {
        font-size: 2.5rem;
    }

    .commission-card {
        padding: 2rem;
    }

    .commission-value {
        font-size: 4rem;
    }

    .section-how-it-works,
    .section-commission-details,
    .section-why-promote,
    .section-whos-it-for,
    .section-join {
        padding: 60px 0;
    }

    .why-promote-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .join-email {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Affiliate Policy Notice */
.join-policy {
    margin-top: 1.5rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.join-policy p {
    font-size: 0.9rem;
    color: #b91c1c;
    line-height: 1.6;
    margin: 0;
}

.join-policy strong {
    color: #991b1b;
}

/* ============================================
   Affiliate Section on Homepage
   ============================================ */

.section-affiliate-home {
    padding: 60px 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.affiliate-home-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.affiliate-home-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.affiliate-home-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.affiliate-home-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.affiliate-home-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.affiliate-home-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 500px;
}

.affiliate-home-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: #fff;
    border-radius: 10px;
    color: #059669;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.affiliate-home-cta:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(4px);
    color: #059669;
}

.affiliate-home-cta i {
    transition: transform 0.3s ease;
}

.affiliate-home-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .section-affiliate-home {
        padding: 40px 0;
    }

    .affiliate-home-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .affiliate-home-content {
        flex-direction: column;
    }

    .affiliate-home-text p {
        max-width: 100%;
    }
}

/* ============================================
   Legal Pages (Terms, Privacy, SLA)
   ============================================ */

/* Legal Hero */
.legal-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.legal-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.legal-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.legal-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.12);
    top: -200px;
    right: -100px;
}

.legal-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.08);
    bottom: -150px;
    left: -100px;
}

.legal-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.legal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6366f1;
    margin-bottom: 1.5rem;
}

.legal-hero-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-hero-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-hero-desc {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 500px;
    margin: 0 auto 1rem;
}

.legal-updated {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.4);
    margin: 0;
}

/* Legal Content Section */
.section-legal-content {
    padding: 80px 0 100px;
    background: #fff;
}

.legal-content-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Legal Navigation */
.legal-nav {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.legal-nav h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
}

.legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-nav ul li {
    margin-bottom: 0.5rem;
}

.legal-nav ul li a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    border-left: 2px solid transparent;
    padding-left: 1rem;
    transition: all 0.2s ease;
}

.legal-nav ul li a:hover {
    color: #6366f1;
    border-left-color: #6366f1;
}

/* Legal Content */
.legal-content {
    max-width: 720px;
}

.legal-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #1a1a2e;
}

/* Legal Table */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.legal-table thead th {
    text-align: left;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    color: #1a1a2e;
    font-weight: 600;
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
}

.legal-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.7);
}

.legal-table tbody tr:hover {
    background: rgba(99, 102, 241, 0.02);
}

/* Legal Info Note */
.legal-info-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #92400e;
    margin-bottom: 1rem;
}

.legal-info-note i {
    flex-shrink: 0;
}

/* Legal Contact Section */
.legal-contact {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.legal-contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    color: #fff;
}

/* Legal Page Responsive */
@media (max-width: 992px) {
    .legal-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .legal-nav {
        position: static;
        padding: 1.5rem;
        background: rgba(99, 102, 241, 0.03);
        border-radius: 12px;
    }

    .legal-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .legal-nav ul li {
        margin-bottom: 0;
    }

    .legal-nav ul li a {
        padding: 0.5rem 1rem;
        border-left: none;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 6px;
        font-size: 0.8125rem;
    }

    .legal-nav ul li a:hover {
        background: #6366f1;
        color: #fff;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .legal-hero-title {
        font-size: 2rem;
    }

    .section-legal-content {
        padding: 60px 0 80px;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-table {
        font-size: 0.875rem;
    }

    .legal-table thead th,
    .legal-table tbody td {
        padding: 0.75rem;
    }
}


/* ============================================
   Technology Stack Section
   ============================================ */
.section-technology {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.tech-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tech-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}

.tech-orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: -200px;
    left: -200px;
}

.tech-orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    bottom: -150px;
    right: -150px;
}

/* Tech Bento Grid */
.tech-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.tech-bento-card {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(255, 255, 255, 0.65) 50%,
        rgba(255, 255, 255, 0.78) 100%
    );
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.tech-bento-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(99, 102, 241, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 1);
    border-color: rgba(99, 102, 241, 0.15);
}

.tech-bento-wide {
    grid-column: span 2;
}

.tech-bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.tech-icon-storage {
    background: linear-gradient(135deg, #f59e0b, #f97316) !important;
}

.tech-icon-memory {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.tech-icon-cpu {
    background: linear-gradient(135deg, #ec4899, #db2777) !important;
}

.tech-bento-stat {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.tech-bento-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
}

.tech-bento-card p {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 1.25rem;
    flex: 1;
}

.tech-bento-wide p {
    max-width: 540px;
}

/* Feature tags */
.tech-bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3125rem 0.75rem;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6366f1;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.tech-bento-card:hover .tech-tag {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.tech-icon-storage ~ .tech-bento-tags .tech-tag {
    background: rgba(245, 158, 11, 0.06);
    border-color: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.tech-icon-memory ~ .tech-bento-tags .tech-tag {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.tech-icon-cpu ~ .tech-bento-tags .tech-tag {
    background: rgba(236, 72, 153, 0.06);
    border-color: rgba(236, 72, 153, 0.12);
    color: #db2777;
}

@media (max-width: 991px) {
    .tech-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-bento-wide {
        grid-column: span 2;
    }
}

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

    .tech-bento-wide {
        grid-column: span 1;
    }

    .section-technology {
        padding: 5rem 0;
    }
}


/* ============================================
   Competitor Comparison Section
   ============================================ */
.section-comparison {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 50%, #fafbfc 100%);
}

.comparison-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.comparison-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.comparison-orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: -100px;
    right: -100px;
}

.comparison-orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    bottom: -100px;
    left: -100px;
}

.comparison-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    min-width: 700px;
}

.comparison-table thead {
    background: linear-gradient(135deg, #f8f9fc, #f1f3f7);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
}

.comparison-table thead th {
    padding: 1.25rem 1rem;
    font-weight: 700;
    color: #334155;
    text-align: center;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.comparison-table thead th.comparison-feature-col {
    text-align: left;
    padding-left: 1.5rem;
}

.comparison-table thead th.comparison-highlight {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    position: relative;
}

.comparison-table thead th.comparison-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #ec4899, #f59e0b);
    border-radius: 0;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.2s ease;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(99, 102, 241, 0.02);
}

.comparison-table tbody td {
    padding: 1rem;
    text-align: center;
    color: #475569;
    font-weight: 500;
    vertical-align: middle;
}

.comparison-table tbody td.comparison-feature-col {
    text-align: left;
    padding-left: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}

.comparison-table tbody td.comparison-highlight {
    background: rgba(99, 102, 241, 0.04);
    font-weight: 700;
    color: #1e293b;
}

.comparison-table tbody td.comparison-highlight strong {
    color: #6366f1;
}

.comparison-row-highlight {
    background: rgba(16, 185, 129, 0.04) !important;
}

.comparison-row-highlight td {
    font-weight: 700 !important;
}

/* Comparison badges and icons */
.comparison-yes {
    color: #10b981;
    font-size: 1.125rem;
}

.comparison-no {
    color: #cbd5e1;
    font-size: 1.125rem;
}

.comparison-table .comparison-included {
    font-weight: 700;
    color: #059669;
}

.comparison-paid {
    color: #dc2626;
}

.comparison-partial {
    color: #d97706;
}

.comparison-bad {
    color: #dc2626;
}

@media (max-width: 991px) {
    .section-comparison {
        padding: 5rem 0;
    }

    .comparison-table-wrapper {
        border-radius: 16px;
        margin-left: -1rem;
        margin-right: -1rem;
    }
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.8125rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.75rem 0.625rem;
    }

    .comparison-table tbody td.comparison-feature-col,
    .comparison-table thead th.comparison-feature-col {
        position: sticky;
        left: 0;
        background: #fff;
        z-index: 2;
        padding-left: 1rem;
    }

    .comparison-table thead th.comparison-feature-col {
        background: #f1f3f7;
    }

    .comparison-included,
    .comparison-paid,
    .comparison-partial,
    .comparison-bad {
        font-size: 0.6875rem;
    }
}


/* ============================================
   Green Grid Two-Column Variant
   ============================================ */
.green-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================
   Comparison Disclaimer
   ============================================ */
.comparison-disclaimer {
    text-align: center;
    margin-top: 1.5rem;
    color: #94a3b8;
    font-size: 0.8125rem;
    font-style: italic;
}

/* ============================================
   Comparison Agitative CTA
   ============================================ */
.comparison-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.04), rgba(99, 102, 241, 0.06));
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 1rem;
}

.comparison-cta h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.comparison-cta p {
    color: #475569;
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.comparison-cta .btn-primary {
    display: inline-flex;
}

@media (max-width: 768px) {
    .comparison-cta {
        padding: 2rem 1.25rem;
        margin-top: 3rem;
    }

    .comparison-cta h3 {
        font-size: 1.375rem;
    }

    .comparison-cta p {
        font-size: 0.9375rem;
    }
}

/* ==========================================================================
   PARTNERS / WHO WE WORK WITH SECTION
   ========================================================================== */

.section-partners {
    padding: 100px 0 80px;
    background: var(--bg, #fff);
    overflow: hidden;
}

.section-partners .section-header {
    margin-bottom: 3rem;
}

.partners-marquee {
    overflow: hidden;
    padding: 12px 0;
}

.partners-marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: partners-scroll 40s linear infinite;
}

.partners-marquee-reverse .partners-marquee-track {
    animation: partners-scroll-reverse 44s linear infinite;
}

.partners-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.partners-logo img {
    height: 150px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partners-logo:hover img {
    opacity: 1;
}

@keyframes partners-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes partners-scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@media (max-width: 767px) {
    .section-partners {
        padding: 60px 0 48px;
    }

    .partners-marquee-track {
        gap: 32px;
    }

    .partners-logo img {
        height: 64px;
    }
}
