/* =========================================================
   AIRDRIVE ERP LANDING PAGE
========================================================= */

:root {
    --primary: #4f8ef7;
    --primary-dark: #3d7ee8;
    --primary-light: #eaf2ff;
    --primary-soft: #f3f7ff;

    --background: #f0f2f5;

    --white: #ffffff;

    --black: #111827;
    --black-soft: #1f2937;

    --gray-50: #f8fafc;
    --gray-100: #f0f2f5;
    --gray-200: #e2e6eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;

    --border: #e2e6eb;

    --container: 1200px;

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --transition: .3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Inter", sans-serif;

    background: var(--white);
    color: var(--black);

    line-height: 1.6;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}


.container {
    width: min(
        var(--container),
        calc(100% - 48px)
    );

    margin: 0 auto;
}

.section {
    padding: 120px 0;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, .9);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid transparent;

    transition: var(--transition);
}

.navbar.scrolled {
    border-color: var(--border);

    box-shadow:
        0 8px 30px rgba(15, 23, 42, .05);
}

.nav-container {
    width: min(
        1280px,
        calc(100% - 48px)
    );

    height: 78px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.logo {
    display: inline-flex;

    align-items: center;
}

.logo img {
    width: 155px;

    height: auto;

    display: block;
}


/* NAV */

.nav-menu {
    display: flex;

    align-items: center;

    gap: 30px;
}

.nav-menu > a:not(.nav-button) {
    color: var(--gray-600);

    font-size: 13px;

    font-weight: 500;

    transition: var(--transition);
}

.nav-menu > a:not(.nav-button):hover {
    color: var(--primary);
}


/* LOGIN BUTTON */

.nav-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 40px;

    padding: 0 18px;

    background: #1e293b;;

    color: white;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 600;

    transition: var(--transition);
}

.nav-button:hover {
    background: #26354b;
}


/* MOBILE MENU */

.mobile-menu {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 9px;

    cursor: pointer;

    font-size: 20px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;

    min-height: 100svh;

    padding: 78px 0 0;

    display: flex;

    align-items: center;

    background: var(--background);
}

.hero-grid {
    width: min(
        1280px,
        calc(100% - 48px)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr;

    align-items: center;

    gap: 80px;
}


/* HERO CONTENT */

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 7px 12px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 100px;

    color: var(--gray-600);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.4px;
}

.status-dot {
    width: 7px;
    height: 7px;

    background: var(--primary);

    border-radius: 50%;

    box-shadow:
        0 0 0 4px
        rgba(79, 142, 247, .12);
}

.hero h1 {
    margin-top: 25px;

    max-width: 650px;

    font-size:
        clamp(
            48px,
            5vw,
            76px
        );

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 800;
}

.hero h1 span {
    display: block;

    color: var(--primary);
}

.hero-content > p {
    max-width: 600px;

    margin-top: 28px;

    color: var(--gray-600);

    font-size: 15px;

    line-height: 1.8;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 35px;
}

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding: 0 20px;

    border-radius: 9px;

    font-size: 12px;

    font-weight: 600;

    transition: var(--transition);
}

.btn-primary {
    background: #1e293b;

    color: white;
}

.btn-primary:hover {
    background: #2c3c55;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px
        rgba(
            79,
            142,
            247,
            .25
        );
}

.btn-secondary {
    background: white;

    border: 1px solid var(--border);

    color: var(--black);
}

.btn-secondary:hover {
    border-color: var(--primary);

    color: var(--primary);
}


/* TRUST */

.hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 35px;
}

.trust-item {
    display: flex;

    align-items: center;

    gap: 6px;

    color: var(--gray-500);

    font-size: 10px;
}

.trust-item i {
    color: var(--primary);

    font-size: 13px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-dashboard {
    width: 100%;
}

.hero-image-wrapper {
    position: relative;

    width: 100%;

    padding: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(79, 142, 247, .18),
            rgba(255, 255, 255, .8)
        );

    border-radius: 25px;

    box-shadow:
        0 30px 80px
        rgba(
            79,
            142,
            247,
            .15
        );
}

