/* =========================
   HERO — FIXED v2
========================= */

.sh-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #0d1f45 40%, #112057 70%, #0e1b3e 100%);
    padding: 70px 0 0;
    overflow: hidden;
    color: #ffffff;
}

.sh-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

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

.sh-glow-1 {
    width: 500px;
    height: 500px;
    background: #4169E1;
    top: -150px;
    right: 100px;
}

.sh-glow-2 {
    width: 350px;
    height: 350px;
    background: #FF6C2C;
    bottom: 0px;
    left: -80px;
    opacity: 0.10;
}

.sh-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(65, 105, 225, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(65, 105, 225, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* =============================================
   HERO CONTAINER — KEY FIX
   align-items: center so both cols are vertically centered
   ============================================= */
.sh-hero-container {
    display: flex;
    align-items: center;       /* vertically center both columns */
    gap: 60px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    padding-bottom: 0;
    min-height: 580px;         /* ensure hero has consistent height */
}

/* LEFT — takes remaining space */
.sh-hero-left {
    flex: 1;
    min-width: 0;
    padding-bottom: 60px;
}

.sh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 108, 44, 0.15);
    color: #FF6C2C;
    border: 1px solid rgba(255, 108, 44, 0.35);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.sh-badge-dot {
    width: 7px;
    height: 7px;
    background: #FF6C2C;
    border-radius: 50%;
    animation: sh-blink 2s ease-in-out infinite;
}

@keyframes sh-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.sh-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.sh-highlight { color: #FF6C2C; }

.sh-hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
}

.sh-hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.sh-feat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(65, 105, 225, 0.2);
    border: 1px solid rgba(65, 105, 225, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7ca4f4;
    flex-shrink: 0;
}

.sh-hero-price {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.sh-hero-price span {
    color: #ffffff;
    font-weight: 800;
    font-size: 24px;
}

.sh-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
}

.sh-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF6C2C;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s;
    box-shadow: 0 8px 30px rgba(255, 108, 44, 0.35);
}

.sh-btn-primary:hover {
    background: #e85e1e;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255, 108, 44, 0.45);
}

.sh-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: 0.25s;
    backdrop-filter: blur(4px);
}

.sh-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
}

.sh-hero-trust {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sh-trust-dot {
    opacity: 0.4;
    font-size: 18px;
}

/* =============================================
   RIGHT COLUMN — image + ratings stacked
   flex column, fixed width, no extra gap
   ============================================= */
.sh-hero-right {
    flex: 0 0 520px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.sh-iso-wrap {
    position: relative;
    width: 100%;
}

/* ---- ANIMATIONS ---- */
@keyframes sh-img-levitate {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

@keyframes sh-label-float-a {
    0%, 100% { transform: translateX(-50%) translateY(0px);  opacity: 1; }
    50%       { transform: translateX(-50%) translateY(-7px); opacity: 0.9; }
}

@keyframes sh-label-float-b {
    0%, 100% { transform: translateY(0px);  opacity: 1; }
    50%       { transform: translateY(-7px); opacity: 0.9; }
}

@keyframes sh-label-float-c {
    0%, 100% { transform: translateY(0px);  opacity: 1; }
    50%       { transform: translateY(-7px); opacity: 0.9; }
}

@keyframes sh-cpanel-pulse {
    0%, 100% { transform: translateX(-50%) scale(1);    box-shadow: 0 4px 20px rgba(255,108,44,0.4); }
    50%       { transform: translateX(-50%) scale(1.07); box-shadow: 0 6px 28px rgba(255,108,44,0.65); }
}

/* ---- IMAGE ---- */
.sh-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 12px 40px rgba(65, 105, 225, 0.25));
}

.sh-img-float {
    animation: sh-img-levitate 4s ease-in-out infinite;
}

/* ---- FLOATING LABELS ---- */
.sh-float-label {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(13, 25, 60, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 30px;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    font-family: 'Outfit', sans-serif;
    z-index: 3;
}

.sh-label-perf {
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
    animation: sh-label-float-a 3s ease-in-out infinite;
    animation-delay: 0s;
}

.sh-label-sec {
    top: 22%;
    right: -2%;
    animation: sh-label-float-b 3s ease-in-out infinite;
    animation-delay: 1s;
}

.sh-label-backup {
    bottom: 18%;
    left: -1%;
    animation: sh-label-float-c 3s ease-in-out infinite;
    animation-delay: 2s;
}

/* ---- cPANEL BADGE ---- */
.sh-cpanel-badge {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FF6C2C;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px 6px 8px;
    border-radius: 20px;
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
    animation: sh-cpanel-pulse 2.5s ease-in-out infinite;
    animation-delay: 0.5s;
    letter-spacing: 0.02em;
    z-index: 4;
}

/* =============================================
   RATINGS CARD — flush below image
   ============================================= */
.sh-ratings-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    padding: 14px 8px;
    margin-top: 0;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    width: 100%;
}

.sh-rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 4px 10px;
    flex: 1;
}

