:root {
    /* =====================================================
       BRAND COLORS
       ===================================================== */

    --primary: rgb(0, 152, 70);
    --primary-dark: rgb(0, 120, 55);
    --primary-light: rgb(232, 248, 239);

    --green: rgb(0, 152, 70);

    /* =====================================================
       TEXT COLORS
       ===================================================== */

    --dark: #101828;
    --text: #475467;
    --muted: #667085;

    /* =====================================================
       BACKGROUNDS
       ===================================================== */

    --white: #ffffff;
    --background: #f8fcfa;

    /* =====================================================
       BORDERS
       ===================================================== */

    --border: #e4eae6;

    /* =====================================================
       COMMON COLORS
       ===================================================== */

    --heading-dark: #0f172a;
    --gray-50: #f8faf9;
    --gray-100: #f2f4f7;
    --gray-200: #eaecf0;
    --gray-300: #d0d5dd;
    --gray-400: #98a2b3;
    --gray-500: #667085;
    --gray-600: #475467;

    /* =====================================================
       RADIUS
       ===================================================== */

    --radius-lg: 28px;
    --radius-md: 18px;

    /* =====================================================
       SHADOW
       ===================================================== */

    --shadow:
        0 20px 60px rgba(16, 24, 40, 0.10);

    /* =====================================================
       CONTAINER
       ===================================================== */

    --container: 1180px;
}


/* =========================================================
   FONT FALLBACK (metric-matched to Inter)
   Sized/spaced to match Inter so swapping from this fallback
   to the loaded webfont doesn't shift the layout (reduces CLS).
   ========================================================= */

@font-face {
    font-family: "Inter Fallback";
    src: local("Arial");
    ascent-override: 90.49%;
    descent-override: 22.56%;
    line-gap-override: 0%;
    size-adjust: 107.06%;
}


/* =========================================================
   RESET / GLOBAL
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Inter Fallback", sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container,
.about-container {
    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin-left: auto;
    margin-right: auto;
}

section {
    padding: 100px 0;
}

.footer-bottom-logo {
    width: 58px;
    height: auto;
    display: block;
}
/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid rgba(228, 234, 230, 0.7);
}

.navbar {
    height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    width: 200px;

    font-size: 25px;

    font-weight: 800;
}

.logo-mark {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            rgb(45, 190, 105)
        );

    box-shadow:
        0 8px 20px
        rgba(0, 152, 70, 0.25);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 32px;

    font-size: 14px;

    font-weight: 600;

    color: var(--text);
}

.nav-links a {
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;

    align-items: center;

    gap: 12px;
}
.active{color: var(--primary)}

/* =========================================================
   Herocontent
   ========================================================= */
   
/* =========================================================
   HERO
========================================================= */
.page-hero {

    padding: 90px 0 85px;
	
position:relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(0, 152, 70, 0.10),
            transparent 32%
        ),

        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fcfa 100%
        );
}


.page-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -230px;
    right: -120px;
    border-radius: 50%;

    background:
        rgba(0, 152, 70, 0.06);
}


.page-hero::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    bottom: -160px;
    left: -100px;

    border-radius: 50%;

    background:
        rgba(0, 152, 70, 0.04);
}
.page-hero-content {
    position: relative;

    z-index: 2;

    max-width: 650px;
}
.page-hero-content h1 {
    font-size:
        clamp(44px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -3px;

    margin: 18px 0 22px;

    color: var(--dark);
}
.page-hero h1 span {
    display: block;

    color: var(--primary);
}
.page-hero p {
    max-width: 650px;

    margin: 28px 0 20px;

    color: var(--muted);

    font-size: 19px;

    line-height: 1.75;
}
/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 46px;

    padding: 0 20px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.25s ease;

    cursor: pointer;
}

.btn-outline {
    border: 1px solid var(--border);

    background: var(--white);
}

.btn-outline:hover {
    border-color: var(--primary);

    color: var(--primary);
}

.btn-primary {
    color: var(--white);

    background: var(--primary);

    box-shadow:
        0 8px 20px
        rgba(0, 152, 70, 0.22);
}

.btn-primary:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-btn {
    display: none;

    border: 0;

    background: transparent;

    font-size: 25px;

    cursor: pointer;
}


/* =========================================================
   COMMON SECTION HEADER
   ========================================================= */

.section-header {
    max-width: 700px;

    margin:
        0 auto 55px;

    text-align: center;
}

