:root {

    --biza-blue: #1256a0;
    --biza-dark: #0a2d50;
    --biza-blue-dark: #0b4280;

    --text: #172033;
    --muted: #758196;

    --light: #f5f8fc;

    --border: #e6ebf2;

    --green: #16a05d;

    --orange: #f59e0b;

    --purple: #7c3aed;

}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background: #fff;

    overflow-x: hidden;

}


a {
    text-decoration: none;
}



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

.biza-navbar {

    position: sticky;

    top: 0;

    z-index: 1000;

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

    backdrop-filter:
        blur(15px);

    border-bottom:
        1px solid
        rgba(
            230,
            235,
            242,
            .8
        );

}


.navbar-inner {

    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.biza-brand {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--biza-blue);

    font-weight: 900;

}


.brand-mark {

    width: 36px;

    height: 36px;

    border-radius: 11px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--biza-blue);

    color: white;

    font-size: 15px;

    transform: rotate(-3deg);

}


.brand-name {

    font-size: 24px;

    letter-spacing: -.8px;

}


.desktop-nav {

    display: flex;

    gap: 34px;

    margin-left: 80px;

}


.desktop-nav a {

    color: #5e6879;

    font-size: 13px;

    font-weight: 600;

    transition: .2s;

}


.desktop-nav a:hover {

    color: var(--biza-blue);

}


.nav-actions {

    display: flex;

    align-items: center;

    gap: 12px;

}


.nav-login {

    color: var(--text);

    font-size: 13px;

    font-weight: 650;

    padding: 11px 15px;

}


.nav-book {

    color: white;

    background: var(--biza-blue);

    border-radius: 10px;

    padding: 12px 17px;

    font-size: 13px;

    font-weight: 700;

}


.nav-book:hover {

    color: white;

    background: var(--biza-blue-dark);

}


.mobile-menu-btn {

    display: none;

    border: 0;

    background: transparent;

    font-size: 27px;

}


.mobile-menu {

    display: none;

}



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

.hero-section {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f6faff 0%,
            #ffffff 100%
        );

    padding:
        90px 0
        80px;

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;

}


.hero-glow-one {

    width: 500px;

    height: 500px;

    background:
        rgba(
            18,
            86,
            160,
            .08
        );

    right: -180px;

    top: -150px;

}


.hero-glow-two {

    width: 300px;

    height: 300px;

    background:
        rgba(
            22,
            160,
            93,
            .06
        );

    left: -140px;

    bottom: -120px;

}


.hero-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 70px;

    align-items: center;

}


.hero-content {

    position: relative;

    z-index: 2;

}


.hero-pill {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: #eaf3ff;

    color: var(--biza-blue);

    padding: 8px 13px;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 23px;

}


.pulse-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #16a05d;

    box-shadow:
        0 0 0 5px
        rgba(
            22,
            160,
            93,
            .1
        );

}


.welcome-line {

    color: var(--biza-blue);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 9px;

}


.hero-content h1 {

    font-size:
        clamp(
            48px,
            6vw,
            75px
        );

    line-height: .98;

    letter-spacing: -4px;

    margin: 0;

    font-weight: 900;

    max-width: 700px;

}


.hero-content h1 span {

    color: var(--biza-blue);

}


.hero-description {

    max-width: 600px;

    color: var(--muted);

    line-height: 1.8;

    font-size: 16px;

    margin:
        27px 0
        30px;

}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

}


.primary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    background: var(--biza-blue);

    color: white;

    padding:
        15px 21px;

    border-radius: 12px;

    font-size: 13px;

    font-weight: 750;

    box-shadow:
        0 9px 25px
        rgba(
            18,
            86,
            160,
            .18
        );

}


.primary-btn:hover {

    color: white;

    background:
        var(--biza-blue-dark);

}


.secondary-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--text);

    padding: 14px 16px;

    font-size: 13px;

    font-weight: 650;

}


.hero-trust {

    display: flex;

    gap: 22px;

    flex-wrap: wrap;

    margin-top: 27px;

}


.trust-item {

    color: #7c8798;

    font-size: 11px;

}


