/* ================================================================
   sunucu-hero.css — premium hero redesign
   Prefix: sn- (sunucu) — unique, hiçbir global class'la çakışmaz
   Referans: sunucuhero.png (2026-05-11)
   ================================================================ */

.sn-hero {
    position: relative;
    padding: 56px 0 0;
    background-color: #FBFAF7;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.06) 1px, transparent 0);
    background-size: 22px 22px;
    overflow: hidden;
}
.sn-hero::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.sn-hero::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sn-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ----- LEFT ----- */
.sn-hero-left { max-width: 540px; }
.sn-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #C2410C;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.22);
    padding: 7px 14px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    margin-bottom: 22px;
}
.sn-hero-eyebrow i { font-size: 11px; color: #F97316; }

.sn-hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.1;
    color: #0F172A;
    margin: 0 0 1.5rem;
    letter-spacing: -0.025em;
}
.sn-hero-title-accent { color: #F97316; }

.sn-hero-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 2rem;
    max-width: 480px;
}

.sn-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
}
.sn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: #fff;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.3);
}
.sn-cta-primary:hover {
    background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.4);
    text-decoration: none;
}
.sn-cta-primary i { font-size: 11px; transition: transform 0.2s; }
.sn-cta-primary:hover i { transform: translateY(3px); }

.sn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0F172A;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}
.sn-cta-secondary:hover {
    border-color: #F97316;
    color: #F97316;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
    text-decoration: none;
}
.sn-cta-secondary i { color: #F97316; font-size: 13px; }

.sn-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 18px;
    max-width: 460px;
}
.sn-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #334155;
    line-height: 1.35;
}
.sn-trust-item i {
    font-size: 13px;
    color: #16A34A;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}
.sn-trust-item strong { color: #0F172A; font-weight: 700; }

/* ----- RIGHT — Server mockup card + floating cards ----- */
.sn-hero-right {
    position: relative;
    min-height: 420px;
}

.sn-server-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(15, 23, 42, 0.06);
    position: relative;
    z-index: 2;
    max-width: 430px;
    margin: 0 auto;
}
.sn-server-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #e5e7eb;
    margin-bottom: 14px;
}
.sn-server-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}
.sn-server-meta { flex: 1; min-width: 0; }
.sn-server-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}
.sn-server-sub {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}
.sn-online {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #16A34A;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.22);
    padding: 4px 10px;
    border-radius: 999px;
    flex-shrink: 0;
}
.sn-online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #16A34A;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
    animation: snPulse 1.6s ease-in-out infinite;
}
@keyframes snPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.05); }
}

.sn-nodes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.sn-node {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sn-node-name {
    flex: 1;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    color: #475569;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sn-node-bar {
    flex-shrink: 0;
    width: 80px;
    height: 6px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
}
.sn-node-bar-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #F97316 0%, #EA580C 100%);
    border-radius: 999px;
}

.sn-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 14px;
    border-top: 1px dashed #e5e7eb;
}
.sn-metric { text-align: left; }
.sn-metric-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.sn-metric-bar {
    display: block;
    width: 100%;
    height: 5px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 6px;
}
.sn-metric-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #F97316 0%, #EA580C 100%);
    border-radius: 999px;
}
.sn-metric:nth-child(2) .sn-metric-bar span {
    background: linear-gradient(90deg, #6366f1 0%, #4f46e5 100%);
}
.sn-metric:nth-child(3) .sn-metric-bar span {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}
.sn-metric-value {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.01em;
}

/* Floating cards */
.sn-float-card {
    position: absolute;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}
.sn-float-uptime {
    top: -10px;
    right: 0;
    animation-delay: 0s;
}
.sn-float-location {
    bottom: 60px;
    right: -10px;
    animation-delay: 1.3s;
}
.sn-float-support {
    bottom: -16px;
    left: 0;
    animation-delay: 2.6s;
}
.sn-float-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
}
.sn-float-icon-green { background: linear-gradient(135deg, #16A34A 0%, #15803D 100%); }
.sn-float-icon-blue { background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); }
.sn-float-icon-orange { background: linear-gradient(135deg, #F97316 0%, #EA580C 100%); }

.sn-float-text { line-height: 1.25; }
.sn-float-text strong {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.01em;
}
.sn-float-text span {
    font-size: 10.5px;
    color: #64748b;
}

/* ----- Bottom CTA bar — boydan boya, ince, soft turuncu ----- */
.sn-cta-bar {
    margin-top: 48px;
    background: linear-gradient(90deg, #FB923C 0%, #F97316 100%);
    width: 100%;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.18);
    position: relative;
    z-index: 1;
}
.sn-cta-bar-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 15px;
    flex-wrap: wrap;
}
.sn-cta-bar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #C2410C;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.sn-cta-bar-text {
    flex: 1;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}
.sn-cta-bar-text strong { font-weight: 800; }
.sn-cta-bar-countdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.sn-countdown-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    min-width: 38px;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 7px;
    color: #fff;
    line-height: 1;
}
.sn-countdown-item strong {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
}
.sn-countdown-item span {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.9;
}
.sn-cta-bar-btn {
    flex-shrink: 0;
    background: #fff;
    color: #C2410C;
    padding: 9px 18px;
    border-radius: 999px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}
