:root {
    --dark: #1b1b1b;
    --accent: #2fb561;
    --accent-dark: #24914d;
    --light: #ffffff;
    --gray: #6f6f6f;
    --bg: #f7f7f7;
    --shadow: 0 20px 60px rgba(0,0,0,0.1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    color: var(--dark);
    background: var(--bg);
    line-height: 1.6;
}

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

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

header {
    background: var(--light);
    box-shadow: var(--shadow);
}

.container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

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

.logo {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: inherit;
}

.logo span {
    display: block;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--dark);
    position: relative;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
}

.menu-toggle span::before {
    top: -7px;
}

.menu-toggle span::after {
    top: 7px;
}

.menu-toggle.active span {
    background: transparent;
}

.menu-toggle.active span::before {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span::after {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: var(--light);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid var(--dark);
    color: var(--dark);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero {
    padding: clamp(60px, 12vw, 120px) 0 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 12px;
    margin-bottom: 16px;
    color: var(--accent);
}

h1 {
    font-size: clamp(32px, 6vw, 54px);
    margin: 0 0 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: clamp(16px, 2.4vw, 20px);
    color: var(--gray);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-media {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 9 / 16;
    max-width: 360px;
    margin: 0 auto;
    background: #000;
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transform-origin: center;
}

.section {
    padding: 80px 0;
}

.section.alt {
    background: var(--light);
}

.section-header {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin: 0 0 16px;
}

.section-header p {
    color: var(--gray);
    font-size: 18px;
    margin: 0;
}

.steps {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step-card {
    background: var(--light);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 20px;
    margin: 0 0 12px;
}

.step-card p {
    margin: 0;
    color: var(--gray);
}

.step-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    color: var(--gray);
}

.step-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.feature-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
    background: var(--light);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.feature-card p {
    margin: 0;
    color: var(--gray);
}

.pricing {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.price-card {
    background: var(--light);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow);
    text-align: center;
}

.price-card.vip {
    border: 2px solid var(--accent);
}

.price-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.price-card .price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    color: var(--gray);
}

.price-card ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.price-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.split {
    display: flex;
    gap: 48px;
    align-items: center;
}

.split.reverse {
    flex-direction: row-reverse;
}

.split .visual {
    flex: 1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    min-height: 380px;
}

.split .visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.split-content p {
    color: var(--gray);
    margin-bottom: 24px;
}

.faq {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.split.gold {
    background: linear-gradient(135deg, rgba(245, 222, 179, 0.35), rgba(255, 245, 215, 0.65));
    padding: 48px;
    border-radius: 36px;
}

.split.rose {
    background: linear-gradient(135deg, rgba(255, 220, 232, 0.45), rgba(255, 245, 250, 0.75));
    padding: 48px;
    border-radius: 36px;
}

.split.gold .split-content h3 {
    color: #a9782a;
}

.split.rose .split-content h3 {
    color: #c5446f;
}

.split.gold .hero-actions .btn-primary {
    background: #d5a253;
    color: #fff;
}

.split.gold .hero-actions .btn-primary:hover {
    background: #bf8f46;
}

.split.rose .hero-actions .btn-primary {
    background: #f06484;
}

.split.rose .hero-actions .btn-primary:hover {
    background: #d85875;
}

.split.gold .hero-actions .btn-outline {
    border-color: #a9782a;
    color: #a9782a;
}

.split.gold .hero-actions .btn-outline:hover {
    border-color: #bf8f46;
    color: #bf8f46;
}

.split.rose .hero-actions .btn-outline {
    border-color: #c5446f;
    color: #c5446f;
}

.split.rose .hero-actions .btn-outline:hover {
    border-color: #d85875;
    color: #d85875;
}


.faq-item {
    background: var(--light);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.faq-item p {
    margin: 0;
    color: var(--gray);
}

.trust {
    background: var(--light);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 24px;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.trust h3 {
    margin: 0;
    font-size: 28px;
}

.newsletter {
    background: var(--dark);
    color: var(--light);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.newsletter form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    width: 100%;
    max-width: 520px;
}

.newsletter input {
    flex: 1 1 240px;
    padding: 14px 18px;
    border-radius: 9999px;
    border: none;
    font-size: 16px;
}

.input-field {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #d9d9d9;
    font-size: 16px;
    margin-bottom: 16px;
    font-family: inherit;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 18, 18, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
    padding: 24px;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: var(--light);
    border-radius: 24px;
    padding: 32px;
    width: min(540px, 100%);
    box-shadow: var(--shadow);
    position: relative;
}

.modal h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.modal p {
    color: var(--gray);
    margin-top: 0;
    margin-bottom: 24px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--gray);
}

.scroll-lock {
    overflow: hidden;
}

footer {
    background: #121212;
    color: #e6e6e6;
    padding: 48px 0 32px;
    margin-top: 80px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

.socials {
    display: flex;
    gap: 16px;
    font-size: 14px;
}

.footer-bottom {
    margin-top: 32px;
    font-size: 12px;
    color: #8c8c8c;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 960px) {
    .hero {
        flex-direction: column;
    }

    .split,
    .split.reverse {
        flex-direction: column;
    }

    .split.gold,
    .split.rose {
        padding: 32px;
    }

    .split .visual {
        width: 100%;
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        border-radius: 9999px;
        border: 1px solid transparent;
    }

    .nav {
        position: absolute;
        inset: 72px 0 auto;
        background: var(--light);
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        box-shadow: var(--shadow);
        margin: 0 4%;
        border-radius: 20px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    header {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header-inner {
        position: relative;
    }

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

    .btn,
    .newsletter input {
        width: 100%;
    }

    .newsletter form {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-top {
        flex-direction: column;
        align-items: stretch;
    }

    .modal {
        padding: 24px;
    }
}

