@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Find the Gaps Section */
.gaps-section {
    padding: 60px 0 100px;
    background: #F5F5F5;
    margin-top: -10px;
}

.gaps-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.gaps-text {
    padding-right: 40px;
    text-align: left;
}

.gaps-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1A1A1A;
    letter-spacing: -0.5px;
    text-align: left;
}

.gaps-description {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 36px;
    text-align: left;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: #5B9A5F;
    color: white !important;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s;
}

.cta-button:hover {
    background: #4A8550;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(91, 154, 95, 0.25);
}

.cta-buttons-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* How to Subscribe Button - Compelling Call-to-Action with Pulsing Glow */
.how-to-subscribe-wrapper {
    margin-top: 16px;
    width: 100%;
    max-width: fit-content;
}

.cta-button.how-to-subscribe {
    display: inline-block;
    width: auto;
    min-width: 305px;
    text-align: center;
    background: white;
    color: #5B9A5F !important;
    border: 2px solid #5B9A5F;
    position: relative;
    overflow: visible;
    z-index: 1;
    font-weight: 700;
    box-shadow: 0 0 0 0 rgba(91, 154, 95, 0.4);
    animation: pulseGlow 2s ease-in-out infinite;
}

.cta-button.how-to-subscribe::before {
    content: '→';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    color: #5B9A5F;
   
}

.cta-button.how-to-subscribe::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 8px;
    background: linear-gradient(90deg, 
        #5B9A5F,
        #7EC682,
        #91D494,
        #7EC682,
        #5B9A5F
    );
    background-size: 200% 100%;
    z-index: -1;
    opacity: 0;
    animation: borderFlow 3s linear infinite;
    transition: opacity 0.3s ease;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(91, 154, 95, 0.4),
                    0 4px 12px rgba(91, 154, 95, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(91, 154, 95, 0),
                    0 8px 20px rgba(91, 154, 95, 0.3);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(4px);
    }
}

@keyframes borderFlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.cta-button.how-to-subscribe:hover {
    background: #5B9A5F;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(91, 154, 95, 0.35);
    animation: none;
}

.cta-button.how-to-subscribe:hover::before {
    color: white;
    transform: translateY(-50%) translateX(6px);
    animation: none;
}

.cta-button.how-to-subscribe:hover::after {
    opacity: 1;
}

.cta-button.primary {
    background: #5B9A5F;
    color: white !important;
}

.cta-button.primary:hover {
    background: #4A8550;
    color: white !important;
}

.cta-button.secondary {
    background: transparent;
    color: #5B9A5F !important;
    border: 2px solid #5B9A5F;
}

.cta-button.secondary:hover {
    background: #5B9A5F;
    color: white !important;
    border-color: #5B9A5F;
}

.gaps-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.video-border-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid #5B9A5F;
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #2C3E50;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    border: none;
}

/* Package Selection Section */
.package-section {
    padding: 100px 0;
    background: white;
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #666666;
}

/* Pricing Toggle - Clean Rectangular Design */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0 auto 80px;
    background: #E8E8E8;
    border-radius: 12px;
    padding: 4px;
    max-width: 300px;
}

.toggle-btn {
    flex: 1;
    padding: 14px 40px;
    border: none;
    background: transparent;
    color: #666666;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.toggle-btn:hover:not(.active) {
    color: #1A1A1A;
}

.toggle-btn.active {
    background: #5B9A5F;
    color: white;
    box-shadow: 0 2px 8px rgba(91, 154, 95, 0.3);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 0;
    align-items: stretch;
}

.package-card {
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.package-card.featured {
    border-color: #5B9A5F;
    border-width: 3px;
    padding: 48px 32px 36px;
    box-shadow: 0 12px 32px rgba(91, 154, 95, 0.15);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #5B9A5F;
    color: white;
    font-family: 'Outfit', sans-serif;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.package-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-name {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.package-description {
    font-family: 'Outfit', sans-serif;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-price {
    text-align: center;
    margin-bottom: 32px;
}

.price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -1px;
}

.price-period {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1A1A1A;
}

/* Original (struck-through) price shown above the actual price */
.was-price-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    min-height: 30px;
}

.was-price {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    text-decoration-color: #e74c3c;
    text-decoration-thickness: 2px;
    line-height: 1.2;
}

.was-period {
    font-size: 13px;
    font-weight: 400;
}

.save-badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    vertical-align: middle;
}

.package-features {
    list-style: none;
    margin-bottom: -50px;
    padding: 0;
}

.package-features li {
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
}

.package-features li:last-child {
    margin-bottom: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    background: #5B9A5F;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    margin-top: 1px;
}

.checkmark::before {
    content: '✓';
}

.package-button {
    font-family: 'Outfit', sans-serif;
    width: 100%;
    padding: 15px 0px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    margin-top: 36px;
}

.package-button::after {
    content: '→';
    font-size: 18px;
}

.package-button.primary {
    background: #5B9A5F;
    color: white;
}

.package-button.primary:hover {
    background: #4A8550;
}

.package-button.secondary {
    background: #E5E5E5;
    color: #1A1A1A;
}

.package-button.secondary:hover {
    background: #D5D5D5;
}

/* Skip Link */
.skip-link-container {
    text-align: right;
    margin-top: 20px;
    padding-right: 20px;
}

.skip-link {
    font-family: 'Outfit', sans-serif;
    color: #5B9A5F;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.skip-link::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.2s ease;
}

.skip-link:hover {
    color: #4A8550;
}

.skip-link:hover::after {
    transform: translateX(4px);
}

/* Features Section - Progress Tracking */
.features-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-text {
    text-align: left;
}

.features-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1A1A1A;
    letter-spacing: -0.5px;
    text-align: left;
}

