.currency-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.toggle-switch {
    position: relative;
    display: inline-flex;
    background: #e8eef3;
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.currency-option {
    position: relative;
    padding: 10px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    z-index: 1;
    min-width: 70px;
    text-align: center;
}

.currency-option.active {
    color: white;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #0082cf, #58b5eb);
    border-radius: 50px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 130, 207, 0.4);
}

.toggle-switch.try-active .toggle-slider {
    transform: translateX(calc(100% + 4px));
}

/* Server Cards */
.server-cards-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 50px;
}

.server-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 57, 91, 0.06);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.server-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0, 130, 207, 0.12);
    border-color: #0082cf;
}

.server-card.featured {
    border-color: #0082cf;
    box-shadow: 0 6px 24px rgba(0, 130, 207, 0.15);
}

.server-card.featured::before {
    content: 'ÖNERİLEN';
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, #0082cf, #58b5eb);
    color: white;
    padding: 5px 40px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    transform: rotate(45deg);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.server-card-header {
    background: linear-gradient(135deg, #003859, #0082cf);
    padding: 24px 20px;
    text-align: center;
    color: white;
}

.server-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.server-card-price {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin: 12px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency-symbol {
    font-size: 24px;
    opacity: 0.9;
}

.price-period {
    font-size: 13px;
    opacity: 0.8;
    font-weight: 500;
}

.server-card-body {
    padding: 24px 20px;
}

.server-spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.server-spec-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #334155;
}

.server-spec-item:last-child {
    border-bottom: none;
}

.spec-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.spec-icon svg {
    width: 18px;
    height: 18px;
    stroke: #0082cf;
    stroke-width: 2.5;
}

.spec-content {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.spec-value {
    font-weight: 600;
    color: #12567f;
    font-size: 13px;
}

.server-card-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #003859, #0082cf);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.server-card-button:hover {
    background: linear-gradient(135deg, #0082cf, #58b5eb);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 130, 207, 0.3);
    color: white;
}

/* Features Grid */
.managed-features-grid {
    margin-top: 40px;
}

.managed-feature-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.managed-feature-item:hover {
    border-color: #0082cf;
    box-shadow: 0 8px 25px rgba(0, 130, 207, 0.1);
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-wrapper svg {
    width: 30px;
    height: 30px;
    stroke: #0082cf;
    stroke-width: 2;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #12567f;
    margin-bottom: 10px;
}

.feature-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 57, 91, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table thead {
    background: linear-gradient(135deg, #003859, #0082cf);
}

.comparison-table th {
    padding: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-align: center;
    border: none;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #12567f;
}

.comparison-table tbody tr:hover {
    background: #f8fafc;
}

.check-icon {
    color: #16a34a;
    font-size: 20px;
}
@media (max-width: 1400px) {
 .server-cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1200px) {
    .server-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .server-cards-container {
        grid-template-columns: 1fr;
    }
    
    .server-card-price {
        font-size: 32px;
    }
    
    .managed-features-grid {
        grid-template-columns: 1fr;
    }
    .sb-about-title h2{
        font-size: 30px!important;
    }
    section{
        padding: 40px 0!important;
    }
    .step-circle{
        width: 60px !important;; height: 60px !important;; margin-bottom:12px;
    }
    .step-number{
        font-size: 24px!important;
    }
}
.step-circle{
    width:80px; height:80px; border-radius:50%; background:rgba(255,255,255,0.15); border:2px solid rgba(255,255,255,0.3); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; backdrop-filter:blur(10px);
}
.step-number{
font-size: 32px;
  font-weight: 800;
  color: #fff;
  font-family: Poppins;
}
.sb-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(0,130,207,0.08), rgba(88,181,235,0.08));
    border: 1px solid rgba(0,130,207,0.15);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0082cf;
    margin-bottom: 20px;
}

.sb-about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.sb-about-title span {
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
