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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 0 80px;
    text-align: center;
}

.hero-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.rating-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    color: #ffd700;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.rating-subtext {
    font-size: 13px;
    color: #ffd700;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.main-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
}

.highlight-pink {
    color: #ff0080;
    display: inline;
}

.hero-subheadline {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto 40px;
}

.hero-video {
    margin: 40px 0;
}

.hero-video .video-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.hero-video .video-placeholder {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.3);
    border: 3px solid #ff0080;
    overflow: hidden;
}

.hero-video .video-placeholder:hover {
    transform: scale(1.02);
}

.hero-cta-button {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #ff0080 0%, #ff1a8f 100%);
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 25px rgba(255, 0, 128, 0.4);
    transition: all 0.3s ease;
    margin-top: 30px;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.6);
}

.sub-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    opacity: 0.95;
}

/* Reviews/Transformations Section */
.reviews-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.reviews-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
}

.reviews-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.transformation-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.transformation-item:hover {
    transform: translateY(-5px);
}

.transformation-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* Intro Section */
.intro-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.problem-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: white;
    text-transform: uppercase;
}

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

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 128, 0.3);
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.problem-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.problem-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.empathy-statement {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ff0080;
    text-align: center;
    font-style: italic;
}

.section-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.4;
    text-align: center;
}

.body-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;
}

.body-text.center {
    text-align: center;
}

/* Solution Section */
.solution-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.solution-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: white;
    text-transform: uppercase;
}

.solution-promise {
    max-width: 900px;
    margin: 0 auto;
}

.promise-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #00ff88;
    border-radius: 8px;
}

.feature-check {
    font-size: 24px;
    color: #00ff88;
    font-weight: 700;
    flex-shrink: 0;
}

.solution-feature p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.solution-intro {
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 0, 128, 0.05);
    border: 2px solid rgba(255, 0, 128, 0.3);
    border-radius: 16px;
}

.intro-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ff0080;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.program-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.program-tagline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.video-intro-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-placeholder {
    background: #000;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.3);
    border: 3px solid #ff0080;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0080 0%, #ff1a8f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.5);
}

.play-button:hover {
    transform: scale(1.15);
}

/* What's Included Section */
.whats-included-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.included-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 60px;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
    text-align: center;
}

.included-items {
    max-width: 900px;
    margin: 0 auto 60px;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 0, 128, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.included-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 128, 0.5);
    transform: translateX(5px);
}

.bonus-item {
    border-color: rgba(255, 215, 0, 0.3);
}

.bonus-item:hover {
    border-color: rgba(255, 215, 0, 0.6);
}

.item-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0080 0%, #ff1a8f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-item .item-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.check-mark {
    font-size: 28px;
    color: white;
    font-weight: 700;
}

.bonus-item .check-mark {
    color: #1a1a1a;
}

.item-content {
    flex: 1;
}

.item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.item-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

.item-value {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ff0080;
    background: rgba(255, 0, 128, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.bonus-item .item-value {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.total-value-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.total-value-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.total-value-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.price-box {
    background: rgba(255, 255, 255, 0.03);
    border: 3px solid #ff0080;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.regular-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.strike {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.special-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.big-price {
    font-size: 72px;
    font-weight: 900;
    color: #ff0080;
    display: block;
    margin: 20px 0;
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
}

.savings {
    font-size: 20px;
    color: #00ff88;
    font-weight: 700;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #ff0080 0%, #ff1a8f 100%);
    color: white;
    border: none;
    padding: 22px 50px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 25px rgba(255, 0, 128, 0.5);
    transition: all 0.3s ease;
    line-height: 1.4;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 0, 128, 0.7);
}

.button-subtext {
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    text-align: center;
}

/* Who For Section */
.who-for-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.who-for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.who-for-item {
    text-align: left;
    padding: 35px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 0, 128, 0.3);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.who-for-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 128, 0.6);
    transform: translateY(-5px);
}

.check-icon-large {
    font-size: 40px;
    color: #00ff88;
    font-weight: 700;
    margin-bottom: 15px;
}

.who-for-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.who-for-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 0, 128, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 0, 128, 0.5);
    transform: translateY(-5px);
}

.testimonial-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    background: #ff0080;
}

.testimonial-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.testimonial-content {
    padding: 35px;
    text-align: center;
}

.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 700;
    color: #ff0080;
}

/* Social Proof Section */
.social-proof-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
}

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

.result-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 0, 128, 0.3);
    transition: all 0.3s ease;
}

.result-img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 0, 128, 0.6);
}

.social-proof-caption {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-top: 40px;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.about-image {
    text-align: center;
}

.coach-img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.3);
    border: 3px solid rgba(255, 0, 128, 0.5);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.credentials-list {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 0, 128, 0.1);
    border-left: 4px solid #ff0080;
    border-radius: 8px;
}

.credential-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.credential-item strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

/* Inside Section */
.inside-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.inside-items {
    margin-top: 50px;
}

.inside-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #ff0080;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.inside-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-width: 6px;
    transform: translateX(5px);
}

.arrow {
    font-size: 24px;
    color: #ff0080;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.inside-item p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* CTA Section 2 */
.cta-section-2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 70px 0;
}

