* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f7f3ef;
    --text-main: #332d2b;
    --accent-color: #721c43;
    --burgundy-bg: #e94e96;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
	min-height: 200vh;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eae3dc;
    padding: 15px 40px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.main-nav .nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 4px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.hero-section {
    padding: 60px 20px;
    min-height: calc(100vh - 81px);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.2;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-main);
    opacity: 0.85;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background-color: #c92a62;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.9;
}

.hero-image-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -60px; /* для ПК */
    z-index: 2;
    position: relative;
}
}

.hero-img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-section {
    background-color: var(--burgundy-bg);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
    opacity: 0.95;
}

.highlight-text {
    margin-top: 32px;
    margin-bottom: 40px;
}

.about-footer-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.4;
    font-weight: 400;
    margin-top: 40px;
    color: #ffffff;
}

.vip-section {
    background-color: var(--burgundy-bg);
    color: #ffffff;
    padding: 40px 20px 80px 20px;
}

.vip-container {
    max-width: 1100px;
    margin: 0 auto;
}

.vip-main-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 400;
    margin-bottom: 50px;
}

.vip-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.vip-cards-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-badge-ribbon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-badge-img,
.green-badge-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.vip-info-column {
    padding-left: 20px;
}

.vip-description {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.vip-pricing {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.old-price {
    font-size: 24px;
    text-decoration: line-through;
    opacity: 0.6;
}

.new-price {
    font-size: 52px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #ffffff;
}

.new-price sup, .old-price sup {
    font-size: 50%;
    font-family: var(--font-body);
}

.vip-action-wrapper {
    margin-top: 50px;
    text-align: center;
}

.btn-vip {
    display: inline-block;
    background-color: #c92a62;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-vip:hover {
    background-color: #a82050;
}

.live-course-section {
    background-color: var(--burgundy-bg);
    color: #ffffff;
    padding: 40px 20px 80px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.live-header-icon-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.live-monitor-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: inline-block;
}

.live-title {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.live-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.live-image-column {
    display: flex;
    justify-content: flex-end;
}

.live-devices-img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.live-btn-wrapper {
    margin-top: 30px;
}

.live-features-footer {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 30px;
}

.live-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
}

.site-footer {
    background-color: #ffffff;
    color: var(--accent-color);
    padding: 30px 40px;
    border-top: 1px solid #eae3dc;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.site-footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site-footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-header {
        padding: 12px 20px;
    }
    .logo-img {
        height: 40px;
    }

    .hero-section {
        padding: 40px 16px;
        min-height: auto;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .hero-image-wrapper {
		margin-bottom: -40px;
        justify-content: center;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-img {
        width: 100%;
        max-width: 380px;
    }

    .about-section {
        padding: 50px 16px;
    }
    .about-text {
        font-size: 15px;
    }

    .vip-section,
    .live-course-section {
        padding: 30px 16px 50px 16px;
    }
    .vip-main-title {
        font-size: 24px;
        margin-bottom: 25px;
        text-align: center;
    }
    .vip-content-grid,
    .live-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vip-cards-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .vip-badge-ribbon {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .vip-badge-img,
    .green-badge-img,
    .live-devices-img {
        width: 100% !important;
        max-width: 360px;
        height: auto !important;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .live-image-column {
        justify-content: center;
    }

    .vip-info-column,
    .live-info-column {
        padding-left: 0;
        text-align: center;
    }
    .vip-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .vip-pricing {
        justify-content: center;
        gap: 15px;
    }
    .new-price {
        font-size: 38px;
    }
    .old-price {
        font-size: 18px;
    }

    .vip-action-wrapper,
    .live-btn-wrapper {
        margin-top: 25px;
        text-align: center;
    }
    .btn-vip {
        display: block;
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        text-align: center;
    }

    .live-features-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-top: 30px;
        padding-top: 20px;
    }
    .live-feature-item {
        justify-content: center;
    }

    .site-footer {
        padding: 20px;
        font-size: 13px;
    }
}