/* ========================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ======================================== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .section-container {
        padding: 80px 32px;
    }
    
    .nav-container {
        padding: 20px 32px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .content-with-image {
        gap: 48px;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-container {
        padding: 16px 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .nav-login,
    .nav-cta {
        padding: 8px 16px;
        font-size: 0.875rem;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        padding-top: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }
    
    .hero-title .word {
        display: inline;
    }
    
    .hero-email-preview {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 48px;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    /* Sections Mobile */
    .section-container {
        padding: 60px 24px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    
    .section-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    /* Content with Image - Stack on Mobile */
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .content-with-image.reverse {
        grid-template-columns: 1fr;
    }
    
    .content-with-image.reverse .image-content {
        order: 1;
    }
    
    .content-with-image.reverse .text-content {
        order: 2;
    }
    
    .feature-image {
        max-width: 100%;
    }
    
    /* Principles Grid Mobile */
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .principle-card {
        padding: 32px 24px;
    }
    
    .principle-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    
    .principle-card h3 {
        font-size: 1.25rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    /* CTA Mobile */
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Pricing Section - Already has mobile styles in pricing.css */

/* Domain Extensions Mobile - Already has mobile styles in style.css */

/* Email Clients Mobile - Already has mobile styles in style.css */

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .nav-logo img {
        height: 28px;
    }
    
    .nav-login {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-email-preview {
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-title {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}
