/* ==============================
   1. Root Variables
   ============================== */
:root {
    /* Color Palette */
    --color-primary: #fbfbfb;
    --color-secondary: #519e8a;
    --color-light: #ffffff;
    --color-dark: #000000;
    --color-gray: #666666;
    --color-gray-secondary: #333333;
    --color-success: #29c76f;
    --color-error: #f44336;
    --sub-title-color: #000000b2;
    /* Gradients */
    --gradient-bg: linear-gradient( 180deg, rgba(81, 158, 138, 0.048) 0%, rgba(81, 158, 138, 0.024) 100% );
    --gradient-play: linear-gradient(180deg, #3c3c3c 0%, #171616 100%);
    --gradient-secondary: linear-gradient(180deg, #519e8a 0%, #356156 100%);
    --gradient-circle: linear-gradient( 180deg, rgba(81, 158, 138, 0.8) 0%, #356156 100% );
    --gradient-features: linear-gradient( 180deg, rgba(81, 158, 138, 0.4) 0%, rgba(255, 255, 255, 0) 100% );
    --gradient-footer: linear-gradient(180deg, #519e8a 0%, #325e53 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    --gradient-footer-btn: linear-gradient(180deg, #f1f1f1 0%, #919191 100%);
    /* Layout & Spacing */
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 8px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
}

/* ==============================
   2. Base & Utility Styles
   ============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--color-primary);
    color: var(--color-dark);
    line-height: 1.6;
    /* overflow-x: hidden; */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section__title {
    margin: 0 0 4rem 0;
    font-family: Montserrat;
    font-weight: 700;
    font-style: Bold;
    font-size: 42px;
    line-height: 62px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(0, 0, 0, 0.9);
}

.section__title--center {
    text-align: center;
}

.section__inner-container {
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-md);
}

.section__inner-container--gradient {
    background: var(--gradient-bg);
}

/* ==============================
   3. Buttons & Common Elements
   ============================== */
.btn {
    min-height: 45px;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.btn--primary {
    background: var(--gradient-secondary);
    color: var(--color-light);
    font-weight: 500;
    border: none;
}

    .btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.btn--play {
    background: var(--gradient-play);
    width: 200px;
    color: var(--color-light);
    gap: 10px;
    display: flex;
    align-items: left;
    justify-content: left;
}

    .btn--play:hover {
        transform: translateY(-2px);
    }

.btn__play-icon {
    height: 22px;
    width: auto;
}

.btn__play-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.btn__play-small-text {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.btn__play-main-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.btn__arrow {
    margin-left: 10px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80;
    height: 60;
    object-fit: contain;
}

/* ==============================
   4. Header & Navigation
   ============================== */
.header {
    background: var(--color-primary);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}

.header__logo img {
    height: 50px;
    display: block;
}

.header__nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.header__nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

    .header__nav-link:hover {
        font-weight: 600;
    }

.header__cta {
    margin-left: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.header__nav-link.active {
    font-weight: 600;
}

/* ==============================
   5. Hero Section
   ============================== */
.hero {
    background: var(--color-primary);
    text-align: center;
}

.hero__container {
    margin: 0 0 0 10rem;
    padding: 0;
}

.hero__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero__text-content {
    flex: 2;
    text-align: left;
    width: 100%;
    margin-top: -6rem;
}

.hero__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 1.5rem;
    max-width: 600px;
    color: var(--color-dark);
}

.hero__subtitle {
    color: var(--sub-title-color);
    margin-bottom: 2rem;
    max-width: 500px;
    font-style: Regular;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    font-family: "Poppins";
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
}

.hero__cta-group {
    display: flex;
    gap: var(--space-sm);
}

.hero__image-wrapper {
    flex: 3;
    text-align: right;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin-right: -10%;
}

.hero__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.hero__image--desktop {
    display: block;
}

.hero__image--mobile {
    display: none;
}

.hero__whatsapp-icon {
    position: absolute;
    z-index: 4;
    font-size: 3.5rem;
    left: 75%;
    top: 105%;
    transform: translate(-50%, -50%);
}

.hero__scroll-down-arrow {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(21px);
    position: relative;
    z-index: 2;
    margin: -5rem auto;
}

    .hero__scroll-down-arrow::after {
        content: "";
        width: 20px;
        height: 20px;
        border-left: 3px solid white;
        border-bottom: 3px solid white;
        transform: rotate(-45deg);
    }

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
    gap: var(--space-lg);
    text-align: center;
}

.specific-container {
    max-width: 1400px;
}

.hero-stats__item {
    flex: 1;
    min-width: 240px;
    max-width: 260px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-stats__value {
    font-size: 3.125rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.hero-stats__label {
    font-family: "Poppins", sans-serif;
    color: var(--color-gray);
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
}

/* ==============================
   6. Features Section (How it works)
   ============================== */
.features-grid-bg {
    position: relative;
    background: var(--gradient-bg);
    border-radius: var(--radius-md);
    margin: var(--space-md);
    overflow: hidden;
}

/* Top grid */
.grid-overlay-top {
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 18%;
    object-fit: contain;
    transform: perspective(600px) rotateX(-60deg);
    transform-origin: bottom center;
    z-index: 0;
    pointer-events: none;
}

/* Bottom grid */
.grid-overlay-bottom {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 18%;
    object-fit: contain;
    transform: perspective(600px) rotateX(60deg);
    transform-origin: top center;
    z-index: 0;
    pointer-events: none;
}

.features {
    position: relative;
    z-index: 1;
    padding: var(--space-lg) var(--space-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
    align-items: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: left;
    min-height: 400px;
}

.feature-text {
    flex: 1 1 500px;
    max-width: 500px;
    margin-top: -2rem;
}

    .feature-text h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        margin-bottom: 1rem;
        color: rgba(0, 0, 0, 0.9);
        /* black 90% */
        font-size: 24px;
    }

    .feature-text h4 {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        color: var(--color-gray);
        margin-bottom: 1rem;
        font-size: 16px;
        line-height: 30px;
    }

    .feature-text ul {
        list-style: none;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 1rem;
        color: var(--color-gray);
        padding: 0;
    }

        .feature-text ul li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            line-height: 1.5;
            font-weight: 400;
            max-width: 90%;
        }

.feature-image {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 380px;
    background: var(--gradient-features);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

    .feature-image img {
        width: 100%;
        height: 100%;
        padding: 2rem;
        object-fit: contain;
        border-radius: 20px;
    }

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Floating Labels */
.feature-label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: transparent;
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    transform: rotate(-4deg);
    z-index: 10;
    max-width: 100%;
    text-align: center;
}

    /* Rotated Right Label */
    .feature-label.rotate-right {
        top: -6rem;
        right: -6.5rem;
        left: auto;
        transform: rotate(1deg);
    }

    /* Rotated Left Label */
    .feature-label.rotate-left {
        top: -6rem;
        left: -6.5rem;
        transform: rotate(-3deg);
    }

/* ==============================
   7. Trusted Logos
   ============================== */
.trusted-logos {
    text-align: center;
    padding: 3rem 1rem;
}

.trusted-logos__title {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-gray);
    margin-bottom: var(--space-md);
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    filter: grayscale(100%);
}

.logo-wrapper {
    width: 120px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    .logo-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: all 0.3s ease;
    }

        .logo-wrapper img:hover {
            opacity: 1;
            transform: scale(1.05);
        }

/* ==============================
   8. Key Features Section (v2)
   ============================== */

.features-section {
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
    margin-bottom: 3rem;
}

.grid-overlay-bottom-key {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    bottom: -13px;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.section__title__key {
    font-size: 30px;
    margin-top: 1rem;
    font-weight: bold;
}

.features-section__inner {
    margin: 0;
    padding: 0px;
    position: relative;
    z-index: 1;
}

.features-section__header {
    text-align: center;
    color: var(--color-gray-secondary);
}

.features-section__content {
    display: flex;
    align-items: center;
    height: auto;
    justify-content: space-between;
    border: none;
    position: relative;
}

.features-section__list {
    flex: 1 1 36%;
    max-width: 48%;
    z-index: 2;
    border: none;
    margin-left: 10rem;
    position: relative;
}

.features-section__card {
    display: flex;
    max-width: 100%;
    padding: 20px;
    align-items: start;
    position: absolute;
    top: 2%;
    left: 0;
    border-top: none;
    border-radius: 10px;
    margin-bottom: 0;
    overflow: hidden;
    box-shadow: 4px 4px 24px 0px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    background: var(--color-primary);
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    height: auto;
}

.features-section__icon-bg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

    .features-section__icon-bg img {
        width: 30px;
        height: 30px;
        display: block;
        transition: filter 0.5s;
    }

.features-section__items li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
    position: relative;
    opacity: 1;
    min-height: 44px;
}

    .features-section__items li.active {
        opacity: 1 !important;
        visibility: hidden;
        margin-bottom: 94px;
    }

.features-section__items img {
    width: 30px;
    height: 30px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

/* Progress bar */
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 0%;
    background: var(--color-secondary);
    transition: width linear;
}

.features-section__icon-bg {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 10px;
    color: var(--color-secondary);
    border-left-width: none;
}

    .features-section__icon-bg img {
        width: 22px;
        height: 22px;
    }

.features-section__card-heading {
    font-size: 1.125rem;
    margin: 0 0 6px;
    font-weight: 600;
}

.features-section__card-description {
    margin: 0;
    color: var(--color-gray);
    line-height: 1.6;
    max-width: 500px;
}

.features-section__items {
    list-style: none;
    padding: 0;
    margin: 22px 0 0 60px;
}

.features-section__image-wrapper {
    flex: 1 1 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    border: none;
    max-width: 60%;
}

.features-section__image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.features-section__card-text {
    transition: opacity 0.2s ease-in-out;
}

.features-section__items li {
    transition: all 0.3s ease;
    cursor: pointer;
}

.features-section__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 90px;
}

/* ==============================
   9. Circular Phone Mockup Section
   ============================== */
/* Bottom grid for #benefits section */
#benefits {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.grid-overlay-custom {
    bottom: -32px;
    height: 16%;
}

.circular-phone-mockup {
    padding: 4rem 1rem;
    background: var(--gradient-bg);
    border-radius: var(--radius-lg);
    margin: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.circular-features-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
}

.circular-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(420px, 80vw);
    height: min(420px, 80vw);
    background: var(--gradient-circle);
    border-radius: 50%;
    z-index: 0;
}

    .circular-circle img {
        width: 100%;
        height: auto;
        max-width: 320px;
        max-height: 430px;
        object-fit: contain;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

/* Shared feature card style */
.circular-feature-item {
    position: absolute;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: start;
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 310px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

    .circular-feature-item span {
        font-weight: 500;
        color: var(--color-secondary);
    }

    .circular-feature-item p {
        margin: 0;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        color: var(--color-dark);
        font-weight: 500;
        display: inline;
    }

/* LEFT SIDE arc placement */
.circular-left-features .circular-feature-item:nth-child(1) {
    top: 10%;
    left: 12%;
    transform: translateY(-50%);
}

.circular-left-features .circular-feature-item:nth-child(2) {
    top: 30%;
    left: 6%;
    transform: translateY(-50%);
}

.circular-left-features .circular-feature-item:nth-child(3) {
    top: 52%;
    left: 1%;
    transform: translateY(-50%);
}

.circular-left-features .circular-feature-item:nth-child(4) {
    top: 75%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 350px;
}

/* RIGHT SIDE arc placement */
.circular-right-features .circular-feature-item:nth-child(1) {
    top: 24%;
    right: 10%;
    transform: translateY(-50%);
}

.circular-right-features .circular-feature-item:nth-child(2) {
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    max-width: 363px;
}

.circular-right-features .circular-feature-item:nth-child(3) {
    top: 75%;
    right: 9%;
    transform: translateY(-50%);
}

.phone-btn-mockup {
    margin-top: 0px;
    margin-bottom: 100px;
}

/* ==============================
   10. Comparison Table
   ============================== */
.hidden-class {
    display: none;
}

.table-headings {
    display: flex;
    position: relative;
    z-index: 10;
    gap: 270px;
    margin-left: 40%;
    bottom: -3rem;
    left: -3.4rem;
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    color: #000000e5;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0%;
}

.comparison-section {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
}

.comparison-container {
    padding: 15px;
    max-width: 1000px;
    width: 100%;
    background: var(--color-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 4px 4px 120px 0px #0000000f;
    border: 1px solid #0000001a;
}

.scrollable-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Montserrat", sans-serif;
    text-align: left;
    min-width: 600px;
}

    .comparison-table thead {
        background: #4442d70d;
        padding: 0px;
    }

    .comparison-table th {
        padding: 1.2rem;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        color: #000000e5;
    }

    .comparison-table td {
        padding: 1.2rem 1rem;
        font-size: 0.95rem;
        border-top: 2px solid #e6e6e6;
        line-height: 1.5;
        vertical-align: middle;
        font-family: "Poppins", sans-serif;
    }

.cell-with-icon {
    display: flex;
    align-items: center;
    font-family: Poppins;
    font-style: Regular;
    color: #000000b2;
    gap: 6px;
}

.comparison-table td:first-child {
    background: var(--gradient-bg);
    font-weight: 600;
    color: #333;
    width: 25%;
}

.comparison-table tr:first-of-type td {
    border-top: none;
}

.first_col_row {
    border-top-right-radius: 12px;
}

.last_col_row {
    border-bottom-right-radius: 12px;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
    width: 37.5%;
}

.comparison-table tr:first-child td:first-child {
    border-top-left-radius: 12px;
}

.comparison-table tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.checkmark {
    /* font-weight: bold; */
    margin-right: 8px;
}

/* Mobile-only table styles */
.comparison-section--mobile {
    display: none;
}

.comparison-container-mobile {
    padding: 0;
    max-width: 1000px;
    width: 100%;
    background: transparent;
    position: relative;
    overflow-x: auto;
    z-index: 9;
}

.mobile-table-wrapper {
    background: var(--color-primary);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 4px 4px 120px 0px #0000000f;
    border: 1px solid #0000001a;
    min-width: 600px;
}

.mobile-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 190px;
    margin-left: 33%;
    font-weight: 500;
    font-family: Poppins;
    color: #000000e5;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

#others {
    margin-left: -210%;
}

.mobile-header-cell {
    text-align: center;
}

.comparison-table-mobile {
    width: 100%;
    border-collapse: collapse;
    font-family: "Montserrat", sans-serif;
    text-align: left;
}

    .comparison-table-mobile td {
        padding: 1.2rem 1rem;
        font-size: 0.95rem;
        border-top: 2px solid #e6e6e6;
        line-height: 1.5;
        vertical-align: middle;
        font-family: "Poppins", sans-serif;
        position: relative;
    }

        .comparison-table-mobile td:first-child {
            background: #519e8a0d;
            font-weight: 600;
            color: #333;
            width: 25%;
            left: 0;
            z-index: 1000;
        }

        .comparison-table-mobile td:nth-child(2),
        .comparison-table-mobile td:nth-child(3) {
            width: 37.5%;
            z-index: 0;
            background: var(--color-primary);
        }

    .comparison-table-mobile tr:first-of-type td {
        border-top: none;
    }

    .comparison-table-mobile tr:first-child td:first-child {
        border-top-left-radius: 12px;
    }

    .comparison-table-mobile tr:last-child td:first-child {
        border-bottom-left-radius: 12px;
    }

    .comparison-table-mobile .first_col_row {
        border-top-right-radius: 12px;
    }

    .comparison-table-mobile .last_col_row {
        border-bottom-right-radius: 12px;
    }

/* ==============================
   11. Supporting Sections
   ============================== */
.supporting-section {
    background-color: var(--color-primary);
    text-align: center;
    padding: 2rem 2rem 0 2rem;
}

.supporting-section__ordertracking {
    position: relative;
    width: 100%;
    background: var(--color-secondary);
    margin: 50px 0;
    border-radius: 30px;
    padding: 2rem 1rem;
    overflow: hidden;
}

    .supporting-section__ordertracking h2 {
        color: var(--color-light);
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 2rem;
    }

.track-items-wrapper {
    display: flex;
    width: max-content;
    overflow: hidden;
    margin: 4rem 0 2rem 0;
    position: relative;
}

.track-items-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    margin: 4rem 0 2rem 0;
    position: relative;
    /* Fade effect using mask (works modern browsers) */
    -webkit-mask-image: linear-gradient( 270deg, rgba(68, 66, 215, 0) 0%, #4442d7 20%,
    /* fade in */ #4442d7 80%,
    /* keep visible center */ rgba(68, 66, 215, 0) 100% );
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient( 270deg, rgba(68, 66, 215, 0) 0%, #4442d7 20%, #4442d7 80%, rgba(68, 66, 215, 0) 100% );
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}

.track-items {
    display: flex;
    gap: 0.5rem;
    animation: scroll-right 20s linear infinite;
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.truck-wrapper {
    position: absolute;
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
}

    .truck-wrapper img {
        height: 70px;
    }

/* Track item default (before truck passes) */
.track-item {
    padding: 0.5rem 1.6rem 0.5rem 1rem;
    box-sizing: border-box;
    font-size: 0.9rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-light);
    border: 1px dashed rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease-in-out;
    width: 240;
    height: 42;
    opacity: 1;
    border-radius: 40px;
}

    /* Hide checkmark by default */
    .track-item img {
        display: none;
        width: 16px;
        height: 16px;
    }

    /* After passed (glass style + checkmark) */
    .track-item.passed {
        border-radius: 40px;
        opacity: 1;
        backdrop-filter: blur(14px);
        box-shadow: 0px 4px 10px 0px #0000001a;
        border: 1px solid #ffffff1a;
        background: radial-gradient( 50% 50% at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100% );
    }

        .track-item.passed img {
            display: inline-block;
        }

.supporting-section__testimonials {
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: 40px auto;
    padding: 20px;
}

.carousel-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    height: 100%;
}

.carousel-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    animation: scroll-up 20s linear infinite;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial-card p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .testimonial-author img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }

    .testimonial-author strong {
        color: #111;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .testimonial-author span {
        color: #888;
        font-size: 0.85rem;
    }