.hero-image-wrapper img {
    width: 100%;

    height: auto;

    display: block;

    border-radius: 17px;

    border: 1px solid #dce3ec;

    background: white;

    box-shadow:
        0 15px 40px
        rgba(
            15,
            23,
            42,
            .1
        );
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    padding: 25px 0;

    background: white;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.stat-box {
    padding: 25px 30px;

    border-right: 1px solid var(--border);
}

.stat-box:last-child {
    border-right: 0;
}

.stat-box strong {
    display: block;

    color: var(--primary);

    font-size: 30px;

    letter-spacing: -1px;
}

.stat-box span {
    color: var(--gray-500);

    font-size: 13px;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 650px;
}

.section-heading.centered {
    margin: auto;

    text-align: center;
}

.section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2,
.benefits-heading h2,
.workflow-content h2,
.document-content h2 {
    font-size:
        clamp(
            36px,
            4vw,
            56px
        );

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.section-heading h2 span,
.benefits-heading h2 span,
.workflow-content h2 span,
.document-content h2 span {
    color: var(--primary);
}

.section-heading p {
    max-width: 650px;

    margin-top: 20px;

    color: var(--gray-500);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   INTRO WORKFLOW
========================================================= */

.intro {
    background: white;
}

.workflow-flow {
    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 65px;
}

.flow-item {
    min-width: 110px;

    text-align: center;
}

.flow-icon {
    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    margin: auto;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 15px;

    font-size: 20px;

    transition: var(--transition);
}

.flow-item:hover .flow-icon {
    background: var(--primary);

    color: white;

    transform: translateY(-5px);

    box-shadow:
        0 10px 25px
        rgba(
            79,
            142,
            247,
            .2
        );
}

.flow-item strong {
    display: block;

    margin-top: 12px;

    font-size: 11px;
}

.flow-item span {
    color: var(--gray-500);

    font-size: 9px;
}

.flow-arrow {
    padding: 0 8px;

    color: var(--gray-400);

    font-size: 16px;
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    background: var(--background);
}

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin-top: 60px;
}

.feature-card {
    min-height: 330px;

    padding: 28px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(
            79,
            142,
            247,
            .45
        );

    box-shadow:
        0 20px 50px
        rgba(
            79,
            142,
            247,
            .1
        );
}

.feature-large {
    grid-column: span 2;
}

.feature-top {
    display: flex;

    justify-content: space-between;
}

.feature-icon {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 11px;

    font-size: 19px;
}

.feature-number {
    color: var(--gray-400);

    font-size: 9px;

    font-weight: 700;
}

.feature-card h3 {
    margin-top: 28px;

    font-size: 20px;

    letter-spacing: -.5px;
}

.feature-card p {
    max-width: 430px;

    margin-top: 10px;

    color: var(--gray-500);

    font-size: 12px;

    line-height: 1.7;
}

.feature-card ul {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 7px;

    margin-top: 20px;

    list-style: none;
}

.feature-card li {
    color: var(--gray-600);
    font-size: 12px;
}

.feature-card li::before {
    content: "✓";

    margin-right: 6px;

    color: var(--primary);

    font-weight: 800;
}


/* =========================================================
   WORKFLOW
========================================================= */

.workflow-section {
    background: white;
}

.workflow-layout {
    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    align-items: center;

    gap: 100px;
}

.workflow-content h2 {
    max-width: 500px;
}

.workflow-content > p {
    max-width: 500px;

    margin-top: 20px;

    color: var(--gray-500);

    font-size: 13px;
}

.workflow-list {
    margin-top: 35px;
}

.workflow-step {
    display: flex;

    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);

    opacity: .55;

    cursor: pointer;

    transition: var(--transition);
}

.workflow-step.active,
.workflow-step:hover {
    opacity: 1;
}

.step-number {
    color: var(--primary);

    font-size: 9px;

    font-weight: 800;
}

.workflow-step strong {
    display: block;

    font-size: 12px;
}

.workflow-step p {
    margin-top: 3px;

    color: var(--gray-500);

    font-size: 9px;
}


/* WORKFLOW CARD */

.workflow-visual {
    display: flex;

    justify-content: center;
}

.workflow-card {
    width: 100%;

    max-width: 550px;

    padding: 30px;

    background: var(--background);

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow:
        0 25px 60px
        rgba(
            79,
            142,
            247,
            .08
        );
}

.workflow-card-header {
    display: flex;

    justify-content: space-between;

    color: var(--gray-500);

    font-size: 8px;

    letter-spacing: 1.5px;
}

.process {
    display: flex;

    align-items: center;

    margin-top: 45px;
}

.process-node {
    min-width: 80px;

    text-align: center;
}

.process-node i {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    margin: auto;

    background: white;

    color: var(--primary);

    border: 1px solid var(--border);

    border-radius: 13px;

    font-size: 18px;

    box-shadow:
        0 8px 20px
        rgba(
            15,
            23,
            42,
            .05
        );
}

.process-node strong {
    display: block;

    margin-top: 10px;

    font-size: 8px;
}

.process-node small {
    display: block;

    margin-top: 3px;

    color: var(--gray-500);

    font-size: 7px;
}

.process-line {
    flex: 1;

    height: 1px;

    margin: 0 7px;

    background:
        var(--primary);
    
    opacity: .4;
}

.workflow-success {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 45px;

    padding: 14px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 10px;
}

.workflow-success > i {
    width: 30px;
    height: 30px;

    display: grid;

    place-items: center;

    background: var(--primary);

    color: white;

    border-radius: 50%;

    font-size: 14px;
}

.workflow-success strong {
    display: block;

    font-size: 9px;
}

.workflow-success span {
    display: block;

    margin-top: 2px;

    color: var(--gray-500);

    font-size: 7px;
}


/* =========================================================
   DASHBOARD SHOWCASE
========================================================= */

.dashboard-section {
    background: var(--background);
}

.dashboard-showcase {
    margin-top: 60px;

    overflow: hidden;

    background: white;

    border: 1px solid var(--border);

    border-radius: 24px;

    box-shadow:
        0 30px 80px
        rgba(
            79,
            142,
            247,
            .12
        );
}

.dashboard-image-header {
    height: 48px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 0 18px;

    background: white;

    border-bottom: 1px solid var(--border);
}

.dashboard-browser-dots {
    display: flex;

    gap: 5px;
}

.dashboard-browser-dots span {
    width: 7px;
    height: 7px;

    background: var(--gray-300);

    border-radius: 50%;
}

.dashboard-url {
    flex: 1;

    padding: 6px 12px;

    background: var(--background);

    border-radius: 6px;

    color: var(--gray-500);

    font-size: 8px;
}

.dashboard-showcase > img {
    width: 100%;

    height: auto;

    display: block;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits {
    background: white;
}

.benefits-layout {
    display: grid;

    grid-template-columns:
        .7fr
        1.3fr;

    gap: 100px;

    align-items: start;
}

.benefits-heading p {
    margin-top: 20px;

    color: var(--gray-500);

    font-size: 13px;
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 45px 30px;
}

.benefit-icon {
    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 10px;

    font-size: 18px;
}

.benefit h3 {
    margin-top: 17px;

    font-size: 16px;
}

.benefit p {
    margin-top: 7px;

    color: var(--gray-500);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.solutions {
    background: var(--background);
}

.solutions-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 12px;

    margin-top: 55px;
}

.solution-card {
    position: relative;

    min-height: 260px;

    padding: 25px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 15px;

    overflow: hidden;

    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-6px);

    border-color: var(--primary);

    box-shadow:
        0 20px 40px
        rgba(
            79,
            142,
            247,
            .1
        );
}

.solution-number {
    position: absolute;

    top: 20px;

    right: 20px;

    color: var(--gray-400);

    font-size: 8px;
}

.solution-card > i {
    display: block;

    margin-top: 40px;

    color: var(--primary);

    font-size: 25px;
}

.solution-card h3 {
    margin-top: 25px;

    font-size: 16px;
}

.solution-card p {
    margin-top: 10px;

    color: var(--gray-500);

    font-size: 10px;
}


/* =========================================================
   DOCUMENTS
========================================================= */

.documents {
    background: white;
}

.document-box {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    min-height: 450px;

    overflow: hidden;

    background: var(--primary);

    color: white;

    border-radius: var(--radius-lg);
}

.document-content {
    padding: 70px;
}

.document-content h2 {
    max-width: 500px;
}

.document-content p {
    max-width: 480px;

    margin-top: 20px;

    color: rgba(
        255,
        255,
        255,
        .78
    );

    font-size: 13px;
}

.document-list {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;

    margin-top: 30px;
}

.document-list div {
    color: white;

    font-size: 12px;
}

.document-list i {
    margin-right: 6px;
}


/* DOCUMENT VISUAL */

.document-visual {
    position: relative;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #4f8ef7,
            #6da2ff
        );
}

