/* ══════════════════════════════════════════
   ROOT VARIABLES
══════════════════════════════════════════ */
:root {
    --btn-orange: #fd5c0b;
    --btn-dark: #161415;
    --text-orange: #dc511a;
    --text-dark: #000105;
    --text-secondary: #323338;
    --text-muted: #797e82;
    --bg-green: #d0efc6;
    --color-green: #819b74;
    --bg-light-orange: #fff1e5;
    --color-violet: #7571a3;
    --bg-violet: #e8e4fb;

    --font-section-heading: 48px;
    --font-section-heading-tablet: 36px;
    --font-section-heading-mobile: 28px;

    --font-section-desc: 15px;
    --font-section-desc-mobile: 14px;

    --font-section-label: 11px;

    /* --section-padding-desktop: 5rem 5%;
    --section-padding-tablet: 4rem 5%;
    --section-padding-mobile: 3rem 5%; */

    --section-padding-desktop: 80px 5%;
    --section-padding-tablet: 50px 5%;
    --section-padding-mobile: 25px 3%;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fafafc;
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    min-height: 100vh;
}

.section-inner {
    width: 100%;
}

@media (min-width: 1400px) {
    .section-inner {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

.section-label {
    font-size: var(--font-section-label);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.section-heading {
    font-size: var(--font-section-heading);
    font-weight: 800;
    line-height: 1.18;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.section-subtext {
    font-size: var(--font-section-desc);
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.highlight {
    color: var(--text-orange);
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #f0f0f4;
    padding: 0 5%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo span {
    color: var(--btn-orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-links .active {
    color: var(--text-dark);
    border-bottom: 2px solid var(--btn-orange);
    padding-bottom: 2px;
}

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown>a::after {
    content: ' ▾';
    font-size: 10px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login {
    padding: 7px 18px;
    border: 1.5px solid #d8d8df;
    border-radius: 6px;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    font-family: inherit;
    transition: border-color .2s;
}

.btn-login:hover {
    border-color: var(--text-dark);
}

.btn-get-started {
    padding: 7px 18px;
    border: none;
    border-radius: 6px;
    background: var(--btn-orange);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, transform .15s;
}

.btn-get-started:hover {
    background: #e54a00;
    transform: translateY(-1px);
}



/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
    padding: var(--section-padding-desktop);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-section-label);
    font-weight: 700;
    color: var(--text-orange);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--btn-orange);
}

.hero-heading {
    font-size: var(--font-section-heading);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -1.5px;
}

.hero-heading .highlight {
    color: var(--text-orange);
}

.hero-desc {
    font-size: var(--font-section-desc);
    line-height: 1.72;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cta-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--btn-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.cta-dark:hover {
    background: #2e2c2d;
    transform: translateY(-2px);
}

.cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid #d0d0d8;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: border-color .2s, transform .15s;
}

.cta-outline:hover {
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

.cta-franchise {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--bg-light-orange);
    color: var(--text-orange);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.cta-franchise:hover {
    background: #fde3ce;
    transform: translateY(-2px);
}

.arrow {
    font-size: 14px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding-top: 8px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-light-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.stat-icon.one {
    background: var(--bg-light-orange);
    color: var(--btn-orange);
}

.stat-icon.two {
    background: var(--bg-green);
    color: var(--color-green);
}

.stat-icon.three {
    background: var(--bg-violet);
    color: var(--color-violet);
}


.stat-text strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
}

.stat-text span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .10);
    animation: floatUp .8s ease both;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════
   WHAT IS DOTTIMO SECTION
══════════════════════════════════════════ */
.what-is-dottimo {
    background-color: #fafafc;
    padding: var(--section-padding-desktop);
}

.wid-inner {
    text-align: center;
}

.wid-label {
    font-size: var(--font-section-label);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-orange);
    margin-bottom: 12px;
    display: block;
}

.wid-heading {
    font-size: var(--font-section-heading);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.wid-desc {
    font-size: var(--font-section-desc);
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.wid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: left;
}

.wid-card {
    background: #fff;
    border: 1px solid #ececf2;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.wid-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.wid-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.wid-icon--orange {
    background-color: var(--bg-light-orange);
    color: var(--btn-orange);
}

.wid-icon--green {
    background-color: var(--bg-green);
    color: var(--color-green);
}

.wid-icon--violet {
    background-color: var(--bg-violet);
    color: var(--color-violet);
}

.wid-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.wid-card-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted);
    font-weight: 500;
}

/* ══════════════════════════════════════════
   ABOUT DOTTIMO SECTION
══════════════════════════════════════════ */
.about-dottimo {
    background-color: #fafafc;
    padding: var(--section-padding-desktop);
}

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    margin-bottom: 40px;
}

.about-top-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-section-label);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-orange);
}

.about-label i {
    font-size: 9px;
}

.about-heading {
    font-size: var(--font-section-heading);
    font-weight: 800;
    line-height: 1.18;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.about-heading .highlight,
.about-card-heading .highlight {
    color: var(--text-orange);
}

.about-desc {
    font-size: var(--font-section-desc);
    line-height: 1.72;
    color: var(--text-secondary);
}

.about-top-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    object-fit: contain;
    animation: floatUp .8s ease both;
}

/* MISSION & VISION CARDS */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.about-card {
    background: #fff;
    border: 1px solid #ececf2;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow .2s, transform .2s;
    align-items: center;
}

.about-card:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, .07);
    transform: translateY(-3px);
}

.about-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-icon--orange {
    background-color: var(--bg-light-orange);
    color: var(--btn-orange);
}

.about-icon--violet {
    background-color: var(--bg-violet);
    color: var(--color-violet);
}

.about-card-label {
    font-size: var(--font-section-label);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-orange);
}

.about-card-heading {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    text-align: center;
}

.about-card-divider {
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: var(--btn-orange);
}

.about-card-desc {
    font-size: 14px;
    line-height: 1.72;
    color: var(--text-secondary);
    text-align: center;
}

.about-pillars {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.about-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    flex: 1;
    min-width: 70px;
}

.about-pillar span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.pillar-icon--orange {
    background-color: var(--bg-light-orange);
    color: var(--btn-orange);
}

.pillar-icon--violet {
    background-color: var(--bg-violet);
    color: var(--color-violet);
}

.about-stats {
    background: #fff;
    border: 1px solid #ececf2;
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    flex-wrap: wrap;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.astat--orange {
    background-color: var(--bg-light-orange);
    color: var(--btn-orange);
}

.astat--violet {
    background-color: var(--bg-violet);
    color: var(--color-violet);
}

.astat--green {
    background-color: var(--bg-green);
    color: var(--color-green);
}

.about-stat-text strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}

