/* ==========================================================
   C:\wamp64\www\sida2\css\responsive.css
   ========================================================== */
   @media (max-width: 1200px) {
    :root {
        --container: 1080px;
    }
    .section {
        padding-block: 72px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --container: 960px;
    }
    html {
        font-size: 15px;
    }
    .container {
        width: min(100% - 32px, 100%);
    }
    .section {
        padding-block: 64px;
    }
    .section-header {
        margin-bottom: 48px;
    }
    .section-title {
        font-size: 2.4rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .cards,
    .services,
    .tools {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    .container {
        width: min(100% - 24px, 100%);
    }
    .section {
        padding-block: 56px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        width: 100%;
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .cards,
    .services,
    .tools,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 20px, 100%);
    }
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.4;
    }
    .hero-description {
        font-size: 14px;
    }
    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    .container {
        width: min(100% - 18px, 100%);
    }
    .section {
        padding-block: 44px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .card {
        padding: 22px;
    }
}

@media (min-width: 1600px) {
    :root {
        --container: 1500px;
    }
    html {
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .header,
    .footer,
    .site-footer,
    .navbar,
    .hero-actions,
    .demo-panel,
    .bookmarklet-wrapper,
    .no-print {
        display: none !important;
    }
    .container {
        width: 100%;
        max-width: none;
    }
    .card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
    a {
        text-decoration: none;
        color: #000;
    }
}