* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at 10% 20%, #cfe9ff, #7ab3c8);
    color: #0a2b3e;
    line-height: 1.4;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 60px 0 70px;
    border-radius: 0 0 50px 50px;
}

.hero-content {
    text-align: center;
}

.water-icon {
    font-size: 90px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin: 20px 0 20px;
}

.hero-title span {
    background: linear-gradient(120deg, #004466, #0088aa);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.slogan-rotator {
    min-height: 90px;
    margin: 20px 0 30px;
}

.slogan-text {
    font-size: 28px;
    font-weight: 700;
    background: white;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: #0077aa;
}

.features-badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 40px;
}

.feature-card {
    background: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.2s;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: #f0faff;
}

.order-block {
    background: white;
    padding: 32px 24px;
    border-radius: 48px;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.price-min {
    font-size: 26px;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 24px;
}

.btn {
    border: none;
    font-weight: 700;
    font-size: 26px;
    padding: 18px 40px;
    border-radius: 60px;
    transition: 0.2s;
    width: 100%;
    max-width: 320px;
    cursor: pointer;
}

.btn-primary {
    background: #2ecc71;
    color: white;
}

.btn-primary:hover {
    background: #27ae60;
    transform: scale(1.02);
}

.phone-link-block {
    margin-top: 10px;
}

.phone-link {
    font-size: 34px;
    font-weight: 800;
    color: #0077be;
    text-decoration: none;
    background: #eef5fc;
    padding: 12px 24px;
    border-radius: 60px;
    display: inline-block;
}

.phone-hint {
    display: block;
    font-size: 14px;
    color: #4a6f88;
    margin-top: 8px;
}

.promo-timer {
    padding: 60px 0;
    background: transparent;
}

.timer-card {
    background: white;
    border-radius: 48px;
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.timer-label {
    font-size: 22px;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 15px;
}

.timer-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.timer-sub {
    font-size: 18px;
    color: #2c5a74;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.time-block {
    background: #0f3b4f;
    color: white;
    padding: 15px 20px;
    border-radius: 28px;
    min-width: 100px;
}

.time-block span {
    font-size: 42px;
    font-weight: 800;
    display: block;
}

.time-block small {
    font-size: 14px;
}

.discount-note {
    font-size: 16px;
    color: #1f6392;
    margin-top: 15px;
}

.cargo {
    padding: 70px 0;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(2px);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-title span {
    color: #0088cc;
}

.cargo-desc {
    font-size: 20px;
    color: #1f4e6e;
    margin-bottom: 40px;
}

.city-routes {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin: 50px 0;
}

.route-group {
    flex: 1;
    background: #114b66;
    border-radius: 40px;
    padding: 30px;
    color: white;
}

.route-group h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.route-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.route-item {
    font-size: 20px;
    font-weight: 600;
    background: #f4c542;
    color: #1f3b45;
    padding: 12px 20px;
    border-radius: 60px;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
}

.route-item:hover {
    transform: translateY(-3px);
    background: #ffb82e;
}

.cargo-contact {
    margin-top: 30px;
}

.btn-secondary {
    background: #f39c12;
    font-size: 24px;
    color: white;
    margin: 0 auto;
}

.btn-secondary:hover {
    background: #e67e22;
}

.footer {
    background: #1e2f3a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-icon {
    background: #2c4b60;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: 0.2s;
    font-size: 28px;
}

.footer-icon:hover {
    transform: scale(1.1);
    background: #0088cc;
}

.social-logo {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}

.footer-phone {
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0;
    color: #ffb347;
    text-decoration: none;
    display: inline-block;
}

.small {
    font-size: 14px;
    opacity: 0.7;
}

.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 40px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.modal-option {
    padding: 14px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.telegram {
    background: #2ecc71;
    color: white;
}

.vk {
    background: #4680b2;
    color: white;
}

.phone {
    background: #0077be;
    color: white;
}

.modal-logo {
    width: 22px;
    height: 22px;
    vertical-align: middle;
}

.city-price {
    font-size: 22px;
    margin-top: 20px;
    font-weight: 700;
    color: #e67e22;
}

.support-circle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    cursor: pointer;
    display: none;
}

.support-icon {
    background: #2ecc71;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.support-bubble {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    max-width: 260px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #1f3b45;
}

@media (max-width: 800px) {
    .hero-title { font-size: 36px; }
    .slogan-text { font-size: 20px; }
    .phone-link { font-size: 24px; }
    .time-block span { font-size: 28px; }
    .footer-icon { width: 45px; height: 45px; font-size: 22px; }
    .social-logo { width: 24px; height: 24px; }
    .section-title { font-size: 32px; }
    .route-item { font-size: 16px; }
}
/* Новый блок с карточками */
.info-cards {
    padding: 70px 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
}

.info-card {
    background: white;
    border-radius: 32px;
    padding: 30px 25px;
    width: 280px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #004466;
}

.info-card p {
    font-size: 16px;
    color: #2c5a74;
    line-height: 1.4;
}

.info-text-bottom {
    max-width: 900px;
    margin: 30px auto 0;
    background: white;
    padding: 25px 30px;
    border-radius: 40px;
    font-size: 18px;
    line-height: 1.5;
    color: #1a4b6e;
    text-align: center;
}

@media (max-width: 700px) {
    .info-card { width: 100%; }
    .info-text-bottom { font-size: 16px; }
}
/* FAQ (частые вопросы) */
.faq {
    padding: 70px 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.2s;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    padding: 20px 25px;
    cursor: pointer;
    background: #f0f9ff;
    border-bottom: 1px solid #d4e4f0;
}

.faq-question:hover {
    background: #e3f0fa;
}

.faq-answer {
    font-size: 17px;
    line-height: 1.45;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.2s ease;
    background: white;
    color: #1f5a7a;
}

.faq-item.open .faq-answer {
    padding: 20px 25px;
    max-height: 250px;
}
