:root {
    --green: #4caf50; /* Fresh Green */
    --green-dark: #2e7d32;
    --dark: #212121; /* Dark Grey for Tech feel */
    --gray: #f5f5f5;
    --white: #ffffff;
    --text: #333;
}

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-dark { background: var(--dark); color: var(--white); }
.bg-black { background: #111; color: var(--white); }
.bg-gray { background: var(--gray); }
.white { color: var(--white) !important; }

/* --- NO CROP CLASS (Показує фото повністю) --- */
.no-crop {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* 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.1); }
.header-wrap { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 900; font-size: 22px; color: var(--dark); }
.logo span { color: var(--green); }
.btn-small { background: var(--green); color: white; padding: 8px 20px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 13px; }

/* Hero */
.hero { background: radial-gradient(circle at center, #f1f8e9 0%, #ffffff 100%); padding: 50px 0; overflow: hidden; }
.hero-container { display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; }
.badge-top { background: var(--dark); 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: 15px; font-weight: 900; color: var(--dark); }
.hero h1 span { color: var(--green); }
.subtitle { font-size: 16px; margin-bottom: 25px; color: #555; max-width: 600px; }

.features-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 25px; }
.f-item { background: var(--white); border: 1px solid #ddd; color: var(--dark); padding: 6px 12px; border-radius: 4px; font-size: 13px; font-weight: 700; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }

.price-block { margin-bottom: 25px; }
.old-price { text-decoration: line-through; color: #999; font-size: 18px; margin-right: 15px; }
.new-price { color: var(--green-dark); font-size: 42px; font-weight: 900; }

.hero-image-container { position: relative; width: 100%; max-width: 500px; }
.main-img { filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); }

/* Buttons */
.btn-main {
    display: flex; justify-content: center; align-items: center; text-align: center;
    background: var(--green); color: white; padding: 18px 30px; 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(76, 175, 80, 0.4); transition: transform 0.2s, background 0.3s;
}
.btn-main:hover { background: var(--green-dark); transform: translateY(-3px); }
.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(76, 175, 80, 0); } 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); } }
.timer-text { margin-top: 15px; font-size: 14px; color: #777; font-weight: 600; }

/* Sections */
.section-title { text-align: center; font-size: 26px; margin-bottom: 30px; text-transform: uppercase; font-weight: 900; color: var(--dark); }
.section-desc { text-align: center; max-width: 700px; margin: -20px auto 40px; color: #666; font-size: 15px; }
.section-title.white { color: var(--white); }

/* Benefits */
.comparison-box { margin-bottom: 40px; text-align: center; }
.shadow-img { border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); max-width: 600px; }

.benefits-grid { display: grid; gap: 15px; grid-template-columns: 1fr; }
.b-card { background: white; padding: 25px; border-radius: 10px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-top: 4px solid var(--green); }
.b-icon { font-size: 35px; margin-bottom: 10px; }
.b-card h3 { font-size: 18px; margin-bottom: 5px; font-weight: 700; color: var(--dark); }
.b-card p { font-size: 14px; color: #555; }

/* Tech */
.tech-layout { display: flex; flex-direction: column; gap: 30px; align-items: center; }
.tech-img { width: 100%; max-width: 500px; }
.tech-img img { border-radius: 10px; }
.tech-info h3 { color: var(--green); font-size: 22px; margin-bottom: 20px; font-weight: 800; text-align: center; }
.check-list li { list-style: none; position: relative; padding-left: 25px; margin-bottom: 15px; color: #ccc; font-size: 15px; }
.check-list li:before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: bold; }
.check-list strong { color: white; }

/* Use Case */
.use-case { text-align: center; }
.big-img { border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); max-width: 800px; }
.image-caption { margin-top: 15px; font-weight: 600; color: #555; font-size: 14px; }

/* Table */
.table-img-wrap img { border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); max-width: 800px; }

/* Google Reviews */
.google-review-header { background: #1a1a1a; border-radius: 15px; padding: 20px; margin-bottom: 25px; border: 1px solid #333; }
.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; }
.g-shopping { color: #fff; font-weight: 400; margin-left: 5px; }
.g-rating { color: #fff; font-weight: bold; font-size: 20px; }
.g-verified { color: #ccc; font-size: 11px; margin-bottom: 15px; text-transform: uppercase; font-weight: 600; }
.g-progress-wrap { background: #333; height: 6px; border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.g-progress-bar { background: #4caf50; height: 100%; }
.g-stats { display: flex; justify-content: space-between; font-size: 12px; color: #888; }
.g-green { color: #4caf50; font-weight: bold; }

.btn-write-review { display: block; width: 100%; background: transparent; border: 1px solid var(--green); color: var(--green); padding: 12px; border-radius: 30px; font-weight: 700; margin-bottom: 30px; cursor: pointer; transition: 0.2s; }
.btn-write-review:hover { background: var(--green); color: white; }

.reviews-grid-scroll { display: grid; gap: 15px; grid-template-columns: 1fr; max-height: 600px; overflow-y: auto; }
.review-item { background: #1a1a1a; padding: 20px; border-radius: 12px; border: 1px solid #333; }
.ri-head { display: flex; justify-content: space-between; margin-bottom: 10px; align-items: center; }
.ri-name { color: white; font-weight: 700; font-size: 14px; }
.ri-stars { color: #ffc107; font-size: 13px; }
.ri-text { color: #ccc; font-size: 13px; line-height: 1.5; margin-bottom: 10px; }
.ri-date { font-size: 11px; color: #666; text-align: right; }

/* Order Form */
.order-section { background: var(--dark); padding: 60px 0; }
.form-wrapper { background: white; padding: 30px 20px; border-radius: 15px; max-width: 500px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.2); border-top: 5px solid var(--green); }
.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: #f5f5f5; padding: 10px; border-radius: 8px; margin-bottom: 20px; }
.product-preview img { width: 60px; height: 60px; object-fit: contain; border-radius: 5px; mix-blend-mode: multiply; }
.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: 6px; 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; color: var(--dark); }
.price-final span { color: var(--green-dark); font-size: 26px; }
.bags-note { font-size: 12px; color: #d32f2f; background: #ffebee; padding: 10px; border-radius: 5px; margin: 15px 0; line-height: 1.4; border: 1px solid #ffcdd2; }
.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: #111; color: #555; text-align: center; padding: 30px 0; font-size: 12px; }
footer a { color: #777; }

/* PC ADAPTATION */
@media (min-width: 768px) {
    .hero { padding: 80px 0; }
    .hero-container { flex-direction: row; text-align: left; justify-content: space-between; gap: 50px; }
    .hero-content { flex: 1; align-items: flex-start; text-align: left; }
    .hero h1 { font-size: 46px; }
    .hero-image-container { flex: 1; max-width: 600px; }
    .btn-main { margin: 0; display: inline-flex; }
    .features-row { justify-content: flex-start; }
    
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    
    .tech-layout { flex-direction: row; align-items: center; }
    .tech-info { text-align: left; padding-left: 30px; }
    .tech-info h3 { text-align: left; }
    
    .reviews-grid-scroll { grid-template-columns: repeat(3, 1fr); max-height: none; overflow: visible; }
}