/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1e2a2e;
    background-color: #fefcf5;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
h1 { font-size: 3.5rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; text-align: center; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(29, 78, 54, 0.25);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(29, 78, 54, 0.35);
}
.btn-outline {
    background: transparent;
    border: 2px solid #2d6a4f;
    color: #2d6a4f;
}
.btn-outline:hover {
    background: #2d6a4f;
    color: white;
}
/* HEADER */
.header {
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}
.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #1b4332;
}
.logo a span { color: #d4a373; }
.logo small { display: block; font-size: 0.75rem; color: #5a6e6c; }
.header-contacts { display: flex; gap: 24px; align-items: center; }
.phone { font-weight: 600; text-decoration: none; color: #1e2a2e; font-size: 1.1rem; }
.burger { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.burger span { width: 28px; height: 2px; background: #1b4332; transition: 0.2s; }
.nav { background: #f5f0e6; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.nav.active { max-height: 300px; }
.nav ul { display: flex; justify-content: center; gap: 32px; list-style: none; padding: 12px 0; flex-wrap: wrap; }
.nav a { text-decoration: none; color: #1e2a2e; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: #2d6a4f; }
@media (max-width: 768px) {
    .header-contacts { display: none; }
    .burger { display: flex; }
    .nav ul { flex-direction: column; align-items: center; gap: 16px; }
}
/* HERO */
.hero {
    background: linear-gradient(135deg, #e9f5e9 0%, #d0e6d0 100%);
    padding: 80px 0;
}
.hero-content { max-width: 700px; }
.hero-subtitle { font-size: 1.4rem; color: #2d6a4f; margin-bottom: 24px; }
.hero-features { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-features span { background: white; padding: 6px 16px; border-radius: 40px; font-size: 0.9rem; font-weight: 500; }
.promo-badge { background: #ffedd5; border-left: 6px solid #f59e0b; padding: 12px 20px; border-radius: 16px; margin-bottom: 28px; font-size: 1.2rem; }
.hero-meta { margin-top: 28px; font-size: 0.9rem; color: #446b64; }
/* SERVICES */
.services { padding: 80px 0; background: white; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}
.service-card {
    background: #fefcf5;
    border-radius: 24px;
    padding: 28px 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e9e0d0;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1); }
.service-icon { font-size: 3rem; margin-bottom: 16px; }
.price { display: inline-block; margin-top: 16px; font-weight: 700; color: #2d6a4f; font-size: 1.2rem; }
/* ADVANTAGES */
.advantages { background: #1b4332; color: white; padding: 70px 0; }
.advantages h2 { color: white; }
.advantages-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; text-align: center; }
.advantage { flex: 1; min-width: 180px; }
.adv-number { font-size: 3rem; font-weight: 800; color: #d4a373; }
.adv-icon { font-size: 3rem; }
/* REVIEWS */
.reviews { padding: 80px 0; background: #fefcf5; }
.reviews-rating { text-align: center; font-size: 1.8rem; margin-bottom: 40px; }
.rating-star { color: #fbbf24; font-size: 2.5rem; }
.rating-value { font-weight: 800; margin-left: 8px; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}
.review-card {
    background: white;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e9e0d0;
}
.review-header { display: flex; justify-content: space-between; margin-bottom: 16px; font-weight: 600; }
.reviewer-name { color: #1b4332; }
.review-rating { color: #fbbf24; }
.review-text { font-style: italic; color: #2d3748; line-height: 1.5; }
.reviews-link { text-align: center; margin-top: 20px; }
.reviews-link a { color: #2d6a4f; font-weight: 600; text-decoration: none; border-bottom: 2px solid #d4a373; }
/* GALLERY */
.gallery { padding: 80px 0; background: #fefcf5; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s;
}
.gallery-img:hover { transform: scale(1.02); }
/* PROMO */
.promo-section { padding: 40px 0 80px; }
.promo-card {
    background: linear-gradient(115deg, #2d6a4f 0%, #1b4332 100%);
    border-radius: 48px;
    padding: 48px 40px;
    color: white;
    text-align: center;
}
.promo-card h2 { color: white; margin-bottom: 1rem; }
.promo-label { background: #fbbf24; display: inline-block; padding: 6px 20px; border-radius: 40px; font-weight: 700; color: #1e2a2e; margin-bottom: 20px; }
.promo-code {
    background: #081c15;
    padding: 20px;
    border-radius: 40px;
    display: inline-flex;
    gap: 20px;
    align-items: center;
    margin: 24px 0;
    flex-wrap: wrap;
    justify-content: center;
}
.promo-code span { font-family: monospace; font-size: 1.6rem; letter-spacing: 2px; font-weight: 700; }
.copy-btn { background: #fbbf24; border: none; padding: 8px 20px; border-radius: 40px; font-weight: 600; cursor: pointer; transition: 0.2s; }
.copy-btn:hover { background: #f59e0b; }
/* ORDER */
.order { padding: 60px 0 100px; background: #f0ebe0; }
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.order-info ol { margin: 24px 0 24px 24px; line-height: 1.8; }
.contacts-block a { display: block; font-size: 1.4rem; font-weight: 700; color: #1b4332; text-decoration: none; margin: 8px 0; }
.work-time { font-size: 0.9rem; color: #5a6e6c; margin-top: 8px; }
.promo-step { background: #e9f5e9; padding: 16px; border-radius: 20px; text-align: center; margin-top: 20px; }
.order-image img { border-radius: 28px; box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
/* FOOTER */
.footer { background: #081c15; color: #cfd8d5; padding: 48px 0 24px; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.footer a { color: #cfd8d5; text-decoration: none; display: block; margin-bottom: 8px; }
.footer a:hover { color: #fbbf24; }
.footer-logo div { font-size: 1.8rem; font-weight: 700; color: #fbbf24; }
/* FIXED PHONE */
.fixed-phone { position: fixed; bottom: 24px; right: 24px; background: #2d6a4f; border-radius: 60px; padding: 12px 18px; box-shadow: 0 4px 16px rgba(0,0,0,0.2); z-index: 200; transition: transform 0.2s; }
.fixed-phone:hover { transform: scale(1.05); }
.fixed-phone a { font-size: 1.8rem; text-decoration: none; color: white; }
/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
/* UTILITIES */
html { scroll-behavior: smooth; }
img, .gallery-img, .order-image img { will-change: transform; }