:root {
    --primary: #fecb00; /* Жовтий з товару */
    --primary-dark: #e5b600;
    --dark: #1a1a1a;
    --gray: #f4f4f4;
    --text: #333;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: var(--dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    color: var(--white);
    font-weight: 900;
    font-size: 20px;
}
.logo span {
    color: var(--primary);
}
.btn-small {
    background: var(--primary);
    color: var(--dark);
    padding: 8px 15px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
}

/* Buttons */
.btn-main {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(254, 203, 0, 0.4);
    transition: 0.3s;
    width: 100%; /* Mobile full width */
    text-align: center;
}
.btn-main:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Pulse Animation */
.pulse-btn {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(254, 203, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(254, 203, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(254, 203, 0, 0); }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero-bg.jpg'); /* Фон */
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}
.hero h1 {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.2;
}
.hero h1 span {
    color: var(--primary);
}
.subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}
.hero-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.hf-item {
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}
.price-block {
    margin-bottom: 25px;
}
.old-price {
    text-decoration: line-through;
    color: #ccc;
    font-size: 18px;
    margin-right: 10px;
}
.new-price {
    color: var(--primary);
    font-size: 32px;
    font-weight: 900;
}
.timer-text {
    margin-top: 15px;
    font-size: 14px;
    color: #ddd;
}
.hero-img img {
    max-width: 100%;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Sections General */
.section {
    padding: 50px 0;
}
.section-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 800;
}
.bg-gray { background-color: var(--gray); }
.bg-dark { background-color: var(--dark); }
.white { color: var(--white); }

/* Pain Points */
.pain-grid {
    display: grid;
    gap: 20px;
}
.pain-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #ff4444;
}
.pain-item.success {
    border-left: 5px solid #00c851;
    background: #e8f5e9;
}
.pain-item h3 { margin-bottom: 10px; }

/* Features & How it works */
.two-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}
.col-img img {
    width: 100%;
    border-radius: 10px;
}
.benefits-list li {
    margin-bottom: 15px;
    list-style: none;
    position: relative;
    padding-left: 25px;
}
.benefits-list li:before {
    content: '✓';
    color: var(--primary-dark);
    font-weight: bold;
    position: absolute;
    left: 0;
}
.feature-box {
    background: var(--white);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

/* Reviews */
.reviews-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr; /* Mobile 1 col */
}
.review-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}
.r-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.avatar {
    width: 40px;
    height: 40px;
    background: var(--dark);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.r-name { font-weight: bold; font-size: 14px; flex-grow: 1;}
.stars { color: #ffc107; font-size: 12px; }
.r-text { font-size: 14px; font-style: italic; color: #555; }
.r-date { font-size: 12px; color: #999; display: block; margin-top: 10px; text-align: right; }

/* Order Form */
.order-section {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: var(--white);
    padding: 60px 0;
}
.form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    color: var(--dark);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    border: 4px solid var(--primary);
}
.form-wrapper h2 { margin-bottom: 10px; }
.input-group {
    margin-bottom: 15px;
    text-align: left;
}
.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}
.price-final {
    font-size: 20px;
    margin: 20px 0;
    font-weight: bold;
}
.price-final span { color: #d32f2f; font-size: 24px; }
.secure-text {
    margin-top: 15px;
    font-size: 12px;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Footer */
footer {
    background: #111;
    color: #777;
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
}
footer a { color: #777; }

/* PC Styles (Desktop) */
@media (min-width: 768px) {
    .hero h1 { font-size: 42px; }
    .hero-content { max-width: 600px; margin: 0 auto; }
    .btn-main { width: auto; min-width: 300px; }
    
    .pain-grid { grid-template-columns: repeat(3, 1fr); }
    
    .two-col { flex-direction: row; }
    .two-col.reverse { flex-direction: row-reverse; }
    .col-img, .col-text { flex: 1; }
    
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}