:root {
    --bg-champagne: #FDFBF7;
    --bg-soft: #F5F0E1;
    --accent-gold: #C5A059;
    --dark-brown: #3D2B1F;
    --text-muted: #6B5B51;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(61, 43, 31, 0.08);
    --glass: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-champagne);
    color: var(--dark-brown);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

/* Navigation */
header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    letter-spacing: 2px;
}

.logo .growth {
    color: var(--accent-gold);
    font-style: italic;
    margin-left: 5px;
}

.btn-nav {
    background: var(--dark-brown);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    background: var(--accent-gold);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, var(--bg-soft), var(--bg-champagne));
}

.hero .grid {
    grid-template-columns: 1.2fr 0.8fr;
}

.badge {
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent-gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
}

h1 .accent {
    color: var(--accent-gold);
    display: block;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
}

.cta-note {
    display: block;
    font-size: 12px;
    margin-top: 15px;
    color: var(--text-muted);
    font-style: italic;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-wrapper img {
    width: 100%;
    display: block;
}

.stat-overlay {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-gold);
}

.stat-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Problems Section */
.problems {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 18px;
}

.cards {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: var(--bg-champagne);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Modules Section */
.modules {
    padding: 100px 0;
}

.modules-detailed {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.module-card {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.module-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-gold);
}

.module-header {
    border-right: 1px solid var(--bg-soft);
    padding-right: 20px;
}

.module-badge {
    background: var(--accent-gold);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.module-header h3 {
    font-size: 24px;
    line-height: 1.2;
}

.module-body p {
    color: var(--dark-brown);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 17px;
}

.module-body ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.module-body ul li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.module-body ul li::before {
    content: "→";
    color: var(--accent-gold);
    margin-right: 8px;
    font-weight: 900;
}

@media (max-width: 768px) {
    .module-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .module-header {
        border-right: none;
        border-bottom: 1px solid var(--bg-soft);
        padding-right: 0;
        padding-bottom: 20px;
    }
    .module-body ul {
        grid-template-columns: 1fr;
    }
}

/* Software Section */
.software-bonus {
    background: var(--dark-brown);
    color: var(--white);
    padding: 100px 0;
    border-radius: 50px;
    margin: 0 20px;
}

.software-bonus h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.software-bonus p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.check-list li::before {
    content: '✓';
    color: var(--accent-gold);
    margin-right: 15px;
    font-weight: 900;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 60%;
    background: var(--accent-gold);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    text-align: center;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow);
    border: 2px solid var(--bg-soft);
}

.price {
    margin: 30px 0;
}

.steps-list {
    text-align: left;
    max-width: 400px;
    margin: 30px auto;
}

.step {
    padding: 15px 0;
    border-bottom: 1px solid var(--bg-soft);
    color: var(--text-muted);
    font-weight: 600;
}

.step:last-child {
    border-bottom: none;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 18px;
}

.current-price {
    font-size: 64px;
    font-weight: 800;
    color: var(--dark-brown);
}

.current-price small {
    font-size: 20px;
}

.guarantee {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: var(--bg-soft);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    margin-left: 20px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(61, 43, 31, 0.1);
    padding-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .hero .grid { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin: 0 auto 40px; }
    h1 { font-size: 42px; }
    .cards { grid-template-columns: 1fr; }
    .software-bonus .grid { grid-template-columns: 1fr; }
}
