@font-face {
    font-family: "Playfair Display";
    src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
    font-display: swap;
}
:root {
    --bg-light: #FDFBF7;
    --bg-card: #FFFFFF;
    --text-dark: #2C3E2F;
    --text-muted: #5A6E5D;
    --primary: #7BAE7F;
    --primary-dark: #5E8F62;
    --accent: #C7E3C1;
    --gradient-hero: linear-gradient(135deg, #E9F5E8 0%, #FDFBF7 100%);
    --shadow-sm: 0 8px 20px rgba(0,0,0,0.02), 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 12px 28px rgba(0,0,0,0.05);
    --radius: 20px;
    --radius-sm: 12px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}
.footer a {
    color: white;
    text-decoration: none;
}
.contacts__info a {
    color: var(--primary-dark);
    text-decoration: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1 0 auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, .section-title {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0.75rem auto 0;
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: transparent;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    font-size: 1rem;
}

.btn--primary {
    background: linear-gradient(105deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 10px rgba(123,174,127,0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123,174,127,0.4);
}

.btn--full {
    width: 100%;
    text-align: center;
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

.btn--small {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

/* Header */
.header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 24px;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.header__notice {
    background: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Hero with form */
.hero {
    background: var(--gradient-hero);
    padding: 3rem 0 4rem;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.hero__badge {
    display: inline-block;
    background: #FFE4C4;
    color: #C45A2C;
    padding: 0.3rem 1rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero__price {
    margin: 1.2rem 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-right: 0.8rem;
}

.savings {
    background: #E6F4EA;
    padding: 0.2rem 0.8rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero__features {
    list-style: none;
    margin: 1rem 0;
}

.hero__features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero__trust {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.hero__form .form-card {
    background: white;
    padding: 1.8rem;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.form-card h3 {
    margin-bottom: 0.5rem;
}

.form-note {
    font-size: 0.7rem;
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
}

/* Achievements */
.achievements {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.achievements__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.achievement__number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Product detail */
.product-detail {
    padding: 4rem 0;
}

.product-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-list i {
    color: var(--primary);
    width: 1.5rem;
}

.product-detail__image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* Advantages + mission/about/goal */
.advantages {
    background: white;
    padding: 4rem 0;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.advantage-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.advantage-card h3 {
    margin-bottom: 0.8rem;
}

/* How it works */
.how-it-works {
    padding: 4rem 0;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
}

.step img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

/* Technical specs with three columns */
.specs {
    padding: 4rem 0;
}

.specs__grid--three {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 2rem;
    align-items: center;
}

.specs__col ul {
    list-style: none;
}

.specs__col li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.specs__col li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.specs__image-col img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* Gallery */
.gallery {
    background: white;
    padding: 4rem 0;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery__grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 1.8rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.testimonial__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(120deg, #E9F5E8, #FDFBF7);
    text-align: center;
    padding: 3rem;
    border-radius: var(--radius);
    max-width: 800px;
    margin: 2rem auto;
}

.final-cta__price {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--primary-dark);
}

/* FAQ */
.faq {
    padding: 4rem 0;
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
}

.faq-item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

/* Contacts + Map */
.contacts {
    background: white;
    padding: 4rem 0;
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contacts__info i {
    width: 1.8rem;
    color: var(--primary);
}

.contacts__map {
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
}

/* Footer */
.footer {
    background: #1E2A20;
    color: #D9E0D4;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__logo a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.footer__logo img {
    width: 32px;
    height: 32px;
}

.footer__links a {
    display: block;
    color: #D9E0D4;
    text-decoration: none;
    margin-bottom: 0.6rem;
}

.footer__links a:hover {
    text-decoration: underline;
}

.footer__disclaimer {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer__copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Cookie notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 200;
    display: none;
}

.cookie-notice.show {
    display: flex;
}

/* Form elements */
.order-form__content input:not([type="checkbox"]) {
    padding: 1rem;
    border: 1px solid #E2E8E2;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: white;
    width: 100%;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.checkbox-label input {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 6px;
    display: inline-block;
    position: relative;
}

.checkbox-label input:checked + .custom-checkbox:after {
    content: "✓";
    position: absolute;
    top: -1px;
    left: 3px;
    font-size: 14px;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .advantages__grid, .steps__grid, .testimonials__grid, .faq__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero__grid, .product-detail__grid, .specs__grid--three, .contacts__grid, .footer__grid {
        grid-template-columns: 1fr;
    }
    .achievements__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .advantages__grid {
        grid-template-columns: 1fr;
    }
    .steps__grid, .testimonials__grid, .faq__grid {
        grid-template-columns: 1fr;
    }
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    .cookie-notice {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
    }
    .hero__form {
        order: 2;
    }
    .hero__content {
        order: 1;
    }
    .specs__image-col {
        order: 1;
    }
}
/* ===== Hero form enhancements ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text-muted);
}
.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #E2E8E2;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: white;
}
.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(123,174,127,0.2);
}

/* ===== Why Domain two columns ===== */
.why-domain {
    padding: 4rem 0;
    background: white;
}
.why-domain__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.why-domain__advantages .section-title {
    text-align: left;
    margin-bottom: 2rem;
}
.why-domain__advantages .section-title:after {
    margin-left: 0;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.advantage-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    transition: transform 0.2s;
}
.advantage-item:hover {
    transform: translateY(-4px);
}
.advantage-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}
.advantage-item h3 {
    margin-bottom: 0.5rem;
}
.advantage-item p {
    color: var(--text-muted);
    line-height: 1.4;
}

/* Pyramid styling (right column) */
.why-domain__pyramid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.pyramid-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}
.pyramid-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.pyramid-card h3 {
    margin-bottom: 0.5rem;
}
/* Pyramid shape – each card slightly wider */
.pyramid-card.about {
    width: 90%;
    margin-left: auto;
}
.pyramid-card.mission {
    width: 95%;
    margin-left: auto;
}
.pyramid-card.goal {
    width: 100%;
}
.pyramid-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 768px) {
    .why-domain__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .pyramid-card.about,
    .pyramid-card.mission,
    .pyramid-card.goal {
        width: 100%;
        margin-left: 0;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

.hero__form input:not([type="checkbox"]) {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #E2E8E2;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    background: white;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.hero__form input:not([type="checkbox"]):focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(123,174,127,0.2);
}

.hero__form input::placeholder {
    color: #B0C4B0;
    font-weight: 400;
}

.form-group input {
    margin-bottom: 0;
}

.hero__form input:last-of-type {
    margin-bottom: 0;
}

.checkbox-label {
    margin: 1rem 0 1.5rem;
}

.thanks-content {
    max-width: 700px;
    margin: 3rem auto;
    background: white;
    padding: 3rem;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
}
.thanks-content .logo-large {
    margin-bottom: 2rem;
}
.thanks-content .logo-large img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
}
.thanks-content h1 {
    margin-bottom: 1rem;
}
.legal-content {
    max-width: 1100px;
    margin: 2rem auto;
    background: white;
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
}

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    border-left: 5px solid var(--primary);
    padding-left: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-content b {
    color: var(--primary-dark);
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
}