.features-description {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 32px;
    text-align: left;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-left: 0px;
}

.features-list li {
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: left;
}

.features-image {
    position: relative;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* What Students Say Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 20px 28px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #6BAE6F 0%, #5B9A5F 100%);
    color: white;
    border: none;
    box-shadow: 0 12px 32px rgba(91, 154, 95, 0.25);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: #5B9A5F;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: absolute;
    top: -26px;
    left: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured .testimonial-avatar {
    background: #5B9A5F;
    color: #ffffff;
    border: 3px solid #ffffff;
}

.testimonial-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    margin-top: 28px;
    text-align: left;
}

.testimonial-card.featured .testimonial-quote {
    color: white;
}

.testimonial-author {
    border-top: 1px solid #E5E5E5;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-card.featured .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.author-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
   text-align: left;
}

.testimonial-card.featured .author-info h4 {
  color: #ffffff;
}


.author-info p {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #666666;
}

.testimonial-card.featured .author-info p {
    color: rgba(255, 255, 255, 0.9);
}

.stars {
    display: flex;
    gap: 3px;
    color: #FFA726;
    font-size: 16px;
}

.testimonial-card.featured .stars {
    color: #FFD54F;
}

.testimonial-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.nav-button {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
}

.nav-button.prev {
    background: #E5E5E5;
    color: #666666;
}

.nav-button.next {
    background: #5B9A5F;
    color: white;
}

.nav-button:hover {
    transform: scale(1.05);
}

.nav-button::before {
    content: '→';
}

.nav-button.prev::before {
    content: '←';
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 20px;
}

.faq-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1A1A1A;
    letter-spacing: -0.5px;
}

