/* VPS Page Styles */
.hero-small {
    min-height: 400px;
    padding: 4rem 2rem 6rem;
}

/* VPS Plans Section */
.vps-plans-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* EPYC Cards Grid - Card Format */
.epyc-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hosting-plans-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    gap: 2.5rem;
    justify-items: center;
}

.hosting-plans-grid .epyc-card {
    max-width: 380px;
    width: 100%;
}

.epyc-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.epyc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.epyc-card.popular {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-color: #8b5cf6;
    border-width: 2px;
    color: white;
}

.epyc-popular-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.epyc-card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.epyc-card.popular .epyc-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.epyc-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e1b4b;
    margin: 0 0 0.25rem 0;
}

.epyc-card.popular .epyc-card-title {
    color: white;
}

.epyc-card-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.epyc-card.popular .epyc-card-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.epyc-card-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.epyc-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.epyc-spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.epyc-spec-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #8b5cf6;
}

.epyc-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.epyc-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.epyc-card.popular .epyc-feature-item {
    color: rgba(255, 255, 255, 0.9);
}

.epyc-feature-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #10b981;
    stroke-width: 3;
}

.epyc-card.popular .epyc-feature-item svg {
    color: #10b981;
}

.epyc-feature-item .cpu-speed {
    color: #f97316;
    font-weight: 600;
    font-size: 0.85rem;
}

.epyc-card.popular .epyc-feature-item .cpu-speed {
    color: #fbbf24;
}

.epyc-card-price {
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid #e2e8f0;
}

.epyc-card.popular .epyc-card-price {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.epyc-original-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.9rem;
}

.epyc-card.popular .epyc-original-price {
    color: rgba(255, 255, 255, 0.6);
}

.epyc-price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

.epyc-card.popular .epyc-price-currency {
    color: rgba(255, 255, 255, 0.8);
}

.epyc-price-amount-original {
    font-size: 1rem;
    font-weight: 600;
}

.epyc-price-period {
    font-size: 0.9rem;
    color: #64748b;
}

.epyc-card.popular .epyc-price-period {
    color: rgba(255, 255, 255, 0.8);
}

.epyc-discounted-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.epyc-price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #1e1b4b;
}

.epyc-card.popular .epyc-price-amount {
    color: white;
}

.epyc-buy-btn {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.epyc-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed, #5855eb);
}

.epyc-buy-btn.popular-btn {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.epyc-buy-btn.popular-btn:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* VPS Plans Table Section */
.vps-plans-table-section {
    padding: 5rem 0;
    background: #ffffff;
}

/* Plans Header - Table Format */
.plans-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr 1.5fr 2fr;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #1e3a8a;
    border-radius: 12px 12px 0 0;
    border: 1px solid #1e3a8a;
    border-bottom: none;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-item {
    text-align: center;
}

.header-item.header-package {
    text-align: left;
}

.header-item.header-price {
    text-align: right;
}

/* VPS Plans Grid - Table Format */
.vps-plans-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    background: white;
}

.vps-plan-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr 1.5fr 2fr;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
    position: relative;
    transition: background-color 0.3s ease;
}

.vps-plan-card:nth-child(even) {
    background: #f8fafc;
}

.vps-plan-card:last-child {
    border-bottom: none;
}

.vps-plan-card:hover {
    background: rgba(139, 92, 246, 0.03);
}

.vps-plan-card.popular {
    background: rgba(139, 92, 246, 0.05);
    border-left: 4px solid #8b5cf6;
}

.price-note {
    text-align: center;
    margin-top: 1.5rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.price-note p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.plan-package {
    text-align: left;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0;
}

.plan-spec {
    text-align: center;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 600;
}

.plan-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    text-align: right;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.plan-price .currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b5cf6;
}

.plan-price .amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e1b4b;
}

.plan-price .period {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.btn-plan {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
    white-space: nowrap;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed, #5855eb);
}

/* Dedicated Plans Grid */
.dedicated-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.dedicated-plan-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dedicated-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

/* Plan Header */
.plan-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(99, 102, 241, 0.05));
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-brand {
    display: flex;
    align-items: center;
}

.intel-xeon-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-transform: none;
    letter-spacing: 0.3px;
}

.plan-price-main {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
}