.document-card {
    width: 280px;

    padding: 25px;

    background: white;

    color: var(--black);

    border-radius: 16px;

    box-shadow:
        0 30px 60px
        rgba(
            0,
            0,
            0,
            .18
        );
}

.document-card-header {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 11px;

    font-weight: 700;
}

.document-card-header i {
    color: var(--primary);

    font-size: 20px;
}

.document-card-body {
    margin-top: 35px;
}

.document-line {
    width: 100%;

    height: 7px;

    margin-top: 12px;

    background: var(--gray-100);

    border-radius: 5px;
}

.document-line.large {
    width: 80%;
}

.document-line.short {
    width: 55%;
}

.document-card-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 35px;

    padding-top: 15px;

    border-top: 1px solid var(--border);

    color: var(--gray-500);

    font-size: 8px;
}

.document-card-footer i {
    color: var(--primary);

    font-size: 16px;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    background: white;

    padding-top: 20px;
}

.cta-box {
    position: relative;

    min-height: 430px;

    display: grid;

    place-items: center;

    overflow: hidden;

    padding: 70px;

    background:
        linear-gradient(
            135deg,
            #4f8ef7,
            #6198fa
        );

    color: white;

    border-radius: var(--radius-lg);

    text-align: center;
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 750px;
}

.cta-content .section-label {
    color: rgba(
        255,
        255,
        255,
        .8
    );
}

