* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 18, 32, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-header.active {
    transform: translateY(0);
}

.sticky-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Hero Section - WHO */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0E1426 50%, #102A4C 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    color: white;
}

.target-badge {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-2));
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    font-size: 1.1rem;
    animation: pulse 4s infinite;
    margin-bottom: 4rem;
}


@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    /* margin-bottom: 25px; */
    line-height: 1.1;
    background: linear-gradient(45deg, #ffffff, #e0e7ff, #ffd700);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;

}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.exclusivity-note {
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid #ffd700;
    padding: 20px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 600px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-2));
    color: white;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* WHAT Section */
.what-section {
    padding: 32px 10px;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
}

.what-intro {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 10px;
    color: #4a5568;
    line-height: 1.2;
}

.program-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    row-gap: 20px;
    column-gap: 40px;
    margin-top: 30px;
    width: 100%;
}

.detail-card {
    background: white;
    padding: 8px 16px ;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #ff6b6b;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.detail-icon {
    font-size: 2rem;
    margin-bottom: 5px;
    display: block;
}

.detail-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.detail-description {
    color: #4a5568;
    font-size: 1.0rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.value-proposition {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-2));
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 15px;
}

/* WHEN Section */
.when-section {
    padding: 32px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-2) 100%);
    color: white;
    position: relative;
}

.urgency-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.urgency-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* .timeline-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
            width: 100%;
        } */

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 16px;
    width: 100%;
}

@media (max-width: 1024px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row on tablets */
    }
}

@media (max-width: 600px) {
    .timeline-grid {
        grid-template-columns: 1fr;
        /* 1 per row on phones */
    }
}

.timeline-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.timeline-number {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b6b;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* WHERE Section */
.where-section {
    padding: 32px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0E1426 100%);
    color: white;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    row-gap: 25px;
    column-gap: 40px;
    margin-top: 16px;
    width: 100%;
}

.access-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.access-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.access-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    display: block;
}

.access-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* WHY Section */
.why-section {
    padding: 32px 0;
    background: white;
}

/* .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 25px;
    width: 100%;
} */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 20px;
    column-gap: 25px;
    margin-top: 12px;
    width: 100%;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row on tablets */
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        /* 1 per row on phones */
    }
}
.benefit-card {
    background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
    padding:10px 16px;
    border-radius: 25px;
    border-left: 6px solid #1a1a2e;
    position: relative;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2rem;
    /* margin-bottom: 10px; */
    display: block;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    /* margin-bottom: 10px; */
}

.benefit-description {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.roi-highlight {
    background: linear-gradient(45deg, #48bb78, #38a169);
    color: white;
    padding: 10px;
    border-radius: 10px;
    font-weight: 400;
    text-align: center;
    margin-top: 10px;
    /* font-size: 16px;  */
}

/* HOW Section */
.how-section {
    padding: 32px 0;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    row-gap: 20px;
    column-gap: 25px;
    margin-top: 10px;
    width: 100%;
}

.step-card {
    background: white;
    padding: 12px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    background: linear-gradient(45deg, var(--primary-color), #0f3460);
    color: white;
    width: 40px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 5px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

/* Premium Pricing Section */
.pricing-section {
    padding: 32px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #102A4C 100%);
    color: white;
}

h2.pricing-section {
    color: white;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 25px;
    font-size: 1.2rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
    width: 100%;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pricing-card:hover {
    transform: scale(1.05);
    border-color: #ffd700;
}

.pricing-card.featured {
    border: 3px solid var(--gold);
    transform: scale(1.08);
    background: rgba(255, 201, 74, 0.12);
}

.featured-badge {
    background: var(--gold);
    color: #1a1a2e;
    padding: 4px 25px;
    padding-top: 17px;
    margin-bottom: 4px;
    border-radius: 50px;
    font-weight: 700;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.plan-name {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 5px;
}

/* ============================= */
/* Testimonial Videos (Gallery)  */
/* ============================= */
.video-gallery {
    padding: 64px 5%;
    background: linear-gradient(160deg, #0f1222 0%, #1a2040 100%);
    color: #ffffff;
}

.video-gallery .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0 16px;
    overflow: hidden;
    position: relative;
}

/* Edge fade hints */
.testimonial-slider::before,
.testimonial-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    pointer-events: none;
    z-index: 1;
}
.testimonial-slider::before { left: 0; background: linear-gradient(90deg, rgba(26,32,64,0.9), rgba(26,32,64,0)); }
.testimonial-slider::after  { right: 0; background: linear-gradient(270deg, rgba(26,32,64,0.9), rgba(26,32,64,0)); }

/* Hide fade on edges */
.testimonial-slider.at-start::before { opacity: 0; }
.testimonial-slider.at-end::after  { opacity: 0; }

/* Horizontal row controlled by next/prev */
.video-gallery .swiper-wrapper {
    display: flex;
    gap: 16px;
    align-items: stretch;
    width: max-content;
    transform: translateX(0);
    transition: transform 400ms ease;
}

.video-gallery .swiper-slide { width: auto !important; flex: 0 0 260px; }

.video-item { display: flex; justify-content: center; width: 260px; }
@media (min-width: 768px) { .video-item { width: 300px; } .video-gallery .swiper-slide { flex-basis: 300px; } }
@media (min-width: 1024px) { .video-item { width: 320px; } .video-gallery .swiper-slide { flex-basis: 320px; } }

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-item:hover .video-thumbnail {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 100%);
}

.expand-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.35);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f44369;
    color: #fff;
    box-shadow: 0 10px 24px rgba(244, 67, 105, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-button:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 32px rgba(244, 67, 105, 0.45);
}

.video-duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
}

.video-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 16px 14px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 90%);
}