.about-stat-text span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: #ececf2;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   DOTTIMO APP SECTION
══════════════════════════════════════════ */

.app-section {
    background: #0d1120;
    padding: var(--section-padding-desktop);
    overflow: hidden;
    position: relative;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(253, 92, 11, 0.08) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.app-grid {
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    /* gap: 3rem; */
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.app-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-label {
    font-size: var(--font-section-label);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--btn-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.app-label i {
    font-size: 9px;
}

.app-heading {
    font-size: var(--font-section-heading);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -1.2px;
}

.app-divider {
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: var(--btn-orange);
}

.app-desc {
    font-size: var(--font-section-desc);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.60);
    font-weight: 500;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 8px 0;
}

.app-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.app-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--btn-orange);
    transition: background .2s, transform .2s;
}

.app-feature:hover .app-feat-icon {
    background: rgba(253, 92, 11, 0.18);
    border-color: rgba(253, 92, 11, 0.35);
    transform: translateY(-3px);
}

.app-feature span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.4;
}

.app-download-label {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 4px;
}

.app-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-block;
    text-decoration: none;
    border-radius: 8px;
    transition: transform .2s, box-shadow .2s;
    flex-shrink: 0;
}

.app-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.badge-svg {
    width: 160px;
    height: 52px;
    display: block;
}

.app-right {
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.app-phone-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: appFloat 3.5s ease-in-out infinite;
    margin-top: -60px;
    margin-bottom: -220px;
}

@keyframes appFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.app-phone-img {
    width: 100%;
    /* max-width: 340px; */
    max-width: 420px;
    height: auto;
    display: block;
    object-fit: contain;
    /* filter: drop-shadow(0 30px 60px rgba(253, 92, 11, 0.18)) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4)); */
}


/* ══════════════════════════════════════════
   POWERING EVERY CATEGORY — SECTION STYLES
══════════════════════════════════════════ */

.categories-section {
    background-color: #0d1120;
    overflow: hidden;
    padding: var(--section-padding-desktop);
}

.cat-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    min-height: 420px;
}

.cat-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 5rem 3rem 5rem 0;
}

.cat-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-section-label);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--btn-orange);
}

.cat-label i {
    font-size: 9px;
}

.cat-heading {
    font-size: var(--font-section-heading);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.cat-desc {
    font-size: var(--font-section-desc);
    line-height: 1.72;
    color: #a8aab8;
    max-width: 360px;
}

.cat-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .15s;
    width: fit-content;
}

.cat-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cat-cta i {
    font-size: 13px;
    transition: transform .2s;
}

.cat-cta:hover i {
    transform: translateX(3px);
}

.cat-right {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.cat-img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

/* ══════════════════════════════════════════
   SOLUTIONS SECTION
   For Customers / Sellers / Franchise Partners
══════════════════════════════════════════ */

.solutions-section {
    background-color: #fafafc;
    padding: var(--section-padding-desktop);
}

.sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sol-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    position: relative;
    min-height: 380px;
    background-repeat: no-repeat;
    background-size: contain;
}

.sol-card--light {
    background-color: #f4f4f8;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./images/for-customers.webp);
    background-position: right center;
}

.sol-card--light::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #f4f4f8 35%, rgba(244, 244, 248, 0.7) 60%, transparent 100%);
}

.sol-card--mid {
    background-color: #eef0f8;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./images/for-sellers.webp);
    background-position: right center;
}

.sol-card--mid::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #f4f4f8 35%, rgba(244, 244, 248, 0.7) 60%, transparent 100%);
}

.sol-card--orange {
    background-color: var(--bg-light-orange);
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./images/for-franchise.webp);
    background-position: right center;
}

.sol-card--orange::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #f4f4f8 35%, rgba(244, 244, 248, 0.7) 60%, transparent 100%);
}

/* .sol-card--orange::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 55%;
    background-image: radial-gradient(circle, rgba(253, 92, 11, 0.15) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 0;
} */

.sol-card-body {
    flex: 1;
    padding: 28px 20px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.sol-label {
    font-size: var(--font-section-label);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--btn-orange);
}

.sol-heading {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.22;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.sol-heading--dark {
    color: var(--text-dark);
}

.sol-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.sol-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.4;
}

.sol-features li i {
    font-size: 13px;
    color: var(--btn-orange);
    flex-shrink: 0;
}

.sol-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    width: fit-content;
    transition: transform .15s, background .2s;
    margin-top: auto;
}

.sol-cta--dark {
    background: var(--btn-dark);
    color: #fff;
    border: none;
}

.sol-cta--dark:hover {
    background: #2e2c2d;
    transform: translateY(-2px);
}

.sol-cta i {
    font-size: 11px;
    transition: transform .2s;
}

.sol-cta:hover i {
    transform: translateX(3px);
}

.sol-card-img {
    flex-shrink: 0;
    width: 46%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    align-self: stretch;
    position: relative;
    z-index: 1;
}

.sol-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.sol-card-img--franchise {
    justify-content: flex-end;
}

.sol-card-img--franchise img {
    object-position: top right;
}

/* ══════════════════════════════════════════
   JOIN THE DOTTIMO NETWORK SECTION
══════════════════════════════════════════ */

.network-section {
    background-color: #fafafc;
    padding: var(--section-padding-desktop);
}

.network-card {
    border-radius: 20px;
    overflow: hidden;
    background-color: #0f1117;
    background-image: url('images/dottimo-network-bg.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 300px;
    position: relative;
    margin-bottom: 0;
}

.network-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(10, 10, 18, 0.92) 0%,
            rgba(10, 10, 18, 0.80) 45%,
            rgba(10, 10, 18, 0.20) 75%,
            rgba(10, 10, 18, 0.00) 100%);
    z-index: 0;
    border-radius: 20px;
}

.network-left {
    position: relative;
    z-index: 1;
    padding: 44px 40px 44px 44px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    justify-content: center;
}

.network-label {
    font-size: var(--font-section-label);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--btn-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.network-heading {
    font-size: var(--font-section-heading);
    font-weight: 800;
    line-height: 1.18;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.network-features {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.network-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.network-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    flex-shrink: 0;
}

.network-feature span {
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.45;
    font-family: 'Manrope', sans-serif;
}

.network-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--btn-orange);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    cursor: pointer;
    width: fit-content;
    transition: background .2s, transform .15s;
}

.network-cta:hover {
    background: #e54a00;
    transform: translateY(-2px);
}

.network-cta i {
    font-size: 12px;
    transition: transform .2s;
}

.network-cta:hover i {
    transform: translateX(3px);
}