.sn-cta-bar-btn:hover {
    background: #FFEDD5;
    color: #9A3412;
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* ================================================================
   sn-types — Sunucu tipi kartları (4 kart grid)
   paketelersunucu.png referansı
   ================================================================ */
.sn-types-section {
    background: #fff;
    padding: 64px 0 40px;
    position: relative;
}
.sn-section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.sn-section-head .sn-eyebrow { margin-bottom: 14px; }
.sn-section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.sn-section-desc {
    font-size: 15px;
    color: #64748b;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
}
.sn-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.sn-type-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.sn-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    border-color: #d1d5db;
}
.sn-type-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.sn-type-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1E3A8A;
    color: #ffffff;
    font-size: 24px;
    border: none;
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.25);
    flex-shrink: 0;
}
.sn-type-icon-vps,
.sn-type-icon-vds,
.sn-type-icon-dedicated,
.sn-type-icon-nvme { background: #1E3A8A; color: #ffffff; }
.sn-type-tag {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.sn-type-tag-popular { background: rgba(249, 115, 22, 0.12); color: #C2410C; }
.sn-type-tag-perf { background: rgba(99, 102, 241, 0.12); color: #4338CA; }
.sn-type-tag-power { background: rgba(124, 58, 237, 0.12); color: #6D28D9; }
.sn-type-tag-fast { background: rgba(245, 158, 11, 0.12); color: #B45309; }
.sn-type-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.sn-type-desc {
    font-size: 14px; /* 2026-05-17: 13→14 — kart desc okunabilirlik */
    color: #1f2937; /* 2026-05-17: #64748b → #1f2937 */
    line-height: 1.55;
    margin: 0 0 16px;
}
.sn-type-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}
.sn-type-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #334155;
}
.sn-type-features li i {
    color: #16A34A;
    font-size: 11px;
    flex-shrink: 0;
}
.sn-type-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #e5e7eb;
}
.sn-type-price-val {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    line-height: 1;
}
.sn-type-price-period {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}
.sn-type-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #0F172A;
    color: #fff;
    padding: 11px 14px;
    border-radius: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.2s;
}
.sn-type-btn:hover {
    background: #F97316;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.25);
}
.sn-type-btn i {
    font-size: 11px;
    transition: transform 0.2s;
}
.sn-type-btn:hover i { transform: translateX(3px); }

/* ================================================================
   sn-packages — Öne çıkan paketler (4 kart, biri featured)
   ================================================================ */
.sn-packages-section {
    background: #FAF6EE;
    padding: 64px 0;
    position: relative;
}
.sn-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    color: #C2410C;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.22);
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.sn-eyebrow i { font-size: 10px; color: #F97316; }
.sn-pkg-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.sn-currency-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 5px 12px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11.5px;
    font-weight: 700;
    color: #0F172A;
    text-decoration: none;
}
.sn-currency-pill i { color: #16A34A; font-size: 8px; }
.sn-show-all {
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.sn-show-all:hover { color: #F97316; text-decoration: none; }
.sn-show-all i { font-size: 10px; margin-left: 4px; }

.sn-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    align-items: stretch;
}
.sn-pkg-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    position: relative;
    /* Font netliği — subpixel rendering yerine grayscale */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
.sn-pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.sn-pkg-card.is-featured {
    border: 2px solid #F97316;
    box-shadow: 0 10px 32px rgba(249, 115, 22, 0.18);
    position: relative;
    z-index: 1;
}
.sn-pkg-card.is-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(249, 115, 22, 0.25);
}
.sn-pkg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    margin-bottom: 10px;
}
.sn-pkg-badge i { font-size: 9px; }
/* Featured (turuncu) kartta badge ortalansın */
.sn-pkg-card.is-featured .sn-pkg-badge { align-self: center; }
/* Badge variants — yüksek specificity ile baseline'ı override eder */
.sn-pkg-card .sn-pkg-badge.sn-pkg-badge--orange {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: #fff;
}
.sn-pkg-card .sn-pkg-badge.sn-pkg-badge--green {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    color: #fff;
}
.sn-pkg-card .sn-pkg-badge.sn-pkg-badge--navy {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
    color: #fff;
}
.sn-pkg-tag {
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.sn-pkg-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.sn-pkg-prices { margin-bottom: 14px; }
.sn-pkg-old-price {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 4px;
    display: block;
}
.sn-pkg-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.sn-pkg-price-val {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    line-height: 1;
}
.sn-pkg-card.is-featured .sn-pkg-price-val { color: #F97316; }
.sn-pkg-price-period {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}
.sn-pkg-specs {
    list-style: none;
    padding: 12px 0 0;
    margin: 0 0 16px;
    border-top: 1px dashed #e5e7eb;
    flex-grow: 1;
}
.sn-pkg-specs li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 12.5px;
    gap: 8px;
}
.sn-pkg-specs .label {
    color: #64748b;
    font-weight: 600;
    flex-shrink: 0;
}
.sn-pkg-specs .value {
    color: #0F172A;
    font-weight: 700;
    text-align: right;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
.sn-pkg-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}
.sn-pkg-btn:hover {
    background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.35);
    color: #fff;
    text-decoration: none;
}

/* ----- Responsive ----- */
@media (max-width: 1199px) {
    .sn-hero-grid { gap: 2.5rem; }
    .sn-float-uptime { right: 10px; }
    .sn-float-location { right: 0; bottom: 80px; }
    .sn-float-support { left: 10px; }
}
@media (max-width: 991px) {
    .sn-hero { padding: 40px 0 0; }
    .sn-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .sn-hero-left { max-width: 100%; margin: 0 auto; text-align: center; }
    .sn-hero-eyebrow { margin-left: auto; margin-right: auto; }
    .sn-hero-desc { margin-left: auto; margin-right: auto; }
    .sn-hero-actions { justify-content: center; }
    .sn-trust-grid { margin-left: auto; margin-right: auto; }
    .sn-hero-right { min-height: 480px; padding: 20px 0; }
    .sn-cta-bar { margin-top: 40px; }
    .sn-types-grid { grid-template-columns: repeat(2, 1fr); }
    .sn-packages-grid { grid-template-columns: repeat(2, 1fr); }
    .sn-pkg-card.is-featured { transform: none; }
}
@media (max-width: 575px) {
    .sn-hero { padding: 32px 0 0; }
    .sn-server-card { max-width: 100%; }
    .sn-float-card { padding: 8px 11px; }
    .sn-float-text strong { font-size: 12px; }
    .sn-float-text span { font-size: 10px; }
    .sn-float-uptime { top: -5px; right: 5px; }
    .sn-float-location { bottom: 100px; right: -5px; }
    .sn-float-support { bottom: -10px; left: 5px; }
    .sn-cta-bar-inner { padding: 12px 15px; gap: 10px; }
    .sn-cta-bar-text { font-size: 12.5px; width: 100%; order: 2; text-align: center; }
    .sn-cta-bar-countdown { order: 3; }
    .sn-cta-bar-btn { order: 4; width: 100%; text-align: center; padding: 11px; }
    .sn-trust-grid { grid-template-columns: 1fr; gap: 8px; }
    .sn-types-section, .sn-packages-section { padding: 40px 0; }
    .sn-types-grid, .sn-packages-grid { grid-template-columns: 1fr; }
}