.trust-item i {

    color: var(--green);

    margin-right: 4px;

}



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

.hero-visual {

    position: relative;

}


.map-card {

    background: white;

    border-radius: 25px;

    overflow: hidden;

    box-shadow:
        0 30px 80px
        rgba(
            30,
            55,
            90,
            .15
        );

    border:
        1px solid
        #e7edf5;

    transform:
        rotate(1deg);

}


.map-topbar {

    height: 72px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding:
        0 20px;

}


.map-topbar strong {

    display: block;

    font-size: 13px;

    margin-top: 3px;

}


.live-label {

    color: var(--green);

    font-size: 9px;

    font-weight: 800;

}


.live-dot {

    display: inline-block;

    width: 6px;

    height: 6px;

    background: var(--green);

    border-radius: 50%;

    margin-right: 4px;

}


.map-menu {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f4f7fa;

    border-radius: 10px;

    color: #8792a3;

}


.fake-map {

    position: relative;

    height: 355px;

    overflow: hidden;

    background:
        #edf2ec;

}


.map-road {

    position: absolute;

    background:
        #ffffff;

    border-radius: 30px;

    transform: rotate(
        -25deg
    );

}


.road-one {

    width: 650px;

    height: 30px;

    top: 150px;

    left: -100px;

}


.road-two {

    width: 600px;

    height: 25px;

    top: 270px;

    left: -40px;

    transform:
        rotate(18deg);

}


.road-three {

    width: 450px;

    height: 20px;

    top: 70px;

    right: -80px;

    transform:
        rotate(62deg);

}


.map-block {

    position: absolute;

    background:
        rgba(
            215,
            224,
            211,
            .8
        );

    border-radius: 8px;

}


.block-one {

    width: 95px;

    height: 75px;

    top: 25px;

    left: 30px;

}


.block-two {

    width: 80px;

    height: 105px;

    right: 25px;

    top: 40px;

}


.block-three {

    width: 100px;

    height: 65px;

    left: 180px;

    bottom: 20px;

}


.block-four {

    width: 75px;

    height: 90px;

    right: 120px;

    bottom: 10px;

}


.route-svg {

    position: absolute;

    width: 100%;

    height: 100%;

    left: 0;

    top: 0;

}


.map-marker {

    position: absolute;

    width: 35px;

    height: 35px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    border:
        4px solid
        white;

    box-shadow:
        0 5px 15px
        rgba(
            0,
            0,
            0,
            .18
        );

}


.pickup-marker {

    left: 10%;

    bottom: 18%;

    background: var(--green);

}


.delivery-marker {

    right: 9%;

    top: 19%;

    background: #ef4444;

}


.rider-marker {

    position: absolute;

    left: 56%;

    top: 42%;

    width: 43px;

    height: 43px;

    border-radius: 50%;

    background:
        var(--biza-blue);

    border:
        4px solid
        white;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 8px 20px
        rgba(
            18,
            86,
            160,
            .3
        );

}


.map-footer {

    display: grid;

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

    padding: 18px 20px;

}


.map-footer span {

    display: block;

    color: #8993a3;

    font-size: 10px;

    margin-bottom: 4px;

}


.map-footer strong {

    font-size: 13px;

}


.status-moving {

    color: var(--green);

}


.floating-delivery-card {

    position: absolute;

    bottom: -25px;

    left: -30px;

    background: white;

    border-radius: 15px;

    padding: 13px 17px;

    display: flex;

    align-items: center;

    gap: 10px;

    box-shadow:
        0 15px 40px
        rgba(
            30,
            50,
            80,
            .14
        );

}


.floating-icon {

    width: 34px;

    height: 34px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e7f8ef;

    color: var(--green);

}


.floating-delivery-card strong {

    display: block;

    font-size: 11px;

}


.floating-delivery-card span {

    color: #8a94a4;

    font-size: 9px;

}



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

.stats-section {

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

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

    background: white;

}


.stats-grid {

    display: grid;

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

}


.stat-item {

    text-align: center;

    padding: 27px 15px;

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

}


.stat-item:last-child {

    border-right: 0;

}


