:root {
    --primary: #FF9F1C; /* Warm Orange */
    --primary-dark: #E68A00;
    --accent: #2EC4B6; /* Trustworthy Teal */
    --dark: #2d3436;
    --gray: #f7f9fc;
    --white: #ffffff;
    --text: #2d3436;
}

body {
    -webkit-user-select: none; user-select: none;
    font-family: 'Montserrat', sans-serif;
    color: var(--text); background: var(--white);
    margin: 0; padding: 0; overflow-x: hidden; line-height: 1.5;
}
* { box-sizing: border-box; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }
.section { padding: 60px 0; }
.bg-gray { background: var(--gray); }
.bg-white { background: var(--white); }

/* Images Helper */
.main-img { 
    width: 100%; 
    height: auto; 
    object-fit: contain; 
    display: block; 
    margin: 0 auto;
    max-height: 450px; 
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

/* Header */
.header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-wrap { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 20px; color: var(--dark); letter-spacing: 1px; }
.logo span { color: var(--primary); }
.btn-small { background: var(--accent); color: white; padding: 8px 18px; border-radius: 20px; text-decoration: none; font-weight: 700; font-size: 13px; }

/* Hero (Mobile First Layout) */
.hero { background: radial-gradient(circle at top, #fff8e7 0%, #fff 100%); padding: 40px 0; overflow: hidden; }
.hero-container { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }

/* 1. Text Top */
.hero-text-top { order: 1; }
.badge-top { background: var(--primary); color: white; padding: 5px 15px; font-weight: 800; font-size: 12px; border-radius: 20px; display: inline-block; margin-bottom: 15px; }
.hero h1 { font-size: 32px; line-height: 1.1; margin-bottom: 10px; font-weight: 900; color: var(--dark); }
.hero h1 span { color: var(--primary); }
.subtitle { font-size: 16px; color: #666; max-width: 500px; margin: 0 auto; }

/* 2. Image Middle */
.hero-image-box { order: 2; position: relative; width: 100%; max-width: 500px; margin: 10px 0; }
.float-badge { position: absolute; bottom: 20px; right: 0; background: var(--white); padding: 8px 15px; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); font-weight: 700; font-size: 13px; color: var(--accent); border: 1px solid var(--accent); }

/* 3. Action Bottom */
.hero-action { order: 3; width: 100%; display: flex; flex-direction: column; align-items: center; }
.features-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.f-item { background: rgba(255,255,255,0.8); border: 1px solid #ddd; color: #555; padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; }

.price-block { margin-bottom: 20px; text-align: center; }
.price-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 5px; }
.old-price { text-decoration: line-through; color: #999; font-size: 18px; }
.discount { background: #ff4757; color: white; padding: 2px 6px; border-radius: 4px; font-size: 12px; font-weight: 700; }
.new-price { color: var(--primary); font-size: 40px; font-weight: 900; }

/* Buttons */
.btn-main {
    display: flex; justify-content: center; align-items: center; text-align: center;
    background: var(--primary); color: white; padding: 18px 40px; width: 100%; max-width: 450px; margin: 0 auto;
    border-radius: 50px; font-size: 18px; font-weight: 800; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 159, 28, 0.4); transition: transform 0.2s, background 0.3s;
}
.btn-main:hover { background: var(--primary-dark); transform: translateY(-3px); }
.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(255, 159, 28, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 159, 28, 0); } }
.timer-text { margin-top: 15px; font-size: 14px; color: #777; font-weight: 600; }

/* Sections Title */
.section-title { text-align: center; font-size: 26px; margin-bottom: 40px; text-transform: uppercase; font-weight: 900; color: var(--dark); position: relative; }

/* Ladder Layout (Драбинка) */
.ladder-section { background: white; }
.ladder-item { 
    display: flex; 
    flex-direction: column; /* Mobile: Image top, Text bottom */
    gap: 20px; 
    margin-bottom: 60px; 
    align-items: center; 
}
.ladder-item:last-child { margin-bottom: 0; }

.l-img img { 
    width: 100%; 
    max-width: 500px; 
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    display: block;
}
.l-text { text-align: center; max-width: 500px; }
.l-text h3 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 10px; text-transform: uppercase; }
.l-text p { font-size: 15px; color: #666; line-height: 1.6; }

/* Specs */
.specs-box { display: flex; flex-direction: column; align-items: center; gap: 30px; background: white; padding: 30px; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.specs-img { border-radius: 15px; width: 100%; max-width: 400px; }
.specs-list { padding: 0; margin: 0; list-style: none; width: 100%; }
.specs-list li { padding: 12px 0; border-bottom: 1px solid #eee; font-size: 15px; color: #555; display: flex; justify-content: space-between; }
.specs-list li:last-child { border: none; }
.specs-list strong { color: var(--dark); }

/* Google Reviews */
.google-review-header { background: #f8f9fa; border-radius: 15px; padding: 20px; margin-bottom: 25px; border: 1px solid #e9ecef; }
.g-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.g-logo { font-family: sans-serif; font-weight: bold; font-size: 18px; letter-spacing: -1px; color: #555; }
.g-shopping { color: #777; font-weight: 400; margin-left: 5px; }
.g-rating { color: #333; font-weight: bold; font-size: 20px; }
.g-verified { color: var(--accent); font-size: 11px; margin-bottom: 15px; text-transform: uppercase; font-weight: 600; }
.g-progress-wrap { background: #e9ecef; height: 6px; border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.g-progress-bar { background: var(--accent); height: 100%; }
.g-stats { display: flex; justify-content: space-between; font-size: 12px; color: #888; }
.g-green { color: var(--accent); font-weight: bold; }

.btn-write-review { display: block; width: 100%; background: transparent; border: 1px solid var(--accent); color: var(--accent); padding: 12px; border-radius: 30px; font-weight: 700; margin-bottom: 30px; cursor: pointer; transition: 0.2s; }
.btn-write-review:hover { background: var(--accent); color: white; }

.reviews-grid-scroll { display: grid; gap: 15px; grid-template-columns: 1fr; max-height: 600px; overflow-y: auto; }
.review-item { background: white; padding: 20px; border-radius: 12px; border: 1px solid #eee; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.ri-head { display: flex; justify-content: space-between; margin-bottom: 10px; align-items: center; }
.ri-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.ri-stars { color: #ffc107; font-size: 13px; }
.ri-text { color: #555; font-size: 13px; line-height: 1.5; margin-bottom: 10px; }
.ri-date { font-size: 11px; color: #999; text-align: right; }

/* Order Form */
.order-section { background: #2d3436; padding: 60px 0; }
.form-wrapper { background: white; padding: 30px 20px; border-radius: 20px; max-width: 500px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.3); border-top: 5px solid var(--primary); }
.form-wrapper h2 { text-align: center; font-size: 22px; margin-bottom: 5px; color: var(--dark); }
.form-wrapper > p { text-align: center; font-size: 14px; color: #666; margin-bottom: 20px; }
.product-preview { display: flex; align-items: center; gap: 15px; background: var(--gray); padding: 10px; border-radius: 10px; margin-bottom: 20px; }
.product-preview img { width: 60px; height: 60px; object-fit: contain; }
.pp-info h4 { font-size: 14px; margin-bottom: 3px; font-weight: 700; }
.pp-info p { font-size: 12px; color: #666; margin: 0; }

.input-group { margin-bottom: 15px; }
.input-group label { display: block; margin-bottom: 6px; font-weight: 700; font-size: 12px; text-transform: uppercase; color: #555; }
.input-group input { width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 8px; font-size: 16px; background: #fff; -webkit-appearance: none; }
.price-final { font-size: 18px; text-align: center; font-weight: 700; margin: 25px 0; border-top: 1px solid #eee; padding-top: 20px; }
.price-final span { color: var(--primary); font-size: 26px; }
.spam-warning { display: none; background: #e8f5e9; color: #2e7d32; padding: 10px; border-radius: 5px; text-align: center; margin-bottom: 15px; font-size: 13px; font-weight: 600; }
.secure-text { text-align: center; margin-top: 15px; font-size: 11px; color: #999; }

/* Footer */
footer { background: #222; color: #666; text-align: center; padding: 30px 0; font-size: 12px; }
footer a { color: #888; }

/* --- PC ADAPTATION (DESKTOP) --- */
@media (min-width: 768px) {
    .hero { padding: 80px 0; }
    .hero-container { 
        display: grid; 
        grid-template-columns: 1fr 1fr; /* 2 колонки */
        align-items: center; 
        gap: 40px; 
        text-align: left; /* Текст зліва */
    }

    /* 1. Text Left */
    .hero-text-top { order: 1; text-align: left; }
    .subtitle { margin: 0; margin-bottom: 25px; }

    /* 2. Image Right */
    .hero-image-box { order: 2; margin: 0; }

    /* 3. Price & Button - move to Left under text */
    .hero-action { 
        order: 3; 
        align-items: flex-start; /* Вирівнювання по лівому краю */
        grid-column: 1 / 2; /* Займає першу колонку */
        margin-top: -100px; /* Підтягуємо до тексту */
    }
    .features-row { justify-content: flex-start; }
    .btn-main { margin: 0; display: inline-flex; }
    
    /* Ladder Layout (PC: Image-Text alternate) */
    .ladder-item { 
        flex-direction: row; 
        justify-content: space-between; 
        gap: 60px;
    }
    .ladder-item:nth-child(even) { 
        flex-direction: row-reverse; /* Дзеркальне відображення для парних */
    }
    .l-text { text-align: left; }
    
    /* Specs */
    .specs-box { flex-direction: row; align-items: center; padding: 40px; }
    .specs-img-wrap { flex: 1; }
    .specs-list { flex: 1; }
    
    /* Reviews Grid */
    .reviews-grid-scroll { grid-template-columns: repeat(3, 1fr); max-height: none; overflow: visible; }
}