.section-tag {
    display: inline-block;

    padding: 6px 12px;

    margin-bottom: 14px;

    border-radius: 30px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;
}

.section-header h2 {
    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1.5px;

    margin-bottom: 16px;
}

.section-header p {
    color: var(--text);

    font-size: 16px;
}


/* =========================================================
   HOME PAGE
   ========================================================= */


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.hero {
    position: relative;

    overflow: hidden;

    padding: 90px 0 100px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(0, 152, 70, 0.13),
            transparent 30%
        ),

        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fcfa 100%
        );
}

.hero-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}

.badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 13px;

    margin-bottom: 22px;

    border-radius: 50px;

    color: var(--primary);

    background: var(--primary-light);

    font-size: 13px;

    font-weight: 700;
}

.badge span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);
}

.hero h1 {
    max-width: 650px;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1.04;

    letter-spacing: -2.8px;

    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-text {
    max-width: 580px;

    font-size: 18px;

    color: var(--text);

    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 25px;
}

.hero-note {
    font-size: 13px;

    color: var(--muted);
}

.hero-note strong {
    color: var(--green);
}


/* ---------------------------------------------------------
   APP PREVIEW
   --------------------------------------------------------- */

.app-preview {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}

.app-preview-image {
    width: 100%;

    max-width: 680px;

    height: auto;

    display: block;

    filter:
        drop-shadow(
            0 25px 45px
            rgba(0, 80, 40, 0.12)
        );

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.app-preview:hover .app-preview-image {
    transform: translateY(-6px);

    filter:
        drop-shadow(
            0 30px 55px
            rgba(0, 80, 40, 0.18)
        );
}


/* ---------------------------------------------------------
   WHY BASKIT
   --------------------------------------------------------- */

.why-baskit {
    padding: 80px 0;

    background: var(--white);

    border-top:
        1px solid rgba(15, 23, 42, 0.05);

    border-bottom:
        1px solid rgba(15, 23, 42, 0.05);
}

.why-header {
    max-width: 680px;

    margin: 0 auto 45px;

    text-align: center;
}

.why-header .section-tag {
    display: inline-block;

    margin-bottom: 12px;
}

.why-header h2 {
    margin: 0 0 16px;

    font-size:
        clamp(30px, 4vw, 44px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;

    color: var(--heading-dark);
}

.why-header h2 span {
    color: var(--primary);
}

.why-header p {
    max-width: 580px;

    margin: 0 auto;

    color:var(--text);;

    font-size: 16px;

    line-height: 1.7;
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.why-card {
    position: relative;

    padding: 28px 24px;

    background: var(--white);

    border:
        1px solid #e8edf3;

    border-radius: 20px;

    min-height: 210px;

    display: flex;

    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(0, 152, 70, 0.30);

    box-shadow:
        0 18px 40px
        rgba(15, 23, 42, 0.08);
}

.why-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background:
        rgba(0, 152, 70, 0.10);
}

.why-icon span {
    font-size: 25px;

    line-height: 1;
}

.why-content h3 {
    margin: 0 0 9px;

    color: var(--heading-dark);

    font-size: 18px;

    font-weight: 700;

    line-height: 1.3;
}

.why-content p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.65;
}

.why-card::before {
    content: "";

    position: absolute;

    top: 0;

    left: 24px;

    right: 24px;

    height: 3px;

    background: var(--primary);

    border-radius:
        0 0 5px 5px;

    opacity: 0;

    transition:
        opacity 0.3s ease;
}

.why-card:hover::before {
    opacity: 1;
}


/* ---------------------------------------------------------
   HOME ABOUT SECTION
   --------------------------------------------------------- */

.about {
    background: var(--background);
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about h2 {
    font-size: 42px;

    line-height: 1.1;

    margin-bottom: 20px;
}

.about p {
    color: var(--text);

    margin-bottom: 20px;
}

.check-list {
    display: grid;

    gap: 12px;

    margin-top: 25px;
}

.check {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;

    font-weight: 600;
}

.check-icon {
    width: 24px;
    height: 24px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: var(--green);

    background: #e9f9ef;

    font-size: 12px;
}


/* ---------------------------------------------------------
   GENERAL FEATURES - HOME
   --------------------------------------------------------- */

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.feature-card {
    padding: 28px;

    border-radius: var(--radius-md);

    border:
        1px solid var(--border);

    background: var(--white);

    transition: 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(0, 152, 70, 0.25);

    box-shadow: var(--shadow);
}

.feature-icon {
    width: 48px;
    height: 48px;

    float: left;

    margin-right: 10px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 22px;

    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 17px;

    margin-bottom: 8px;
}

.feature-card p {
    color: var(--muted);

    font-size: 14px;
}


/* ---------------------------------------------------------
   BUSINESS
   --------------------------------------------------------- */

.business-section {
    background: var(--background);
}

.business-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.business-card {
    min-height: 130px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    gap: 12px;

    border-radius: 17px;

    background: var(--white);

    border:
        1px solid var(--border);

    font-weight: 700;

    transition: 0.25s ease;
}

.business-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(0, 152, 70, 0.25);

    color: var(--primary);
}

.business-icon {
    font-size: 30px;
}


/* ---------------------------------------------------------
   OFFLINE
   --------------------------------------------------------- */

.offline-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;
}

.offline-box {
    padding: 45px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    box-shadow:
        0 30px 60px
        rgba(0, 152, 70, 0.25);

    color: var(--white);
}

.image-card {
    padding: 0;

    overflow: hidden;

    border-radius: 20px;
}

.image-card img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.offline-box h3 {
    font-size: 30px;

    line-height: 1.2;

    margin-bottom: 15px;
}

.offline-box p {
    opacity: 0.9;

    margin-bottom: 25px;
}

.sync-card {
    padding: 18px;

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.12);

    border:
        1px solid
        rgba(255, 255, 255, 0.2);
}