.stat-item strong {

    display: block;

    color: var(--biza-blue);

    font-size: 24px;

    font-weight: 850;

}


.stat-item span {

    display: block;

    color: #8a94a4;

    font-size: 11px;

    margin-top: 3px;

}



/* =========================================================
GENERAL SECTION
========================================================= */

.section-section {

    padding:
        100px 0;

}


.section-heading {

    max-width: 650px;

    margin:
        0 auto
        55px;

    text-align: center;

}


.eyebrow {

    color: var(--biza-blue);

    font-size: 10px;

    letter-spacing: 1.7px;

    font-weight: 800;

}


.section-heading h2 {

    font-size:
        clamp(
            34px,
            4vw,
            50px
        );

    letter-spacing: -2px;

    line-height: 1.08;

    margin:
        14px 0;

    font-weight: 850;

}


.section-heading h2 span {

    color: var(--biza-blue);

}


.section-heading p {

    color: var(--muted);

    line-height: 1.7;

    font-size: 14px;

}



/* =========================================================
PROCESS
========================================================= */

.process-grid {

    display: grid;

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

    gap: 17px;

}


.process-card {

    position: relative;

    padding: 28px;

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

    border-radius: 19px;

    background: white;

    transition:
        .25s;

}


.process-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 20px 45px
        rgba(
            30,
            50,
            80,
            .08
        );

}


.step-number {

    position: absolute;

    top: 22px;

    right: 22px;

    color: #dce5ef;

    font-size: 12px;

    font-weight: 800;

}


.process-icon {

    width: 49px;

    height: 49px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #edf5ff;

    color: var(--biza-blue);

    font-size: 20px;

    margin-bottom: 22px;

}


.process-card h3 {

    font-size: 17px;

    margin-bottom: 10px;

}


.process-card p {

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;

    min-height: 80px;

}


.process-card a {

    color: var(--biza-blue);

    font-size: 11px;

    font-weight: 750;

}



/* =========================================================
SERVICES
========================================================= */

.services-section {

    background: var(--light);

    padding:
        95px 0;

}


.services-layout {

    display: grid;

    grid-template-columns:
        .8fr
        1.2fr;

    gap: 70px;

    align-items: center;

}


.services-content h2 {

    font-size:
        clamp(
            34px,
            4vw,
            49px
        );

    line-height: 1.08;

    letter-spacing: -2px;

    margin:
        14px 0
        20px;

}


.services-content p {

    color: var(--muted);

    line-height: 1.8;

    font-size: 14px;

    margin-bottom: 27px;

}


.services-grid {

    display: grid;

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

    gap: 15px;

}


.service-card {

    background: white;

    padding: 25px;

    border-radius: 18px;

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

}


.service-icon {

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    margin-bottom: 17px;

}


.service-icon.blue {

    background: #eaf3ff;

    color: var(--biza-blue);

}


.service-icon.green {

    background: #e7f8ef;

    color: var(--green);

}


.service-icon.orange {

    background: #fff2df;

    color: var(--orange);

}


.service-icon.purple {

    background: #f0eaff;

    color: var(--purple);

}


.service-card h3 {

    font-size: 15px;

    margin-bottom: 8px;

}


.service-card p {

    font-size: 11px;

    color: var(--muted);

    line-height: 1.6;

    margin: 0;

}



/* =========================================================
TRACKING
========================================================= */

.tracking-section {

    padding:
        100px 0;

}


.tracking-box {

    border-radius: 28px;

    background:
        linear-gradient(
            130deg,
            #0b3763,
            #1256a0
        );

    padding: 65px;

    color: white;

    display: grid;

    grid-template-columns:
        1fr
        .9fr;

    gap: 70px;

    overflow: hidden;

    position: relative;

}


.tracking-content {

    position: relative;

    z-index: 2;

}


.tracking-content h2 {

    font-size:
        clamp(
            35px,
            4vw,
            51px
        );

    line-height: 1.05;

    letter-spacing: -2px;

    margin:
        15px 0
        20px;

}


.tracking-content p {

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

    font-size: 14px;

    line-height: 1.8;

    max-width: 520px;

}


.eyebrow.light {

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

}


