/* ==========================================================================
   HOME HERO STYLES
   ========================================================================== */

.home-hero-section {
    background: linear-gradient(135deg, #071a52 0%, #040e2d 100%);
    padding-top: 130px;
    padding-bottom: 90px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.hero-notice-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 107, 44, 0.3);
    padding: 8px 18px;
    border-radius: 999px;
    color: #ffffff !important;
    font-size: 13px;
    text-decoration: none !important;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.hero-notice-badge:hover {
    background: rgba(255, 107, 44, 0.12);
    border-color: #FF6B2C;
}

.text-underline {
    text-decoration: underline;
    color: #FF6B2C;
}

.home-hero-section h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff !important;
    margin-bottom: 20px;
}

.home-hero-section h1 span {
    color: #FF6B2C;
}

.home-hero-section p {
    font-size: 16.5px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Ember Deep (#C2410C) Background for White Text Accessibility */
.btn-hero-primary {
    background: #C2410C;
    color: #ffffff !important;
    font-weight: 800;
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(194, 65, 12, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    background: #e0480e;
    color: #ffffff !important;
    box-shadow: 0 12px 30px rgba(194, 65, 12, 0.6);
}

.hero-starting-price {
    font-size: 14.5px;
    color: #94a3b8;
}

.hero-starting-price strong {
    color: #ffffff;
    font-size: 16px;
    margin-left: 4px;
}

/* RIGHT PRICING CARD VIEWPORT */
.hero-card-viewport {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-pricing-card {
    background: rgba(9, 19, 48, 0.95);
    border: 2px solid #FF6B2C;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    z-index: 2;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-pricing-card.fade-out {
    opacity: 0;
    transform: translateY(-8px);
}

.card-plan-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FF6B2C;
    background: rgba(255, 107, 44, 0.1);
    padding: 5px 14px;
    border-radius: 6px;
}

.card-price-wrap {
    margin-top: 18px;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.card-price-wrap .currency { font-size: 26px; font-weight: 700; }
.card-price-wrap .amount { font-size: 54px; font-weight: 800; line-height: 1; }
.card-price-wrap .cents { font-size: 26px; font-weight: 700; }
.card-price-wrap .cycle { font-size: 15px; color: #94a3b8; margin-left: 4px; }

.card-description {
    font-size: 13.5px;
    color: #94a3b8;
    margin-top: 10px;
    margin-bottom: 24px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-card-deploy {
    background: #C2410C;
    color: #ffffff !important;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 10px;
    width: 100%;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(194, 65, 12, 0.35);
}

.btn-card-deploy:hover {
    background: #e0480e;
}

/* SERVER TRAY DECORATION BEHIND CARD */
.hero-server-tray {
    width: 90%;
    max-width: 320px;
    margin-top: -15px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tray-unit {
    background: #060d21;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 16px;
    gap: 6px;
}

.tray-light {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.tray-light.green { background: #22c55e; box-shadow: 0 0 6px rgba(34, 197, 94, 0.6); }
.tray-light.orange { background: #FF6B2C; box-shadow: 0 0 6px rgba(255, 107, 44, 0.6); }

.text-orange { color: #FF6B2C !important; }

@media (max-width: 991px) {
    .home-hero-section { padding-top: 100px; }
    .home-hero-section h1 { font-size: 36px; }
    .home-hero-section p { max-width: 100%; }
}

@media (max-width: 575px) {
    .home-hero-section h1 { font-size: 28px; }
    .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 10px; }
    .btn-hero-primary { width: 100%; text-align: center; }
}