.sync-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 10px;

    font-size: 13px;
}

.sync-row:last-child {
    margin-bottom: 0;
}

.sync-status {
    color: #b9ffd0;

    font-weight: 700;
}

.offline-content h2 {
    font-size: 42px;

    line-height: 1.1;

    margin-bottom: 18px;
}

.offline-content p {
    color: var(--text);

    margin-bottom: 25px;
}


/* ---------------------------------------------------------
   HOME CTA
   --------------------------------------------------------- */

.cta {
    padding: 100px 0;
}

.cta-box {
    position: relative;

    overflow: hidden;

    padding: 75px 50px;

    text-align: center;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    color: var(--white);
}

.cta-box h2 {
    max-width: 700px;

    margin:
        0 auto 15px;

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.1;
}

.cta-box p {
    max-width: 600px;

    margin:
        0 auto 28px;

    opacity: 0.9;
}

.cta-box .btn {
    background: var(--white);

    color: var(--primary);
}


.center-text{text-align:center;}
.download-section {
    padding: 90px 0;
}

.download-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;

    padding: 70px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(0, 152, 70, 0.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f5faf7,
            #ffffff
        );

    border: 1px solid #e1eee6;
    border-radius: 24px;

    overflow: hidden;
}
.download-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 155px;
    padding: 13px 16px;
    background: #fff;
    border: 1px solid #dfe9e3;
    border-radius: 12px;
    color: #222;
    text-decoration: none;
    transition: all 0.25s ease;
}

.platform-item:hover {
    transform: translateY(-3px);
    border-color: rgb(0, 152, 70);
    box-shadow: 0 8px 20px rgba(0, 152, 70, 0.12);
}

.platform-item i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #f1f8f4;
    color: rgb(0, 152, 70);
    font-size: 21px;
}

.platform-item span {
    display: flex;
    flex-direction: column;
}

.platform-item small {
    font-size: 10px;
    color: #777;
    margin-bottom: 2px;
}

.platform-item strong {
    font-size: 14px;
    color: #222;
}
.download-content {
    max-width: 650px;
}

.download-content h2 {
    margin: 15px 0 20px;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 800;

    color: var(--heading-dark);
}

.download-content p {
    color: #555;

    line-height: 1.8;

    margin-bottom: 15px;
}

.download-content .download-lead {
    font-size: 20px;

    color: #333;

    font-weight: 500;

    margin-bottom: 18px;
}


/* =========================================================
   DOWNLOAD BUTTON
   ========================================================= */

.download-button {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 20px;

    padding: 14px 22px;

    background: rgb(0, 152, 70);

    color: #fff;

    border-radius: 12px;

    text-decoration: none;

    transition: 0.25s ease;
}

.download-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 152, 70, 0.20);
}

.download-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.18);

    font-size: 25px;

    font-weight: 700;
}

.download-button-text {
    display: flex;

    flex-direction: column;
}

