:root {
    --primary: #FD259D;
    --primary-dark: #E91E63;
    --bg-dark: #000000;
    --bg-card: #1A1A1A;
    --bg-light: #0F0F0F;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --accent: #FFD700;
    --border: #333333;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

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

/* Typography */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: var(--primary);
    color: white;
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 37, 157, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent);
}

.cta-button.secondary:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(253, 37, 157, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.brand {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.credibility {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cred-item {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Problem Section */
.problem {
    padding: 6rem 0;
    background: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: center;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Prerequisites Section */
.prerequisites {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.prereq-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 3rem;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 8px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.prereq-item {
    text-align: center;
}

.prereq-number {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.prereq-label {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.prereq-divider {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 700;
}

.prereq-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 2rem auto 0;
    font-style: italic;
    line-height: 1.8;
}

/* Prerequisites Section */
.prerequisites {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.prereq-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 3rem;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 8px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.prereq-item {
    text-align: center;
}

.prereq-number {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.prereq-label {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.prereq-divider {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 700;
}

.prereq-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 2rem auto 0;
    font-style: italic;
    line-height: 1.8;
}

@media (max-width: 640px) {
    .prereq-box {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .prereq-divider {
        transform: rotate(90deg);
    }
}

/* Solution Section */
.solution {
    padding: 6rem 0;
}

.course-phases {
    margin-top: 4rem;
}

.phase-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.phase-card.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.phase-card.reverse .phase-image {
    order: 2;
}

.phase-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid var(--accent);
}

.phase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Reposition Phase 1 image to the right */
.phase-card:nth-child(1) .phase-image img {
    object-position: 32% center;
}

/* Reposition Phase 3 image to the left */
.phase-card:nth-child(3) .phase-image img {
    object-position: 70% center;
}

.phase-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
}

.phase-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.phase-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.phase-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.phase-goals {
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 4px;
}

.goal-label {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.goal-item {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* What's Included */
.included {
    padding: 6rem 0;
    background: var(--bg-light);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.included-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
}

.included-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.included-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.included-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.included-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.price-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(253, 37, 157, 0.05) 100%);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.price-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.price-amount {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.amount {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
}

.savings {
    display: block;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.price-features {
    list-style: none;
    margin: 2rem 0;
}

.price-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-card .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

.phase-selector {
    margin: 1.5rem 0;
    text-align: left;
}

.phase-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.phase-dropdown {
    width: 100%;
    padding: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    background: var(--bg-dark);
    color: var(--text-primary);
    border: 2px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phase-dropdown:hover {
    border-color: var(--accent);
}

.phase-dropdown:focus {
    outline: none;
    border-color: var(--primary);
}

.guarantee {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-style: italic;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    border: 3px solid var(--accent);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    text-align: center;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

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

.footer-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Move Phase 2 image down 30% on tablet */
    .phase-card:nth-child(2) .phase-image img {
        object-position: center 30%;
    }

    .phase-card,
    .phase-card.reverse {
        grid-template-columns: 1fr;
    }

    .phase-card.reverse .phase-image {
        order: 1;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }
    
    .prereq-box {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .prereq-divider {
        transform: rotate(90deg);
    }
}
