/* ========================================
   WhatSolo Marketing Site - Responsive Styles
   ======================================== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    /* Container */
    .container {
        padding: 0 30px;
    }

    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    /* Hero */
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 30px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Pricing Grid */
    .pricing-grid {
        gap: 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat {
        flex: 1 1 calc(50% - 10px);
        min-width: 120px;
    }

    /* Sections */
    .features,
    .pricing,
    .testimonials,
    .faq,
    .cta {
        padding: 60px 0;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px 20px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .plan-price {
        font-size: 2.5rem;
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    /* Hero */
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 16px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    /* Feature Card */
    .feature-icon {
        font-size: 36px;
    }

    .feature-badge {
        font-size: 11px;
        padding: 3px 10px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-content {
        font-size: 1rem;
    }

    /* FAQ */
    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 1.125rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-menu {
        height: calc(100vh - 60px);
        overflow-y: auto;
    }
}

/* Print Styles */
@media print {
    /* Hide navigation and interactive elements */
    .navbar,
    .nav-toggle,
    .hero-buttons,
    .cta,
    .social-links {
        display: none;
    }

    /* Adjust colors for print */
    body {
        color: black;
        background: white;
    }

    a {
        color: black;
        text-decoration: underline;
    }

    /* Page breaks */
    .features,
    .pricing,
    .testimonials,
    .faq {
        page-break-before: always;
    }
}