.network-right {
    position: relative;
    z-index: 1;
}

.network-stats {
    background: #ffffff;
    border: 1px solid #ececf2;
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    flex-wrap: wrap;
}

.network-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.network-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.nstat--orange {
    background-color: var(--bg-light-orange);
    color: var(--btn-orange);
}

.nstat--violet {
    background-color: var(--bg-violet);
    color: var(--color-violet);
}

.nstat--green {
    background-color: var(--bg-green);
    color: var(--color-green);
}

.network-stat-text strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    font-family: 'Manrope', sans-serif;
}

.network-stat-text span {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-muted);
    font-family: 'Manrope', sans-serif;
}

.network-stat-divider {
    width: 1px;
    height: 40px;
    background: #ececf2;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   FRANCHISE SECTION — ROOT
══════════════════════════════════════════ */
.franchise-section {
    background: #ffffff;
    padding: 5rem 0 5rem 5%;
    overflow: hidden;
}

.fr-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: stretch;
    margin-bottom: 28px;
}

.fr-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 48px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.fr-label-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fr-label-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--bg-light-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--btn-orange);
    flex-shrink: 0;
}

.fr-label {
    font-size: var(--font-section-label);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--btn-orange);
}

.fr-heading {
    font-size: var(--font-section-heading);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -1.2px;
}

.fr-heading .highlight {
    color: var(--text-orange);
}

.fr-divider {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: var(--btn-orange);
}

.fr-desc {
    font-size: var(--font-section-desc);
    line-height: 1.72;
    color: var(--text-secondary);
}

.fr-desc strong {
    color: var(--text-dark);
    font-weight: 700;
}

.fr-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fr-features.mob {
    display: none;
    margin-bottom: 20px;
}

.fr-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f4;
}

.fr-feature:first-child {
    border-top: 1px solid #f0f0f4;
}

.fr-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.fr-feat--orange {
    background: var(--bg-light-orange);
    color: var(--btn-orange);
}

.fr-feat--violet {
    background: var(--bg-violet);
    color: var(--color-violet);
}

.fr-feat--green {
    background: var(--bg-green);
    color: var(--color-green);
}

.fr-feat--yellow {
    background: #fef9e6;
    color: #c9900c;
}

.fr-feat-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.fr-feat-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.fr-feat-text span {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.5;
}

.fr-chev {
    font-size: 11px;
    color: #d0d2d8;
    flex-shrink: 0;
}

.fr-cta--desktop {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--btn-dark);
    color: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    width: fit-content;
    transition: background .2s, transform .15s;
    margin-top: auto;
}

.fr-cta--desktop:hover {
    background: #2e2c2d;
    transform: translateY(-2px);
}

.fr-cta-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.fr-cta-arr {
    font-size: 12px;
    transition: transform .2s;
}

.fr-cta--desktop:hover .fr-cta-arr {
    transform: translateX(3px);
}

.fr-right {
    position: relative;
}

.fr-image-panel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 620px;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fr-map-img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    object-position: center top;
    display: block;
    min-height: 0;
}

.fr-map-img.mob {
    display: none;
}

.fr-region-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(10, 12, 28, 0.78);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
}

.fr-region-badge i {
    font-size: 14px;
    color: var(--btn-orange);
}

.fr-region-sub {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 3px;
}

.fr-region-badge strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.fr-stats-card {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    z-index: 5;
    min-width: 220px;
}

.fr-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.fr-sc-divider {
    height: 1px;
    background: #f0f0f4;
    width: 100%;
}

.fr-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.fstat--orange {
    background: var(--bg-light-orange);
    color: var(--btn-orange);
}

.fstat--violet {
    background: var(--bg-violet);
    color: var(--color-violet);
}

.fstat--green {
    background: var(--bg-green);
    color: var(--color-green);
}

.fr-stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fr-stat-lbl {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1;
}

.fr-stat-val {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fr-stat-val strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}

.fr-badge {
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 5px;
}

.fr-badge--up {
    background: #e6f8ee;
    color: #1a9448;
}

.fr-stat-sub {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.fr-mob-stats-bar {
    display: none;
}

.fr-mob-cta-banner {
    display: none;
}

.fr-mob-stat-lbl-br {
    display: none;
}

.fr-bottom-bar {
    background: #0d1120;
    border-radius: 18px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    margin-right: 5%;
}

.fr-bb-intro {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    min-width: 200px;
}

.fr-bb-rocket {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--btn-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.fr-bb-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 4px;
}

.fr-bb-title .highlight {
    color: var(--btn-orange);
}

.fr-bb-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 500;
    line-height: 1.5;
}

.fr-bottom-bar-right {
    display: flex;
    align-items: flex-start;
}

.fr-bb-vline {
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    margin: 0 28px;
    align-self: center;
}

.fr-bb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 5px;
}

.fr-bb-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 6px;
}

.fr-bb-item strong {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.fr-bb-item span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 500;
    line-height: 1.5;
}

/* ══════════════════════════════════════════
   OUR GROWTH JOURNEY — SECTION
══════════════════════════════════════════ */

.growth-section {
    background-color: #fafafc;
    padding: var(--section-padding-desktop);
}

.growth-heading {
    font-size: var(--font-section-heading);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-dark);
    letter-spacing: -1.2px;
    margin-bottom: 16px;
}

.growth-desc {
    font-size: var(--font-section-desc);
    line-height: 1.72;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 560px;
}

.growth-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
    border: 1px solid #ececf2;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.growth-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 20px 24px;
    text-align: center;
}

.gs-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 4px;
}

.gs-icon--orange {
    background: var(--bg-light-orange);
    color: var(--btn-orange);
}

.gs-icon--violet {
    background: var(--bg-violet);
    color: var(--color-violet);
}

.gs-icon--green {
    background: var(--bg-green);
    color: var(--color-green);
}

.gs-icon--yellow {
    background: #fef9e6;
    color: #c9900c;
}

.growth-stat strong {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.5px;
}

.growth-stat span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.gs-underline {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    margin-top: 4px;
}

.gs-underline--orange {
    background: var(--btn-orange);
}

.gs-underline--violet {
    background: var(--color-violet);
}

.gs-underline--green {
    background: var(--color-green);
}

.gs-underline--yellow {
    background: #c9900c;
}

.gs-vline {
    width: 1px;
    height: 80px;
    background: #ececf2;
    flex-shrink: 0;
}

.growth-map-card {
    background: #0d1120;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 38% 62%;
    min-height: 360px;
    height: 500px;
    margin-bottom: 20px;
    position: relative;
}

.growth-map-left {
    padding: 40px 32px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    z-index: 2;
}

