/**
 * Server Products Page Styles
 * Yatay profesyonel kart tasarımı - İkonlu, Minimal
 */

.rw-hosting-page {
    background: #f4f7fb;
    padding-bottom: 56px;
}

/* =============================================
   SERVER HERO BANNER
   ============================================= */
.rw-hosting-hero {
    position: relative;
    overflow: hidden;
    background: #0a0f1a;
    min-height: 520px;
}

.rw-hosting-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/server-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

.rw-hosting-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10, 15, 26, 0.92) 0%, rgba(10, 15, 26, 0.75) 40%, rgba(10, 15, 26, 0.85) 100%);
    z-index: 1;
}

.rw-hosting-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1320px, calc(100% - 32px));
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 10px 0;
}

.rw-hosting-hero__content { flex: 1; max-width: 600px; }

.rw-hosting-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid var(--theme-primary);
    color: #60a5fa;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 24px;
}
.rw-hosting-hero__badge svg { width: 14px; height: 14px; }

.rw-hosting-hero__title { margin: 0 0 20px; color: #ffffff; font-size: 48px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
.rw-hosting-hero__desc { margin: 0 0 32px; color: #94a3b8; font-size: 17px; line-height: 1.7; }
.rw-hosting-hero__stats { display: flex; gap: 40px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.rw-hosting-hero__stat { text-align: left; }
.rw-hosting-hero__stat-value { color: #60a5fa; font-size: 28px; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.rw-hosting-hero__stat-label { color: #64748b; font-size: 13px; font-weight: 500; }

.rw-hosting-hero__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.rw-hosting-hero__feature { display: flex; align-items: center; gap: 10px; color: #e2e8f0; font-size: 14px; font-weight: 500; }
.rw-hosting-hero__feature svg { width: 18px; height: 18px; color: #60a5fa; flex-shrink: 0; }

.rw-hosting-hero__visual { position: relative; flex-shrink: 0; width: 600px; height: 500px; display: flex; align-items: center; justify-content: center; }
.rw-hosting-hero__visual-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%); border-radius: 50%; animation: pulse-server 4s ease-in-out infinite; }
@keyframes pulse-server { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; } }
.rw-hosting-hero__visual-img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; }

/* =============================================
   WRAPPER VE KATEGORİ
   ============================================= */
.rw-hosting-page #wrapper { width: min(1320px, calc(100% - 32px)); max-width: 1320px; margin: 0 auto; float: none; background: transparent; }
.rw-hosting-page .pakettitle { float: none; width: 100%; padding: 0px 0 8px; text-align: center; }
.rw-hosting-page .pakettitle h1 { margin: 0 0 8px; color: #0f172a; font-size: 24px; font-weight: 850; letter-spacing: -.03em; }
.rw-hosting-page .pakettitle h2 { margin: 0; color: #64748b; font-size: 13px; font-weight: 500; }

.rw-hosting-page .categoriesproduct { float: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 20px 0 22px; width: 100%; }
.rw-hosting-page .categoriesproduct a { min-height: 42px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid #dfe7ef; border-radius: 5px; background: #ffffff; color: #334155; font-size: 13px; font-weight: 800; transition: border-color 0.2s ease; }
.rw-hosting-page .categoriesproduct a:hover, .rw-hosting-page .categoriesproduct a#category-button-active { border-color: var(--theme-primary); color: var(--theme-primary); }

/* Server Matrix - Tam Genislik */
.rw-server-matrix { width: 100%; }
.rw-server-matrix .container { width: 100%; max-width: none; padding: 0; }
.rw-matrix-header { width: 100%; }
.rw-matrix-body { width: 100%; margin-top: 20px; }

/* =============================================
   YATAY SERVER PLAN KARTLARI
   ============================================= */

.server-plan-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 32px 0;
}

.server-plan {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.server-plan:hover {
    border-color: var(--theme-primary);
}

.server-plan--popular {
    border: 2px solid var(--theme-primary);
}

/* Popüler Rozeti */
.server-plan__ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: #1da1f2;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 14px;
    border-bottom-left-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* Sol: Paket Bilgisi */
.server-plan__info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    min-width: 200px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
}

.server-plan__icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.server-plan__icon i {
    font-size: 20px;
    color: #ffffff;
}

.server-plan__meta {
    flex: 1;
    min-width: 0;
}

.server-plan__name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.server-plan__category {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Orta: Özellikler */
.server-plan__specs {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
}

.server-plan__spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    border-right: 1px solid #e2e8f0;
    min-width: 100px;
}

.server-plan__spec:last-child {
    border-right: none;
}

.server-plan__spec-icon {
    width: 36px;
    height: 36px;
    background: #f0f4ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.server-plan__spec-icon i {
    font-size: 16px;
    color: var(--theme-primary);
}

.server-plan__spec-text {
    text-align: center;
}

.server-plan__spec-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.server-plan__spec-label {
    display: block;
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 2px;
}

/* Sağ: Fiyat ve Buton */
.server-plan__action {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    flex-shrink: 0;
}

.server-plan__price {
    text-align: right;
    min-width: 90px;
}

.server-plan__price-currency {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    vertical-align: super;
}

.server-plan__price-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--theme-primary);
    line-height: 1;
}

.server-plan__price-period {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.server-plan__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--theme-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.server-plan__btn:hover {
    background: var(--theme-primary-hover, #1d4ed8);
    color: #ffffff;
}

.server-plan__btn i {
    font-size: 11px;
}

.server-plan__btn--disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

.server-plan__btn--disabled:hover {
    background: #e2e8f0;
    color: #94a3b8;
}

/* =============================================
   YATAY TABLO LİSTESİ (Template 2)
   ============================================= */
.server-table-wrap { margin: 32px 0; }
.rw-hosting-page .sunucular { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; }
.rw-hosting-page .servercattitle { color: #0f172a; font-size: 18px; font-weight: 700; margin: 32px 0 16px; }

.rw-hosting-page .horizontal-list { width: 100%; border-collapse: collapse; background: transparent; }
.rw-hosting-page .horizontal-list thead tr { background: #f8fafc; }
.rw-hosting-page .horizontal-list th { padding: 14px 12px; color: #334155; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid var(--theme-primary); text-align: center; }
.rw-hosting-page .horizontal-list td { padding: 16px 12px; color: #475569; font-size: 13px; border-bottom: 1px solid #e2e8f0; text-align: center; vertical-align: middle; }
.rw-hosting-page .horizontal-list tr:last-child td { border-bottom: none; }
.rw-hosting-page .horizontal-list tr:hover td { background: #f8fafc; }
.rw-hosting-page .horizontal-list td strong { color: #0f172a; font-weight: 600; }
.rw-hosting-page .horizontal-list td h4 { margin: 0; color: var(--theme-primary); font-size: 14px; font-weight: 700; }
.rw-hosting-page .sunucustok { display: inline-block; padding: 3px 8px; background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; font-size: 9px; font-weight: 700; border-radius: 3px; margin-top: 4px; text-transform: uppercase; }
.rw-hosting-page .horizontal-list .green.lbtn { background: var(--theme-primary); border: none; color: #ffffff; font-size: 11px; font-weight: 700; padding: 8px 14px; border-radius: 5px; transition: background 0.2s ease; }
.rw-hosting-page .horizontal-list .green.lbtn:hover { background: var(--theme-primary-hover, #1d4ed8); }

/* =============================================
   İÇERİK VE SSS
   ============================================= */
.rw-hosting-page .detail-products-features, .rw-hosting-page .sss { float: none; width: min(1320px, calc(100% - 32px)); margin: 48px auto 0; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 28px; }
.rw-hosting-page .detail-products-features { color: #475569; font-size: 14px; line-height: 1.8; }
.rw-hosting-page .detail-products-features h2, .rw-hosting-page .detail-products-features h3 { color: #0f172a; }
.rw-hosting-page .sss h4 { color: #0f172a; font-size: 18px; font-weight: 700; margin: 0 0 20px; }
.rw-hosting-page #accordion h3 { background: #f8fafc; border: 1px solid #e2e8f0; color: #334155; padding: 14px 18px; margin: 0; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; }
.rw-hosting-page #accordion h3:hover, .rw-hosting-page #accordion h3.ui-state-active { background: color-mix(in srgb, var(--theme-primary) 8%, #ffffff); border-color: var(--theme-primary); color: var(--theme-primary); }
.rw-hosting-page #accordion .ui-accordion-content { background: #ffffff; border: none; padding: 14px 18px; color: #475569; font-size: 13px; line-height: 1.7; }

/* =============================================
   RESPONSIVE

   ============================================= */
@media (max-width: 1200px) {
    .server-plan__info { min-width: 160px; padding: 16px 20px; }
    .server-plan__spec { padding: 14px 16px; min-width: 80px; }
}

@media (max-width: 1024px) {
    .rw-hosting-hero__inner { flex-direction: column; text-align: center; gap: 40px; padding: 60px 0; }
    .rw-hosting-hero__visual { width: 450px; height: 380px; }
    .rw-hosting-hero__visual-bg { width: 420px; height: 420px; }
    .rw-hosting-hero__stats { justify-content: center; }

    /* Tablet: Yatay kartı dikey olarak düzenle */
    .server-plan {
        flex-direction: column;
    }
    .server-plan__info {
        width: 100%;
        min-width: unset;
        border-radius: 9px 9px 0 0;
    }
    .server-plan__specs {
        flex-wrap: wrap;
        padding: 12px;
        gap: 0;
        border-top: 1px solid #e2e8f0;
    }
    .server-plan__spec {
        flex-direction: row;
        justify-content: flex-start;
        width: auto;
        min-width: unset;
        padding: 10px 16px;
        border-right: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }
    .server-plan__spec:nth-child(odd) {
        background: #fafbfc;
    }
    .server-plan__spec-icon { margin-bottom: 0; margin-right: 10px; }
    .server-plan__spec-text { text-align: left; }
    .server-plan__action {
        width: 100%;
        justify-content: space-between;
        background: #f8fafc;
        padding: 14px 16px;
        border-top: 1px solid #e2e8f0;
    }
    .server-plan__price { text-align: left; }
}

@media (max-width: 767px) {
    .rw-hosting-hero__title { font-size: 32px; }
    .rw-hosting-hero__visual { max-width: 100%; height: 300px; }

    /* Mobilde özellikler dikey */
    .server-plan__specs {
        flex-direction: column;
    }
    .server-plan__spec {
        width: 100%;
        border-right: none;
    }
    .server-plan__spec:nth-child(odd) { background: transparent; }
    .server-plan__action {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .server-plan__price { text-align: left; }
    .server-plan__btn { width: 100%; justify-content: center; }

    .rw-hosting-page #wrapper { width: calc(100% - 24px); }
    .rw-hosting-page .horizontal-list { font-size: 11px; }
    .rw-hosting-page .horizontal-list th, .rw-hosting-page .horizontal-list td { padding: 10px 6px; }
    .rw-hosting-page .detail-products-features, .rw-hosting-page .sss { padding: 20px; }
}


/* ==========================================================================
   RIWISE CUSTOM SERVER MATRIX LISTING
   ========================================================================== */

.rw-server-matrix {
    margin: 45px 0;
    font-family: inherit;
    width: 100%;
}

/* Header Area */
.rw-matrix-header {
    margin-bottom: 28px;
    padding: 0;
    text-align: center;
}
.rw-matrix-titles {
    margin-bottom: 20px;
}
.rw-matrix-heading {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}
.rw-matrix-subheading {
    color: #64748b;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

/* Toolbar: Coupon & Period */
.rw-matrix-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px dashed #e2e8f0;
    border-radius: 5px;
    margin-top: 30px;
}
.rw-coupon-input {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rw-coupon-input i {
    color: #94a3b8;
    font-size: 15px;
}
.rw-coupon-title {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}
.rw-coupon-value {
    display: inline-block;
    padding: 6px 12px;
    background: #f1f5f9;
    border: 1px dashed #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 0.3px;
    user-select: all;
}
.rw-period-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.rw-period-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-right: 4px;
}
.rw-period-btn {
    display: inline-flex;
    cursor: pointer;
}
.rw-period-btn input {
    display: none;
}
.rw-period-btn span {
    display: block;
    padding: 8px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    background: #ffffff;
    transition: all 0.2s ease;
}
.rw-period-btn:hover span {
    border-color: #2563eb;
    color: #2563eb;
}
.rw-period-btn input:checked + span {
    border-color: #2563eb;
    background: #2563eb;
    color: #ffffff;
}

/* Card Container */
.rw-matrix-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Individual Row Card */
.rw-srv-card {
    background-color: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.rw-srv-card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
}
.rw-srv-card--featured {
    border: 2px dashed #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

/* Main Row Layout */
.rw-srv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    flex-wrap: wrap;
    gap: 18px;
}

/* Section 1: Branding / Title */
.rw-srv-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 220px;
}
.rw-srv-badge {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.rw-srv-name {
    display: block;
    font-size: 17px;
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.rw-srv-category {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
    font-weight: 500;
}

/* OS Section - Same structure as hosting apps section, different class names */
.rw-sys-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* Arka plan admin panelden ayarlanir - inline style ile */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-image: url('/templates/website/Riwise/images/hosting-uygulama-bg.jpg') !important;
    padding: 90px 20px;
    text-align: center;
    box-sizing: border-box;
}

.rw-sys-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 25, 47, 0.90);
    z-index: 1;
}

.rw-sys-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
}

.rw-sys-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.rw-sys-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 850px;
    margin: 0 auto 55px auto;
}

.rw-sys-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.rw-sys-item {
    flex: 1 1 160px;
    max-width: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s ease;
    cursor: pointer;
}

.rw-sys-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgb(29 161 242);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.rw-sys-item i {
    font-size: 42px;
    margin-bottom: 18px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.rw-sys-item:hover i {
    color: #1da1f2;
}

.rw-sys-item span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.rw-sys-item:hover span {
    color: #ffffff;
}

@media (max-width: 768px) {
    .rw-sys-title { font-size: 26px; }
    .rw-sys-desc { font-size: 15px; padding: 0 15px; }
    .rw-sys-item { flex: 1 1 130px; padding: 25px 15px; }
    .rw-sys-section { padding: 60px 15px; }
}
.rw-srv-feature {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    text-align: left;
    padding: 0 18px;
    border-left: 1px solid #e2e8f0;
}
.rw-srv-feature:first-child {
    border-left: none;
    padding-left: 0;
}
.rw-srv-feature:last-child {
    padding-right: 0;
}
.rw-feat-val {
    font-size: 15px;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.3;
}
.rw-feat-lbl {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 400;
    margin-top: 4px;
    line-height: 1.2;
}

/* Section 3: Pricing & Actions */
.rw-srv-checkout {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.rw-srv-pricing-group {
    text-align: right;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.rw-srv-amount {
    font-size: 25px;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.rw-price-symbol {
    font-size: 18px;
    font-weight: 600;
}
.rw-srv-amount small {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    margin-left: 2px;
}

/* Action Buttons - Icon Style */
.rw-srv-actions {
    display: flex;
    gap: 10px;
}
.rw-action-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.rw-srv-card:hover .rw-action-icon {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}
.rw-action-icon:hover {
    transform: scale(1.05);
}
.rw-action-icon i {
    font-size: 18px;
}
.rw-action-icon--disabled {
    background-color: #f8fafc;
    color: #cbd5e1;
    border-color: #e2e8f0;
    cursor: not-allowed;
}
.rw-srv-card:hover .rw-action-icon--disabled {
    background-color: #f8fafc;
    border-color: #e2e8f0;
    color: #cbd5e1;
}

/* Responsive Rules (Mobile & Tablet) */
@media (max-width: 1200px) {
    .rw-srv-feature {
        flex: 1 1 90px;
        min-width: 80px;
    }
}

@media (max-width: 1024px) {
    .rw-srv-row {
        flex-wrap: wrap;
        gap: 16px;
    }
    .rw-srv-brand {
        flex: 1 1 100%;
    }
    .rw-srv-feature {
        flex: 1 1 calc(50% - 10px);
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .rw-srv-row {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }
    .rw-srv-brand {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 14px;
        margin-bottom: 4px;
    }
    .rw-srv-feature {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 0;
        border-left: none;
        border-bottom: 1px solid #f1f5f9;
    }
    .rw-srv-feature:first-child {
        padding-left: 0;
    }
    .rw-srv-feature:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }
    .rw-feat-val {
        font-size: 14px;
    }
    .rw-feat-lbl {
        font-size: 11px;
    }
    .rw-srv-checkout {
        width: 100%;
        justify-content: space-between;
        padding-top: 14px;
        border-top: 1px solid #f1f5f9;
    }
    .rw-srv-pricing-group {
        text-align: left;
    }
    .rw-action-icon {
        width: 48px;
        height: 48px;
    }
    .rw-srv-os {
        padding: 12px 16px;
    }
    .rw-os-item {
        font-size: 11px;
        padding: 4px 10px;
    }
    .rw-os-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .rw-os-title { font-size: 26px; }
    .rw-os-desc { font-size: 15px; padding: 0 15px; }
    .rw-os-item { flex: 1 1 130px; padding: 25px 15px; }
    .rw-os-section { padding: 60px 15px; }
}

/* Adv Features Section */
.rw-adv-features-section {
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

.rw-adv-features-container {
    max-width: 1300px;
    margin: 0 auto;
}

.rw-adv-features-header {
    text-align: center;
    margin-bottom: 50px;
}

.rw-adv-features-subtitle {
    display: block;
    color: var(--theme-primary, #2563eb);
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.rw-adv-features-title {
    color: #1e293b;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.rw-adv-features-divider {
    width: 40px;
    height: 3px;
    background-color: var(--theme-primary, #2563eb);
    margin: 0 auto;
    border-radius: 2px;
}

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

.rw-adv-feature-card {
    background-color: #ffffff;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 24px 20px;
    transition: all 0.3s ease;
}

.rw-adv-feature-card:hover {
    background-color: #f8fafc;
    border-color: var(--theme-primary, #2563eb);
    transform: translateY(-3px);
}

.rw-adv-feature-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.rw-adv-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--theme-primary, #2563eb);
    border-radius: 10px;
    font-size: 18px;
}

.rw-adv-feature-card-title {
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.rw-adv-feature-card-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.rw-faq-section {
    width: 100%;
    padding: 40px 20px 80px 20px;
    box-sizing: border-box;
    background-color: transparent;
}

.rw-faq-container {
    max-width: 1300px;
    margin: 0 auto;
}

.rw-faq-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.rw-faq-main-title {
    color: #0f172a;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.rw-faq-sub-title {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

.rw-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.rw-faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rw-faq-item {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.rw-faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--theme-primary, #2563eb);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: center;
    z-index: 2;
}

.rw-faq-item:hover,
.rw-faq-item.is-active {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.rw-faq-item:hover::before,
.rw-faq-item.is-active::before {
    transform: scaleY(1);
}

.rw-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    background: transparent;
}

.rw-faq-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.3s ease;
    padding-right: 20px;
    line-height: 1.5;
}

.rw-faq-icon {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.rw-faq-header:hover h3 {
    color: var(--theme-primary, #2563eb);
}

.rw-faq-header:hover .rw-faq-icon {
    background: #e2e8f0;
    color: var(--theme-primary, #2563eb);
}

.rw-faq-item.is-active .rw-faq-header h3 {
    color: var(--theme-primary, #2563eb);
}

.rw-faq-item.is-active .rw-faq-icon {
    background: var(--theme-primary, #2563eb);
    color: #ffffff;
    transform: rotate(180deg);
}

.rw-faq-content {
    display: none;
}

.rw-faq-content-inner {
    padding: 0 24px 24px 24px;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .rw-adv-features-grid {
        grid-template-columns: 1fr;
    }
    .rw-adv-features-title {
        font-size: 24px;
        line-height: 1.3;
    }
    .rw-adv-features-section {
        padding: 50px 15px;
    }
    .rw-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .rw-faq-title-wrap {
        margin-bottom: 30px;
    }
    .rw-faq-main-title {
        font-size: 26px;
    }
}


/* =============================================
   SERVER PAKET KUTU BLOK TASARIMI
   Hosting paket tasarımının birebir aynısı
   ============================================= */
.rw-hosting-page .server-package-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 32px 0 90px;
    width: min(1320px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.server-package-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5edf5;
    border-radius: 5px;
    padding: 24px 20px 18px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible;
    transition: border-color 0.25s ease;
}

.server-package-card:hover {
    border-color: #cfe0ef;
    transform: none;
}

.server-package-card--campaign::after {
    content: none;
}

.server-package-card--featured {
    border: 2px solid var(--theme-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    background: #fff;
    transition: none;
}
.server-package-card--featured:hover {
    border-color: var(--theme-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0,0,0,0.04);
    transform: none;
}
.server-package-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--theme-primary);
}

.server-package-card__bottom {
    position: relative;
    z-index: 1;
}

.server-package-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.server-package-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 5px;
    background: #f1f8fe;
    color: var(--theme-primary);
    font-size: 12px;
    font-weight: 500;
}
.server-package-card--featured .server-package-card__badge {
    background: var(--theme-primary);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: none;
}
.server-package-card--featured:hover .server-package-card__badge {
    background: var(--theme-primary);
}

.server-package-card__level {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.server-package-card__level span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(29, 161, 242, 0.16);
}

.server-package-card__level span.is-active {
    background: var(--theme-primary);
}

.server-package-card__title {
    font-size: 23px;
    font-weight: 500;
    color: var(--theme-dark);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.server-package-card__desc {
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 22px;
    min-height: 55px;
}

.server-package-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 5px;
    background: var(--theme-primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s ease;
    width: 100%;
    order: 2;
    box-shadow: none;
}

.server-package-card__button:hover {
    background: var(--theme-primary-hover);
    color: #ffffff;
}

.server-package-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    flex-grow: 1;
}

.server-package-card__features li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #eef4f8;
}

.server-package-card__features li:last-child {
    border-bottom: none;
}

.server-package-card__features .feature-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--theme-dark);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
}

.server-package-card__features .feature-label i {
    color: var(--theme-primary);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.server-package-card__bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
    padding: 18px 0 0;
    border-top: 1px solid #eef4f8;
}

.server-package-card__bottom::before {
    content: none;
}

.server-package-card__price-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    width: 100%;
}

.server-package-card__price-wrap::before {
    content: "";
    position: absolute;
    left: -21px;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 999px;
    background: var(--theme-primary);
}

.server-package-card__price-wrap--bottom {
    order: 1;
}

.server-package-card__old-price {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 400;
    text-decoration: line-through;
    line-height: 1;
}

.server-package-card__price-row {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
}

.server-package-card__price {
    color: var(--theme-dark);
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.8px;
}

.server-package-card__price-term {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    line-height: 1.2;
    padding-bottom: 4px;
}

@media (max-width: 1199px) {
    .server-package-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .server-package-list {
        grid-template-columns: 1fr;
    }

    .server-package-card {
        padding: 22px 18px 18px;
    }

    .server-package-card--featured {
        transform: none;
    }

    .server-package-card__desc {
        min-height: auto;
    }

    .server-package-card__title {
        font-size: 22px;
    }

    .server-package-card__price {
        font-size: 30px;
    }
}


