/* ==========================================================================
   SHARED HOSTING HERO SECTION STYLES
   ========================================================================== */

.shared-hero-section {
    position: relative;
    overflow: hidden;
    padding: 130px 0 80px;
    background: radial-gradient(circle at 80% 20%, #0d2569 0%, #071a52 60%, #040e2d 100%) !important;
    color: #ffffff;
}

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

.upgrade-notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f8fafc;
    font-size: 13px;
    backdrop-filter: blur(10px);
    text-decoration: none !important;
    margin-bottom: 22px;
}

.upgrade-notice i { color: #ff7b2c; }
.upgrade-notice .text-underline { color: #ff7b2c; font-weight: 700; text-decoration: underline; }

.hero-content h1 {
    font-size: 52px !important;
    line-height: 1.12;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #ff9e5e 0%, #ff5e00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.75;
    color: #cbd5e1;
    max-width: 560px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ff7b2c, #ff5e00) !important;
    color: #ffffff !important;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 4px 18px rgba(255, 123, 44, 0.35);
}

.starting-price-tag {
    color: #94a3b8;
    font-size: 15px;
}

.starting-price-tag strong {
    color: #ffffff;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item h4 { color: #ffffff; font-size: 22px; font-weight: 800; margin-bottom: 2px; }
.hero-stat-item span { color: #94a3b8; font-size: 12px; font-weight: 600; text-transform: uppercase; }

/* RIGHT GRAPHIC BADGE */
.hosting-visual-wrap {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-price-badge-card {
    background: #0f256e;
    border: 2px solid #ff7b2c;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 3;
    width: 300px;
}

.badge-plan-title {
    color: #ff7b2c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.badge-price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #ffffff;
    margin: 15px 0 10px;
}

.badge-price-display .currency { font-size: 24px; font-weight: 700; margin-top: 8px; }
.badge-price-display .amount { font-size: 64px; font-weight: 800; line-height: 1; }
.badge-price-display .cents { font-size: 24px; font-weight: 700; margin-top: 8px; }
.badge-price-display .cycle { font-size: 16px; color: #94a3b8; align-self: flex-end; margin-bottom: 8px; }

.badge-subtitle { color: #cbd5e1; font-size: 13px; margin-bottom: 20px; }

.btn-badge-action {
    background: #ff7b2c;
    color: #ffffff !important;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    display: block;
    text-decoration: none !important;
}

.server-stack {
    position: absolute;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: perspective(1000px) rotateY(-14deg) rotateX(6deg);
    opacity: 0.5;
}

.server-unit {
    width: 320px;
    height: 70px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 18px;
    display: flex;
    align-items: center;
}

.server-lights { margin-left: auto; display: flex; gap: 10px; }
.server-light { width: 10px; height: 10px; border-radius: 50%; background: #334155; }
.server-light.active { background: #22c55e; }
.server-light.orange { background: #ff7b2c; }