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

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --primary-pink: #ff006e;
    --primary-purple: #8b39ff;
    --primary-green: #00ff88;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-light: #e0e0e0;
    --gradient-primary: linear-gradient(90deg, #ff006e, #8b39ff);
    --gradient-secondary: linear-gradient(90deg, #8b39ff, #00ff88);
    --border-color: rgba(255, 255, 255, 0.1);
}

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

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

/* Top Bar */
.top-bar {
    background: var(--gradient-primary);
    padding: 10px 0;
    text-align: center;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.bf-badge {
    background: var(--bg-dark);
    color: var(--primary-pink);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.discount-text {
    font-weight: 600;
    font-size: 14px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 80px 0;
    background-image: url('assets/fundo_blackbonde.webp');
    background-size: auto 90%;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 60%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.hero-logo {
    max-width: 240px;
    height: auto;
    margin-bottom: 40px;
    display: block;
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.hero-bullets {
    margin-bottom: 40px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.bullet-item i {
    color: var(--primary-green);
    font-size: 20px;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 57, 255, 0.3);
    background: linear-gradient(135deg, rgba(139, 57, 255, 0.05), rgba(255, 0, 110, 0.05));
    padding-top: 56.25%; /* 16:9 Aspect Ratio - same as video */
    max-width: 500px;
    margin: 0 auto;
}

.hero-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.video-thumb {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 110, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-pink);
}

.play-overlay i {
    color: white;
    font-size: 24px;
    margin-left: 5px;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    padding: 25px 40px;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 5px;
}

/* CTA Buttons */
.cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.cta-button.cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.cta-button.cta-secondary:hover {
    background: var(--primary-green);
    color: var(--bg-dark);
}

.cta-button.cta-large {
    padding: 22px 44px;
    font-size: 18px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
}

/* Curriculum Section */
.curriculum {
    background: var(--bg-darker);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
}

.modules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.module-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-icon i {
    color: white;
    font-size: 24px;
}

.module-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.module-lessons {
    list-style: none;
}

.module-lessons li {
    padding: 10px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
}

.module-lessons li:last-child {
    border-bottom: none;
}

.module-lessons i {
    color: var(--primary-green);
}

.curriculum-cta {
    text-align: center;
    margin-top: 50px;
}

/* Bonus Section */
.bonus-section {
    background: var(--bg-dark);
}

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

.bonus-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bonus-item-featured {
    border: 3px solid #ff6b35;
}

.bonus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1;
}

.bonus-item-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.bonus-item-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bonus-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.bonus-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.bonus-features {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    flex-grow: 1;
}

.bonus-price-wrapper {
    margin-top: auto;
    padding-top: 15px;
}

.bonus-value {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 18px;
    display: block;
}

.bonus-value-featured {
    color: #ff6b35;
}

.bonus-price-vista {
    font-size: 14px;
    color: var(--text-gray);
    margin: 5px 0 0 0;
}

.bonus-badge {
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.bonus-price-wrapper .cta-button {
    margin-top: 15px;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
}

/* Responsividade bonus-grid */
@media (max-width: 992px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .bonus-item-img {
        height: 180px;
    }
}

/* Ferramentas e Recursos Section */
.ferramentas-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.ferramentas-lista {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.ferramentas-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #8b39ff;
    border-radius: 15px;
    padding: 40px 50px;
    min-width: 280px;
}

@media (max-width: 768px) {
    .ferramentas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ferramentas-total {
        min-width: auto;
        width: 100%;
        padding: 30px 20px;
    }
}

/* Guarantee Section */
.guarantee {
    background: var(--bg-darker);
    padding: 60px 0;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 50px;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.guarantee-icon i {
    color: white;
    font-size: 40px;
}

.guarantee-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.guarantee-box p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Testimonials */
.testimonials {
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-header p {
    color: var(--text-gray);
    font-size: 14px;
}

.testimonial-item > p {
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

/* Instructor Section */
.instructor {
    background: var(--bg-darker);
}

.instructor-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.instructor-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(139, 57, 255, 0.3);
    image-orientation: from-image;
}

.instructor-content h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.instructor-title {
    color: var(--primary-purple);
    font-size: 18px;
    margin-bottom: 30px;
}

.instructor-bio {
    margin-bottom: 30px;
}

.instructor-bio p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.instructor-stats {
    display: flex;
    gap: 40px;
}

.instructor-stats .stat {
    text-align: center;
}

.instructor-stats .number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instructor-stats .label {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 5px;
}

/* Pricing Section */
.pricing {
    background: var(--bg-dark);
}

.pricing-header {
    text-align: center;
}

.price-display {
    margin: 40px 0;
}

.price-box {
    display: inline-block;
    background: var(--bg-card);
    border: 2px solid var(--primary-pink);
    border-radius: 12px;
    padding: 40px 60px;
}

.price-old {
    display: block;
    font-size: 18px;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price-new {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.currency {
    font-size: 24px;
    margin-top: 10px;
}

.amount {
    font-size: 72px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.installment {
    display: block;
    color: var(--primary-green);
    font-size: 16px;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--primary-green);
    font-size: 20px;
}

.pricing-cta {
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.payment-methods img {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

/* FAQ Section */
.faq {
    background: var(--bg-darker);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 30px;
    background: transparent;
    border: none;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.faq-question:hover {
    background: rgba(139, 57, 255, 0.1);
}

.faq-question i {
    color: var(--primary-pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-answer p {
    padding: 0 30px;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 20px 0;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 100px 0;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 2px solid var(--primary-pink);
    border-radius: 12px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.time-unit {
    text-align: center;
}

.time-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.time-label {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
    text-transform: uppercase;
}

.time-separator {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 110, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 0, 110, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 110, 0);
    }
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-pink);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--primary-pink);
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-pink);
}

.modal-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Form */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.form-group input {
    padding: 12px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-pink);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Carousel Scroll Styles */
.carousel-scroll {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.carousel-scroll-track {
    display: flex;
    gap: 15px;
    animation: scroll-left 60s linear infinite;
    width: fit-content;
}

.carousel-scroll-reverse .carousel-scroll-track {
    animation: scroll-right 60s linear infinite;
}

.carousel-scroll-item {
    flex-shrink: 0;
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-scroll-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(139, 57, 255, 0.4);
}

.carousel-scroll-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Pause on hover */
.carousel-scroll:hover .carousel-scroll-track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        background-size: auto 100%;
        background-position: 85% center;
        background-attachment: scroll;
        align-items: flex-start;
        padding-top: 0;
    }

    .hero::before {
        width: 100%;
        background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.85) 100%);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding-top: 60px;
    }

    .hero-logo {
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
    }

    .hero-title,
    .hero-subtitle,
    .hero-bullets {
        text-align: center;
    }

    .bullet-item {
        justify-content: center;
    }

    .cta-button {
        margin: 0 auto;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instructor-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links,
    .footer-social {
        justify-content: center;
    }
    
    .countdown-display {
        gap: 10px;
    }
    
    .time-number {
        font-size: 32px;
    }
    
    .amount {
        font-size: 48px;
    }

    .carousel-scroll-item {
        width: 150px;
    }
}