.growth-map-heading {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.18;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.growth-map-divider {
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: var(--btn-orange);
}

.growth-map-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.60);
    font-weight: 500;
}

.growth-expanding-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 16px 18px;
    margin-top: 4px;
}

.geb-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--btn-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
}

.geb-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.geb-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.geb-text span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.50);
    font-weight: 500;
    line-height: 1.5;
}

.highlight {
    color: var(--text-orange) !important;
    /* font-size: 14px !important;
    font-weight: 700 !important; */
}

.growth-map-right {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    min-height: 280px;
}

.growth-bottom-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #ececf2;
    border-radius: 14px;
    padding: 18px 24px;
}

.gbb-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-light-orange);
    color: var(--btn-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.gbb-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    flex: 1;
    line-height: 1.4;
}

.gbb-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid var(--btn-orange);
    border-radius: 8px;
    color: var(--btn-orange);
    font-size: 14px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s;
    flex-shrink: 0;
}

.gbb-cta:hover {
    background: var(--btn-orange);
    color: #fff;
}

/* ══════════════════════════════════════════
   GROWING ACROSS INDIA — SECTION
══════════════════════════════════════════ */

.growing-section {
    background-color: #fafafc;
    padding: var(--section-padding-desktop);
}

.growing-inner {
    text-align: center;
}

.growing-label {
    font-size: var(--font-section-label);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.growing-dot {
    font-size: 8px;
    color: var(--btn-orange);
}

.growing-heading {
    font-size: var(--font-section-heading);
    font-weight: 800;
    line-height: 1.08;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.growing-desc {
    font-size: var(--font-section-desc);
    line-height: 1.72;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.growing-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    border: 1px solid #ececf2;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.growing-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 28px;
    justify-content: center;
}

.grs-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.grs-icon--orange {
    background: var(--bg-light-orange);
    color: var(--btn-orange);
}

.grs-icon--violet {
    background: var(--bg-violet);
    color: var(--color-violet);
}

.grs-icon--green {
    background: var(--bg-green);
    color: var(--color-green);
}

.grs-icon--yellow {
    background: #fef9e6;
    color: #c9900c;
}

.grs-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    text-align: left;
}

.grs-info strong {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.5px;
}

.grs-info span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.grs-vline {
    width: 1px;
    height: 56px;
    background: #ececf2;
    flex-shrink: 0;
}

.growing-map-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    /* min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background-image: url(./images/growing-across-india-web.png);
    background-size: contain;
    background-repeat: no-repeat; */
}

.growing-map-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.growing-map-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.growing-map-img.mob {
    display: none;
}


/* .growing-map-img {
    width: 55%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
} */

.grm-feature {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.grm-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.grm-feat-icon--dark {
    background: rgba(255, 255, 255, 0.10);
    color: var(--btn-orange);
}

.grm-feat-text {
    text-align: left;
}

.grm-feat-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--btn-orange);
    line-height: 1.3;
    margin-bottom: 3px;
}

.grm-feat-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    line-height: 1.45;
}

.grm-feature--tl {
    top: 36px;
    left: 36px;
}

.grm-feature--tr {
    top: 36px;
    right: 36px;
    flex-direction: row-reverse;
    text-align: right;
}

.grm-feature--tr .grm-feat-text {
    text-align: right;
}

.grm-feature--bl {
    bottom: 36px;
    left: 36px;
}

.grm-feature--br {
    bottom: 36px;
    right: 36px;
    flex-direction: row-reverse;
    text-align: right;
}

.grm-feature--br .grm-feat-text {
    text-align: right;
}

.growing-bottom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--bg-light-orange);
    border-radius: 50px;
}

.grb-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--btn-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.growing-bottom p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}



/* Mobile features list (only visible on mobile for growing section) */
.growing-mobile-features {
    display: none;
    background: #fff;
    border: 1px solid #ececf2;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}

.grm-mob-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid #ececf2;
}

.grm-mob-feature:last-child {
    border-bottom: none;
}

.grm-mob-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    background: var(--bg-light-orange);
    color: var(--btn-orange);
}

.grm-mob-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.grm-mob-text span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ══════════════════════════════════════════
   FOOTER CTA BANNER
══════════════════════════════════════════ */

.footer-cta-banner {
    background: #ffffff;
    border-top: 1px solid #ececf2;
    border-bottom: 1px solid #ececf2;
    padding: 28px 5%;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-cta-text h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.footer-cta-text p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.5;
}

.footer-cta-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .15s, background .2s, border-color .2s;
    border: 1.5px solid transparent;
}

.fcta-btn:hover {
    transform: translateY(-2px);
}

.fcta-btn--outline {
    background: transparent;
    border-color: #d0d0d8;
    color: var(--text-dark);
}

.fcta-btn--outline:hover {
    border-color: var(--text-dark);
}

.fcta-btn--orange {
    background: var(--btn-orange);
    color: #ffffff;
    border-color: var(--btn-orange);
}

.fcta-btn--orange:hover {
    background: #e54a00;
    border-color: #e54a00;
}

.fcta-btn i {
    font-size: 13px;
}

/* ══════════════════════════════════════════
   MAIN FOOTER
══════════════════════════════════════════ */

footer {
    background: #ffffff;
    padding: 48px 5% 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 260px 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ececf2;
}

.footer-logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-bottom: 14px;
}

.footer-logo span {
    color: var(--btn-orange);
}

.footer-brand-desc {
    font-size: 13px;
    line-height: 1.68;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1.5px solid #e8e8ef;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: border-color .2s, background .2s, color .2s;
}

.footer-social-link:hover {
    border-color: var(--btn-orange);
    background: var(--bg-light-orange);
    color: var(--btn-orange);
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
    line-height: 1.4;
}