.sh-rating-stars {
    font-size: 11px;
    color: #22c55e;
    letter-spacing: 1px;
    line-height: 1.2;
}

.sh-stars-google { color: #fbbc04; }
.sh-stars-amber  { color: #f59e0b; }

.sh-rating-score {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
}

.sh-rating-score span {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.sh-rating-label {
    font-size: 10px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

.sh-rating-brand {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

.sh-brand-google {
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC04, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sh-rating-sep {
    width: 1px;
    height: 36px;
    background: #e5e7eb;
    flex-shrink: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .sh-hero-right { flex: 0 0 460px; }
    .sh-hero-container { gap: 40px; }
}

@media (max-width: 1000px) {
    .sh-hero-right { flex: 0 0 400px; }
    .sh-hero-title { font-size: 42px; }
    .sh-hero-container { gap: 32px; }
}

@media (max-width: 900px) {
    .sh-hero-container {
        flex-direction: column;
        align-items: flex-start;
        min-height: unset;
        padding-top: 0;
        padding-bottom: 0;
        gap: 32px;
    }

    .sh-hero-left { padding-bottom: 0; }

    .sh-hero-right {
        flex: none;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .sh-hero-title { font-size: 40px; }
    .sh-label-sec  { display: none; }
}

@media (max-width: 600px) {
    .sh-hero { padding: 60px 0 0; }

    .sh-hero-title { font-size: 32px; }

    .sh-btn-primary,
    .sh-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .sh-hero-actions { flex-direction: column; }

    .sh-ratings-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-radius: 12px;
        padding: 10px 4px;
    }

    .sh-rating-item {
        padding: 12px 8px;
        border-bottom: 1px solid #e5e7eb;
        align-items: center;
    }

    .sh-rating-item:nth-child(1),
    .sh-rating-item:nth-child(3) { border-right: 1px solid #e5e7eb; }

    .sh-rating-item:nth-child(3),
    .sh-rating-item:nth-child(5),
    .sh-rating-item:nth-child(7) { border-bottom: none; }

    .sh-rating-sep    { display: none; }
    .sh-rating-score  { font-size: 18px; }
}

/* =========================
   CPANEL HERO CARD
========================= */
.sh-card-header {
    background: #1e293b;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sh-cpanel-brand { display: flex; align-items: center; gap: 10px; }
.sh-cpanel-logo  { display: flex; align-items: center; flex-shrink: 0; }

.sh-cpanel-name { font-size: 14px; font-weight: 700; color: #f1f5f9; line-height: 1.2; }
.sh-cpanel-sub  { font-size: 11px; color: #64748b; }

.sh-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.sh-user-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-bottom: 1px solid #f1f5f9;
    background: #fafcff;
}

.sh-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4169E1, #818cf8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.sh-user-info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.sh-user-info strong { font-size: 13px; font-weight: 700; color: #0f172a; }
.sh-user-info span   { font-size: 11px; color: #6b7280; }

.sh-upgrade-chip {
    background: linear-gradient(135deg, #FF6C2C, #ff8f5c);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    flex-shrink: 0;
    cursor: pointer;
}

.sh-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.sh-metric-box {
    background: #fff;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

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

.sh-icon-blue   { background: rgba(65, 105, 225, 0.1); color: #4169E1; }
.sh-icon-green  { background: rgba(34, 197, 94, 0.1);  color: #22c55e; }
.sh-icon-cyan   { background: rgba(6, 182, 212, 0.1);  color: #06b6d4; }
.sh-icon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.sh-metric-label { font-size: 11px; color: #6b7280; font-weight: 500; }
.sh-metric-val   { font-size: 13px; font-weight: 700; color: #0f172a; }
.sh-green        { color: #22c55e; }

.sh-meter-wrap {
    background: #f1f5f9;
    border-radius: 50px;
    height: 5px;
    overflow: hidden;
}

.sh-meter { height: 100%; border-radius: 50px; }

.sh-actions-row {
    display: flex;
    gap: 6px;
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
    flex-wrap: wrap;
}

.sh-action-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.2s;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}

.sh-action-btn:hover {
    border-color: #4169E1;
    color: #4169E1;
    background: rgba(65, 105, 225, 0.05);
}

.sh-action-highlight {
    background: rgba(65, 105, 225, 0.08);
    border-color: rgba(65, 105, 225, 0.3);
    color: #4169E1;
}

.sh-uptime-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    background: #f0fdf4;
    font-size: 12px;
    font-weight: 600;
    color: #15803d;
}

.sh-green-pulse { background: #22c55e; }

/* =========================
   FEATURES SECTION
========================= */
.sh-features {
    padding: 90px 0;
    background: #f8fafc;
}

.sh-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sh-feature-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 28px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sh-feature-card:hover {
    border-color: rgba(65, 105, 225, 0.25);
    box-shadow: 0 12px 35px rgba(65, 105, 225, 0.08);
    transform: translateY(-3px);
}

.sh-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sh-feature-card h3 { font-size: 16px; font-weight: 700; color: #0f172a; margin: 0; }
.sh-feature-card p  { font-size: 14px; color: #6b7280; line-height: 1.65; margin: 0; }

/* =========================
   USE CASES SECTION
========================= */
.sh-usecases {
    padding: 90px 0;
    background: #ffffff;
}

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

.sh-usecase-card {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.25s ease;
}

.sh-usecase-card:hover {
    border-color: rgba(65, 105, 225, 0.25);
    box-shadow: 0 12px 35px rgba(65, 105, 225, 0.08);
    transform: translateY(-3px);
}

.sh-usecase-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sh-usecase-card h4 { font-size: 16px; font-weight: 700; color: #0f172a; margin: 0; }
.sh-usecase-card p  { font-size: 14px; color: #6b7280; line-height: 1.6; margin: 0; flex: 1; }

.sh-usecase-tag {
    display: inline-block;
    background: rgba(65, 105, 225, 0.08);
    color: #4169E1;
    border: 1px solid rgba(65, 105, 225, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

/* =========================
   OTHER HOSTING SECTION
========================= */
.sh-other {
    padding: 90px 0;
    background: #ffffff;
}

.sh-other-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.sh-other-card {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px 18px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.25s ease;
    position: relative;
}

.sh-other-card:hover {
    border-color: rgba(65, 105, 225, 0.3);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.09);
    transform: translateY(-3px);
    background: #fff;
}

.sh-other-featured {
    border-color: rgba(65, 105, 225, 0.25);
    background: #f0f4ff;
}

.sh-other-tag {
    display: inline-block;
    background: rgba(65, 105, 225, 0.08);
    color: #4169E1;
    border: 1px solid rgba(65, 105, 225, 0.15);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    width: fit-content;
}

.sh-other-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-other-card h4 { font-size: 14px; font-weight: 700; color: #0f172a; margin: 0; }
.sh-other-card p  { font-size: 12px; color: #6b7280; line-height: 1.5; margin: 0; flex: 1; }

.sh-other-arrow {
    font-size: 16px;
    color: #cbd5e1;
    transition: all 0.25s;
    margin-top: auto;
}

.sh-other-card:hover .sh-other-arrow {
    color: #4169E1;
    transform: translateX(3px);
}

/* =========================
   RESPONSIVE (non-hero)
========================= */
@media (max-width: 1100px) {
    .sh-other-grid { grid-template-columns: repeat(3, 1fr); }
}

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

@media (max-width: 600px) {
    .sh-features-grid  { grid-template-columns: 1fr; }
    .sh-usecase-grid   { grid-template-columns: 1fr; }
    .sh-other-grid     { grid-template-columns: 1fr; }

    .sh-features,
    .sh-usecases,
    .sh-faq,
    .sh-other { padding: 50px 0; }
}