.hero-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 60px 0;
    color: white;
}
.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-content { flex: 1; }
.hero-content h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}
.hero-content .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}
.hero-btn {
    background: #fff;
    color: #2575fc;
    padding: 14px 36px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.refund-text {
    margin-top: 15px;
    font-size: 14px;
}
.hero-image { flex: 1; text-align: right; }
.hero-image img { max-width: 100%; height: auto; }

.features-section { padding: 70px 0; background: #fff; }
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #333;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background: #fff;
}
.feature-card img { width: 80px; height: 80px; margin-bottom: 25px; }
.feature-card h3 { font-size: 20px; margin-bottom: 15px; color: #333; font-weight: 600; }
.feature-card hr {
    border: none;
    border-top: 2px solid #2575fc;
    width: 40px;
    margin: 0 auto 15px;
}
.feature-card p { font-size: 14px; color: #666; line-height: 1.6; }
.features-btn { text-align: center; margin-top: 40px; }
.btn-primary {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 14px 36px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
}

.advantages-section { padding: 70px 0; background: #f5f8ff; }
.advantage-item { display: flex; align-items: center; margin-bottom: 70px; gap: 60px; }
.advantage-item.reverse { flex-direction: row-reverse; }
.advantage-img { flex: 1; }
.advantage-img img { max-width: 100%; }
.advantage-text { flex: 1; }
.advantage-text h3 { font-size: 24px; margin-bottom: 20px; color: #333; font-weight: 600; }
.advantage-text p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 25px; }
.btn-secondary {
    background: #2575fc;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.map-section { padding: 70px 0; background: #fff; }
.map-container { text-align: center; }
.map-container h2 { font-size: 28px; margin-bottom: 10px; font-weight: 600; }
.map-container h2 + p { color: #666; margin-bottom: 40px; font-size: 16px; }
#server-map { width: 100%; height: 500px; margin-bottom: 35px; }

.custom-service {
    padding: 70px 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-align: center;
    position: relative;
}
.custom-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: white;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.custom-service-content { position: relative; z-index: 1; }
.custom-service h2 { font-size: 28px; margin-bottom: 20px; font-weight: 600; }
.custom-service p { font-size: 16px; max-width: 800px; margin: 0 auto 30px; line-height: 1.7; }
.custom-service .hero-btn {
    background: linear-gradient(130deg, rgba(110,198,255,1) 0%, rgba(42,135,255,1) 100%);
    color: white;
}

.users-section { padding: 70px 0; background: #fff; }
.users-count { text-align: center; font-size: 32px; font-weight: 600; margin-bottom: 45px; color: #333; }
.testimonial-carousel { max-width: 900px; margin: 0 auto; position: relative; }
.testimonial-item {
    background: #fff;
    padding: 45px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.testimonial-item img { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 25px; }
.testimonial-item p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.testimonial-name { font-weight: 600; color: #333; }
.carousel-controls { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.carousel-dot { width: 12px; height: 12px; border-radius: 50%; background: #ddd; cursor: pointer; }
.carousel-dot.active { background: #2575fc; }

.news-section { padding: 50px 0; background: #fff; }
.news-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.news-header h2 { font-size: 24px; font-weight: 600; }
.news-more { color: #2575fc; text-decoration: none; font-weight: 500; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.news-card img { width: 100%; height: 180px; object-fit: cover; }
.news-card-content { padding: 15px; }
.news-card-content h4 { font-size: 15px; color: #333; margin-bottom: 10px; font-weight: 500; }

.pricing-section { padding: 70px 0; background: #f5f8ff; }
.pricing-tabs-wrapper { display: flex; flex-direction: column; align-items: center; }
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #fff;
    padding: 6px;
    border-radius: 25px;
    margin-bottom: 40px;
}
.pricing-tab {
    padding: 12px 35px;
    background: transparent;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    color: #999;
    font-weight: 500;
}
.pricing-tab.active { background: #2575fc; color: white; }
.pricing-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; }
.pricing-card {
    background: #fff;
    padding: 35px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-top: 6px solid #fff;
    transition: all 0.3s;
    position: relative;
}
.pricing-card.recommended {
    border-top: 6px solid #388FFF;
    box-shadow: 0 4px 20px rgba(56, 143, 255, 0.2);
}
.pricing-card:hover { border-top: 6px solid #2575fc; transform: translateY(-5px); }
.pricing-card h4 { font-size: 20px; color: #388FFF; margin-bottom: 20px; font-weight: bold; }
.price-currency {
    font-size: 16px;
    color: #333;
    display: block;
    position: absolute;
    left: 45px;
    top: 88px;
}
.price-number { font-size: 46px; font-weight: 600; color: #333; display: inline-block; }
.price-month { color: #999; font-size: 14px; margin-bottom: 12px; display: block; }
.price-total { font-size: 18px; color: #333; margin-bottom: 5px; font-weight: bold; }
.price-original { color: #999; text-decoration: line-through; font-size: 14px; margin-bottom: 35px; display: block; }
.pricing-btn {
    background: #e0eeff;
    color: #2575fc;
    padding: 12px 36px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.pricing-btn:hover { background: #2575fc; color: white; }

@media (max-width: 992px) {
    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero-image { text-align: center; }
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .advantage-item, .advantage-item.reverse { flex-direction: column; }
    .pricing-cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
    .news-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}