.footer-links a:hover {
    color: var(--text-dark);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item i {
    font-size: 13px;
    color: var(--btn-orange);
    margin-top: 2px;
    width: 14px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.45;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

.footer-bottom-links a:hover {
    color: var(--text-dark);
}

.footer-bottom-links .sep {
    color: #d0d0d8;
    font-size: 12px;
}



@media (max-width: 1150px) {
    .nav-links {
        display: none;
    }
}



/* ── Hero mob-bottom duplicate (hidden on desktop) ── */
.hero-mob-bottom {
    display: none;
}

@media (max-width: 1150px) {

    /* Hide CTA and stats inside hero-left */
    .hero-left .hero-cta,
    .hero-left .hero-stats {
        display: none !important;
    }

    /* Show the mob-bottom block, spanning full grid width */
    .hero-mob-bottom {
        display: flex;
        flex-direction: column;
        gap: 24px;
        grid-column: 1 / -1;
        /* spans both columns */
        padding-top: 8px;
    }

    /* Keep hero-grid as 2-col (badge+heading+desc | image) */
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    /* hero-left only shows badge, heading, desc now */
    .hero-left {
        gap: 16px;
    }

    /* CTA row inside mob-bottom */
    .hero-mob-bottom .hero-cta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Stats row inside mob-bottom */
    .hero-mob-bottom .hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
    }
}

/* ══════════════════════════════════════════
   Media Max 900px
══════════════════════════════════════════ */
@media (max-width: 900px) {

    .hero,
    .what-is-dottimo,
    .about-dottimo,
    .app-section,
    .solutions-section,
    .categories-section,
    .network-section,
    .growth-section,
    .growing-section {
        padding: var(--section-padding-tablet);
    }

    .hero-heading,
    .wid-heading,
    .about-heading,
    .app-heading,
    .cat-heading,
    .network-heading,
    .fr-heading,
    .growth-heading,
    .growing-heading {
        font-size: var(--font-section-heading-tablet);
    }

    .hero-desc,
    .wid-desc,
    .about-desc,
    .app-desc,
    .cat-desc,
    .growth-desc,
    .growing-desc {
        font-size: var(--font-section-desc);
    }

    /* What is Dottimo */
    .wid-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About */
    .about-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .about-card-heading {
        font-size: 22px;
    }

    /* .about-cards {
        grid-template-columns: 1fr;
    } */

    .about-stat-divider {
        display: none;
    }

    .about-stats {
        /* justify-content: flex-start; */
        gap: 24px;
    }

    /* App Section */
    .app-section {
        overflow: visible;
    }

    .app-grid {
        grid-template-columns: 55% 45%;
        /* gap: 2rem; */
        gap: 1rem;
    }

    .app-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .app-feat-icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .app-phone-wrap {
        margin-top: 100px;
        margin-bottom: -100px;
    }

    /* .app-phone-img {
        max-width: 280px;
    } */

    .badge-svg {
        width: 140px;
        height: 46px;
    }


    .cat-grid {
        /* grid-template-columns: 45% 55%;
        min-height: 340px; */
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .cat-left {
        gap: 16px;
        padding: 4rem 2rem 4rem 0;
    }

    .cat-right {
        margin: 0 auto 20px auto;
    }

    .cat-img {
        min-height: 340px;
    }

    /* Solutions */
    .sol-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sol-card {
        min-height: 260px;
    }

    .sol-card-body {
        padding: 24px 16px 24px 24px;
    }

    .sol-card-img {
        width: 42%;
    }

    .sol-heading {
        font-size: 22px;
    }

    /* Network */
    .network-card {
        grid-template-columns: 1fr;
        min-height: 280px;
    }

    .network-right {
        display: none;
    }

    .network-left {
        padding: 36px 32px;
    }

    .network-stats {
        padding: 20px 28px;
        /* justify-content: flex-start; */
        gap: 20px;
    }

    .network-stat {
        flex-direction: column;
        text-align: center;
    }

    .network-stat-divider {
        display: none;
    }

    .network-stat-text strong {
        font-size: 22px;
    }

    /* Franchise */
    .franchise-section {
        padding: var(--section-padding-tablet) 5%;
    }

    .fr-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .fr-left {
        padding-right: 0;
    }

    .fr-features.mob {
        display: block;
    }

    .fr-features.web {
        display: none;
    }

    .fr-image-panel {
        border-radius: 20px 20px 0 0;
        min-height: 320px;
    }

    .fr-map-img.web {
        display: none;
    }

    .fr-map-img.mob {
        display: block;
    }

    .fr-stats-card {
        display: none;
    }

    .fr-mob-stats-bar {
        display: flex;
        background: #ffffff;
        border-radius: 20px 20px 20px 20px;
        padding: 16px 20px;
        justify-content: space-around;
        flex-shrink: 0;
        margin: -60px 16px 0 16px;
        position: relative;
        z-index: 10;
    }

    .fr-mob-stat-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
        flex: 1;
    }

    .fr-mob-stat-sep {
        width: 1px;
        background: #ececf2;
        align-self: stretch;
        flex-shrink: 0;
        margin: 0 8px;
    }

    .fr-mob-stat-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        flex-shrink: 0;
    }

    .fr-mob-stat-lbl {
        font-size: 10px;
        font-weight: 500;
        color: var(--text-muted);
    }

    .fr-mob-stat-val {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .fr-mob-stat-val strong {
        font-size: 18px;
        font-weight: 800;
        color: var(--text-dark);
    }

    .fr-mob-stat-sub {
        font-size: 10px;
        color: var(--text-muted);
        font-weight: 500;
    }

    /* .fr-bottom-bar {
        flex-wrap: wrap;
        gap: 16px;
        padding: 24px 24px;
        margin-right: 0;
    } */

    .fr-bottom-bar-right {
        flex-wrap: wrap;
        gap: 10px;
    }

    /* .fr-bb-intro {
        width: 100%;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .fr-bb-vline {
        display: none;
    }

    .fr-bb-item {
        flex: 0 0 calc(50% - 8px);
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
    }

    .fr-bb-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    } */


    .fr-bottom-bar {
        position: relative;
        background: #ffffff;
        border: 1px solid #ececf2;
        border-radius: 34px;
        padding: 16px 12px;
        margin-right: 0;
        justify-content: space-around;
        gap: 0;
        flex-wrap: nowrap;
        margin-top: -28px;
        z-index: 5 !important;
    }

    .fr-bb-intro {
        display: none;
    }

    .fr-bb-vline {
        display: none;
    }

    .fr-bb-item {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .fr-bb-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
        background: var(--bg-light-orange);
        border: none;
        color: var(--btn-orange);
        margin-bottom: 2px;
    }

    .fr-bb-item:nth-child(4) .fr-bb-icon {
        background: var(--bg-light-orange);
        color: var(--btn-orange);
    }

    .fr-bb-item:nth-child(6) .fr-bb-icon {
        background: var(--bg-violet);
        color: var(--color-violet);
    }

    .fr-bb-item:nth-child(8) .fr-bb-icon {
        background: var(--bg-light-orange);
        color: var(--btn-orange);
    }

    .fr-bb-item:nth-child(10) .fr-bb-icon {
        background: var(--bg-light-orange);
        color: var(--btn-orange);
    }

    .fr-bb-item strong {
        font-size: 11px;
        color: var(--text-dark);
        line-height: 1.3;
    }

    .fr-bb-item span {
        display: none;
    }

    .fr-mob-cta-banner {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        background: #0f1117;
        border-radius: 18px 18px 0 0;
        padding: 20px 20px;
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
    }

    .fr-mob-cta-banner::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background-image: radial-gradient(circle, rgba(253, 92, 11, 0.12) 1px, transparent 1px);
        background-size: 16px 16px;
        pointer-events: none;
    }

    .fr-mob-cta-left {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        flex: 1;
        min-width: 0;
        position: relative;
        z-index: 1;
    }

    .fr-mob-cta-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: var(--btn-orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #fff;
        flex-shrink: 0;
    }

    .fr-mob-cta-left div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .fr-mob-cta-left strong {
        font-size: 14px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.3;
    }

    .fr-mob-cta-left span {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.50);
        line-height: 1.5;
    }

    .fr-mob-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        background: transparent;
        border: 1.5px solid var(--btn-orange);
        border-radius: 10px;
        color: var(--btn-orange);
        font-size: 13px;
        font-weight: 700;
        font-family: 'Manrope', sans-serif;
        text-decoration: none;
        white-space: nowrap;
        position: relative;
        z-index: 1;
        transition: background .2s;
        flex-shrink: 0;
    }

    .fr-mob-cta-btn:hover {
        background: rgba(253, 92, 11, 0.08);
    }

    /* Growth Section */
    .growth-stats {
        flex-wrap: wrap;
    }

    .growth-stat {
        flex: 0 0 calc(50% - 1px);
        padding: 20px 16px;
    }

    .gs-vline:nth-child(4) {
        display: none;
    }

    .gs-vline {
        height: 60px;
    }

    .growth-map-card {
        grid-template-columns: 38% 62%;
        min-height: 300px;
    }

    .growth-map-left {
        padding: 28px 20px 28px 28px;
        gap: 14px;
    }

    .growth-map-heading {
        font-size: 24px;
    }

    .growth-map-desc {
        font-size: 13px;
    }

    .growth-bottom-banner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .gbb-cta {
        width: 100%;
        justify-content: center;
    }

    /* Growing Section */
    .growing-desc br {
        display: none;
    }

    .growing-stats {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .growing-stat {
        flex: 0 0 calc(50% - 1px);
        padding: 18px 20px;
    }

    .grs-vline:nth-child(4) {
        display: none;
    }

    /* .growing-map-card {
        min-height: 340px;
    } */

    /* .growing-map-img {
        width: 65%;
    } */

    .grm-feature--tl {
        top: 24px;
        left: 20px;
    }

    .grm-feature--tr {
        top: 24px;
        right: 20px;
    }

    .grm-feature--bl {
        bottom: 24px;
        left: 20px;
    }

    .grm-feature--br {
        bottom: 24px;
        right: 20px;
    }

    .grm-feat-text strong {
        font-size: 12px;
    }

    .grm-feat-text span {
        font-size: 11px;
    }

    /* Footer CTA */
    .footer-cta-text h2 {
        font-size: 20px;
    }

    .footer-cta-buttons {
        gap: 8px;
    }

    .fcta-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Footer */
    footer {
        padding: 36px 5% 0;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .about-cards {
        grid-template-columns: 1fr;
    }

    .growing-label,
    .growing-heading,
    .growing-desc,
    .wid-label,
    .wid-heading,
    .wid-desc {
        text-align: left;
    }

    .wid-label,
    .growing-label {
        display: flex;
        justify-content: flex-start;
    }

}

/* ══════════════════════════════════════════
   Media Maxwidth 710px
══════════════════════════════════════════ */

@media (max-width: 710px) {

    /* About */
    .about-stat {
        flex-direction: column;
        text-align: center;
    }

    /* Growth Section */
    .growth-map-img {
        object-fit: fill;
    }

    /* Growing Section */
    .growing-map-img.mob {
        display: block;
    }

    .growing-map-img.web {
        display: none;
    }
}

@media (max-width: 604px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* ══════════════════════════════════════════
   Media Maxwidth 600px
══════════════════════════════════════════ */
@media (max-width: 599px) {

    .hero,
    .what-is-dottimo,
    .about-dottimo,
    .app-section,
    .solutions-section,
    .categories-section,
    .network-section,
    .growth-section,
    .growing-section {
        padding: var(--section-padding-mobile);
    }

    .hero-heading,
    .wid-heading,
    .about-heading,
    .app-heading,
    .cat-heading,
    .network-heading,
    .fr-heading,
    .growth-heading,
    .growing-heading {
        font-size: var(--font-section-heading-mobile);
        letter-spacing: -0.5px;
    }

    .hero-desc,
    .wid-desc,
    .about-desc,
    .app-desc,
    .cat-desc,
    .growth-desc,
    .growing-desc,
    .fr-desc {
        font-size: var(--font-section-desc-mobile);
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
    }

    .hero-mob-bottom {
        order: 3;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-dark,
    .cta-outline,
    .cta-franchise {
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
    }

    /* What is Dottimo */
    .wid-cards {
        /* grid-template-columns: 1fr; */
        gap: 5px;
    }

    .wid-card {
        align-items: center;
        text-align: center;
    }

    .wid-desc br {
        display: none;
    }

    /* About */
    .about-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-top-left {
        order: 1;
    }

    .about-top-right {
        order: 2;
    }

    .about-hero-img {
        max-width: 70%;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-card-heading {
        font-size: 20px;
    }

    .about-pillars {
        gap: 16px;
    }

    .about-stats {
        /* flex-direction: column;
        align-items: flex-start; */
        gap: 20px;
        padding: 24px;
    }

    .about-stat-divider {
        display: none;
    }

    .about-stat-text strong {
        font-size: 22px;
    }

    /* App Section */
    .app-section {
        overflow: hidden;
        /* contain on mobile */
    }

    .app-section::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }

    /* Stack: image top, text bottom */
    .app-grid {
        grid-template-columns: 1fr;
        /* gap: 2rem; */
        gap: 1.5rem;
    }

    .app-right {
        margin-top: 30px;
        order: 2;
    }

    .app-left {
        order: 1;
        gap: 16px;
    }

    .app-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .app-feat-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
        border-radius: 12px;
    }

    .app-feature span {
        font-size: 11px;
    }

    .app-download-label {
        font-size: 15px;
    }

    .app-badges {
        gap: 10px;
    }

    .badge-svg {
        width: 145px;
        height: 48px;
    }

    .app-phone-wrap {
        margin-top: -20px;
        margin-bottom: 0;
    }

    .app-phone-img {
        /* max-width: 220px; */
        max-width: 280px;
    }

    /* Categories */
    .cat-grid {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .cat-left {
        order: 1;
        padding: 3rem 5%;
        gap: 16px;
    }

    .cat-right {
        order: 2;
    }

    .cat-desc {
        max-width: 100%;
    }

    .cat-img {
        width: 100%;
        min-height: 260px;
        object-position: center center;
    }

    /* Solutions */
    .sol-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sol-card {
        flex-direction: column-reverse;
        min-height: unset;
    }

    .sol-card-body {
        width: 100%;
        padding: 20px 20px 24px;
    }

    .sol-card-img {
        width: 100%;
        height: 200px;
        align-self: auto;
    }

    .sol-heading {
        font-size: 20px;
    }

    .sol-cta {
        width: 100%;
        justify-content: center;
    }

    /* Network */
    .network-card {
        grid-template-columns: 1fr;
        background-position: center right;
    }

    .network-card::before {
        background: linear-gradient(to bottom,
                rgba(10, 10, 18, 0.93) 0%,
                rgba(10, 10, 18, 0.85) 100%);
    }

    .network-left {
        padding: 32px 24px;
        gap: 18px;
    }

    .network-features {
        gap: 16px;
    }

    .network-feature-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    /* .network-cta {
        width: 100%;
        justify-content: center;
    } */

    .network-stats {
        padding: 20px;
        /* flex-direction: column; */
        align-items: flex-start;
        /* gap: 16px; */
        border-radius: 0 0 16px 16px;
    }

    .network-stat {
        flex: 0 0 calc(50% - 10px);
    }

    .network-stat-divider {
        display: none;
    }

    .network-stat-text strong {
        font-size: 20px;
    }

    /* Franchise */
    .franchise-section {
        padding: var(--section-padding-mobile) 5%;
        overflow: hidden;
    }

    .fr-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 16px;
    }

    .fr-left {
        padding-right: 0;
        gap: 16px;
    }

    .fr-cta--desktop {
        display: none;
    }

    .fr-image-panel {
        border-radius: 18px 18px 0 0;
        min-height: 210px;
        overflow: hidden;
    }

    .fr-map-img {
        min-height: 210px;
        border-radius: 0;
        object-position: center center;
        border-radius: 18px 18px 0 0;
    }

    .fr-stats-card {
        display: none;
    }

    .fr-mob-stats-bar {
        display: flex;
        background: #ffffff;
        border: 1px solid #ececf2;
        border-top: none;
        border-radius: 18px 18px 18px 18px;
        padding: 18px 16px;
        justify-content: space-around;
        margin-bottom: 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        margin: -60px 16px 20px 16px;
        position: relative;
        z-index: 10;
    }

    .fr-mob-stat-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
        flex: 1;
        padding: 0 4px;
    }

    .fr-mob-stat-sep {
        width: 1px;
        background: #ececf2;
        align-self: stretch;
        flex-shrink: 0;
    }

    .fr-mob-stat-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        flex-shrink: 0;
    }

    .fr-mob-stat-lbl {
        font-size: 10px;
        font-weight: 500;
        color: var(--text-muted);
        line-height: 1.3;
    }

    .fr-mob-stat-val {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .fr-mob-stat-val strong {
        font-size: 20px;
        font-weight: 800;
        color: var(--text-dark);
        line-height: 1;
    }

    .fr-mob-stat-sub {
        font-size: 10px;
        color: var(--text-muted);
        font-weight: 500;
    }

    .fr-mob-cta-banner {
        flex-direction: column;
    }



    /* Growth Section */
    .growth-stats {
        /* flex-direction: column; */
        border-radius: 14px;
        align-items: flex-start;
        align-content: center;
    }

    .growth-stat {
        /* flex-direction: row; */
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        padding: 16px 20px;
        border-bottom: 1px solid #ececf2;
        text-align: left;
    }

    .growth-stat:last-child {
        border-bottom: none;
    }

    .gs-icon {
        margin-bottom: 0;
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .gs-vline {
        display: none;
    }

    .growth-stat strong {
        font-size: 22px;
    }

    .gs-underline {
        margin-top: 2px;
    }

    .growth-map-card {
        grid-template-columns: 1fr;
        min-height: unset;
        height: unset;
    }

    .growth-map-left {
        padding: 28px 24px;
        gap: 14px;
    }

    .growth-map-right {
        min-height: 220px;
    }

    .growth-map-img {
        min-height: 220px;
        object-position: center top;
    }

    .growth-map-heading {
        font-size: 24px;
    }

    .growth-expanding-badge {
        padding: 14px 16px;
    }

    .growth-bottom-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 20px;
    }

    .gbb-cta {
        width: 100%;
        justify-content: center;
    }

    /* Growing Section */
    .growing-desc br {
        display: none;
    }

    .growing-stats {
        /* flex-direction: column; */
        border-radius: 14px;
        align-items: flex-start;
        align-content: center;
    }

    .growing-stat {
        padding: 16px 20px;
        border-bottom: 1px solid #ececf2;
        justify-content: flex-start;
    }

    .growing-stat:last-child {
        border-bottom: none;
    }

    .grs-vline {
        display: none;
    }

    .grs-icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .grs-info strong {
        font-size: 22px;
    }

    /* .growing-map-card {
        min-height: 260px;
    } */

    /* .growing-map-img {
        width: 85%;
    } */

    .grm-feature {
        display: none;
    }

    .growing-mobile-features {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        margin-top: -8px;
        margin-bottom: 20px;
    }

    .growing-bottom {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
        padding: 14px 20px;
    }

    .growing-bottom p {
        font-size: 13px;
        text-align: center;
    }

    /* Footer CTA */
    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .footer-cta-text h2 {
        font-size: 20px;
    }

    .footer-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .fcta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    footer {
        padding: 32px 5% 0;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-brand-desc {
        font-size: 12.5px;
    }

    .footer-col-title {
        font-size: 11px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px 0;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }
}


@media (max-width: 540px) {
    .hero-stats {
        justify-content: space-evenly;
    }

    .stat {
        flex-direction: column;
    }

    .stat-text {
        text-align: center;
    }
}

/* ══════════════════════════════════════════
   Media Maxwidth 490px
══════════════════════════════════════════ */

@media (max-width: 490px) {

    /* Network */
    .network-feature {
        flex: 0 0 calc(50% - 8px);
    }

    .cat-img {
        min-height: 170px;
    }
}


@media (max-width: 464px) {
    .fr-mob-stat-val {
        flex-direction: column;
    }

    .fr-mob-stats-bar {
        padding: 18px 6px;
    }
}

/* ══════════════════════════════════════════
   Media Maxwidth 450px
══════════════════════════════════════════ */
@media (max-width: 450px) {

    /* Franchise */
    .fr-mob-stat-col {
        margin-bottom: 20px;
    }

    /* Growing Section */
    .growing-stat {
        flex-direction: column;
        text-align: center !important;
    }

    .grs-info {
        align-items: center;
    }
}

/* ══════════════════════════════════════════
   Media Maxwidth 420px
══════════════════════════════════════════ */
@media (max-width: 420px) {

    /* About */
    .about-stat {
        flex: 0 0 calc(50% - 10px);
    }

    .cat-img {
        min-height: 130px;
    }

}


@media (max-width: 392px) {
    .fr-mob-stat-lbl-br {
        display: block;
    }
}


@media (max-width: 380px) {
    .hero-stats {
        flex-direction: column;
        align-content: center;
    }

    .stat {
        flex-direction: row;
    }

    .stat-text {
        text-align: left;
    }
}

@media (max-width: 370px) {
    .about-pillars {
        flex-direction: column;
    }
}


.mission-color {
    color: var(--color-violet) !important;
}

.mission-divider {
    background: var(--color-violet) !important;
}









/* ══════════════════════════════════════════
   DOTTIMO CONTACT MODAL
══════════════════════════════════════════ */

.dot-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.dot-overlay.open {
    opacity: 1;
    visibility: visible;
}

.dot-canvas {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 520px;
    max-width: 100vw;
    background: #ffffff;
    border-left: 1px solid #ececf2;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.dot-canvas.open {
    transform: translateX(0);
}

/* Header */
.dot-canvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    border-bottom: 1px solid #ececf2;
    flex-shrink: 0;
    background: #fff1e5;
}

.dot-canvas-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dot-canvas-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(253, 92, 11, 0.15);
    border: 1px solid rgba(253, 92, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dot-canvas-icon i {
    font-size: 18px;
    color: var(--btn-orange);
}

.dot-canvas-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 3px;
    line-height: 1.2;
}

.dot-canvas-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

.dot-canvas-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(253, 92, 11, 0.08);
    border: 1px solid rgba(253, 92, 11, 0.2);
    color: var(--text-muted);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
    font-family: inherit;
}