.urgency-banner {
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid #ff9800;
    padding: 20px 35px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.urgency-text {
    color: #ff9800;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Countdown Timer */
.countdown-timer {
    text-align: center;
    margin-top: 40px;
}

.countdown-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-box {
    background: rgba(255, 152, 0, 0.1);
    color: white;
    padding: 25px 20px;
    border-radius: 12px;
    min-width: 95px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
    border: 2px solid #ff9800;
}

.time-number {
    display: block;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 12px;
    margin-top: 10px;
    letter-spacing: 2px;
    opacity: 0.95;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.faq-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #ff0080 0%, #ff1a8f 100%);
    padding: 30px;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 0, 128, 0.3);
    border-top: none;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 0, 128, 0.2);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    padding: 25px 35px;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
    margin: 0;
}

.faq-question:hover {
    background: rgba(255, 0, 128, 0.1);
    color: #ff0080;
}

.faq-answer {
    padding: 0 35px 30px 35px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s;
}

.faq-answer strong {
    color: white;
    font-weight: 700;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
}

.program-preview {
    margin: 50px 0;
}

.program-preview-img {
    max-width: 70%;
    height: 500px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.4);
    border: 3px solid rgba(255, 0, 128, 0.5);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    border-top: 2px solid rgba(255, 0, 128, 0.3);
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

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

.disclaimer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-narrow {
        padding: 0 15px;
    }

    .hero-section {
        padding: 40px 0 60px;
    }

    .rating-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .rating-subtext {
        font-size: 12px;
    }

    .main-headline {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .hero-video .video-placeholder {
        height: 300px;
    }

    .hero-cta-button {
        padding: 16px 40px;
        font-size: 18px;
    }

    .reviews-section {
        padding: 60px 0;
    }

    .reviews-headline {
        font-size: 36px;
    }

    .reviews-subtext {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .transformations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .transformation-img {
        aspect-ratio: 1 / 1;
    }

    .whats-included-section {
        padding: 60px 0;
    }

    .included-headline {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .included-item {
        padding: 25px 20px;
        gap: 20px;
    }

    .item-icon {
        width: 45px;
        height: 45px;
    }

    .check-mark {
        font-size: 24px;
    }

    .item-title {
        font-size: 18px;
    }

    .item-description {
        font-size: 15px;
    }

    .total-value-box {
        padding: 30px;
    }

    .total-value-text {
        font-size: 18px;
    }

    .total-value-amount {
        font-size: 52px;
    }

    .problem-headline, .solution-headline {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .problem-card {
        padding: 30px 25px;
    }

    .empathy-statement {
        font-size: 20px;
    }

    .promise-headline {
        font-size: 26px;
    }

    .solution-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .program-name {
        font-size: 32px;
    }

    .program-tagline {
        font-size: 18px;
    }

    .sub-headline {
        font-size: 18px;
    }

    .section-headline {
        font-size: 24px;
    }

    .video-placeholder {
        height: 280px;
    }

    .who-for-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .who-for-item {
        padding: 30px 25px;
    }

    .who-for-title {
        font-size: 20px;
    }

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

    .big-price {
        font-size: 48px;
    }

    .timer {
        gap: 10px;
    }

    .time-box {
        min-width: 75px;
        padding: 15px 12px;
    }

    .time-number {
        font-size: 30px;
    }

    .testimonial-img {
        height: 220px;
    }

    .result-img {
        height: 250px;
    }

    .faq-header {
        font-size: 28px;
        padding: 25px 20px;
    }

    .program-preview-img {
        max-width: 90%;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 0 50px;
    }

    .rating-badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .rating-subtext {
        font-size: 11px;
    }

    .main-headline {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero-subheadline {
        font-size: 15px;
    }

    .hero-video .video-placeholder {
        height: 250px;
    }

    .hero-cta-button {
        padding: 14px 30px;
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .reviews-section {
        padding: 50px 0;
    }

    .reviews-headline {
        font-size: 28px;
    }

    .reviews-subtext {
        font-size: 15px;
    }


    .problem-headline, .solution-headline {
        font-size: 26px;
    }

    .problem-icon {
        font-size: 48px;
    }

    .problem-title {
        font-size: 20px;
    }

    .empathy-statement {
        font-size: 18px;
    }

    .promise-headline {
        font-size: 22px;
    }

    .program-name {
        font-size: 28px;
    }

    .program-tagline {
        font-size: 16px;
    }

    .solution-intro {
        padding: 30px 20px;
    }

    .whats-included-section {
        padding: 50px 0;
    }

    .included-headline {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .included-item {
        padding: 20px 15px;
        gap: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .item-icon {
        width: 40px;
        height: 40px;
    }

    .check-mark {
        font-size: 20px;
    }

    .item-title {
        font-size: 17px;
    }

    .item-description {
        font-size: 14px;
    }

    .total-value-box {
        padding: 25px 20px;
    }

    .total-value-text {
        font-size: 16px;
    }

    .total-value-amount {
        font-size: 48px;
    }

    .sub-headline {
        font-size: 16px;
    }

    .section-headline {
        font-size: 20px;
    }

    .body-text {
        font-size: 16px;
    }

    .video-placeholder {
        height: 220px;
    }

    .play-button {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    .big-price {
        font-size: 42px;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 18px;
    }

    .time-box {
        min-width: 70px;
    }

    .time-number {
        font-size: 28px;
    }

    .testimonial-images {
        grid-template-columns: 1fr;
    }

    .testimonial-img {
        height: 300px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}