.faq-header p {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.faq-list {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #E5E5E5;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: 'Outfit', sans-serif;
    width: 100%;
    padding: 22px 26px;
    background: white;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #FAFAFA;
}

.faq-icon {
    font-size: 18px;
    color: #666666;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer-content {
    font-family: 'Outfit', sans-serif;
    padding: 0 26px 22px;
    font-size: 15px;
    line-height: 1.2;
    color: #666666;
    text-align: left;
}

/* CTA Banner Section - MATCHING MOCKUP EXACTLY */
.cta-banner-section {
    padding: 80px 0 120px;
    background: white;
    display: none;
}

.cta-banner {
    background: linear-gradient(135deg, #6BB870 0%, #7EC682 50%, #91D494 100%);
    border-radius: 24px;
    padding: 60px 80px;
    box-shadow: 0 16px 48px rgba(91, 154, 95, 0.25);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cta-banner-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cta-banner-left h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: white !important;
    line-height: 1.3;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    text-align: left;
}

.cta-banner-left .cta-banner-button {
    display: inline-block;
    padding: 16px 40px;
    background: #1A1A1A;
    color: white !important;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    width: fit-content;
}

.cta-banner-left .cta-banner-button:hover {
    background: #2A2A2A;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-banner-right {
    display: flex;
    align-items: end;
    padding: 0;
    padding-bottom: 12px;
}

.cta-banner-right p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1A1A1A;
    text-align: left;
    margin: 0;
}

/* Footer */
.footer {
    background: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #E5E5E5;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: 'Outfit', sans-serif;
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #1A1A1A;
}

.footer-copyright {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 24px;
    }

    .package-card.featured {
        margin-top: 0;
        margin-bottom: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features-content,
    .gaps-content,
    .faq-container,
    .cta-banner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-title {
        font-size: 32px;
    }

    .gaps-text h2 {
        font-size: 40px;
    }

    .features-text h2 {
        font-size: 36px;
    }

    .cta-banner-left h2 {
        font-size: 32px;
    }

    .cta-banner {
        padding: 50px 40px;
    }

    .cta-banner-right {
        align-items: start;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    /* Hero/Gaps Section - FIX VIDEO OVERFLOW */
    .gaps-section {
        padding: 50px 0 60px;
        overflow: hidden;
    }

    .gaps-content {
        gap: 40px;
    }

    .gaps-text {
        padding-right: 0;
    }

    .gaps-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .gaps-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .cta-button.how-to-subscribe{
        min-width: 342px;
    }

    /* FIX CTA BUTTON OVERFLOW */
    .cta-button {
        padding: 14px 20px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    /* FIX VIDEO SECTION OVERFLOW */
    .gaps-image {
        padding: 0;
        margin: 0;
    }

    .video-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .video-border-frame {
        left: 10px;
        right: 0px;
        top: 0px;
        bottom: 15px;
    }

    .video-container {
        margin: 0;
    }

    /* Package Section - ADD SAFE MARGINS */
    .package-section {
        padding: 20px 0;
        overflow: hidden;
    }

    .section-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* Pricing Toggle - Mobile fit */
    .pricing-toggle {
        margin-bottom: 40px;
        max-width: 90%;
    }

    /* Package Grid - Prevent overflow */
    .packages-grid {
        max-width: 100%;
        padding: 0 10px;
        gap: 40px;
    }

    .package-card {
        padding: 28px 20px 24px;
        box-sizing: border-box;
    }

    .package-card.featured {
        padding: 40px 20px 24px;
        margin: 0;
    }

    .package-name {
        font-size: 24px;
    }

    .package-description {
        font-size: 11px;
        min-height: auto;
    }

    .price-amount {
        font-size: 36px;
    }

    .price-period {
        font-size: 16px;
    }

    .package-features {
        margin-bottom: 24px;
    }

    .package-features li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    /* FIX PACKAGE BUTTON OVERFLOW */
    .package-button {
        padding: 14px 0px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Features Section */
    .features-section {
        padding: 60px 0;
    }

    .features-content {
        gap: 40px;
    }

    .features-text h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .features-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .features-list {
        padding: 0;
        margin: 0;
    }

    .features-list li {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .features-list .checkmark {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    /* Testimonials Section - FIX AVATAR & SPACING */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-grid {
        gap: 32px;
        overflow-x: hidden;
    }

    .testimonial-card {
        min-height: auto;
        padding: 40px 24px 24px;
        margin-top: 30px;
    }

    /* FIX AVATAR VISIBILITY ON MOBILE */
    .testimonial-avatar {
        width: 56px;
        height: 56px;
        font-size: 18px;
        top: -28px;
        left: 24px;
        border: 4px solid white;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    .testimonial-card.featured .testimonial-avatar {
        border: 4px solid white;
        background: #5B9A5F;
        color: white;
        box-shadow: 0 6px 20px rgba(91, 154, 95, 0.4);
    }

    .testimonial-quote {
        font-size: 14px;
        margin-top: 16px;
        margin-bottom: 24px;
        line-height: 1.8;
    }

    .testimonial-author {
        padding-top: 20px;
        margin-top: 8px;
    }

    .author-info h4 {
        font-size: 14px;
    }

    .author-info p {
        font-size: 12px;
    }

    .stars {
        font-size: 15px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        gap: 40px;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-header p {
        font-size: 14px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
    }

    .faq-answer-content {
        padding: 0 20px 18px;
        font-size: 13px;
    }

    .faq-answer-content p {
        font-size: 13px;
    }

    .faq-item.active .faq-answer {
        max-height: 600px;
    }

    /* CTA Banner - FIX BUTTON OVERFLOW */
    .cta-banner-section {
        padding: 50px 0 80px;
    }

    .cta-banner {
        padding: 40px 24px;
        gap: 32px;
        box-sizing: border-box;
    }

    .cta-banner-left h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    /* FIX CTA BANNER BUTTON */
    .cta-banner-left .cta-banner-button {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .cta-banner-right {
        padding-bottom: 0;
    }

    .cta-banner-right p {
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 30px 0;
    }

    .footer-links {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile - tighter spacing */
    .container {
        padding: 0 16px;
    }

    .gaps-text h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .features-text h2 {
        font-size: 24px;
    }

    .cta-banner-left h2 {
        font-size: 24px;
    }

    .package-name {
        font-size: 22px;
    }

    .price-amount {
        font-size: 32px;
    }

    .popular-badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    /* Tighter package spacing */
    .packages-grid {
        padding: 0 10px;
    }

    .package-card {
        padding: 24px 16px 20px;
    }

    .package-card.featured {
        padding: 36px 16px 20px;
    }

    /* Video border adjustment for very small screens */
    .video-border-frame {
        left: 5px;
        right: -5px;
        top: -10px;
        bottom: 10px;
    }

    /* CTA Banner extra tight */
    .cta-banner {
        padding: 32px 20px;
    }

    .cta-banner-left .cta-banner-button {
        padding: 12px 20px;
    }
}