/* Base Styles */
:root {
    --primary: #6a11cb;
    --primary-light: #8e54e9;
    --primary-dark: #4a0c8f;
    --accent: #b721ff;
    --white: #ffffff;
    --black: #121212;
    --gray-dark: #2d2d2d;
    --gray-light: #f5f5f7;
    --success: #00c853;
    --solid-purple: #6a11cb;
    --shadow: 0 10px 30px rgba(106, 17, 203, 0.15);
    --shadow-strong: 0 15px 40px rgba(106, 17, 203, 0.25);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--black);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--solid-purple);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: var(--solid-purple);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-details {
    margin-bottom: 2rem;
}

.hero-date, .hero-limited {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-limited {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.2);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
}

.hero-image {
    flex: 0 0 30%;
    position: relative;
}

.profile-image {
    width: 100%;
    max-width: 250px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-strong);
    object-fit: cover;
    object-position: center 20%;
    aspect-ratio: 1/1;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    background: var(--black);
    color: var(--white);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.3rem;
}

/* Problem Section */
.problem {
    background-color: var(--white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
}

.highlight-box {
    background: var(--gray-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
}

.highlight-box h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Audience Section */
.audience {
    background-color: var(--gray-light);
}

.audience-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.audience-wrapper > p {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.audience-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.audience-point {
    display: flex;
    align-items: flex-start;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.point-icon {
    flex: 0 0 40px;
    height: 40px;
    background: var(--solid-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
}

.audience-point p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

/* Process Section */
.process {
    background: var(--solid-purple);
    color: var(--white);
}

.process .section-title {
    color: var(--white);
}

.process .section-title::after {
    background: var(--white);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.step-number {
    flex: 0 0 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
}

.process-step p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--gray-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-placeholder {
    height: 200px;
    background: var(--gray-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.video-placeholder:hover {
    background: var(--black);
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.video-container {
    display: none;
}

.video-container.active {
    display: block;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container.active.portrait {
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    max-width: 56.25%; /* Limit width to maintain aspect ratio */
    margin: 0 auto; /* Center the video */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain to prevent cropping */
    background-color: #000;
}

/* Pricing Section */
.pricing {
    background-color: var(--white);
}

.pricing-value {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-options-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.pricing-option {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-option h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
}

.price-detail {
    font-size: 1rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.price-benefit {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pricing-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--border-radius);
}

.important-note {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 20px;
    background: rgba(106, 17, 203, 0.1);
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary);
}

.important-note h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.important-note ul {
    list-style-position: inside;
    margin-bottom: 0;
}

.important-note li {
    margin-bottom: 0.5rem;
}

.important-note li:last-child {
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta {
    background: var(--solid-purple);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* FAQ Section */
.faq {
    background-color: var(--gray-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 1rem;
    margin-bottom: 0;
}

.more-questions {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.more-questions h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.more-questions p {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .video-container.active.portrait {
        max-width: 75%; /* Wider on smaller screens */
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
    }
    
    .video-container.active.portrait {
        max-width: 85%; /* Even wider on mobile */
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .video-container.active.portrait {
        max-width: 100%; /* Full width on smallest screens */
    }
}