.tracking-features {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 13px;

    margin:
        27px 0;

}


.tracking-features div {

    font-size: 11px;

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

}


.tracking-features i {

    color: #72dba2;

    margin-right: 5px;

}


.white-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    background: white;

    color: var(--biza-blue);

    border-radius: 11px;

    padding:
        14px 19px;

    font-size: 12px;

    font-weight: 750;

}


.tracking-visual {

    display: flex;

    align-items: center;

}


.tracking-card {

    background: white;

    color: var(--text);

    border-radius: 18px;

    padding: 20px;

    width: 100%;

    box-shadow:
        0 25px 50px
        rgba(
            0,
            0,
            0,
            .16
        );

}


.tracking-card-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 17px;

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

}


.tracking-card-header small {

    display: block;

    color: #9aa3b1;

    font-size: 8px;

}


.tracking-card-header strong {

    font-size: 11px;

}


.tracking-status {

    color: var(--green);

    background: #e7f8ef;

    border-radius: 20px;

    padding: 6px 9px;

    font-size: 9px;

    font-weight: 750;

}


.tracking-route {

    padding-top: 18px;

}


.tracking-point {

    display: flex;

    gap: 12px;

}


.tracking-point > span {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    margin-top: 4px;

    background: #dbe1e9;

    flex-shrink: 0;

}


.tracking-point.completed > span {

    background: var(--green);

}


.tracking-point.active > span {

    background: var(--biza-blue);

    box-shadow:
        0 0 0 5px
        #e6f0fb;

}


.tracking-point strong {

    display: block;

    font-size: 11px;

}


.tracking-point small {

    color: #939dac;

    font-size: 9px;

}


.tracking-line {

    width: 1px;

    height: 30px;

    background: #dce2e9;

    margin:
        4px 0
        4px 4px;

}


.tracking-line.active {

    background: var(--biza-blue);

}



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

.benefits-grid {

    display: grid;

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

    gap: 16px;

}


.benefit-card {

    padding: 28px;

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

    border-radius: 18px;

    position: relative;

}


.benefit-number {

    color: #dbe4ee;

    font-size: 11px;

    font-weight: 800;

    margin-bottom: 25px;

}


.benefit-card > i {

    font-size: 25px;

    color: var(--biza-blue);

}


.benefit-card h3 {

    font-size: 16px;

    margin:
        17px 0
        8px;

}


.benefit-card p {

    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;

}



/* =========================================================
ECOSYSTEM
========================================================= */

.flow-section {

    background: #f7f9fc;

    padding:
        90px 0;

}


.flow-header {

    text-align: center;

    margin-bottom: 55px;

}


.flow-header h2 {

    font-size:
        clamp(
            35px,
            4vw,
            48px
        );

    letter-spacing: -2px;

    margin:
        12px 0;

}


.flow-header h2 span {

    color: var(--biza-blue);

}


.ecosystem {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

}


.ecosystem-item {

    text-align: center;

    min-width: 130px;

}


.ecosystem-icon {

    width: 62px;

    height: 62px;

    border-radius: 18px;

    margin:
        0 auto
        12px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 23px;

}


.ecosystem-icon.customer {

    background: #eaf3ff;

    color: var(--biza-blue);

}


.ecosystem-icon.system {

    background: #e7f8ef;

    color: var(--green);

}


.ecosystem-icon.courier {

    background: #fff2df;

    color: var(--orange);

}


.ecosystem-icon.rider {

    background: #f0eaff;

    color: var(--purple);

}


.ecosystem-item strong {

    display: block;

    font-size: 13px;

}


.ecosystem-item span {

    color: #8c96a5;

    font-size: 10px;

}


.ecosystem-arrow {

    color: #aab3c0;

    font-size: 18px;

}



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

.cta-section {

    padding:
        90px 0;

}


.cta-box {

    background:
        linear-gradient(
            135deg,
            #0a2d50,
            #1256a0
        );

    color: white;

    text-align: center;

    border-radius: 28px;

    padding:
        75px 30px;

    position: relative;

    overflow: hidden;

}


