:root {
    --primary: #2d6a4f;
    --secondary: #51625b;
    --accent: #b1f0ce;
    --bg-light: #fbf9f8;
    --bg-card: #ffffff;
    --text-main: #1b1c1c;
    --text-muted: #404943;
    --white: #ffffff;
    --glass: rgba(45, 106, 79, 0.05);
    --glass-border: rgba(45, 106, 79, 0.1);
    --gradient: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

span {
    color: var(--secondary);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(251, 249, 248, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
    color: var(--primary);
}

.logo span {
    font-weight: 400;
    margin-left: 2px;
    color: var(--text-main);
    background: none;
    -webkit-text-fill-color: var(--text-main);
}

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

.btn-nav:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
    background-clip: border-box !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.2);
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-primary {
    display: inline-block;
    padding: 20px 40px;
    background: var(--gradient);
    color: var(--white);
    padding: 20px 40px;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 242, 254, 0.4);
}

.price-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.floating-card .icon {
    font-size: 2rem;
}

.floating-card strong {
    display: block;
    font-size: 1.1rem;
}

.floating-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted); /* Override gradient */
}

/* Pain Section */
.pain {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary);
}

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

.pain-item {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.pain-item:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.pain-item .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pain-item h3 {
    margin-bottom: 15px;
}

.pain-item p {
    color: var(--text-muted);
}

/* Solution Section */
.solution {
    padding: 120px 0;
    background: #f8faf9;
    position: relative;
}

.solution-wrapper {
    display: flex;
    justify-content: center;
}

.solution-text {
    max-width: 800px;
    text-align: center;
}

.benefit-list {
    list-style: none;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.benefit-list li {
    padding-left: 35px;
    position: relative;
    font-weight: 600;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
}
.modules {
    padding: 100px 0;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.module-card {
    background: var(--glass);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.module-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    opacity: 0.05;
    color: var(--white);
}

/* Checkout Section */
.checkout {
    padding: 100px 0;
    background: #f0f4f2;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.offer-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.offer-card h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.action-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}

.secure-badge {
    background: #e1f5fe;
    color: #0288d1;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.action-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
}

.action-card p {
    color: var(--text-muted);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.payment-icons img {
    height: 25px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
    filter: grayscale(0);
}

.btn-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    background: var(--gradient);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(45, 106, 79, 0.2);
}

.btn-cta span {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: none;
    background: none;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
    opacity: 0.8;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    padding: 20px;
    background: #f8faf9;
    border-radius: 15px;
    border: 1px dashed var(--glass-border);
}

.guarantee-icon {
    font-size: 2.5rem;
}

.guarantee-box strong {
    display: block;
    color: var(--primary);
}

.guarantee-box p {
    font-size: 0.85rem;
    margin: 0;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.guarantee img {
    width: 30px;
    filter: invert(1);
}

/* Instructors Section */
.instructors {
    padding: 100px 0;
    background: #f8faf9;
    text-align: center;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0 40px;
}

.instructor-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

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

.instructor-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.instructor-role {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.instructors-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--white);
    border: none;
    color: var(--text-main);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--bg-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
}

/* Footer */
.footer {
    padding: 50px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero h1 { font-size: 3rem; }
    .hero p { margin: 0 auto 40px; }
    .pain-grid { grid-template-columns: 1fr; }
    .modules-grid { grid-template-columns: 1fr; }
    .floating-card { left: 20px; bottom: -20px; }
}
