 /* =========================================================
    RESPONSIVE CSS
    Premium Glassmorphism
========================================================= */


/* =========================================================
   LARGE TABLET / SMALL DESKTOP
   MAX WIDTH: 1100px
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(
            calc(100% - 36px),
            1000px
        );
    }


    /* HEADER */

    .header-inner {
        gap: 18px;
    }


    .main-navigation {
        gap: 3px;
    }


    .main-navigation a {
        padding-left: 11px;
        padding-right: 11px;
    }


    /* HERO */

    .hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, 0.85fr);

        gap: 45px;
    }


    .hero-content h1 {
        font-size: 55px;
    }


    .hero-visual {
        min-height: 460px;
    }


    .hero-image-card {
        height: 450px;
    }


    /* FEATURES */

    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* ABOUT */

    .about-preview-grid {
        gap: 50px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns:
            1.4fr
            0.8fr
            0.9fr
            1fr;

        gap: 30px;
    }

}


/* =========================================================
   TABLET
   MAX WIDTH: 900px
========================================================= */

@media (max-width: 900px) {

    .container {
        width: min(
            calc(100% - 32px),
            760px
        );
    }


    /* HEADER */

    .site-header {
        padding: 15px 0;
    }


    .header-inner {
        flex-wrap: wrap;
    }


    .main-navigation {
        order: 3;

        width: 100%;

        justify-content: center;

        padding-top: 5px;
    }


    /* HERO */

    .hero-section {
        padding-top: 75px;
        padding-bottom: 70px;
    }


    .hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .hero-content {
        max-width: 700px;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }


    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons {
        justify-content: center;
    }


    .hero-stats {
        justify-content: center;
    }


    .hero-visual {
        width: min(100%, 600px);

        min-height: 500px;

        margin-left: auto;
        margin-right: auto;
    }


    .hero-image-card {
        width: min(100%, 500px);

        height: 490px;
    }


    /* ABOUT */

    .about-preview-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .about-preview-image {
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;

        width: 100%;
    }


    .about-preview-content {
        max-width: 700px;

        text-align: center;

        margin-left: auto;
        margin-right: auto;
    }


    /* SUPPORT */

    .support-card {
        grid-template-columns: 1fr;

        padding: 40px;
    }


    .support-content {
        max-width: 700px;

        text-align: center;

        margin-left: auto;
        margin-right: auto;
    }


    .support-content p {
        margin-left: auto;
        margin-right: auto;
    }


    .support-actions {
        justify-content: center;
    }


    .support-visual {
        width: 100%;

        max-width: 600px;

        margin-left: auto;
        margin-right: auto;
    }


    /* CTA */

    .cta-card {
        flex-direction: column;

        align-items: flex-start;

        padding: 45px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .footer-brand {
        max-width: 100%;
    }

}


/* =========================================================
   MOBILE LARGE
   MAX WIDTH: 700px
========================================================= */

@media (max-width: 700px) {

    .container {
        width: calc(100% - 28px);
    }


    /* HEADER */

    .site-header {
        position: relative;

        padding: 14px 0;
    }


    .header-inner {
        gap: 14px;
    }


    .logo-icon {
        width: 38px;
        height: 38px;

        border-radius: 11px;
    }


    .logo-text {
        font-size: 16px;
    }


    .main-navigation {
        overflow-x: auto;

        justify-content: flex-start;

        gap: 2px;

        padding-bottom: 3px;

        scrollbar-width: none;
    }


    .main-navigation::-webkit-scrollbar {
        display: none;
    }


    .main-navigation a {
        flex-shrink: 0;

        padding: 8px 11px;

        font-size: 12px;
    }


    .header-actions {
        gap: 6px;
    }


    .header-actions .btn {
        min-height: 38px;

        padding-left: 13px;
        padding-right: 13px;

        font-size: 12px;
    }


    /* HERO */

    .hero-section {
        padding-top: 60px;
        padding-bottom: 55px;
    }


    .hero-content h1 {
        font-size:
            clamp(38px, 10vw, 50px);

        letter-spacing: -2px;
    }


    .hero-description {
        font-size: 14px;

        line-height: 1.75;
    }


    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-stats {
        gap: 25px;

        margin-top: 32px;
    }


    .stat-item strong {
        font-size: 16px;
    }


    .stat-item span {
        font-size: 10px;
    }


    /* HERO VISUAL */

    .hero-visual {
        min-height: 400px;
    }


    .hero-image-card {
        width: calc(100% - 35px);

        height: 390px;

        transform:
            perspective(1000px)
            rotateY(-2deg);
    }


    .floating-card {
        padding: 11px 13px;

        border-radius: 13px;
    }


    .floating-card-one {
        top: 45px;

        left: 0;
    }


    .floating-card-two {
        right: 0;

        bottom: 50px;
    }


    .floating-icon {
        width: 30px;
        height: 30px;

        border-radius: 9px;

        font-size: 13px;
    }


    .floating-number {
        font-size: 14px;
    }


    .floating-card strong {
        font-size: 10px;
    }


    .floating-card span {
        font-size: 9px;
    }


    /* SECTION */

    .features-section,
    .about-preview,
    .support-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }


    .section-heading {
        margin-bottom: 35px;
    }


    .section-heading h2,
    .about-preview-content h2,
    .support-content h2,
    .cta-content h2 {
        font-size: 31px;

        letter-spacing: -1px;
    }


    .section-heading p {
        font-size: 13px;
    }


    /* FEATURES */

    .features-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }


    .feature-card {
        padding: 24px 21px;
    }


    .feature-icon {
        width: 45px;
        height: 45px;

        margin-bottom: 17px;
    }


    .feature-card h3 {
        font-size: 15px;
    }


    .feature-card p {
        font-size: 12px;
    }


    /* ABOUT */

    .about-preview-grid {
        gap: 35px;
    }


    .about-preview-image .image-card {
        height: 350px;

        border-radius: 23px;
    }


    .about-preview-content p {
        font-size: 13px;

        line-height: 1.8;
    }


    .about-preview-content .btn {
        width: 100%;
    }


    /* SUPPORT */

    .support-card {
        gap: 30px;

        padding: 28px 20px;

        border-radius: 23px;
    }


    .support-content p {
        font-size: 13px;
    }


    .support-actions {
        flex-direction: column;
    }


    .support-actions .btn {
        width: 100%;
    }


    .support-visual {
        min-height: 210px;

        border-radius: 17px;
    }


    .support-visual img {
        min-height: 210px;
    }


    /* CTA */

    .cta-section {
        padding-top: 0;

        padding-bottom: 75px;
    }


    .cta-card {
        padding: 30px 22px;

        border-radius: 23px;
    }


    .cta-content p {
        font-size: 13px;
    }


    .cta-action {
        width: 100%;
    }


    .cta-action .btn {
        width: 100%;
    }


    /* FOOTER */

    .site-footer {
        padding-top: 55px;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;
    }


    .footer-brand {
        max-width: 100%;
    }


    .footer-column {
        gap: 8px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        padding: 18px 0;
    }


    .footer-bottom-links {
        gap: 14px;
    }

}


