@media (max-width: 1200px) {
    .hero-section, .blue-content, .bonus-content {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    /* Show form section, hide plans section on mobile */
    .plans-section {
        display: none;
    }
    .form-section {
        display: block;
    }
    
    .header-strip-1 {
        height: 50px;
    }
    
    /* App Store Section Mobile */
    .app-store-content {
        display: none;
    }
    
    .app-store-mobile {
        display: block;
    }
    .header-strip-2 {
        height: 50px;
        top: 50px;
        padding: 0 20px;
    }
    .main-content {
        padding-top: 100px;
    }
    .countdown-text, .countdown-timer {
        font-size: 16px;
    }
    .timer-number {
        font-size: 20px;
    }
    .timer-unit {
        font-size: 12px;
    }
    /* Header logo responsive sizing */
    .header-logo img {
        height: calc(38px * var(--scale, 1)) !important;
        width: auto !important;
    }
    
    /* Footer logo responsive sizing */
    .footer-logo {
        height: calc(38px * var(--scale, 1)) !important;
        width: auto !important;
    }
    .hero-section {
        flex-direction: column;
        padding: 40px 0;
        gap: 40px;
    }
    .hero-title {
        font-size: 32px;
    }
    .form-section {
        width: 100%;
        max-width: 400px;
    }
    .blue-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .blue-title {
        font-size: 32px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bonus-title {
        font-size: 28px;
    }
    .bonus-subtitle {
        font-size: 24px;
    }
    .faq-title {
        font-size: 32px;
    }
    .footer-content {
        font-size: 16px;
        gap: 8px;
        padding: 0 20px;
    }
    
    .footer-text {
        font-size: 16px;
        white-space: nowrap; /* Prevent line breaks - MOBILE ONLY */
        overflow: hidden; /* Hide overflow - MOBILE ONLY */
        text-overflow: ellipsis; /* Show ellipsis if text is too long - MOBILE ONLY */
        flex-shrink: 0; /* Prevent text from shrinking - MOBILE ONLY */
    }
    
    .footer-logo {
        height: 20px;
    }
    /* Show mobile text, hide desktop text */
    .desktop-text {
        display: none;
    }
    .mobile-text {
        display: inline;
    }
    .hero-left {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        margin: 0 20px;
    }
    .hero-logo {
        justify-content: center;
        margin-bottom: 24px;
        display: flex;
    }
    .hero-title {
        text-align: center;
    }
    .hero-subtitle {
        text-align: center;
    }
}

@media (min-width: 769px) {
    /* Show desktop text, hide mobile text */
    .desktop-text {
        display: inline;
    }
    .mobile-text {
        display: none;
    }
    
    /* Show plans section, hide form section on desktop */
    .plans-section {
        display: flex;
    }
    .form-section {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-strip-1 {
        height: 45px;
    }
    
    /* App Store Section Small Mobile */
    .app-store-section {
        padding: 30px 0;
    }
    
    .mobile-footer-content {
        padding: 0 15px;
        gap: 12px;
    }
    
    .mobile-pdc-name {
        font-size: 16px;
    }
    
    .mobile-pdc-copyright,
    .mobile-pdc-contact {
        font-size: 12px;
    }
    
    .mobile-app-store-badges .app-store-badge {
        height: 40px;
    }
    .header-strip-2 {
        height: 45px;
        top: 45px;
    }
    .main-content {
        padding-top: 90px;
    }
    /* Header logo responsive sizing for smaller screens */
    .header-logo img {
        height: calc(34px * var(--scale, 1)) !important;
        width: auto !important;
    }
    
    /* Footer logo responsive sizing for smaller screens */
    .footer-logo {
        height: calc(34px * var(--scale, 1)) !important;
        width: auto !important;
    }
    .hero-section {
        gap: 0;
    }
    .hero-title {
        font-size: 22px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .form-section {
        padding: 30px 20px;
    }
    .submit-btn {
        height: 50px;
        font-size: 18px;
    }
    .countdown-text {
        font-size: 14px;
    }
    .timer-number {
        font-size: 18px;
    }
    .timer-unit {
        font-size: 11px;
    }
    .form-title {
        white-space: nowrap;
        font-size: 18px;
    }
    
    /* Footer responsive for small screens */
    .footer-content {
        padding: 0 15px;
        gap: 6px;
    }
    
    .footer-text {
        font-size: 14px;
    }
    
    .footer-logo {
        height: 18px;
    }
}

@media (max-width: 360px) {
    .form-title {
        font-size: 16px;
    }
    /* Header logo responsive sizing for very small screens */
    .header-logo img {
        height: calc(24px * var(--scale, 1)) !important;
        width: auto !important;
    }
    
    /* Footer logo responsive sizing for very small screens */
    .footer-logo {
        height: calc(28px * var(--scale, 1)) !important;
        width: auto !important;
    }
    
    /* Footer responsive for very small screens */
    .footer-content {
        padding: 0 10px;
        gap: 4px;
    }
    
    .footer-text {
        font-size: 12px;
    }
    
    .footer-logo {
        height: 16px;
    }
} 