/* ===================================
   Responsive Design - RTC Style
   =================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    :root {
        --container-max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
}

/* Tablet and Below (992px) */
@media (max-width: 992px) {
    /* Hero */
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content > p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-card {
        order: 2;
        margin: 2rem auto 0;
    }
    
    /* Sections */
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-grid.reverse {
        direction: ltr;
    }
    
    .section-image {
        order: 1;
    }
    
    .section-content {
        order: 2;
        text-align: center;
    }
    
    /* Features */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Asset Types */
    .asset-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Value Props */
    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Support */
    .support-questions {
        grid-template-columns: 1fr;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    /* Hero */
    .hero {
        padding: 7rem 0 3rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-percent {
        font-size: 1.25rem;
    }
    
    /* Sections */
    .content-section {
        padding: 3rem 0;
    }
    
    .diverse-funds,
    .top-performers,
    .features-three,
    .support-section {
        padding: 3rem 0;
    }
    
    /* Return Stats */
    .return-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .return-stats .divider {
        display: none;
    }
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Image Placeholder */
    .image-placeholder {
        padding: 4rem 1rem;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
    
    .hero-card h3 {
        font-size: 1.25rem;
    }
    
    .asset-types {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
    
    .question-box {
        padding: 1.5rem;
    }
    
    .question-box h3 {
        font-size: 0.9375rem;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .nav-actions,
    .btn-primary,
    .btn-secondary,
    .modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    .hero {
        background: #f5f5f5 !important;
        color: #000 !important;
        padding: 2rem 0;
    }
    
    .hero-content h1,
    .hero-content p,
    .stat-number,
    .stat-percent,
    .stat-pa,
    .stat-label {
        color: #000 !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Touch Devices */
@media (hover: none) and (pointer: coarse) {
    button,
    a {
        min-height: 44px;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover,
    .feature-box:hover,
    .asset-type:hover {
        transform: none;
    }
}