.price-period {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Plan Content */
.plan-content {
    padding: 1.5rem;
    flex: 1;
}

.plan-spec-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(139, 92, 246, 0.03);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.08);
}

.spec-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.spec-icon svg {
    width: 24px;
    height: 24px;
}

.spec-content {
    flex: 1;
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.spec-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #64748b;
}

.spec-details strong {
    color: #475569;
    font-weight: 600;
}

/* Plan Specs Grid */
.plan-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.spec-box {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.spec-box:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.spec-box-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
}

.spec-box-icon svg {
    width: 20px;
    height: 20px;
}

.spec-box-content {
    flex: 1;
}

.spec-box-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.spec-box-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
}

/* Plan Footer */
.plan-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    background: rgba(139, 92, 246, 0.02);
}

.btn-configure-full {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-configure-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed, #5855eb);
}

/* KVM Features Section (Fast Servers, Great Network, Amazing Value) */
.kvm-features-section {
    padding: 5rem 0;
    background: #ffffff;
}

.kvm-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.kvm-feature-block {
    text-align: center;
    padding: 2rem 1.5rem;
}

.kvm-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kvm-feature-icon svg {
    width: 100%;
    height: 100%;
}

.kvm-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 1rem 0;
}

.kvm-feature-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Production-Ready KVM VPS Section */
.production-ready-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.production-ready-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.production-ready-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.production-ready-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    margin: 0;
    line-height: 1.2;
}

.production-plan-selection {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.plan-selection-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.plan-selection-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 1rem 0;
}

.plan-selection-desc:last-child {
    margin-bottom: 0;
}

.plan-selection-desc strong {
    color: #1e1b4b;
    font-weight: 700;
}

.production-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.production-feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.production-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.production-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.production-feature-icon svg {
    width: 28px;
    height: 28px;
}

.production-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 0.75rem 0;
}

.production-feature-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.production-ready-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kvm-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    text-align: center;
    margin: 0 0 3rem 0;
    line-height: 1.2;
}

/* Lowest Latency Section */
.forex-latency-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.forex-latency-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e1b4b;
    text-align: center;
    margin: 0 0 2.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.forex-latency-content {
    max-width: 1100px;
    margin: 0 auto 4.5rem;
    padding: 0 2rem;
}

.forex-latency-desc {
    font-size: 1.15rem;
    line-height: 2;
    color: #475569;
    margin: 0;
    text-align: center;
}

.forex-latency-desc strong {
    color: #1e1b4b;
    font-weight: 700;
}

.forex-latency-carousel {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5rem;
}

.forex-latency-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.forex-latency-cards::-webkit-scrollbar {
    display: none;
}

.forex-latency-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 320px;
    position: relative;
    overflow: hidden;
}

.forex-latency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.forex-latency-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.forex-latency-card:hover::before {
    opacity: 1;
}

.forex-latency-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.forex-latency-card:hover .forex-latency-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.forex-latency-card-icon.infrastructure {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.forex-latency-card-icon.support {
    background: linear-gradient(135deg, #10b981, #059669);
}

.forex-latency-card-icon.riskfree {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.forex-latency-card-icon svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.forex-latency-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

.forex-latency-card-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #64748b;
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-color: transparent;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

/* MT4 MT5 VPS Features Section */
.forex-features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.forex-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.forex-feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.forex-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.forex-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.forex-feature-icon svg {
    width: 40px;
    height: 40px;
}

.forex-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 1rem 0;
}

.forex-feature-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* MT4/MT5 Meta Trader VPS Hosting Section */
.forex-mt4-section {
    padding: 5rem 0;
    background: #ffffff;
}

.forex-mt4-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.forex-mt4-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 1.5rem 0;
}

.forex-mt4-desc:last-child {
    margin-bottom: 0;
}

/* Why MT4/MT5 VPS Good Section */
.forex-why-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.forex-why-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    padding: 0 2rem;
}

.forex-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.forex-why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.forex-why-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.forex-why-item:last-child {
    margin-bottom: 0;
}

.forex-why-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.forex-why-item span:last-child {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    flex: 1;
}

/* What to Consider Section */
.forex-consider-section {
    padding: 5rem 0;
    background: #ffffff;
}

.forex-consider-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    padding: 0 2rem;
}

.forex-consider-list {
    list-style: none;
    padding: 0 2rem;
    margin: 0 auto 2.5rem;
    max-width: 900px;
}

