/* ===========================
   MOBILE NAV & HEADER
=========================== */
@media (max-width: 768px) {

    .desktop-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
    }

    .header-wrap {
        padding: 16px 0;
    }

    .logo img {
        height: 34px;
    }

    .brand-text {
        font-size: 22px;
    }

    /* ===== SIDE NAV ===== */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        padding: 90px 30px 30px;
        display: flex;
        flex-direction: column;
        gap: 22px;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.15);
        transition: 0.35s ease;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 18px;
        font-weight: 500;
        color: #111;
        text-decoration: none;
    }

    /* ===== CLOSE BUTTON ===== */
    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 34px;
        font-weight: 300;
        color: #111;
        cursor: pointer;
        line-height: 1;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav-close:hover {
        transform: rotate(90deg);
        opacity: 0.7;
    }

    .mobile-cta {
        display: block;
        margin-top: 20px;
        text-align: center;
        font-size: 16px;
    }
}

/* Hide close button on desktop */
@media (min-width: 769px) {
    .nav-close {
        display: none;
    }
}





/* ===========================
   HERO SECTION
=========================== */
@media (max-width: 991px) {

    .hero-wrap {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-content .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .subtitle {
        font-size: 15px;
    }

    .rating {
        justify-content: center;
        font-size: 14px;
    }
}

/* ===========================
   STATS & FEATURES
=========================== */
@media (max-width: 991px) {

    .stats-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-heading {
        font-size: 38px;
    }
}

@media (max-width: 576px) {

    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .main-heading {
        font-size: 30px;
    }

    .feature-card {
        padding: 28px;
    }

    .offer-section, 
    .mentor-section, 
    .testimonial-section, 
    .faq-section, 
    .combined-section, 
    .image-review-section, 
    .dropshipping-benefits, 
    .contact-section,
    .learning-process {
        /* padding-top: 0 !important; */
        padding-top: 26px !important;
        padding-bottom: 50px !important;
    }

    .guarantee-section {
        padding: 0 auto !important;
    }

    .learning-process, 
    .testimonial-section, 
    .dropshipping-benefits,
    .contact-section {
        padding-top: 20px !important;
    }

    .mentor-container {
        gap: 0 !important;
    }

    .faq-heading {
        margin-bottom: 20px !important;
    }

    .contact-list a {
        min-height: auto;
    }
}

/* ===========================
   PROCESS SECTION
=========================== */
@media (max-width: 991px) {
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .process-flow {
        display: flex;
        gap: 10px;
        margin-bottom: 40px;
    }

    .process-cards {
        grid-template-columns: 1fr;
    }

    .process-header h2 {
        font-size: 28px;
    }
}



/* ===========================
   MENTOR SECTION
=========================== */
@media (max-width: 991px) {
    .mentor-container {
        grid-template-columns: 1fr;
    }

    .mentor-card {
        height: 420px;
        margin-bottom: 30px;
    }

    .mentor-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .mentor-section {
        padding: 70px 15px;
    }

    .mentor-card {
        height: 360px;
    }

    .mentor-content h2 {
        font-size: 26px;
    }

    .mentor-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===========================
   BONUS SECTION
=========================== */
@media (max-width: 991px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-title {
        font-size: 32px;
    }

    .title-highlight {
        width: 220px;
        right: 10%;
    }
}

@media (max-width: 576px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .bonus-title {
        font-size: 26px;
    }

    .title-highlight {
        display: none;
    }

    .bonus-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   TESTIMONIALS
=========================== */
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-header h2 {
        font-size: 26px;
    }
}

/* ===========================
   GUARANTEE SECTION
=========================== */
@media (max-width: 991px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .guarantee-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .guarantee-content h2 {
        font-size: 26px;
    }

    .guarantee-content p {
        font-size: 16px;
    }

    .guarantee-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   FAQ
=========================== */
@media (max-width: 576px) {
    .faq-heading {
        font-size: 30px;
        line-height: 2;
    }

    .faq-question {
        font-size: 15px;
        padding: 0;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* ===========================
   OFFER SECTION
=========================== */
@media (max-width: 576px) {
    .offer-card {
        padding: 40px 20px;
    }

    .new-price {
        font-size: 40px;
    }

    .time-box {
        width: 78px;
    }

    .register-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===========================
   FOOTER RESPONSIVE
=========================== */
@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .brand-logo {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-col {
        margin-bottom: 20px;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .policy-links {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .policy-links a {
        margin-left: 0;
    }
}

/* ===========================
   GLOBAL MOBILE POLISH
=========================== */
@media (max-width: 576px) {
    section {
        padding: 0px 0;
    }

    a,
    button {
        min-height: 44px;
    }
}

/* ================= CONTACT RESPONSIVE ================= */
@media (max-width: 991px) {
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 70px 0;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-form-box {
        padding: 30px 22px;
    }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .webinar-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .webinar-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .ito-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ito-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .ito-about-section {
        padding: 0px 0;
    }

    .ito-content h2 {
        font-size: 26px;
    }

    .ito-content p {
        font-size: 15.5px;
    }

    .ito-badge {
        font-size: 13px;
        padding: 10px 18px;
    }
}

@media (max-width: 900px) {
    .mentor-container {
        grid-template-columns: 1fr;
    }

    .mentor-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 900px) {
    .webinar-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .webinar-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .image-review-card {
        width: 240px;
    }

    .image-review-header h2 {
        font-size: 28px;
    }
}

/* Hide hero register button on mobile */
@media (max-width: 768px) {
    .hero-content .btn.btn-orange.large {
        display: none;
    }
}
@media (max-width: 576px) {
    .hero-content .btn.btn-orange.large {
        display: none;
    }
}

