/* =========================
   RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    background: url("images/hero-elka-vyvoz.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    max-width: 680px;
    padding: 40px;
    margin-left: 8%;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.25);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-phone {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-phone a {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-phone a:hover {
    color: #27ae60;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.hero-points li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    padding-left: 28px;
    position: relative;
}

.hero-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #000;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
    border: 2px solid transparent;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
    background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
}

/* =========================
   HOW IT WORKS
========================= */
.how {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

.how-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.how-text {
    flex: 1;
}

.how-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #222;
    font-weight: 700;
}

.how-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.how-warning {
    background: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    font-size: 1rem;
    color: #5d4037;
}

.how-warning::before {
    content: "⚠️ ";
    margin-right: 8px;
}

.how-text h3 {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: #222;
}

.how-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-steps li {
    position: relative;
    padding: 12px 0 12px 40px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.how-steps li:hover {
    transform: translateX(5px);
}

.how-steps li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.3rem;
}

.how-image {
    flex: 1;
}

.how-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.how-image img:hover {
    transform: scale(1.02);
}

/* =========================
   PRICES
========================= */
.prices {
    background: #ffffff;
    padding: 100px 0;
}

.prices-inner {
    text-align: center;
}

.prices h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #222;
    font-weight: 700;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #2ecc71;
}

.price-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    margin: 20px 0;
    color: #2ecc71;
    position: relative;
    display: inline-block;
}

.price::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    border-radius: 2px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.price-card ul li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-card ul li:last-child {
    border-bottom: none;
}

/* VIP highlight */
.price-card.vip {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #2ecc71;
    position: relative;
}

.price-card.vip::before {
    content: "ПОПУЛЯРНО";
    position: absolute;
    top: 15px;
    right: -35px;
    background: #2ecc71;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

/* =========================
   ORDER FORM
========================= */
.order {
    background: linear-gradient(
        135deg,
        #1f6b3a 0%,
        #2e8b57 50%,
        #3aa76d 100%
    );
}

#orderForm input,
#orderForm select,
#orderForm textarea {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 1rem;
}

#orderForm input:focus,
#orderForm select:focus,
#orderForm textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.6);
}

.order-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.order h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.order-phone {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #ffffff;
}

.order-phone a {
    color: #d6ffcf;
    text-decoration: none;
    font-weight: 800;
}

.order-phone a:hover {
    color: #27ae60;
    text-decoration: underline;
}

#orderForm {
    background: rgba(255, 255, 255, 0.15);
    padding: 36px 32px;
    border-radius: 18px;
    box-shadow: none;
    backdrop-filter: blur(6px);
}

#orderForm label {
    display: block;
    margin-bottom: 25px;
    color: #333;
    font-weight: 500;
}

#orderForm input,
#orderForm select,
#orderForm textarea {
    width: 100%;
    padding: 15px;
    margin-top: 8px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

#orderForm input:focus,
#orderForm select:focus,
#orderForm textarea:focus {
    outline: none;
    border-color: #2ecc71;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.order-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #0b2e1a;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
}

.order-note {
    margin-top: 30px;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.order-test {
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #f0fff5;
    text-align: center;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.95rem;
}

.footer a {
    color: #2ecc71;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #27ae60;
    text-decoration: underline;
}

.footer p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer .sponsor {
    margin-top: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.footer .sponsor a {
    color: #4ddc8c;
    text-decoration: none;
    font-weight: 500;
}

.footer .sponsor a:hover {
    text-decoration: underline;
}

/* =========================
   MOBILE ADAPTIVE
========================= */
@media (max-width: 992px) {
    .hero-content {
        margin: 0 auto;
        padding: 30px;
    }
    
    .how-inner {
        flex-direction: column;
        gap: 40px;
    }
    
    .price-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    
    .hero-content {
        padding: 25px 20px;
        margin: 20px;
        backdrop-filter: blur(5px);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-points li {
        font-size: 1rem;
        text-align: left;
    }
    
    .how {
        padding: 60px 0;
    }
    
    .how-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .how-text h3 {
        text-align: center;
    }
    
    .how-steps li {
        padding: 15px;
        text-align: left;
    }
    
    .how-steps li::before {
        position: static;
        margin-right: 10px;
    }
    
    .prices {
        padding: 60px 0;
    }
    
    .prices h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .price-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .price-card {
        padding: 25px 20px;
    }
    
    .order {
        padding: 60px 0;
    }
    
    .order h2 {
        font-size: 2rem;
    }
    
    #orderForm {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-btn {
        padding: 16px 30px;
        width: 100%;
        text-align: center;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .order-phone {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 30px 15px;
        font-size: 0.9rem;
    }
}