* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #1f2937;
    line-height: 1.6;
    background: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.logo {
    flex: 0 0 auto;
    width: 320px;
}

.logo a {
    display: block;
    width: 100%;
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 110px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: url("assets/hero.jpg") center center / cover no-repeat;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.38) 45%, rgba(0, 0, 0, 0.24) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 130px;
    padding-bottom: 80px;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.eyebrow.dark {
    color: #6b7280;
}

.hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: 64px;
    line-height: 1.03;
    font-weight: 800;
}

.hero-copy {
    max-width: 720px;
    margin-top: 24px;
    font-size: 24px;
    line-height: 1.35;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-block;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

.btn-primary {
    background: #111827;
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.85);
}

.btn-video {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.intro,
.gift,
.offer,
.trust,
.steps,
.contact-section,
.region-section,
.gallery {
    padding: 90px 0;
}

.intro {
    background: #f8fafc;
}

.gift {
    background: #ffffff;
}

.trust {
    background: #f8fafc;
}

.region-section {
    background: #f8fafc;
}

.section-title,
.intro h2,
.gift h2,
.contact-info h2,
.offer-card h2,
.region-section h2 {
    margin-top: 0;
    font-size: 40px;
    line-height: 1.15;
    color: #111827;
}

.offer-card {
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    text-align: center;
}

.offer-label {
    margin: 0 0 10px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #6b7280;
}

.price {
    margin: 14px 0 0;
    font-size: 36px;
    font-weight: 800;
    color: #111827;
}

.price span {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
}

.offer-intro {
    margin-top: 22px;
    font-size: 18px;
    color: #4b5563;
}

.offer-list {
    margin: 28px auto 0;
    padding-left: 20px;
    max-width: 620px;
    text-align: left;
}

.offer-list li {
    margin-bottom: 12px;
    font-size: 18px;
}

.gallery {
    background: #ffffff;
    text-align: center;
}

.gallery-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #4b5563;
    font-size: 18px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.2s ease;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.benefits-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 34px;
}

.benefit-card,
.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.benefit-card h3,
.step-card h3 {
    margin-top: 0;
    color: #111827;
}

.step-number {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111827;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 14px;
}

.contact-section {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: start;
}

.contact-info a {
    color: #111827;
    text-decoration: underline;
}

.contact-form {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin: 14px 0 8px;
    color: #111827;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    background: #ffffff;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45;
    margin-top: 18px;
}

.checkbox-label input {
    width: auto;
    margin-top: 2px;
}

.checkbox-label a {
    text-decoration: underline;
}

.form-button {
    margin-top: 18px;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.site-footer {
    background: #111827;
    color: #ffffff;
    padding: 24px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    background: #111827;
    color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

.cookie-text p {
    margin: 8px 0 0;
    color: #e5e7eb;
    max-width: 760px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn.btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
}

.hidden {
    display: none;
}

@media (max-width: 980px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero-copy {
        font-size: 20px;
    }

    .benefits-grid,
    .steps-grid,
    .contact-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .header-inner {
        flex-direction: column;
        gap: 14px;
    }

    .logo {
        width: 240px;
    }

    .nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 82vh;
    }

    .hero-content {
        padding-top: 170px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-copy {
        font-size: 18px;
    }

    .section-title,
    .intro h2,
    .gift h2,
    .contact-info h2,
    .offer-card h2,
    .region-section h2 {
        font-size: 30px;
    }

    .offer-card {
        padding: 26px;
    }

    .gallery-grid,
    .benefits-grid,
    .steps-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cookie-inner,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}