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

body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23000" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
    position: relative;
}

.logo {
    margin: 40px 0;
    position: relative;
}

.logo-script {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    display: block;
    line-height: 1;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    display: block;
    color: #C4A567;
    margin-top: -10px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 40px 0;
    position: relative;
}

.blue-text {
    color: #5CB8E6;
}

.green-text {
    color: #4AC959;
}

.tan-text {
    color: #D4AF6A;
}

.yellow-text {
    color: #F4D03F;
}

.white-text {
    color: #fff;
}

.hero-subtitle-italic {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-style: italic;
    margin: 30px 0;
    position: relative;
}

.hero-cta-section {
    margin: 60px 0;
    position: relative;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.underline {
    text-decoration: underline;
    text-decoration-color: #F4D03F;
    text-decoration-thickness: 3px;
}

.yellow-underline {
    text-decoration: underline;
    text-decoration-color: #F4D03F;
    text-decoration-thickness: 3px;
    color: #F4D03F;
}

.cta-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
}

.video-container {
    position: relative;
    max-width: 600px;
    margin: 40px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-container video {
    width: 100%;
    display: block;
}

.enable-sound {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.enable-sound:hover {
    background: rgba(0, 0, 0, 0.9);
}

.clone-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin: 60px 0 40px;
    position: relative;
}

.clone-highlight {
    color: #F4D03F;
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.cta-button {
    background: linear-gradient(135deg, #5CB8E6, #4AA8D6);
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(92, 184, 230, 0.4);
    font-family: 'Montserrat', sans-serif;
    margin: 20px 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(92, 184, 230, 0.6);
}

.video-testimonial {
    margin: 60px auto;
    max-width: 700px;
}

.video-testimonial img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.secondary-video {
    max-width: 600px;
    margin: 0 auto;
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 5px;
    pointer-events: none;
}

.video-name {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Bank Account Section */
.bank-account-section {
    background: #fff;
    padding: 80px 20px;
}

.section-title-italic {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-style: italic;
    margin-bottom: 60px;
    color: #000;
}

.income-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.income-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Financial Freedom Section */
.financial-freedom {
    background: #fff;
    padding: 80px 20px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 20px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 30px;
}

.bold {
    font-weight: 700;
}

/* Industries Section */
.industries-section {
    background: #000;
    padding: 80px 20px;
    position: relative;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 60px auto 0;
    text-align: left;
    position: relative;
}

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

.industry-item {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Three Days Section */
.three-days-section {
    background: #000;
    padding: 80px 20px;
    position: relative;
}

.three-days-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 60px auto;
    text-align: left;
    position: relative;
}

.benefit-item {
    display: flex;
    gap: 15px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}

.check-icon {
    color: #4AC959;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Passionate Section */
.passionate-section {
    background: #fff;
    padding: 80px 20px;
}

.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 60px 0 30px;
    color: #000;
    letter-spacing: 0.5px;
}

.payment-options {
    font-size: 1rem;
    margin: 20px 0 10px;
    color: #000;
}

.payment-logos {
    margin: 20px 0;
}

.payment-logos img {
    max-width: 400px;
    height: auto;
}

/* Success Story Section */
.success-story {
    background: #fff;
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 60px auto;
}

.testimonials-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.as-seen-on {
    margin: 60px 0;
}

.as-seen-on h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #000;
}

.media-logos img {
    max-width: 800px;
    width: 100%;
}

.family-photos {
    margin: 60px 0;
}

.family-photos img {
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-caption {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 40px auto;
    color: #000;
}

/* Profitable Section */
.profitable-section {
    background: #fff;
    padding: 80px 20px;
}

.logo-center {
    margin: 40px 0;
}

.logo-center img {
    max-width: 500px;
    width: 100%;
}

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

.step-item {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 30px 0;
    padding-left: 30px;
    position: relative;
}

.step-item::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: #4AC959;
}

.testimonial-box {
    margin: 60px auto;
    max-width: 700px;
}

.testimonial-quote {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.testimonial-box img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* No More Section */
.no-more-section {
    background: #fff;
    padding: 80px 20px;
}

.intro-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.no-more-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.no-more-item {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 30px 0;
}

.closing-text {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 60px auto 40px;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23000" width="1200" height="800"/></svg>');
    background-size: cover;
    padding: 80px 20px;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 60px;
    position: relative;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 20px 60px 20px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: #000;
    font-family: 'Nunito Sans', sans-serif;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-icon {
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
    color: #666;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #333;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.final-cta {
    margin-top: 40px;
    position: relative;
}

/* Footer */
.footer {
    background: #fff;
    padding: 60px 20px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #5CB8E6;
}

.footer-logo {
    margin: 40px 0;
}

.footer-logo img {
    max-width: 200px;
}

.disclaimer {
    max-width: 900px;
    margin: 40px auto 0;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .logo-script {
        font-size: 3rem;
    }

    .logo-text {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-title-italic {
        font-size: 1.8rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .income-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .faq-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
    }

    .logo-script {
        font-size: 2.5rem;
    }

    .logo-text {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.4rem;
    }
}