/* ==========================================================================
   RESPONSIVE CSS — Consolidated
   One block per breakpoint. MOBILE REDESIGN is source of truth for conflicts.
   ========================================================================== */

/* Logo responsivo */
.logo-img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

/* Header Mobile Fixes (non-media) */
.logo .nav-link::after {
    display: none;
}

.nav-item-cta {
    display: none;
}

.nav-link-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.35);
}

.nav-link-cta::after {
    display: none;
}

/* ==========================================================================
   768px - Tablet Portrait / Mobile
   ========================================================================== */
@media (max-width: 768px) {
    /* ---------- CSS VARIABLES ---------- */
    :root {
        --header-height: 65px;
        --starter-header-height: 65px;
    }

    /* ---------- HEADER MOBILE ---------- */
    .navbar {
        height: 65px;
        padding: 0 1rem;
    }

    .nav-container {
        position: relative;
        justify-content: space-between;
        gap: 0;
    }

    .logo {
        font-size: 1.4rem;
        margin-right: 0;
    }

    .logo::after {
        bottom: -1px;
    }

    .button-container {
        display: flex;
        align-items: center;
        margin-left: auto;
        gap: 10px;
    }

    .mobile-user-btn {
        margin-right: 0;
    }

    /* Hamburger icon — touch target ≥ 44px (WCAG 2.5.8) */
    .mobile-icon {
        position: static;
        top: auto;
        right: auto;
        transform: none;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: var(--text-light, #fff);
        flex-shrink: 0;
        pointer-events: auto;
        touch-action: manipulation;
        z-index: 920;
        appearance: none;
        -webkit-appearance: none;
        transition: all 0.3s ease;
    }

    .mobile-icon .hamburger-bar {
        pointer-events: none;
    }

    .mobile-icon:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        color: #fff;
    }

    /* Mobile CTA inside menu */
    .nav-item-cta {
        display: flex;
        width: 100%;
        padding: 0 1.5rem 1.5rem;
    }

    .nav-link-cta {
        width: 100%;
    }

    /* CTA button in header — hide (hero has CTAs) */
    .mobile-nav-button {
        display: none !important;
    }

    /* Nav menu scroll fix (positioning handled by header.css) */
    .nav-menu {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2rem;
    }

    .nav-menu.active {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    body.mobile-menu-open {
        overflow: hidden;
        touch-action: none;
    }

    /* ---------- HERO SECTION ---------- */
    .hero-split {
        padding: 90px 1.25rem 40px;
        min-height: auto;
    }

    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-split-content {
        order: 1;
    }

    .hero-split-media {
        order: 2;
        display: block;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-split-title {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .hero-split-title .gradient-text {
        display: inline;
    }

    .hero-split-subtitle {
        font-size: 0.85rem;
        margin: 0 auto 1.25rem;
        max-width: 95%;
        line-height: 1.5;
    }

    /* FEATURES - horizontal bar */
    .hero-split-features {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 0;
        margin-bottom: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 0;
        overflow: hidden;
    }

    .hero-feature {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 0.5rem;
        gap: 0.15rem;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.75rem;
    }

    .hero-feature:last-child {
        border-right: none;
    }

    .hero-feature i {
        display: none;
    }

    .hero-feature span {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.2;
    }

    /* Buttons */
    .hero-split-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-split-buttons .btn {
        width: 100%;
        max-width: 260px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
    }

    /* Hide floating stats */
    .floating-stat {
        display: none !important;
    }

    /* VIDEO - show on mobile */
    .hero-video-frame {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        border-radius: 12px;
        position: relative !important;
        min-height: 200px;
        background: rgba(0, 0, 0, 0.3);
    }

    .hero-preview-video,
    .hero-preview-image {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 12px;
    }

    .hero-video-frame:has(iframe.hero-youtube-video) {
        padding-bottom: 56.25%;
        height: 0;
        min-height: 0;
    }

    iframe.hero-youtube-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .video-play-btn {
        width: 55px;
        height: 55px;
        display: flex !important;
    }

    .video-play-btn i {
        font-size: 1.2rem;
        margin-left: 3px;
    }

    .video-glow {
        display: none;
    }

    .video-overlay-ui {
        display: block !important;
    }

    /* ---------- SECTIONS GENERAL ---------- */
    .content-stats-section,
    .section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    /* ---------- STATS SECTION ---------- */
    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .stat-icon i {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-desc {
        font-size: 0.8rem;
        display: none;
    }

    /* ---------- CHANNEL SLIDER ---------- */
    .channels-section {
        padding: 3rem 0;
    }

    .channel-slider {
        margin: 0 -10px;
        padding: 15px 0;
    }

    .logo-container {
        height: 80px;
        width: 130px;
        padding: 0.6rem;
    }

    .channel-logo {
        max-height: 45px;
        max-width: 80%;
    }

    .channel-logo-placeholder span {
        font-size: 0.7rem;
    }

    .category-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .channels-note {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }

    .channels-note p {
        font-size: 1rem;
    }

    /* ---------- TESTIMONIALS ---------- */
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-section .container {
        position: relative;
        padding: 0 1rem;
    }

    /* Grid mode only — carousel mode has its own overflow handling via .testimonial-carousel-track */
    .testimonial-slider:not(.testimonial-carousel-mode),
    .testimonial-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem 0 1.5rem;
        margin: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonial-slider:not(.testimonial-carousel-mode)::-webkit-scrollbar,
    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-slider:not(.testimonial-carousel-mode) .testimonial-card,
    .testimonial-grid .testimonial-card {
        flex: 0 0 100%;
        min-width: 0;
        max-width: 100%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        box-sizing: border-box;
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .quote-icon {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .user-image {
        width: 44px;
        height: 44px;
    }

    .user-name {
        font-size: 0.95rem;
    }

    .user-role {
        font-size: 0.8rem;
    }

    .testimonial-slider .slick-prev,
    .testimonial-slider .slick-next {
        width: 38px;
        height: 38px;
    }

    .testimonial-slider .slick-prev {
        left: -5px;
    }

    .testimonial-slider .slick-next {
        right: -5px;
    }

    /* JS nav arrows */
    .testimonial-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        color: white;
        font-size: 0.9rem;
    }

    .testimonial-nav:hover {
        background: var(--primary);
        border-color: var(--primary);
    }

    .testimonial-nav.prev {
        left: 0;
    }

    .testimonial-nav.next {
        right: 0;
    }

    /* JS dots */
    .testimonial-dots {
        display: flex !important;
        justify-content: center;
        gap: 4px;
        margin-top: 0.5rem;
    }

    .testimonial-dot {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-dot::before {
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .testimonial-dot.active::before {
        background: var(--secondary);
        transform: scale(1.2);
    }

    /* ---------- PLANS / PRICING ---------- */
    .plans-section {
        padding: 3rem 0;
    }

    .plan-toggle,
    .plan-toggle-3 {
        gap: 0.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .toggle-option {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .plans-container {
        gap: 1.5rem;
    }

    .plan-card {
        max-width: 100%;
        width: 100%;
    }

    .plan-card.popular {
        transform: scale(1);
    }

    .plan-header {
        padding: 1.5rem;
    }

    .plan-name {
        font-size: 1.25rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .billing-cycle {
        font-size: 0.9rem;
    }

    .plan-body {
        padding: 1.5rem;
    }

    .feature-item {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .plan-button {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    /* ---------- FAQ SECTION ---------- */
    .faq-section {
        padding: 3rem 0;
    }

    .faq-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .faq-item {
        margin-bottom: 0.8rem;
    }

    .question-header {
        padding: 1.2rem 1rem;
    }

    .question-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        margin-right: 0.75rem;
    }

    .question-icon i {
        font-size: 0.75rem;
    }

    .toggle-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    .question-text {
        font-size: 0.95rem;
    }

    .answer-container {
        padding: 0 1rem;
    }

    .answer {
        padding: 1rem 0;
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* ---------- CONTACT SECTION ---------- */
    .contact-section {
        padding: 3rem 0;
    }

    .contact-grid {
        gap: 1.25rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .contact-info-item {
        gap: 0.9rem;
        padding: 0.5rem;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.9rem 0.9rem 0.9rem 2.75rem;
        font-size: 1rem;
        border-radius: 8px;
    }

    .input-icon i {
        left: 0.9rem;
        font-size: 0.9rem;
    }

    .contact-submit-btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }

    /* ---------- VIDEO MODAL ---------- */
    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }

    .video-modal-wrapper {
        border-radius: 12px;
    }

    /* ---------- PAGES INTERNAS ---------- */
    .page-header {
        padding: 3.5rem 0;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .page-description {
        font-size: 1rem;
    }

    .header-content {
        padding: 0 1.5rem;
    }

    .support-content {
        padding: 3rem 1.5rem;
    }

    .device-card {
        padding: 1.5rem;
    }

    /* ---------- FOOTER ---------- */
    .footer {
        text-align: center;
        padding-top: 3rem;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-grid > div {
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-about {
        text-align: center;
        margin: 0 auto 1.5rem;
        max-width: 90%;
    }

    .footer-heading {
        text-align: center;
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .footer-heading::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    ul.footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .footer-link {
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .footer-link a {
        display: inline-block;
        text-align: center;
    }

    .footer-link a::before {
        display: none !important;
    }

    .contact-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .contact-item span {
        flex-shrink: 0;
    }

    .contact-item p {
        margin: 0;
        text-align: left;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-nav {
        justify-content: center;
    }

    /* ---------- PERFORMANCE: disable heavy effects ---------- */
    .navbar.scrolled,
    .navbar.navbar-solid {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: var(--overlay-bg, rgba(13, 17, 23, 0.98)) !important;
    }

    .hero-video-frame,
    .modal-content,
    .dropdown-menu {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .gradient-text,
    .glow-effect,
    .float-element,
    .floating-stat {
        animation: none !important;
    }
}

/* ==========================================================================
   576px - Large Smartphones
   ========================================================================== */
@media (max-width: 576px) {
    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Navbar */
    .navbar {
        padding: 0.5rem 1rem;
    }

    .mobile-user-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 16px;
        margin-right: 6px;
    }

    /* Logo */
    .logo {
        font-size: 1.5rem;
    }

    .logo-img {
        max-height: 40px;
    }

    /* Nav links */
    .nav-link {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    /* ---------- HERO SECTION ---------- */
    .hero-split {
        padding: 90px 1.25rem 50px;
    }

    .hero-split-container {
        gap: 2rem;
    }

    .hero-split-title {
        font-size: 1.75rem;
    }

    .hero-split-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-highlight {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .floating-stat {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    /* ---------- STATS SECTION ---------- */
    .stats-section {
        padding: 2.5rem 0;
    }

    .stat-card {
        padding: 1.5rem 1.25rem;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
    }

    .stat-icon i {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    /* ---------- CHANNEL SLIDER ---------- */
    .channels-section {
        padding: 2.5rem 0;
    }

    .channel-slider {
        margin: 0;
        padding: 10px 0;
    }

    .logo-container {
        height: 70px;
        width: 110px;
        padding: 0.5rem;
    }

    .channel-logo {
        max-height: 40px;
    }

    .channel-logo-placeholder span {
        font-size: 0.65rem;
        padding: 0.2rem;
    }

    .category-title {
        font-size: 1.2rem;
        margin-left: 0;
    }

    .channels-note {
        padding: 1.25rem 1rem;
        margin: 1.25rem auto;
    }

    .channels-note p {
        font-size: 0.95rem;
    }

    /* ---------- TESTIMONIALS ---------- */
    .testimonials-section {
        padding: 2.5rem 0;
    }

    .testimonial-slider,
    .testimonial-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .quote-icon {
        font-size: 1.2rem;
    }

    .user-image {
        width: 40px;
        height: 40px;
    }

    .user-name {
        font-size: 0.9rem;
    }

    .user-role {
        font-size: 0.75rem;
    }

    .testimonial-slider .slick-prev,
    .testimonial-slider .slick-next {
        display: none !important;
    }

    /* ---------- PLANS / PRICING ---------- */
    .plans-section {
        padding: 2.5rem 0;
    }

    .toggle-option {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .plans-container {
        gap: 1.25rem;
    }

    .plan-header {
        padding: 1.25rem;
    }

    .plan-name {
        font-size: 1.15rem;
    }

    .price {
        font-size: 2.2rem;
    }

    .billing-cycle {
        font-size: 0.85rem;
    }

    .plan-body {
        padding: 1.25rem;
    }

    .feature-item {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }

    .feature-item i {
        font-size: 0.8rem;
    }

    .plan-button {
        padding: 0.85rem;
        font-size: 0.9rem;
    }

    /* ---------- FAQ SECTION ---------- */
    .faq-section {
        padding: 2.5rem 0;
    }

    .faq-item {
        margin-bottom: 0.7rem;
        border-radius: 10px;
    }

    .question-header {
        padding: 1rem;
    }

    .question-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
        margin-right: 0.6rem;
    }

    .toggle-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }

    .question-text {
        font-size: 0.9rem;
    }

    .answer {
        padding: 0.9rem 0;
        font-size: 0.85rem;
    }

    /* ---------- CONTACT SECTION ---------- */
    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-grid {
        gap: 1rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.15rem;
    }

    .contact-info-item {
        gap: 0.75rem;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-icon i {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 16px; /* Prevents iOS zoom */
    }

    .input-icon i {
        left: 0.8rem;
        font-size: 0.85rem;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .contact-submit-btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    /* ---------- VIDEO MODAL ---------- */
    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .video-modal-wrapper {
        border-radius: 10px;
    }

    /* ---------- PAGES INTERNAS ---------- */
    .page-container {
        padding-top: 75px;
    }

    .page-header {
        padding: 2.5rem 0;
    }

    .page-title {
        font-size: 1.7rem;
    }

    .page-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .header-content {
        padding: 0 1rem;
    }

    .support-content {
        padding: 2.5rem 1rem;
    }

    .device-card {
        padding: 1.25rem;
    }

    .device-icon {
        width: 50px;
        height: 50px;
    }

    .device-name {
        font-size: 1rem;
    }

    /* ---------- FOOTER ---------- */
    .footer {
        padding-top: 2.5rem;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-grid {
        gap: 1.75rem;
    }

    .footer .logo-text {
        font-size: 1.6rem;
    }

    .footer-about {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-heading {
        margin-bottom: 1rem;
    }

    .footer-link {
        margin-bottom: 0.6rem;
    }

    .contact-item {
        margin-bottom: 0.75rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item span {
        margin-right: 0;
        margin-bottom: 0.25rem;
    }

    .contact-item p {
        text-align: center;
    }

    .footer-bottom {
        padding: 1.25rem 0;
    }

    .footer .social-link {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-copyright {
        padding: 0 1rem;
        gap: 1rem;
    }
}

/* ==========================================================================
   480px - Medium Smartphones
   ========================================================================== */
@media (max-width: 480px) {
    /* ---------- CSS VARIABLES ---------- */
    :root {
        --header-height: 60px;
        --starter-header-height: 60px;
    }

    /* ---------- NAVBAR ---------- */
    .navbar {
        height: 60px;
        padding: 0 0.75rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .button-container {
        gap: 8px;
    }

    .mobile-icon {
        width: 44px;
        height: 44px;
    }

    /* Nav links */
    .nav-link {
        padding: 1.25rem;
    }

    .logo-img {
        max-height: 35px;
    }

    /* ---------- HERO SECTION ---------- */
    .hero-split {
        padding: 80px 1rem 35px;
    }

    .hero-split-title {
        font-size: 1.5rem;
    }

    .hero-split-subtitle {
        font-size: 0.8rem;
    }

    .hero-feature {
        padding: 0.6rem 0.35rem;
        font-size: 0.7rem;
    }

    .hero-split-buttons .btn {
        max-width: 240px;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
    }

    /* ---------- STATS SECTION ---------- */
    .stats-grid {
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
    }

    .stat-icon i {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* ---------- CHANNEL SLIDER ---------- */
    .logo-container {
        height: 65px;
        width: 100px;
        padding: 0.4rem;
    }

    .channel-logo {
        max-height: 35px;
    }

    .category-title {
        font-size: 1.1rem;
    }

    /* ---------- TESTIMONIALS ---------- */
    .testimonial-card {
        flex: 0 0 92%;
        min-width: 92%;
        max-width: 92%;
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .user-info {
        gap: 0.6rem;
    }

    .user-image {
        width: 36px;
        height: 36px;
    }

    /* ---------- PLANS / PRICING ---------- */
    .toggle-option {
        padding: 0.55rem 0.9rem;
        font-size: 0.8rem;
    }

    .plan-header {
        padding: 1rem;
    }

    .plan-name {
        font-size: 1.1rem;
    }

    .price {
        font-size: 2rem;
    }

    .plan-body {
        padding: 1rem;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    .plan-button {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    /* ---------- FAQ SECTION ---------- */
    .question-header {
        padding: 0.9rem;
    }

    .question-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    .question-text {
        font-size: 0.85rem;
    }

    .answer {
        font-size: 0.8rem;
    }

    /* ---------- CONTACT SECTION ---------- */
    .contact-info-card,
    .contact-form-card {
        padding: 1rem;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem 0.75rem 0.75rem 2.25rem;
    }

    .input-icon i {
        left: 0.75rem;
    }

    .contact-submit-btn {
        padding: 0.75rem 1.25rem;
    }

    /* ---------- VIDEO MODAL ---------- */
    .video-modal-content {
        width: 98%;
    }

    .video-modal-close {
        width: 34px;
        height: 34px;
        top: 8px;
        right: 8px;
    }

    /* ---------- PAGES INTERNAS ---------- */
    .page-header {
        padding: 2rem 0;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-description {
        font-size: 0.9rem;
    }

    /* ---------- SECTION TITLES ---------- */
    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    /* ---------- FOOTER ---------- */
    .footer-grid {
        gap: 1.5rem;
    }

    .footer .logo-text {
        font-size: 1.4rem;
    }

    .footer .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .footer .social-links {
        gap: 0.5rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-about {
        font-size: 0.9rem;
    }

    .footer-link a {
        font-size: 0.9rem;
    }

    .footer-nav {
        gap: 0.75rem;
    }

    .footer-nav a {
        font-size: 0.85rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .contact-item span {
        min-width: 18px;
        font-size: 0.85rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* ==========================================================================
   430px - iPhone 14 Pro, Pixel 7, etc
   ========================================================================== */
@media (max-width: 430px) {
    /* Container */
    .container {
        padding: 0 0.875rem;
    }

    /* Navbar */
    .navbar {
        padding: 0.5rem 0.75rem;
    }

    /* Logo */
    .logo {
        font-size: 1.3rem;
    }

    /* ---------- HERO SECTION ---------- */
    .hero-split {
        padding: 80px 0.875rem 40px;
    }

    .hero-split-title {
        font-size: 1.4rem;
    }

    .hero-split-subtitle {
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.7rem;
    }

    /* ---------- STATS SECTION ---------- */
    .stat-icon {
        width: 48px;
        height: 48px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* ---------- CHANNEL SLIDER ---------- */
    .logo-container {
        height: 60px;
        width: 95px;
    }

    .channel-logo {
        max-height: 32px;
    }

    .category-title {
        font-size: 1rem;
    }

    .channels-note {
        padding: 1rem 0.875rem;
    }

    /* ---------- TESTIMONIALS ---------- */
    .testimonial-card {
        padding: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .user-image {
        width: 34px;
        height: 34px;
    }

    .user-name {
        font-size: 0.85rem;
    }

    /* ---------- PLANS / PRICING ---------- */
    .plan-header,
    .plan-body {
        padding: 0.9rem;
    }

    .price {
        font-size: 1.85rem;
    }

    .plan-name {
        font-size: 1.05rem;
    }

    .feature-item {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    /* ---------- FAQ SECTION ---------- */
    .question-header {
        padding: 0.8rem;
    }

    .question-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        margin-right: 0.5rem;
    }

    .question-text {
        font-size: 0.8rem;
    }

    .answer {
        padding: 0.75rem 0;
        font-size: 0.78rem;
    }

    /* ---------- CONTACT SECTION ---------- */
    .contact-info-card,
    .contact-form-card {
        padding: 0.9rem;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.05rem;
    }

    .contact-icon {
        width: 34px;
        height: 34px;
    }

    /* ---------- PAGES INTERNAS ---------- */
    .page-title {
        font-size: 1.35rem;
    }

    .page-description {
        font-size: 0.85rem;
    }

    /* ---------- FOOTER ---------- */
    .footer-content {
        padding: 0 0.875rem;
    }

    .footer-copyright {
        padding: 0 0.875rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer .logo-text {
        font-size: 1.3rem;
    }

    .footer-about {
        font-size: 0.8rem;
    }

    .footer-link a {
        font-size: 0.8rem;
    }

    .contact-item {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   360px - Small Smartphones
   ========================================================================== */
@media (max-width: 360px) {
    /* ---------- CSS VARIABLES ---------- */
    :root {
        --header-height: 56px;
        --starter-header-height: 56px;
    }

    /* Container */
    .container {
        padding: 0 0.75rem;
    }

    /* Navbar */
    .navbar {
        height: 56px;
        padding: 0.5rem;
    }

    /* Logo */
    .logo {
        font-size: 1.15rem;
    }

    .logo-img {
        max-height: 30px;
    }

    /* Nav links */
    .nav-link {
        padding: 1rem;
        font-size: 0.9rem;
    }

    /* ---------- HERO SECTION ---------- */
    .hero-split {
        padding: 75px 0.875rem 30px;
    }

    .hero-split-title {
        font-size: 1.35rem;
    }

    .hero-split-subtitle {
        font-size: 0.75rem;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.7rem;
    }

    .hero-feature {
        padding: 0.5rem 0.25rem;
        font-size: 0.65rem;
    }

    .hero-split-buttons .btn {
        max-width: 220px;
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }

    .video-play-btn {
        width: 45px;
        height: 45px;
    }

    /* ---------- STATS SECTION ---------- */
    .stat-card {
        padding: 1rem 0.75rem;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
    }

    .stat-icon i {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* ---------- CHANNEL SLIDER ---------- */
    .logo-container {
        height: 55px;
        width: 85px;
        padding: 0.3rem;
    }

    .channel-logo {
        max-height: 28px;
    }

    .category-title {
        font-size: 0.95rem;
    }

    /* ---------- TESTIMONIALS ---------- */
    .testimonial-card {
        padding: 0.8rem;
    }

    .testimonial-text {
        font-size: 0.75rem;
    }

    .user-image {
        width: 32px;
        height: 32px;
    }

    .user-name {
        font-size: 0.8rem;
    }

    .user-role {
        font-size: 0.7rem;
    }

    /* ---------- PLANS / PRICING ---------- */
    .toggle-option {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .plan-header,
    .plan-body {
        padding: 0.8rem;
    }

    .plan-name {
        font-size: 1rem;
    }

    .price {
        font-size: 1.7rem;
    }

    .billing-cycle {
        font-size: 0.75rem;
    }

    .feature-item {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .plan-button {
        padding: 0.7rem;
        font-size: 0.8rem;
    }

    /* ---------- FAQ SECTION ---------- */
    .question-header {
        padding: 0.75rem;
    }

    .question-icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    .toggle-icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    .question-text {
        font-size: 0.75rem;
    }

    .answer {
        padding: 0.7rem 0;
        font-size: 0.72rem;
    }

    /* ---------- CONTACT SECTION ---------- */
    .contact-info-card,
    .contact-form-card {
        padding: 0.8rem;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1rem;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.7rem 0.7rem 0.7rem 2rem;
        font-size: 16px;
    }

    .input-icon i {
        left: 0.65rem;
        font-size: 0.8rem;
    }

    .contact-submit-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    /* ---------- VIDEO MODAL ---------- */
    .video-modal-close {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    /* ---------- PAGES INTERNAS ---------- */
    .page-container {
        padding-top: 70px;
    }

    .page-header {
        padding: 1.75rem 0;
    }

    .page-title {
        font-size: 1.2rem;
    }

    .page-description {
        font-size: 0.8rem;
    }

    .device-card {
        padding: 1rem;
    }

    .device-icon {
        width: 45px;
        height: 45px;
    }

    .device-name {
        font-size: 0.9rem;
    }

    /* ---------- SECTION TITLES ---------- */
    .section-title {
        font-size: 1.25rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    /* Buttons */
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }

    /* ---------- FOOTER ---------- */
    .footer {
        padding-top: 2rem;
    }

    .footer-content,
    .footer-copyright {
        padding: 0 0.75rem;
    }

    .footer-grid {
        gap: 1.25rem;
    }

    .footer .social-link {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer .logo-text {
        font-size: 1.2rem;
    }

    .footer-about {
        font-size: 0.75rem;
    }

    .footer-link {
        margin-bottom: 0.5rem;
    }

    .footer-link a {
        font-size: 0.75rem;
    }

    .footer-nav a {
        font-size: 0.8rem;
    }

    .contact-item {
        margin-bottom: 0.6rem;
        font-size: 0.75rem;
    }

    .footer-bottom {
        padding: 1rem 0;
    }

    .footer-copyright p {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   Landscape Mode Fix
   ========================================================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .navbar {
        height: 60px;
    }

    .nav-menu {
        padding: 0.5rem 0;
    }

    .nav-link {
        padding: 0.75rem 1rem;
    }

    .hero-split {
        min-height: auto;
        padding: 80px 1rem 40px;
    }
}

/* ==========================================================================
   Admin Bar Adjustments (mobile)
   ========================================================================== */
@media (max-width: 600px) {
    .admin-bar .navbar {
        top: 0;
    }

    .admin-bar .nav-menu {
        padding-top: 46px;
    }

    .admin-bar.mobile-menu-open {
        padding-top: 46px;
    }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   YouTube Facade (Lazy Load)
   ========================================================================== */
.youtube-facade-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