.forex-consider-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.forex-consider-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.forex-consider-item:last-child {
    margin-bottom: 0;
}

.forex-consider-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.forex-consider-item span:last-child {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    flex: 1;
}

.forex-consider-footer {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1e1b4b;
    text-align: center;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Trading Platforms Section */
.forex-trading-platforms-section {
    padding: 5rem 0;
    background: #ffffff;
}

.trading-platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.trading-platform-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.trading-platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.trading-platform-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.platform-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.trading-platform-card:hover .platform-image {
    transform: scale(1.05);
}

.trading-platform-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0;
    line-height: 1.3;
}

.trading-platforms-desc {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trading-platforms-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #475569;
    margin: 0;
    text-align: center;
}

/* Operating Systems Section */
.os-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.os-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: #475569;
}

.os-item svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.os-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}

.os-name {
    font-weight: 600;
    color: #1e293b;
}

.os-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

/* Responsive */
@media (max-width: 1400px) {
    .dedicated-plans-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
    }

    .dedicated-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .we-care-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 1200px) {
    .dedicated-plans-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .dedicated-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .we-care-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .we-care-title {
        font-size: 2.2rem;
    }

    .faq-grid {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .dedicated-plans-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .dedicated-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .we-care-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .we-care-illustration {
        order: -1;
    }

    .we-care-title {
        text-align: center;
    }

    .control-panel-wrapper {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        padding: 0 1rem;
    }

    .control-panel-image {
        order: -1;
    }

    .control-panel-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .control-panel-label {
        text-align: center;
    }

    .control-panel-desc {
        text-align: center;
    }

    .faq-section {
        padding: 3.5rem 0;
    }

    .faq-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .questions-section {
        padding: 3.5rem 0;
    }

    .questions-title {
        font-size: 2.2rem;
    }

    .questions-desc {
        font-size: 1.05rem;
    }
}

@media (max-width: 1200px) {
    .epyc-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .plans-header,
    .vps-plan-card {
        grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr 1.5fr 2fr;
        gap: 0.75rem;
        padding: 1.25rem 1rem;
    }
}

@media (max-width: 992px) {
    .epyc-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        padding: 0 1rem;
    }

    .kvm-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .production-ready-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .production-ready-illustration {
        order: -1;
    }

    .production-ready-title {
        font-size: 2rem;
        text-align: center;
    }

    .production-features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .plans-header,
    .vps-plan-card {
        grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr 1.5fr 2fr !important;
        gap: 0.5rem;
    }

    .plan-price .amount {
        font-size: 1.5rem;
    }

    .btn-plan {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .epyc-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .hosting-plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .vps-plans-section {
        padding: 3rem 0;
    }

    .epyc-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hosting-plans-grid {
        grid-template-columns: 1fr;
    }

    .plans-header {
        display: none;
    }

    .vps-plans-grid {
        border: none;
        border-radius: 0;
        gap: 1.5rem;
    }

    .vps-plan-card {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border: 1px solid rgba(139, 92, 246, 0.2);
        border-radius: 12px;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .vps-plan-card.popular {
        border-left: 4px solid #8b5cf6;
    }

    .plan-package {
        text-align: center;
        width: 100%;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }

    .plan-spec {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(139, 92, 246, 0.05);
        text-align: left;
    }

    .plan-spec::before {
        content: attr(data-label);
        font-weight: 700;
        color: #64748b;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .plan-spec span {
        font-weight: 700;
        color: #1e1b4b;
    }

    .plan-right {
        width: 100%;
        align-items: center;
        text-align: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(139, 92, 246, 0.1);
    }

    .plan-price {
        justify-content: center;
    }

    .epyc-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .epyc-card {
        padding: 1.5rem 1.25rem;
    }

    .epyc-card-title {
        font-size: 1.3rem;
    }

    .epyc-price-amount {
        font-size: 1.75rem;
    }

    .kvm-features-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .kvm-feature-block {
        padding: 1.5rem 1rem;
    }

    .kvm-feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .kvm-feature-title {
        font-size: 1.3rem;
    }

    .kvm-feature-desc {
        font-size: 0.95rem;
    }

    .production-ready-section {
        padding: 3rem 0;
    }

    .production-ready-grid {
        gap: 2rem;
        padding: 0 1rem;
    }

    .production-ready-title {
        font-size: 1.75rem;
    }

    .production-plan-selection {
        padding: 1.5rem;
    }

    .plan-selection-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .plan-selection-desc {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .forex-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .forex-feature-card {
        padding: 2rem 1.5rem;
    }

    .forex-mt4-content,
    .forex-why-desc,
    .forex-why-list,
    .forex-consider-desc,
    .forex-consider-list,
    .forex-consider-footer {
        padding: 0 1rem;
    }

    .forex-why-item,
    .forex-consider-item {
        padding: 1rem 1.25rem;
    }

    .forex-latency-section {
        padding: 4rem 0;
    }

    .forex-latency-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .forex-latency-content {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .forex-latency-desc {
        font-size: 1rem;
        line-height: 1.8;
    }

    .forex-latency-carousel {
        padding: 0 1rem;
    }

    .forex-latency-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .forex-latency-card {
        min-width: auto;
        padding: 2.5rem 2rem;
    }

    .forex-latency-card-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .forex-latency-card-icon svg {
        width: 40px;
        height: 40px;
    }

    .forex-latency-card-title {
        font-size: 1.4rem;
    }

    .forex-latency-card-desc {
        font-size: 1rem;
    }

    .carousel-btn {
        display: none;
    }

    .production-feature-card {
        padding: 1.5rem 1.25rem;
    }

    .trading-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .trading-platform-card {
        padding: 2rem 1.5rem;
    }

    .trading-platform-logo {
        height: 100px;
    }

    .trading-platform-name {
        font-size: 1.2rem;
    }

    .trading-platforms-desc {
        padding: 0 1rem;
    }

    .trading-platforms-text {
        font-size: 1rem;
    }

    .production-feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .production-feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .production-feature-title {
        font-size: 1.1rem;
    }

    .production-feature-desc {
        font-size: 0.9rem;
    }

    .kvm-illustration {
        max-width: 100%;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .dedicated-plans-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .dedicated-plan-card {
        border-radius: 12px;
    }

    .plan-header {
        padding: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .plan-price-main {
        width: 100%;
    }

    .price-amount {
        font-size: 2rem;
    }

    .price-currency {
        font-size: 1.3rem;
    }

    .plan-content {
        padding: 1.25rem;
    }

    .plan-spec-item {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .spec-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .plan-specs-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .spec-box {
        padding: 0.875rem;
    }

    .plan-footer {
        padding: 1.25rem;
    }

    .btn-configure-full {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .dedicated-features-section {
        padding: 3.5rem 0;
    }

    .dedicated-features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .dedicated-feature-card {
        padding: 1.5rem;
    }

    .dedicated-feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .dedicated-feature-title {
        font-size: 1.1rem;
    }

    .dedicated-feature-desc {
        font-size: 0.9rem;
    }

    .we-care-section {
        padding: 3.5rem 0;
    }

    .we-care-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .control-panel-section {
        padding: 3.5rem 0;
    }

    .control-panel-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .control-panel-image {
        order: -1;
    }

    .control-panel-title {
        font-size: 2rem;
        text-align: center;
    }

    .control-panel-label {
        text-align: center;
    }

    .control-panel-desc {
        text-align: center;
    }

    .we-care-illustration {
        order: -1;
        max-width: 100%;
        margin: 0 auto;
    }

    .we-care-title {
        font-size: 2rem;
        text-align: center;
    }

    .we-care-text {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-small {
        min-height: 350px;
        padding: 3rem 1rem 5rem;
    }

    .vps-plans-section {
        padding: 2.5rem 0;
    }

    .dedicated-plans-grid {
        gap: 1.25rem;
    }

    .plan-header {
        padding: 1rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .price-currency {
        font-size: 1.1rem;
    }

    .price-period {
        font-size: 0.8rem;
    }

    .plan-content {
        padding: 1rem;
    }

    .plan-spec-item {
        padding: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .spec-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .spec-icon svg {
        width: 20px;
        height: 20px;
    }

    .spec-value {
        font-size: 0.95rem;
    }

    .spec-details {
        font-size: 0.8rem;
    }

    .plan-specs-grid {
        gap: 0.75rem;
    }

    .spec-box {
        padding: 0.75rem;
    }

    .spec-box-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .spec-box-icon svg {
        width: 18px;
        height: 18px;
    }

    .spec-box-value {
        font-size: 0.9rem;
    }

    .plan-footer {
        padding: 1rem;
    }

    .btn-configure-full {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .dedicated-features-section {
        padding: 3rem 0;
    }

    .dedicated-features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .dedicated-feature-card {
        padding: 1.5rem;
    }

    .dedicated-feature-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 1rem;
    }

    .dedicated-feature-title {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .dedicated-feature-desc {
        font-size: 0.85rem;
    }

    .we-care-section {
        padding: 2.5rem 0;
    }

    .we-care-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 0 1rem;
    }

    .we-care-illustration {
        order: -1;
        max-width: 100%;
        margin: 0 auto;
    }

    .we-care-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .we-care-text {
        font-size: 0.9rem;
        line-height: 1.7;
        text-align: left;
    }

    .control-panel-section {
        padding: 2.5rem 0;
    }

    .control-panel-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .control-panel-image {
        order: -1;
    }

    .control-panel-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .control-panel-label {
        text-align: center;
        font-size: 0.85rem;
    }

    .control-panel-desc {
        text-align: center;
        font-size: 0.95rem;
    }

    .control-panel-feature {
        font-size: 0.9rem;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .faq-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
    }

    .faq-item-wrapper {
        border-radius: 6px;
    }

    .faq-item {
        padding: 1rem 1.25rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item-wrapper.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .questions-section {
        padding: 3rem 0;
    }

    .questions-title {
        font-size: 2rem;
    }

    .questions-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .btn-contact {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .dedicated-plans-grid {
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .dedicated-features-grid {
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .we-care-wrapper {
        padding: 0 0.5rem;
        max-width: 100%;
    }
}

/* Control Panel Section */
.control-panel-section {
    padding: 5rem 0;
    background: #ffffff;
}

.control-panel-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.control-panel-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.server-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
}

.control-panel-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.control-panel-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.control-panel-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.2;
    margin: 0;
}

.control-panel-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.control-panel-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.control-panel-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #8b5cf6;
    font-weight: 600;
}

.feature-arrow {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b5cf6;
    line-height: 1;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #ffffff;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-wrapper {
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-wrapper:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-item-wrapper.active {
    background: white;
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-item-wrapper.active .faq-item {
    background: rgba(139, 92, 246, 0.05);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: #1e1b4b;
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    font-size: 0.75rem;
    color: #8b5cf6;
    margin-left: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item-wrapper.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item-wrapper.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Questions Section */
.questions-section {
    padding: 5rem 0;
    background: #ffffff;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.questions-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    text-align: center;
    margin-bottom: 1.5rem;
}

.questions-desc {
    font-size: 1.1rem;
    color: #1e1b4b;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.questions-action {
    display: flex;
    justify-content: center;
}

.btn-contact {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed, #5855eb);
}

/* We Care Section */
.we-care-section {
    padding: 5rem 0;
    background: #ffffff;
}

.we-care-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.we-care-illustration {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-illustration {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.we-care-illustration svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
}

.we-care-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.we-care-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.2;
    margin: 0;
}

.we-care-text,
.we-care-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0 0 1rem 0;
}

.we-care-desc:last-child {
    margin-bottom: 0;
}

/* Dedicated Features Section */
.dedicated-features-section {
    padding: 5rem 0;
    background: #ffffff;
}

.dedicated-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dedicated-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.dedicated-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.dedicated-feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dedicated-feature-icon svg {
    width: 100%;
    height: 100%;
}

.dedicated-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.dedicated-feature-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Locations Info Section */
.locations-info-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.locations-info-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    text-align: center;
    margin-bottom: 1.5rem;
}

.locations-info-desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.locations-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.location-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.location-flag {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-name {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
}

@media (max-width: 768px) {
    .locations-info-title {
        font-size: 2rem;
    }

    .locations-info-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .locations-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }

    .location-info-item {
        padding: 1rem 1.25rem;
    }

    .location-flag {
        width: 36px;
        height: 36px;
    }

    .location-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .locations-info-section {
        padding: 3rem 0;
    }

    .locations-info-title {
        font-size: 1.75rem;
    }

    .locations-info-desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .locations-info-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .location-info-item {
        padding: 0.9rem 1rem;
    }
}