.download-button-text small {
    font-size: 12px;

    opacity: 0.85;

    margin-bottom: 2px;
}

.download-button-text strong {
    font-size: 16px;
}


/* =========================================================
   DOWNLOAD VISUAL
   ========================================================= */

.download-visual {
    min-height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;
}

.download-icon-circle {
    position: absolute;

    top: 10px;
    right: 30px;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgb(0, 152, 70);

    color: #fff;

    font-size: 34px;

    font-weight: 700;

    box-shadow: 0 12px 30px rgba(0, 152, 70, 0.25);
}


/* =========================================================
   PHONE VISUAL
   ========================================================= */

.download-phone {
    width: 170px;
    height: 300px;

    padding: 8px;

    background: #111;

    border-radius: 28px;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.18);

    transform: rotate(5deg);
}

.phone-screen {
    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    background: #fff;

    border-radius: 21px;

    overflow: hidden;
}

.phone-screen img {
    width: 85px;
    height: auto;

    object-fit: contain;
}

.phone-screen span {
    font-size: 12px;

    color: #555;

    font-weight: 600;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 65px 0 25px;

    background: #0b1220;

    color: var(--white);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr repeat(3, 1fr);

    gap: 50px;

    padding-bottom: 10px;
}
.footer-logo img{background:#0b1220;}

.footer-logo {
    font-size: 25px;

    font-weight: 800;

    margin-bottom: 15px;
	width:200px
	
}

.footer-about {
    max-width: 330px;

    color: var(--gray-400);

    font-size: 14px;
}

.footer-title {
    font-weight: 700;

    margin-bottom: 17px;
}

.footer-links {
    display: grid;

    gap: 10px;

    color: var(--gray-400);

    font-size: 13px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.1);

    color: #667085;

    font-size: 12px;
}


/* =========================================================
   TABLET - 1000px
   MERGED MEDIA QUERY
   ========================================================= */