.dot-canvas-close:hover {
    background: rgba(253, 92, 11, 0.18);
    color: var(--btn-orange);
}

/* Body */
.dot-canvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--btn-orange) #fff1e5;
}

.dot-canvas-body::-webkit-scrollbar {
    width: 4px;
}

.dot-canvas-body::-webkit-scrollbar-track {
    background: #fff1e5;
}

.dot-canvas-body::-webkit-scrollbar-thumb {
    background: var(--btn-orange);
    border-radius: 2px;
}

/* Form rows */
.dot-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.dot-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.dot-form-row .dot-form-group {
    margin-bottom: 0;
}

.dot-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dot-label span {
    color: var(--btn-orange);
}

.dot-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.dot-input-wrap>i {
    position: absolute;
    left: 12px;
    font-size: 13px;
    color: rgba(253, 92, 11, 0.6);
    pointer-events: none;
    z-index: 1;
}

.dot-input-wrap input,
.dot-input-wrap select,
.dot-input-wrap textarea {
    width: 100%;
    border-radius: 8px;
    background: #fafafc;
    border: 1.5px solid #e8e8ef;
    color: var(--text-dark);
    padding: 10px 12px 10px 36px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.dot-input-wrap select {
    cursor: pointer;
}

.dot-input-wrap textarea {
    resize: none;
    line-height: 1.6;
    padding-top: 11px;
}

.dot-input-wrap--textarea {
    align-items: flex-start;
}

.dot-input-wrap--textarea>i {
    top: 12px;
}

.dot-input-wrap input::placeholder,
.dot-input-wrap textarea::placeholder {
    color: #b0b3bb;
    font-weight: 400;
}

.dot-input-wrap input:focus,
.dot-input-wrap select:focus,
.dot-input-wrap textarea:focus {
    border-color: var(--btn-orange);
    background: #fff1e5;
}

.dot-input-wrap select option {
    background: #fff;
    color: var(--text-dark);
}

/* Submit button */
.dot-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--btn-orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 6px 24px rgba(253, 92, 11, 0.28);
    margin-top: 4px;
}