/* Inline player fill */
.video-thumbnail iframe,
.video-thumbnail .video-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Slider controls themed to page */
.video-gallery .swiper-button-next,
.video-gallery .swiper-button-prev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    transition: background 200ms ease, transform 200ms ease;
}
.video-gallery .swiper-button-prev { left: -4px; }
.video-gallery .swiper-button-next { right: -4px; }
.video-gallery .swiper-button-next:after,
.video-gallery .swiper-button-prev:after { font-size: 16px; }
.video-gallery .swiper-button-next:hover,
.video-gallery .swiper-button-prev:hover { background: rgba(255,255,255,0.25); }
.video-gallery .swiper-button-next.disabled,
.video-gallery .swiper-button-prev.disabled { opacity: 0.4; pointer-events: none; }

.video-gallery .swiper-pagination { display: none; }

/* Responsive tweaks */
@media (max-width: 768px) {
    .video-gallery { padding: 40px 4%; }
    .video-item { width: 180px; }
    .video-gallery .swiper-slide { flex-basis: 180px; }
    .play-button { width: 56px; height: 56px; }
    .video-duration { font-size: 0.75rem; }
    .video-title { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .video-gallery { padding: 28px 4%; }
    .video-gallery .swiper-wrapper { gap: 12px; }
    .testimonial-slider::before,
    .testimonial-slider::after { display: none; }
    .video-item { width: 135px; }
    .video-gallery .swiper-slide { flex-basis: 135px; }
    .play-button { width: 44px; height: 44px; }
    .video-title { font-size: 0.85rem; padding: 8px 10px 10px; }
    .video-gallery .swiper-button-next,
    .video-gallery .swiper-button-prev { width: 36px; height: 36px; top: 45%; }
    .video-gallery .swiper-button-prev { left: 4px; }
    .video-gallery .swiper-button-next { right: 4px; }
}

@media (max-width: 360px) {
    .video-item { width: 120px; }
    .video-gallery .swiper-slide { flex-basis: 120px; }
    .play-button { width: 40px; height: 40px; }
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--gold), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-duration {
    opacity: 0.8;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.plan-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.plan-features li:before {
    content: '✓';
    background: #48bb78;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.value-statement {
    background: rgba(34, 197, 94, 0.18);
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid #48bb78;
}

/* Social Proof */
.social-proof {
    padding: 20px 0;
    background: #f8fafc;
}

/* .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 30px;
    width: 100%;
} */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
    column-gap: 25px;
    /* gap: 35px; */
    margin-top: 3px;
    width: 100%;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row on tablets */
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        /* 1 per row on phones */
    }
}

.testimonial-card {
    background: white;
    padding: 12px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-results {
    background: linear-gradient(45deg, #48bb78, #38a169);
    color: white;
    padding: 10px;
    border-radius: 10px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

.testimonial-quote {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1rem;
}

/* Final CTA */
.final-cta {
    margin-top: 15px;
    padding: 32px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-2) 100%);
    color: white;
    text-align: center;
}

/* Video Lightbox */
.video-lightbox[aria-hidden="true"] { display: none; }
.video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.video-lightbox__dialog { position: relative; width: min(960px, 96vw); }
.video-lightbox__frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: 12px; overflow: hidden; }
.video-lightbox__iframe { width: 100%; height: 100%; border: 0; }
.video-lightbox__close {
    position: absolute;
    top: -44px;
    right: -4px;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 640px) {
    .video-lightbox__close { top: 8px; right: 8px; }
}

.scarcity-alert {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px;
    border-radius: 20px;
    margin: 20px auto;
    max-width: 600px;
    font-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.qualification-points {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
    margin: 25px 0;
    /* max-width: 00px; */
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.qualification-point {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.checkmark {
    background: #48bb78;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

/* .cta-buttons {
    background: #1a1a2e;
} */

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .program-details,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .cta-buttons,
    .sticky-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .program-details,
    .benefits-grid,
    .testimonials-grid,
    .access-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-grid,
    .process-steps,
    .qualification-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1.03);
    }

    .detail-card,
    .benefit-card,
    .testimonial-card,
    .access-card,
    .step-card {
        padding: 30px;
    }

    .what-intro,
    .pricing-intro {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .target-badge,
    .urgency-badge {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .target-badge {
        margin-bottom: 4rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .detail-title,
    .benefit-title,
    .access-title,
    .step-title {
        font-size: 1.3rem;
    }

    .detail-description,
    .benefit-description {
        font-size: 1rem;
    }

    .exclusivity-note,
    .scarcity-alert {
        padding: 15px;
        font-size: 1rem;
    }

    .plan-price {
        font-size: 3rem;
    }

    .plan-name {
        font-size: 1.7rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .qualification-point {
        padding: 15px;
        font-size: 0.9rem;
    }

    .checkmark {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}