@media (max-width: 1000px) {

    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */
.navbar {
        position: relative;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-btn {
        display: block;
        position: relative;
        z-index: 1002;

        border: 0;
        background: transparent;

        font-size: 25px;
        cursor: pointer;
    }

    /* SHOW MOBILE MENU */
    .nav-links.mobile-open {
        display: flex !important;

        position: absolute;

        top: 70px;
        left: 0;
        right: 0;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px;

        background: #ffffff;

        border-radius: 14px;

        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.12);

        z-index: 1001;
    }

    .nav-links.mobile-open a {
        display: block;

        width: 100%;

        padding: 14px 16px;

        font-size: 15px;
        font-weight: 600;

        color: var(--text);

        border-radius: 8px;
    }

    .nav-links.mobile-open a:hover {
        background: rgba(0, 152, 70, 0.08);
        color: var(--primary);
    }


    /* -----------------------------------------------------
       HOME
       ----------------------------------------------------- */

    .hero-grid,
    .about-grid,
    .offline-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 65px;
    }

    .dashboard {
        transform: none;
    }

    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .business-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    /* -----------------------------------------------------
       WHY
       ----------------------------------------------------- */

    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* -----------------------------------------------------
       FEATURES
       ----------------------------------------------------- */

    .features-hero-grid,
    .feature-section-grid {
        grid-template-columns: 1fr;
    }

    .feature-section-grid.reverse .feature-content,
    .feature-section-grid.reverse .feature-visual {
        order: initial;
    }

    .features-hero {
        padding-top: 70px;
    }

    .features-dashboard {
        transform: none;
    }

    .feature-wide-list {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* -----------------------------------------------------
       ABOUT
       ----------------------------------------------------- */

    .about-hero {
        padding: 90px 0 100px;
    }

    .about-hero .about-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-hero-content {
        max-width: 750px;
    }

    .about-hero-visual {
        min-height: 400px;
    }

    .about-two-column {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-values-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .about-feature-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .about-company-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .about-address-grid {
        grid-template-columns:
            1fr 1fr;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
	   .download-box {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 50px;
    }

    .download-content {
        max-width: 100%;
    }

    .download-visual {
        min-height: 280px;
    }
}


/* =========================================================
   MOBILE - 768px
   ========================================================= */

@media (max-width: 768px) {
	.download-platforms {
        justify-content: center;
    }

    .platform-item {
        min-width: 145px;
    }

    .app-preview {
        margin-top: 40px;
    }

    .app-preview-image {
        width: 100%;

        max-width: 520px;
    }
	 .download-section {
        padding: 60px 0;
    }

    .download-box {
        padding: 40px 25px;

        border-radius: 18px;

        text-align: center;
    }

    .download-content .download-lead {
        font-size: 18px;
    }

    .download-button {
        margin-top: 15px;
    }

    .download-visual {
        min-height: 260px;
    }

    .download-icon-circle {
        right: 15px;

        width: 55px;
        height: 55px;

        font-size: 28px;
    }
}


/* =========================================================
   MOBILE - 650px
   ========================================================= */

@media (max-width: 650px) {

    /* -----------------------------------------------------
       COMMON
       ----------------------------------------------------- */

    .container,
    .about-container {
        width:
            min(
                100% - 28px,
                var(--container)
            );
    }

    section {
        padding: 70px 0;
    }


    /* -----------------------------------------------------
       HOME HERO
       ----------------------------------------------------- */

    .hero {
        padding: 55px 0 70px;
    }

    .hero h1 {
        letter-spacing: -1.8px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }


    /* -----------------------------------------------------
       OLD DASHBOARD SUPPORT
       ----------------------------------------------------- */

    .dashboard-body {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .stats {
        grid-template-columns: 1fr;
    }


    /* -----------------------------------------------------
       HOME FEATURES
       ----------------------------------------------------- */

    .features-grid {
        grid-template-columns: 1fr;
    }


    /* -----------------------------------------------------
       BUSINESS
       ----------------------------------------------------- */

    .business-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* -----------------------------------------------------
       OFFLINE
       ----------------------------------------------------- */

    .offline-box {
        padding: 30px;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }

    .trust-items {
        gap: 25px;
    }


    /* -----------------------------------------------------
       WHY BASKIT
       ----------------------------------------------------- */

    .why-baskit {
        padding: 60px 0;
    }

    .why-header {
        margin-bottom: 32px;
    }

    .why-header h2 {
        font-size: 30px;
    }

    .why-header p {
        font-size: 15px;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .why-card {
        min-height: auto;

        padding: 24px;
    }


    /* -----------------------------------------------------
       FEATURES HERO
       ----------------------------------------------------- */

    .features-hero {
        padding: 55px 0 70px;
    }

    .features-hero h1 {
        letter-spacing: -2px;
    }

    .features-hero-text {
        font-size: 16px;
    }

    .features-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .features-hero-buttons .btn {
        width: 100%;
    }


    /* -----------------------------------------------------
       FEATURES NAV
       ----------------------------------------------------- */

    .features-nav {
        top: 0;
    }


    /* -----------------------------------------------------
       FEATURE SECTIONS
       ----------------------------------------------------- */

    .feature-section {
        padding: 70px 0;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .feature-wide-list {
        grid-template-columns: 1fr;
    }

    .feature-visual {
        min-height: 280px;

        padding: 20px;
    }

    .feature-store-visual {
        min-height: 280px;
    }

    .feature-store-center {
        padding: 18px 22px;
    }

    .features-stat-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .features-cta {
        padding: 70px 0;
    }


    /* -----------------------------------------------------
       ABOUT
       ----------------------------------------------------- */

    .about-section {
        padding: 75px 0;
    }

    .about-hero {
        padding: 75px 0 80px;
    }

    .about-hero h1 {
        font-size: 46px;

        letter-spacing: -2px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .about-btn {
        width: 100%;
    }

    .about-hero-visual {
        min-height: 350px;
    }

    .orbit-one {
        width: 300px;
        height: 300px;
    }

    .orbit-two {
        width: 220px;
        height: 220px;
    }

    .about-card-main {
        width: 245px;

        min-height: 150px;
    }

    .about-card-small {
        min-width: 160px;

        padding: 12px;
    }

    .card-top {
        top: 20px;

        right: 0;
    }

    .card-bottom {
        bottom: 20px;

        left: 0;
    }

    .about-section h2 {
        font-size: 38px;

        letter-spacing: -1.2px;
    }

    .about-values-grid,
    .about-feature-grid,
    .about-company-grid,
    .about-address-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card,
    .about-feature-card {
        min-height: auto;
    }

    .about-mission {
        padding: 70px 0;
    }

    .about-mission-box {
        padding: 55px 25px;

        border-radius: 25px;
    }

    .about-mission-box h2 {
        font-size: 38px;
    }

    .about-cta {
        padding: 80px 0;
    }

    .about-cta h2 {
        font-size: 42px;
    }

    .about-company-grid {
        gap: 14px;
    }

    .about-company-card {
        padding: 25px 20px;
    }
}


/* =========================================================
   SMALL MOBILE - 400px
   ========================================================= */

@media (max-width: 400px) {
	.download-section {
        padding: 45px 0;
    }

    .download-box {
        padding: 35px 18px;
    }

    .download-content h2 {
        font-size: 30px;
    }

    .download-phone {
        width: 145px;
        height: 255px;
    }

    .download-icon-circle {
        width: 50px;
        height: 50px;

        font-size: 25px;
    } .download-platforms {
        display: grid;
        grid-template-columns: 1fr;
    }

    .platform-item {
        width: 100%;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-hero-visual {
        transform: scale(0.9);

        margin: -20px;
    }

    .about-card-main {
        width: 225px;
    }

    .about-section h2 {
        font-size: 34px;
    }

    .about-mission-box h2 {
        font-size: 34px;
    }

    .about-cta h2 {
        font-size: 36px;
    }
}
/* =========================================================
   DEMO POPUP
   ========================================================= */

.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.demo-modal.active {
    display: flex;
}

.demo-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


/* ---------------------------------------------------------
   MODAL BOX
   --------------------------------------------------------- */

.demo-modal-box {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 480px;

    padding: 42px 38px 34px;

    background: #ffffff;

    border-radius: 24px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.18);

    text-align: center;

    animation: demoModalIn 0.25s ease;
}


@keyframes demoModalIn {

    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* ---------------------------------------------------------
   CLOSE BUTTON
   --------------------------------------------------------- */

.demo-modal-close {
    position: absolute;

    top: 16px;
    right: 18px;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #f3f5f4;

    color: #333;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;

    transition: all 0.2s ease;
}


.demo-modal-close:hover {
    background: #009846;
    color: #ffffff;

    transform: rotate(90deg);
}


/* ---------------------------------------------------------
   MODAL ICON
   --------------------------------------------------------- */

.demo-modal-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: rgba(0, 152, 70, 0.10);

    color: #009846;

    font-size: 30px;
}


/* ---------------------------------------------------------
   MODAL CONTENT
   --------------------------------------------------------- */

.demo-modal-box .section-tag {
    display: inline-block;

    margin-bottom: 10px;
}


.demo-modal-box h2 {
    margin: 0 0 12px;

    font-size: 30px;
    line-height: 1.2;

    color: #111827;
}


.demo-modal-box > p {
    max-width: 390px;

    margin: 0 auto 28px;

    color: #6b7280;

    font-size: 15px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   CONTACT OPTIONS
   --------------------------------------------------------- */

.demo-contact-options {
    display: flex;
    flex-direction: column;

    gap: 12px;

    text-align: left;
}


.demo-contact-card {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 15px 16px;

    border: 1px solid #e5e7eb;
    border-radius: 15px;

    text-decoration: none;

    background: #ffffff;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.demo-contact-card:hover {
    transform: translateY(-2px);

    border-color: rgba(0, 152, 70, 0.4);

    box-shadow:
        0 8px 25px rgba(0, 152, 70, 0.10);
}


/* ---------------------------------------------------------
   CONTACT ICON
   --------------------------------------------------------- */

.demo-contact-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(0, 152, 70, 0.10);

    font-size: 20px;
}


/* ---------------------------------------------------------
   CONTACT TEXT
   --------------------------------------------------------- */

.demo-contact-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 3px;
}


.demo-contact-content span {
    font-size: 12px;

    color: #6b7280;
}


.demo-contact-content strong {
    font-size: 15px;

    color: #111827;
}


.demo-arrow {
    color: #009846;

    font-size: 20px;

    transition: transform 0.2s ease;
}


.demo-contact-card:hover .demo-arrow {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   MODAL NOTE
   --------------------------------------------------------- */

.demo-modal-note {
    margin-top: 22px !important;
    margin-bottom: 0 !important;

    font-size: 12px !important;

    color: #8a8f98 !important;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

    .demo-modal {
        padding: 15px;
    }

    .demo-modal-box {
        padding: 38px 22px 28px;

        border-radius: 20px;
    }

    .demo-modal-box h2 {
        font-size: 25px;
    }

    .demo-modal-icon {
        width: 60px;
        height: 60px;

        font-size: 26px;
    }

}