:root {
    /* ProMax Luxury Palette */
    --clr-emerald: #0A2E20;
    --clr-emerald-light: #184A36;
    --clr-gold: #D4AF37;
    --clr-gold-light: #FEE8A3;
    --clr-gold-dark: #A38321;
    --clr-cream: #FDFBF7;
    --clr-white: #FFFFFF;
    --clr-text-main: #2C3531;
    --clr-text-muted: #6B7B73;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;

    /* Effects */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --shadow-premium: 0 20px 40px rgba(10, 46, 32, 0.08);
    --shadow-glow: 0 10px 30px rgba(212, 175, 55, 0.2);
    --transition-smooth: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Elegant texture background */
    background-color: var(--clr-cream);
    background-image:
        radial-gradient(at 0% 0%, rgba(212, 175, 55, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(10, 46, 32, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(212, 175, 55, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(10, 46, 32, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Helpers */
.text-emerald {
    color: var(--clr-emerald) !important;
}

.text-gold {
    color: var(--clr-gold) !important;
}

.nowrap {
    white-space: nowrap;
}

.mobile-break {
    display: none;
}

.text-white {
    color: var(--clr-white) !important;
}

.text-gold-gradient {
    background: linear-gradient(to right, var(--clr-gold-light), var(--clr-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-emerald {
    background-color: var(--clr-emerald) !important;
}

.bg-light-cream {
    background-color: var(--clr-cream) !important;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-heading {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subheading {
    font-size: 2rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

/* Glassmorphism Styles */
.white-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 3rem;
}

.dark-glass {
    background: rgba(10, 46, 32, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    color: var(--clr-white);
}

.emerald-glass {
    background: linear-gradient(135deg, var(--clr-emerald), var(--clr-emerald-light));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 3rem;
    color: var(--clr-white);
    border-top: 1px solid var(--clr-gold);
}

.gold-glass {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--clr-gold);
    padding: 2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Hover Effects */
.card-hover {
    transition: var(--transition-smooth);
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(10, 46, 32, 0.15);
}

.dark-glass.card-hover:hover {
    box-shadow: var(--shadow-glow);
}

/* Buttons */
.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: var(--clr-white) !important;
    font-weight: 500;
    font-family: var(--font-body);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

.btn-gold.large {
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
}

.btn-glass {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--clr-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-glass.large {
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
}

.btn-gold-outline {
    display: inline-block;
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold) !important;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-gold-outline:hover {
    background: var(--clr-gold);
    color: var(--clr-white) !important;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 46, 32, 0.95);
    backdrop-filter: blur(15px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--clr-gold);
}

.navbar:not(.scrolled) .logo {
    color: var(--clr-white);
}

.navbar:not(.scrolled) .btn-gold-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--clr-white) !important;
}

.navbar:not(.scrolled) .btn-gold-outline:hover {
    background: var(--clr-white);
    color: var(--clr-emerald) !important;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-emerald);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-accent {
    position: absolute;
    width: 80vw;
    height: 80vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(10, 46, 32, 0) 70%);
    top: -20%;
    right: -20%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.badge-gold {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--clr-gold-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.expert-card .badge-gold {
    background: rgba(10, 46, 32, 0.1);
    /* Light emerald background for contrast */
    border: 2px solid var(--clr-emerald);
    color: var(--clr-emerald) !important;
    font-weight: 700 !important;
    /* User requested weight 700 */
}

.hero-title {
    font-size: 4.5rem;
    color: var(--clr-white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--clr-gold-light);
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Why Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--clr-gold);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.05);
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--clr-emerald);
}

.feature-content p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
}

.gold-text {
    color: var(--clr-gold-dark);
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.avoid-list li {
    margin-bottom: 1.2rem;
    padding-left: 20px;
    position: relative;
    list-style: none;
    color: rgba(255, 255, 255, 0.8);
}

.avoid-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ff5e5e;
    font-size: 0.9rem;
}

.avoid-list strong {
    color: var(--clr-white);
}

.avoid-card h3 {
    color: #ff5e5e;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Targets */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.target-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--clr-gold-light), var(--clr-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.target-card:hover::before {
    transform: scaleX(1);
}

.target-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.target-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
    font-weight: 700;
    margin-bottom: 1rem;
}

.target-card p {
    font-size: 1.1rem;
    color: var(--clr-white);
    font-weight: 500;
}

/* Program Sections */
.program-roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.program-card {
    position: relative;
    padding-top: 4rem;
}

.part-badge {
    position: absolute;
    top: -15px;
    left: 3rem;
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: var(--clr-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.part-title {
    font-size: 1.8rem;
    color: var(--clr-emerald);
    margin-bottom: 0.5rem;
}

.part-subtitle {
    font-style: italic;
    color: var(--clr-gold-dark);
    margin-bottom: 2rem;
}

.elegant-list li {
    margin-bottom: 1rem;
    padding-left: 25px;
    position: relative;
    list-style: none;
}

.elegant-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--clr-gold);
}

.touchpoints {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.touchpoints span {
    background: rgba(10, 46, 32, 0.05);
    border: 1px solid rgba(10, 46, 32, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--clr-emerald);
    font-weight: 500;
}

/* Roadmap & Price */
.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.info-group {
    margin-bottom: 2rem;
}

.info-group h4 {
    color: var(--clr-gold-dark);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.box-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--clr-emerald);
}

.price-tag {
    margin: 3rem 0;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--clr-gold-light);
    display: inline-block;
}

.currency {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    margin-left: 0.5rem;
}

.min-req {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.expert-card {
    text-align: left;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.expert-leader {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
}

.expert-leader .expert-avatar-wrapper {
    max-width: 100%;
}

.expert-avatar-wrapper {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-emerald), var(--clr-emerald-light));
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.shadow-premium {
    box-shadow: 0 15px 35px rgba(10, 46, 32, 0.15);
}

.expert-avatar {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.expert-avatar-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--clr-gold-light);
    font-weight: bold;
}

.expert-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.expert-name {
    font-size: 1.8rem;
    color: var(--clr-emerald);
    margin-bottom: 0.2rem;
}

.expert-role {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--clr-gold-dark) !important;
}

.expert-desc {
    font-size: 1.05rem;
    color: var(--clr-text-main);
    font-weight: 500;
    text-align: center;
}

/* 3D Parallax Removed -> Standard Hover */
.card-3d {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
}

.card-3d:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10, 46, 32, 0.15);
    z-index: 10;
}

/* CTA */
.cta-section {
    padding: 8rem 0;
    position: relative;
}

.cta-title {
    font-size: 3.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Footer */
.premium-footer {
    background: #05160F;
    color: rgba(255, 255, 255, 0.4);
    padding: 4rem 0;
}

.premium-footer .logo {
    font-size: 2rem;
    opacity: 0.8;
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    opacity: 0;
    mix-blend-mode: screen;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.right {
    transform: translateX(40px);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0);
}

.staggered:nth-child(2) {
    transition-delay: 0.1s;
}

.staggered:nth-child(3) {
    transition-delay: 0.2s;
}

.staggered:nth-child(4) {
    transition-delay: 0.3s;
}

.staggered:nth-child(5) {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {

    .why-grid,
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .instructor-profile {
        flex-direction: column;
        text-align: center;
    }

    .instructor-img-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .expert-leader {
        grid-column: span 2 !important;
        grid-row: auto !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        /* Reduced to ensure one line on mobile */
        white-space: nowrap;
    }

    .mobile-break {
        display: block;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .btn-gold.large,
    .btn-glass.large,
    .btn-gold-outline.large {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .white-glass,
    .dark-glass,
    .emerald-glass,
    .expert-card,
    .gold-glass {
        padding: 1.5rem;
    }

    .team-grid,
    .program-roadmap,
    .why-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .target-card {
        padding: 1.5rem 1rem;
    }

    .target-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .target-card p {
        font-size: 0.9rem;
    }

    .expert-avatar-wrapper {
        max-width: 280px;
    }

    .expert-leader {
        grid-column: span 1;
        grid-row: auto;
    }
}