.supporting-section__testimonials::before,
.supporting-section__testimonials::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.supporting-section__testimonials::before {
    top: 0;
    background: linear-gradient( to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) );
}

.supporting-section__testimonials::after {
    bottom: 0;
    background: linear-gradient( to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) );
}

.carousel-column:nth-child(1) .testimonial-card {
    box-shadow: 3px 3px 20px 0px #00000014;
}

.carousel-column:nth-child(2) .testimonial-card {
    box-shadow: 0px 0px 20px 0px #00000014;
}

.carousel-column:nth-child(3) .testimonial-card {
    box-shadow: -3px 3px 20px 0px #00000014;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

@media (max-width: 768px) {
    .supporting-section__testimonials {
        height: 600px;
        overflow: hidden;
    }

    .carousel-container {
        height: 600px;
        overflow: hidden;
    }

    .carousel-track {
        display: flex;
        flex-direction: column;
        gap: 0;
        animation: scroll-up 20s linear infinite;
    }

    .carousel-column {
        animation: none;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .testimonial-card {
        margin-bottom: 24px;
        width: 100%;
    }
}

/* ==============================
   12. FAQ Section
   ============================== */
.supporting-section__faq {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 16px;
}

.section-margin {
    margin-bottom: 2rem;
}

.faq__item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    transition: border 0.3s ease;
    border-top: 3px solid transparent;
    box-shadow: 4px 4px 24px 0px rgba(0, 0, 0, 0.08);
    /* box-shadow: 0px 6px 0px 0px rgba(68, 66, 215, 1) inset; */
}

    .faq__item[open] {
        border-top: 5px solid var(--color-secondary);
    }

.faq__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.faq-arrow {
    width: 16px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq__item[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
    max-width: 1200px;
}

.faq__summary::after {
    content: none;
}

/* ==============================
   13. Call to Action (CTA) Section
   ============================== */
.supporting-section__cta {
    background: var(--gradient-bg);
    border-radius: var(--radius-md);
    margin: 6rem;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cta-container {
    display: flex;
    align-items: center;
    padding: 3rem 3rem 0 3rem;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-container__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 260px;
}

.cta-container__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 50px;
    margin: 0;
    text-align: left;
    color: var(--color-gray-secondary);
}

.container-stack {
    flex: 1;
    width: 100%;
    min-width: 280px;
    display: flex;
}

    .container-stack img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

/* ==============================
   14. Footer
   ============================== */
.footer {
    background: var(--gradient-footer);
    color: var(--color-light);
    /* padding: 4rem 4rem; */
    position: relative;
    overflow: hidden;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    font-family: "Poppins", sans-serif;
    text-align: left;
    height: auto;
    padding: 4rem 6rem 12rem 6rem;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer__address {
    flex: 1 1 45%;
}

    .footer__address p {
        font-weight: 300;
        opacity: 0.8;
        font-style: normal;
    }

.footer__truck-img img {
    width: 275px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer__office {
    margin-bottom: 2.5rem;
}

    .footer__office a {
        color: #fff;
        text-decoration: none;
    }

.footer__heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-light);
    font-style: normal;
}

.footer p {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.6;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.footer i {
    margin-right: 0.5rem;
    color: var(--color-primary);
    opacity: 0.6;
    width: 16px;
    text-align: center;
    font-style: normal;
}

.footer__contact-form {
    flex: 1 1 45%;
}

.footer__form-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer__form-header p {
    margin-bottom: 1.5rem;
    font-family: Poppins, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
}

.footer__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

.glass-input,
.phone-input,
select.glass-input,
.footer__phone-group {
    height: 48px;
    padding: 0 1rem;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    font-family: "Poppins", sans-serif;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    outline: none;
    flex: 1;
    min-width: 220px;
    color: #ffffff99;
}

/* .glass-input::placeholder,
.phone-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
} */

select.glass-input {
    appearance: none;
    background: rgba(236, 220, 220, 0.07);
    border: 1px solid rgba(236, 220, 220, 0.13);
    cursor: pointer;
    color: #ffffff99;
}

    select.glass-input option {
        background-color: #1a1a1a;
        color: white;
        font-size: 14px;
    }

        select.glass-input option:hover,
        select.glass-input option:checked {
            background-color: #333;
            color: #ffffff99;
        }

.footer__phone-group {
    display: flex;
    padding: 0;
    overflow: hidden;
}

.country-code {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    white-space: nowrap;
    border-radius: none;
    height: 100%;
}

.phone-input {
    flex: 1;
    padding: 0 1rem;
    border: none;
    background: transparent;
    color: #ffffff99;
    font-size: 14px;
    outline: none;
    font-family: "Poppins", sans-serif;
    border-radius: none;
}

.footer__form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    min-height: 120px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    color: var(--color-primary, #fff);
    border: none;
    resize: vertical;
    font-family: "Poppins", sans-serif;
}

textarea::-webkit-resizer {
    background: none;
}

.footer__form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.custom-dropdown {
    position: relative;
    /* width: 100%; */
    flex: 1;
    min-width: 220px;
    font-family: "Poppins", sans-serif;
}

.dropdown-selected {
    position: relative;
    height: 48px;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 0 1rem;
    color: #ffffff99;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url("../assets/icons/down.svg");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 16px;
}

.dropdown-list {
    position: absolute;
    text-align: start;
    list-style: none;
    top: 100%;
    left: 0;
    width: 300px;
    max-height: 300px;
    overflow-y: auto;
    background: #1a1a1a;
    border: 1px solid #0000001a;
    border-radius: 8px;
    margin-top: 4px;
    box-shadow: 0px 4px 14px 0px #0000000f;
    display: none;
    z-index: 10;
    background: var(--color-primary);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .dropdown-list::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .dropdown-list li {
        padding: 10px;
        font-size: 14px;
        cursor: pointer;
        font-family: Inter;
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        color: #000000b2;
        line-height: 14px;
        letter-spacing: 0%;
    }

        .dropdown-list li:hover {
            color: #000000cc;
            background: #4442d70f;
        }

            .dropdown-list li:hover br {
                background: #4442d70f;
            }

.footer__submit-btn {
    padding: 0.75rem 2rem;
    border-radius: 20px;
    background: var(--gradient-footer-btn);
    color: #000;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.footer__social-links {
    display: flex;
    gap: 0.5rem;
}

    .footer__social-links a img {
        width: 30px;
        height: 30px;
        transition: opacity 0.3s;
    }

    .footer__social-links a:hover img {
        opacity: 0.8;
    }

.footer__brand-text {
    position: absolute;
    bottom: -3rem;
    left: 0;
    width: 100%;
    font-size: min(18rem, 30vw);
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    color: var(--color-primary);
    opacity: 0.03;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    z-index: 0;
}

.footer input::placeholder,
.footer textarea::placeholder {
    color: #ffffff99;
}

.dropdown-selected {
    color: #ffffff99;
}

/* ===========================
Responsive
=========================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* Large screens and desktops */
@media (min-width: 1025px) {
    .features-section__image-wrapper {
        flex-basis: 48%;
    }

    .features-section__image {
        transform: translateX(4%);
    }

    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 4rem;
    }

    .feature-text {
        flex: 1;
        max-width: 500px;
    }

    .feature-image {
        flex: 1;
        max-width: 450px;
        height: auto;
    }

    .supporting-section__faq {
        max-width: 1320px;
    }
}

/* Tablet and smaller screens */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-primary);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: var(--space-sm) 0;
    }

        .header__nav.active {
            display: flex;
            justify-content: center;
        }

    .header__container {
        flex-wrap: wrap;
        padding: 12px;
    }

    .btn--play {
        color: var(--color-light);
        gap: 5px;
        justify-content: center;
    }

    .hero__scroll-down-arrow {
        display: none;
    }

    .header__logo {
        flex-grow: 1;
        text-align: left;
    }

    .menu-toggle {
        display: flex;
    }

    .features-section__card-description {
        max-width: 100%;
    }

    .features-section__card {
        margin-top: 33px;
        margin-bottom: 15px;
    }

    .header__cta {
        display: none;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero__container {
        margin: 0;
        padding: var(--space-sm);
    }

    .hero__content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero__title {
        max-width: 100%;
        margin: auto;
    }

    .hero__text-content {
        text-align: center;
        margin: 0;
        order: 1;
        padding: var(--space-sm);
    }

    .hero__image-wrapper {
        order: 2;
        max-width: 90%;
        padding-top: var(--space-md);
        overflow: hidden;
    }

    .hero__image--desktop {
        display: none;
    }

    .hero__image--mobile {
        display: block;
    }

    .feature-text {
        flex: 1 1 390px;
    }

    .features-container {
        gap: 10rem;
    }

    .hero-stats {
        margin-top: 0rem;
        gap: 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats__label {
        font-size: 22px;
    }

    .features {
        margin-top: 5rem;
        margin-bottom: 4rem;
    }

    .hero__subtitle {
        max-width: 75%;
        margin: 1rem auto;
    }

    .hero__cta-group {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        margin-top: 4rem;
        justify-content: center;
    }

    .hero__whatsapp-icon {
        display: none;
    }

    .hero-stats__item {
        margin: 0px;
        min-width: auto;
        max-width: none;
        padding: 2rem 1.5rem;
        flex: none;
    }

    .features-section__content {
        flex-direction: column;
        flex-direction: column;
        align-items: center;
        gap: 28px;
        margin-top: 2rem;
        margin-bottom: 90px;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .features-section__title {
        margin-bottom: 2rem;
        text-align: center;
        width: 718;
        height: 118;
        opacity: 1;
        font-weight: 700;
        font-style: Bold;
        font-size: 70px;
        line-height: 58px;
        letter-spacing: 0%;
    }

    .features-section__list,
    .features-section__image-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .features-section__list {
        width: 100%;
        margin-left: 0;
    }

    .features-section__items {
        margin: 22px 0 0 0;
    }

    .features-section__image-wrapper {
        justify-content: end;
        align-items: end;
        margin-right: -20%;
    }

    .features-section__image {
        max-width: 90%;
        transform: none;
    }

    .feature-text {
        max-width: 100%;
    }

    .section__title--center {
        font-size: 41px;
        margin-top: 5rem;
    }

    .feature-text h3 {
        font-size: 30px;
    }

    .feature-text h4 {
        font-size: 20px;
    }

    .feature-text ul li {
        font-size: 18px;
    }

    .feature-image {
        max-width: 100%;
        height: auto;
    }

    .circular-phone-mockup {
        margin: 0px;
        padding: 0px;
    }

    .circular-circle img {
        max-width: 100%;
    }

    .circular-phone-mockup .circular-circle {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 8% auto 0;
    }

    .circular-features-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .circular-left-features,
    .circular-right-features {
        position: static;
        display: flex;
        flex-direction: column;
        padding: 0 1rem;
        margin-top: 4rem;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 90px;
    }

    .circular-feature-item {
        position: static !important;
        margin: 0 !important;
        transform: none !important;
        text-align: start;
        max-width: 100% !important;
        width: 100%;
    }

        .circular-feature-item span {
            font-size: 18px;
        }

        .circular-feature-item p {
            font-size: 16px;
            text-align: start;
        }

    .circular-left-features .circular-feature-item:nth-child(1),
    .circular-left-features .circular-feature-item:nth-child(2),
    .circular-left-features .circular-feature-item:nth-child(3),
    .circular-left-features .circular-feature-item:nth-child(4),
    .circular-right-features .circular-feature-item:nth-child(1),
    .circular-right-features .circular-feature-item:nth-child(2),
    .circular-right-features .circular-feature-item:nth-child(3) {
        max-width: 100% !important;
        transform: none !important;
        margin: 0 !important;
        position: static !important;
    }

    .comparison-section {
        padding: 2rem 1rem;
    }

    .comparison-table {
        display: table;
        width: 100%;
    }

        .comparison-table thead {
            display: table-header-group;
        }

        .comparison-table tr,
        .comparison-table td {
            display: table-row;
            width: auto;
        }

            .comparison-table td:first-child,
            .comparison-table td:nth-child(2),
            .comparison-table td:nth-child(3) {
                display: table-cell;
            }

    .table-headings {
        display: flex;
        position: relative;
        z-index: 10;
        gap: 190px;
        margin-left: 40%;
        bottom: -1rem;
        left: -3.4rem;
        font-family: Poppins;
        font-weight: 500;
        font-style: Medium;
        color: #000000e5;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: 0%;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-container__header {
        align-items: center;
        text-align: center;
    }

    .cta-container__title {
        margin-left: 2rem;
        text-align: center;
        font-size: 1.75rem;
    }

    .footer__address {
        text-align: left;
    }

    .footer__contact-form {
        width: 100%;
        text-align: left;
    }

    .footer__form-header {
        text-align: left;
    }

    .footer__truck-img {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .footer__brand-text {
        font-size: min(12rem, 20vw);
    }

    .footer {
        padding: 4rem 2rem 8rem 2rem;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 764px) {
    /* body {
    overflow-x: hidden;
  } */
    .container {
        max-width: 100%;
        padding: 0 1rem;
        margin-top: 0rem;
    }

    .mar-bot {
        margin-bottom: 1rem !important;
    }

    .menu-toggle {
        display: block;
    }

    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

        .header__nav.active {
            display: flex;
        }

    .header__nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        margin-bottom: 90px;
        overflow-x: hidden;
    }

    .hero__text-content {
        flex: 2;
        text-align: center;
        width: 100%;
        margin-top: 0rem;
    }

    .header__cta {
        display: none;
    }

    .header__logo {
        padding: var(--space-sm);
    }

    .section-margin-top {
        margin-top: 2rem;
    }

    .btn--primary {
        font-weight: 400;
        height: 60px;
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .btn-custom {
        margin: 2rem;
    }

    .btn--play {
        width: 100%;
        height: 60px;
        color: var(--color-light);
        gap: 5px;
        justify-content: center;
    }

    .hero__container {
        padding: 0;
    }

    .hero__cta-group {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 4rem;
        justify-content: center;
    }

    .hero__scroll-down-arrow {
        display: none;
    }

    .hero__title {
        font-size: 1.5rem;
        line-height: 35px;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__image-wrapper {
        flex: 1 1 100%;
        position: relative;
        z-index: 10;
        right: 1rem;
        text-align: center;
        max-width: 100%;
    }

        .hero__image-wrapper img {
            width: 100%;
            height: auto;
        }

    .hero__image--desktop {
        display: none;
    }

    .hero__image--mobile {
        display: block;
    }

    .hero__whatsapp-icon {
        font-size: 2rem;
        bottom: 80px;
    }

    .hero-stats {
        margin-top: 3rem;
        margin-bottom: 0rem;
        gap: 0;
        display: grid;
        flex-wrap: wrap;
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats__value {
        font-size: 2rem;
    }

    .hero-stats__label {
        font-size: 1rem;
    }

    .hero-stats__item {
        padding: 1rem 1rem;
    }

    .hero__subtitle {
        max-width: 100%;
        font-size: 15px;
    }

    .section__title {
        font-size: 24px;
        text-align: center;
        margin: 0 0 2rem 0;
        font-weight: 700;
        line-height: 35px;
    }

    .features-container {
        gap: 6rem;
    }

    .features-grid-bg {
        margin: var(--space-sm);
    }

    .features {
        padding: var(--space-md) var(--space-sm);
    }

    .feature-item {
        flex-direction: column;
        text-align: left;
        gap: 0rem;
    }

    .feature-text {
        padding-bottom: 0rem;
        flex: 1 1 400px;
    }

        .feature-text h4,
        .feature-text ul,
        .feature-text li {
            text-align: left;
        }

        .feature-text h3 {
            text-align: left;
            font-size: 18px;
        }

        .feature-text h4 {
            font-size: 15px;
            line-height: 24px;
        }

        .feature-text ul li {
            justify-content: left;
            font-size: 13px;
        }

    .feature-image {
        max-width: 100%;
        height: 300px;
        margin-top: 0px;
    }

        .feature-image img {
            width: 100%;
            height: 120%;
            padding: 0 1rem;
            object-fit: contain;
            border-radius: 20px;
        }

    .feature-label {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

        .feature-label.rotate-right {
            top: -3rem;
            right: -3.2rem;
        }

        .feature-label.rotate-left {
            top: -3rem;
            left: -3rem;
        }

    .features-section {
        margin-bottom: 0;
    }

    .features-section__list {
        width: 100%;
        margin-left: 0;
    }

    .features-section__content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .features-section__card-description {
        max-width: 100%;
        font-size: 12px;
    }

    .features-section__card-heading {
        font-size: 14px;
    }

    .features-section__image-wrapper {
        margin-right: -10%;
    }

    .features-section__card {
        display: flex;
        max-width: 500px;
        padding: 20px;
        align-items: start;
        position: absolute;
        top: 2%;
        left: 0;
        border-top: none;
        border-radius: 10px;
        margin-bottom: 0;
        overflow: hidden;
        box-shadow: 4px 4px 24px 0px rgba(0, 0, 0, 0.08);
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10;
        background: var(--color-primary);
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .features-section__items {
        margin: 22px 0 0 0;
        text-align: left;
    }

    .section__title__key {
        font-size: 22px;
    }

    #benefits {
        padding: 40px 0;
    }

    .circular-right-features {
        margin-top: 10rem;
    }

    .supporting-section__cta {
        padding: 2rem 1rem;
    }

    .cta-container__title {
        font-size: 20px;
        font-weight: 700;
        line-height: 35px;
        margin: 0;
        text-align: center;
        color: var(--color-gray-secondary);
    }

    .cta-container__header {
        text-align: center;
    }

    /* .responsive__title {
        margin-right: 10px;
    } */

    .btn__play-text-block {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
        text-align: center;
    }

    .responsive__btn {
        display: flex;
        text-align: center;
    }

        .responsive__btn img {
            margin-left: 40px;
        }

    .features-section__items {
        margin: o;
        text-align: left;
    }

        .features-section__items li {
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .features-section__items img {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

    .circular-left-features {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        order: 1;
        margin-top: 0;
        margin-bottom: 2rem;
    }

    .circular-phone-mockup .circular-circle {
        margin: 2rem auto;
        position: relative;
        order: 2;
        z-index: 10;
    }

    .circular-circle img {
        position: relative;
        transform: none;
        top: auto;
        left: 5%;
        width: 260px;
        z-index: 10;
    }

    .circular-right-features {
        margin: 2rem 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        order: 3;
    }

        .circular-left-features .circular-feature-item,
        .circular-right-features .circular-feature-item {
            max-width: 100% !important;
            width: 100%;
            margin: 0 !important;
            transform: none !important;
            position: static !important;
            z-index: 1;
        }

            .circular-left-features .circular-feature-item:nth-child(1),
            .circular-left-features .circular-feature-item:nth-child(2),
            .circular-left-features .circular-feature-item:nth-child(3),
            .circular-left-features .circular-feature-item:nth-child(4),
            .circular-right-features .circular-feature-item:nth-child(1),
            .circular-right-features .circular-feature-item:nth-child(2),
            .circular-right-features .circular-feature-item:nth-child(3) {
                max-width: 100% !important;
                transform: none !important;
                margin: 0 !important;
                position: static !important;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                bottom: auto !important;
                z-index: 1;
            }

    .respnsive-feature-item {
        margin-top: 0;
    }

    .responsive__btn__phonemockup {
        margin: 2rem;
        margin-bottom: 4rem;
    }

    .circular-feature-item p {
        text-align: left;
    }

    .comparison-section {
        margin: 0;
        padding: 0;
        margin-top: 30px;
        display: none;
    }

    .comparison-section--mobile {
        display: block;
        margin: 0;
        padding: 0;
        margin-top: 30px;
    }

    .supporting-section__cta {
        padding: 0;
        margin: 1rem 1rem 3rem 1rem;
    }

    .cta-container {
        padding: 1rem;
    }

    .text-align-center-btn {
        text-align: center;
        margin-left: 2rem;
    }

    .footer {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        min-height: 1000px;
    }

    .footer__brand-text {
        font-size: 60px;
        letter-spacing: 0rem;
        display: hidden;
    }

    .dropdown-selected {
        height: 48px;
        width: 100%;
    }

    .footer__container {
        margin-top: 2rem;
        margin-left: 0;
        padding: 0;
    }

    .footer__truck-img img {
        width: 275px;
        height: auto;
        margin-bottom: 1.5rem;
        margin-left: 2rem;
    }

    .play-btn-responsive img {
        margin-left: 0%;
        height: 35px;
        width: 35px;
    }

    .btn-text-block-responsive span {
        font-size: 1rem;
    }

    .supporting-section__ordertracking {
        padding: 1rem;
    }

        .supporting-section__ordertracking h2 {
            font-size: 1.2rem;
        }

    .track-items-wrapper {
        margin: 2rem 0;
        /* Make mask fade gentler for small screens */
        -webkit-mask-image: linear-gradient( 270deg, rgba(68, 66, 215, 0) 0%, #4442d7 10%, #4442d7 90%, rgba(68, 66, 215, 0) 100% );
        mask-image: linear-gradient( 270deg, rgba(68, 66, 215, 0) 0%, #4442d7 10%, #4442d7 90%, rgba(68, 66, 215, 0) 100% );
    }

    .supporting-section {
        padding: 0 1rem 0 1rem;
    }

    .track-items {
        gap: 0.6rem;
        animation: scroll-right-mobile 30s linear infinite;
    }

    .dropdown-list {
        max-height: 200px;
    }

    .track-item {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        gap: 4px;
        height: auto;
        max-height: none;
    }

    .truck-wrapper {
        top: 66%;
    }

        .truck-wrapper img {
            height: 10%;
            max-height: none;
            width: auto;
        }

    .footer {
        border-top-left-radius: 36px;
        border-top-right-radius: 36px;
    }

    @keyframes scroll-right-mobile {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0);
        }
    }

    .table-headings {
        display: none;
    }

    .circular-feature-item {
        text-align: left;
    }

    @keyframes drive-vertical {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(calc(100% + 2rem));
        }
    }
}

.mar-top-15 {
    margin-top: 15px;
}

body.modal-open {
    overflow: auto !important;
    padding-right: 0 !important;
    z-index: 99999;
}

.modal-content {
    border-radius: 26px !important;
}

.modal-header {
    background-color: #519e8a;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.modal-title {
    color: #fff;
}

label {
    color: #000;
    font-weight: 500;
}

.modal btn {
    min-height: 30px;
}

.modal-header .btn-close {
    color: #fff !important;
}

.modal-footer .modal-button {
    background-color: #519e8a !important;
    color: #fff;
}

.modal-footer {
    border-top: none;
}

@media (max-width: 764px) {
    .mar-bot {
        margin-bottom: 1rem !important;
    }
}