.cta-content h2 {
    margin-top: 10px;

    font-size:
        clamp(
            38px,
            5vw,
            65px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.cta-content p {
    max-width: 550px;

    margin: 20px auto 0;

    color: rgba(
        255,
        255,
        255,
        .8
    );

    font-size: 13px;
}

.btn-light {
    margin-top: 30px;

    background: white;

    color: var(--primary);
}

.btn-light:hover {
    background: var(--background);

    transform: translateY(-3px);

    box-shadow:
        0 15px 40px
        rgba(
            0,
            0,
            0,
            .12
        );
}

.cta-decoration {
    position: absolute;

    border: 1px solid
        rgba(
            255,
            255,
            255,
            .15
        );

    border-radius: 50%;
}

.decoration-one {
    width: 600px;
    height: 600px;
}

.decoration-two {
    width: 350px;
    height: 350px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 70px 0 30px;

    background: white;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr
        repeat(3, 1fr);

    gap: 60px;

    padding-bottom: 60px;

    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    max-width: 280px;

    margin-top: 20px;

    color: var(--gray-500);

    font-size: 13px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 7px;

    font-size: 10px;
}

.footer-column a {
    color: var(--gray-500);

    font-size: 13px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    padding-top: 25px;

    color: var(--gray-400);

    font-size: 13px;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.show {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .hero {
        min-height: auto;

        padding:
            140px 0 90px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;

        margin-right: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-dashboard {
        max-width: 900px;

        margin: auto;
    }

    .workflow-layout {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .benefits-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .solutions-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }
}


@media (max-width: 900px) {

    .nav-menu {
        position: absolute;

        top: 78px;

        left: 15px;
        right: 15px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        padding: 20px;

        background: white;

        border: 1px solid var(--border);

        border-radius: 14px;

        box-shadow:
            0 20px 50px
            rgba(
                15,
                23,
                42,
                .1
            );
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu > a:not(.nav-button) {
        padding: 11px;
    }

    .nav-button {
        margin-top: 5px;

        text-align: center;
    }

    .mobile-menu {
        display: block;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stat-box:nth-child(2) {
        border-right: 0;
    }

    .stat-box:nth-child(-n+2) {
        border-bottom:
            1px solid var(--border);
    }

    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .feature-large {
        grid-column: span 2;
    }

    .solutions-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .document-box {
        grid-template-columns: 1fr;
    }

    .document-content {
        padding: 55px 35px;
    }

    .document-visual {
        min-height: 400px;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .container {
        width:
            calc(100% - 30px);
    }

    .nav-container {
        width:
            calc(100% - 30px);
    }

    .logo img {
        width: 130px;
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        padding:
            125px 0 70px;
    }

    .hero-grid {
        width:
            calc(100% - 30px);
    }

    .hero h1 {
        font-size: 45px;

        letter-spacing: -2.5px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .hero-trust {
        flex-direction: column;

        align-items: center;
    }

    .hero-image-wrapper {
        padding: 7px;

        border-radius: 18px;
    }

    .hero-image-wrapper img {
        border-radius: 13px;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stat-box {
        padding: 15px;
    }

    .workflow-flow {
        flex-direction: column;

        gap: 10px;
    }

    .flow-arrow {
        transform:
            rotate(90deg);
    }

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

    .feature-large {
        grid-column: span 1;
    }

    .feature-card ul {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .process {
        flex-direction: column;

        gap: 15px;
    }

    .process-line {
        width: 1px;

        height: 25px;

        flex: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .document-list {
        grid-template-columns: 1fr;
    }

    .document-box {
        border-radius: 20px;
    }

    .cta-box {
        padding:
            50px 25px;

        border-radius: 20px;
    }

    .cta-content h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;

        transform: none;
    }
}