/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .company-highlight {
        font-size: 4rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 180px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-spacing: 4rem;
        --container-padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .company-highlight {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-illustration {
        display: none;
    }
    
    .process-timeline {
        max-width: 100%;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .process-step,
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .step-number {
        left: 30px;
        font-size: 3rem;
    }
    
    .step-content {
        flex: 0 0 calc(100% - 100px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .step-connector {
        left: 30px;
    }
    
    .info-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: var(--shadow);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .company-highlight {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    :root {
        --section-spacing: 3rem;
        --container-padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .company-highlight {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 50px;
        width: 50px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        margin-bottom: 3rem;
    }
    
    .step-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .hero-actions,
    .hero-stats,
    .mobile-toggle,
    .back-to-top,
    .site-footer {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    section {
        padding: 1rem 0 !important;
        page-break-inside: avoid;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
        padding: 1rem 0 !important;
    }
    
    .hero-title,
    .company-highlight {
        color: black !important;
        background: none !important;
        -webkit-text-fill-color: black !important;
        text-shadow: none !important;
    }
    
    .hero-description {
        color: black !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary: #000000;
        --accent: #ff0000;
        --border: #000000;
    }
    
    .btn-primary,
    .admin-btn {
        border: 2px solid black;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .btn-wave {
        display: none;
    }
    
    .illustration-item {
        animation: none !important;
    }
    
    .hero-badge {
        animation: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary: #4299e1;
        --primary-dark: #2c5282;
        --primary-light: #63b3ed;
        --light: #2d3748;
        --light-gray: #4a5568;
        --dark: #e2e8f0;
        --dark-gray: #cbd5e0;
        --border: #4a5568;
    }
    
    body {
        background: #1a202c;
        color: var(--dark);
    }
    
    .site-header {
        background: rgba(26, 32, 44, 0.95);
    }
    
    .feature-card,
    .info-card,
    .step-content {
        background: #2d3748;
        border-color: var(--light-gray);
    }
    
    .nav-link {
        color: var(--dark);
    }
    
    .company-name {
        background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none !important;
    }
    
    .feature-card:hover {
        transform: none !important;
    }
    
    .nav-link:hover::before {
        transform: translateX(-100%) !important;
    }
    
    .social-link:hover {
        transform: none !important;
    }
    
    .stat-item:hover {
        transform: none !important;
    }
} 