.cta-decoration {

    width: 400px;

    height: 400px;

    border-radius: 50%;

    position: absolute;

    right: -180px;

    top: -220px;

    border:
        70px solid
        rgba(
            255,
            255,
            255,
            .04
        );

}


.cta-box h2 {

    position: relative;

    font-size:
        clamp(
            36px,
            5vw,
            58px
        );

    letter-spacing: -2.5px;

    line-height: 1;

    max-width: 700px;

    margin:
        14px auto;

}


.cta-box p {

    position: relative;

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

    font-size: 14px;

    max-width: 500px;

    margin:
        0 auto
        28px;

}


.cta-buttons {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

}


.cta-primary {

    background: white;

    color: var(--biza-blue);

    border-radius: 11px;

    padding:
        14px 20px;

    font-size: 12px;

    font-weight: 750;

}


.cta-secondary {

    color: white;

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

    border-radius: 11px;

    padding:
        13px 20px;

    font-size: 12px;

    font-weight: 700;

}



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

.biza-footer {

    background: #081d33;

    color: white;

    padding:
        65px 0
        25px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 50px;

}


.footer-brand p {

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

    font-size: 12px;

    line-height: 1.7;

    max-width: 260px;

    margin:
        18px 0;

}


.footer-brand .biza-brand {

    color: white;

}


.social-links {

    display: flex;

    gap: 8px;

}


.social-links a {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

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

    color: white;

    font-size: 12px;

}


.footer-grid h4 {

    font-size: 12px;

    margin-bottom: 18px;

}


.footer-grid > div:not(.footer-brand) a {

    display: block;

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

    font-size: 11px;

    margin-bottom: 12px;

}


.footer-grid > div:not(.footer-brand) a:hover {

    color: white;

}


.footer-bottom {

    padding-top: 22px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    display: flex;

    justify-content: space-between;

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

    font-size: 10px;

}



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

@media (
    max-width: 991px
) {

    .desktop-nav {

        display: none;

    }


    .mobile-menu-btn {

        display: block;

    }


    .nav-actions {

        display: none;

    }


    .mobile-menu {

        padding:
            10px
            0
            20px;

    }


    .mobile-menu.open {

        display: block;

    }


    .mobile-menu a {

        display: block;

        padding: 13px 5px;

        color: var(--text);

        font-size: 13px;

        font-weight: 600;

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

    }


    .hero-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .hero-content {

        text-align: center;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-buttons,
    .hero-trust {

        justify-content: center;

    }


    .services-layout {

        grid-template-columns: 1fr;

    }


    .tracking-box {

        grid-template-columns: 1fr;

        padding: 45px;

    }


    .process-grid,
    .benefits-grid {

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

    }


    .footer-grid {

        grid-template-columns:
            2fr 1fr 1fr;

    }

}


@media (
    max-width: 600px
) {

    .hero-section {

        padding:
            60px 0
            55px;

    }


    .hero-content h1 {

        letter-spacing: -2.5px;

    }


    .hero-description {

        font-size: 14px;

    }


    .floating-delivery-card {

        left: 10px;

        bottom: -20px;

    }


    .stats-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .stat-item:nth-child(2) {

        border-right: 0;

    }


    .stat-item:nth-child(3) {

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

    }


    .stat-item:nth-child(4) {

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

        border-right: 0;

    }


    .section-section {

        padding:
            70px 0;

    }


    .process-grid,
    .benefits-grid,
    .services-grid {

        grid-template-columns: 1fr;

    }


    .process-card p {

        min-height: auto;

    }


    .tracking-box {

        padding:
            35px 22px;

        border-radius: 20px;

    }


    .tracking-features {

        grid-template-columns: 1fr;

    }


    .ecosystem {

        flex-direction: column;

    }


    .ecosystem-arrow {

        transform:
            rotate(90deg);

    }


    .cta-box {

        padding:
            60px 20px;

        border-radius: 20px;

    }


    .cta-buttons {

        flex-direction: column;

    }


    .cta-primary,
    .cta-secondary {

        width: 100%;

        max-width: 260px;

    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 35px;

    }


    .footer-brand {

        grid-column:
            1 / -1;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 8px;

    }

}