.dot-submit-btn:hover {
    background: #e54a00;
    transform: translateY(-1px);
}

.dot-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.dot-submit-btn i {
    font-size: 14px;
}

/* Footer strip */
.dot-canvas-footer {
    padding: 14px 28px 18px;
    background: #fff1e5;
    border-top: 1px solid #ffe0cc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.dot-canvas-footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.dot-canvas-footer-item i {
    font-size: 12px;
    color: var(--btn-orange);
}

/* Toast */
.dot-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text-dark);
    border: 1px solid rgba(253, 92, 11, 0.35);
    color: #fff;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dot-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dot-toast.success {
    border-color: rgba(16, 185, 129, 0.5);
    background: #0f1117;
}

.dot-toast.error {
    border-color: rgba(239, 68, 68, 0.5);
    background: #0f1117;
}

/* Mobile: full width canvas */
@media (max-width: 540px) {
    .dot-canvas {
        width: 100vw;
    }

    .dot-form-row {
        grid-template-columns: 1fr;
    }

    .dot-canvas-header,
    .dot-canvas-body,
    .dot-canvas-footer {
        padding-left: 18px;
        padding-right: 18px;
    }
}




/* ══════════════════════════════════════════
   MOBILE CTA TOGGLE
══════════════════════════════════════════ */

/* Hero mob bottom — < 650px */
@media (max-width: 650px) {
    .hero-mob-bottom .hero-cta {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-mob-bottom .hero-cta.cta-open {
        display: flex;
    }
}

/* Footer cta buttons — < 600px */
@media (max-width: 600px) {
    .footer-cta-buttons {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .footer-cta-buttons.cta-open {
        display: flex;
    }
}

/* Toggle arrow button — shown in both ranges */
@media (max-width: 650px) {
    .cta-toggle-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--btn-orange);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 6px 20px rgba(253, 92, 11, 0.35);
        transition: transform 0.3s ease, background 0.2s;
        flex-shrink: 0;
    }

    .cta-toggle-btn i {
        font-size: 18px;
        color: #fff;
        transition: transform 0.3s ease;
    }

    .cta-toggle-btn.open i {
        transform: rotate(180deg);
    }

    .cta-toggle-btn:hover {
        background: #e54a00;
        transform: translateY(-2px);
    }
}

/* Hide toggle btn above 650px */
@media (min-width: 651px) {
    .cta-toggle-btn {
        display: none;
    }
}




@media (max-width: 650px) {
    .web-nav,
    .web-main {
        display: none !important;
    }
}