/* =========================================================
   MOBILE SMALL
   MAX WIDTH: 480px
========================================================= */

@media (max-width: 480px) {

    .container {
        width: calc(100% - 22px);
    }


    /* HEADER */

    .header-inner {
        justify-content: center;
    }


    .logo {
        width: 100%;

        justify-content: center;
    }


    .header-actions {
        width: 100%;
    }


    .header-actions .btn {
        flex: 1;
    }


    .main-navigation {
        width: 100%;
    }


    /* HERO */

    .hero-section {
        padding-top: 45px;
    }


    .hero-badge {
        font-size: 10px;

        padding: 7px 10px;
    }


    .hero-content h1 {
        font-size: 36px;

        letter-spacing: -1.7px;
    }


    .hero-description {
        font-size: 13px;
    }


    .hero-stats {
        width: 100%;

        justify-content: space-between;

        gap: 10px;
    }


    /* HERO IMAGE */

    .hero-visual {
        min-height: 350px;
    }


    .hero-image-card {
        width: calc(100% - 20px);

        height: 340px;

        border-radius: 23px;
    }


    .floating-card {
        padding: 9px 10px;

        gap: 8px;
    }


    .floating-card-one {
        left: -2px;

        top: 25px;
    }


    .floating-card-two {
        right: -2px;

        bottom: 30px;
    }


    /* SECTION */

    .section-heading h2,
    .about-preview-content h2,
    .support-content h2,
    .cta-content h2 {
        font-size: 28px;
    }


    /* IMAGE */

    .about-preview-image .image-card {
        height: 290px;

        border-radius: 20px;
    }


    /* CTA */

    .cta-card {
        padding: 26px 18px;
    }


    /* FOOTER */

    .footer-bottom p {
        font-size: 10px;
    }


    .footer-bottom-links a {
        font-size: 10px;
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
   MAX WIDTH: 360px
========================================================= */

@media (max-width: 360px) {

    .logo-text {
        font-size: 14px;
    }


    .logo-icon {
        width: 34px;
        height: 34px;
    }


    .header-actions .btn {
        min-height: 36px;

        padding-left: 9px;
        padding-right: 9px;

        font-size: 11px;
    }


    .main-navigation a {
        font-size: 11px;

        padding-left: 9px;
        padding-right: 9px;
    }


    .hero-content h1 {
        font-size: 32px;
    }


    .hero-stats {
        gap: 8px;
    }


    .stat-item strong {
        font-size: 14px;
    }


    .stat-item span {
        font-size: 9px;
    }


    .hero-image-card {
        height: 300px;
    }


    .floating-card-one {
        left: -5px;
    }


    .floating-card-two {
        right: -5px;
    }

}


/* =========================================================
   LANDSCAPE MOBILE
========================================================= */

@media (max-height: 600px) and (orientation: landscape) {

    .hero-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }


    .hero-grid {
        gap: 40px;
    }


    .hero-visual {
        min-height: 350px;
    }


    .hero-image-card {
        height: 330px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}