/* ============================================================================
   Shop Rightepay Corporation Limited — style.css
   ----------------------------------------------------------------------------
   Editorial theme inspired by the franchise proposal presentation design.
   Palette: Orange #fa8803 · Dark Green #1a3818 · Brand Green #379436 · White
   Display font: Bebas Neue (giant headings) + Montserrat (body headings)
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
    --orange: #fa8803;
    --orange-lt: #ffaa35;
    --orange-dk: #d97002;
    --orange-glow: rgba(250, 136, 3, .22);

    --g-dark: #1a3818;
    /* primary dark green — viewport border, text, frames */
    --g-mid: #379436;
    /* brand green — accents */
    --g-light: #72b724;
    /* lighter green */
    --g-pale: #f0f9ee;
    /* section tint */

    --white: #ffffff;
    --off-wh: #f7f7f4;
    --border: #e4e4e0;
    --border-md: #d0cfc8;

    --ink: #1a3818;
    --ink-s: #11150f;
    --ink-m: #6e8060;

    /* Legacy compatibility — keeps existing template references working */
    --navy-900: var(--g-dark);
    --navy-800: #243d22;
    --navy-700: #2d4a2b;
    --gold-500: var(--orange);
    --gold-400: var(--orange-lt);
    --gold-glow: var(--orange-glow);
    --green-500: var(--g-mid);
    --green-400: var(--g-light);
    --slate-200: var(--border);
    --slate-100: var(--g-pale);
    --paper: var(--white);
    --ink-soft: var(--ink-s);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .06);
    --shadow: 0 12px 40px rgba(0, 0, 0, .12);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, .20);

    --font-bebas: 'Bebas Neue', 'Montserrat', system-ui, sans-serif;
    --font-display: 'Montserrat', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 24px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --nav-h: 72px;
}

/* ----------------------------------------------------------------------------
   2. BASE
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: .75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: color .25s var(--ease);
}

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

::selection {
    background: var(--orange);
    color: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--g-mid);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ----------------------------------------------------------------------------
   3. VIEWPORT FRAME — the slide-border aesthetic (desktop only)
   ------------------------------------------------------------------------- */
@media (min-width: 992px) {
    body::before {
        content: "";
        position: fixed;
        inset: 8px;
        border: none;
        border-radius: 20px;
        pointer-events: none;
        z-index: 1020;
    }
}

/* ----------------------------------------------------------------------------
   4. LAYOUT UTILITIES
   ------------------------------------------------------------------------- */
.section {
    padding: clamp(4rem, 2.5rem + 6vw, 7.5rem) 0;
}

.section-tight {
    padding: clamp(3rem, 2rem + 4vw, 5.5rem) 0;
}

.bg-light {
    background: var(--g-pale);
}

.bg-orange {
    background: var(--orange);
}

/* bg-navy kept for legacy — renders as dark green */
.bg-navy {
    background: var(--g-dark);
    color: #fff;
}

.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4,
.bg-navy h5 {
    color: #fff;
}

.bg-slate {
    background: var(--off-wh);
}

/* Framed container (matches the bordered-slide look) */
.frame-box {
    border: 5px solid var(--g-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.frame-box-orange {
    border-color: var(--orange);
}

/* ---- DISPLAY TYPOGRAPHY ------------------------------------------- */
.d-mega {
    font-family: var(--font-bebas);
    font-size: clamp(4.5rem, 11vw, 11.5rem);
    line-height: .88;
    letter-spacing: .01em;
    text-transform: uppercase;
    margin: 0;
}

.d-xl {
    font-family: var(--font-bebas);
    font-size: clamp(3.5rem, 8vw, 8.5rem);
    line-height: .88;
    letter-spacing: .01em;
    text-transform: uppercase;
    margin: 0;
}

.d-lg {
    font-family: var(--font-bebas);
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    line-height: .9;
    letter-spacing: .01em;
    text-transform: uppercase;
    margin: 0;
}

.d-md {
    font-family: var(--font-bebas);
    font-size: clamp(2rem, 4vw, 4.5rem);
    line-height: .92;
    letter-spacing: .01em;
    text-transform: uppercase;
    margin: 0;
}

.d-sm {
    font-family: var(--font-bebas);
    font-size: clamp(1.5rem, 3vw, 3rem);
    line-height: .94;
    letter-spacing: .01em;
    text-transform: uppercase;
    margin: 0;
}

.text-orange {
    color: var(--orange) !important;
}

.text-g-dark {
    color: var(--g-dark) !important;
}

.text-g-mid {
    color: var(--g-mid) !important;
}

.text-gold {
    color: var(--orange) !important;
}

/* legacy */

/* Concept label with dot prefix */
.concept-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--g-mid);
    margin-bottom: .6rem;
}

.concept-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--g-mid);
    flex-shrink: 0;
}

/* Eyebrow (legacy) */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--g-mid);
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--g-mid);
    display: inline-block;
}

.bg-navy .eyebrow {
    color: var(--orange-lt);
}

.bg-navy .eyebrow::before {
    background: var(--orange-lt);
}

.section-title {
    font-size: clamp(1.7rem, 1.3rem + 1.7vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-lead {
    font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem);
    color: var(--ink-m);
    max-width: 60ch;
}

.bg-navy .section-lead {
    color: rgba(255, 255, 255, .72);
}

.bg-navy .section-title {
    color: #fff;
}

/* ----------------------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .04em;
    padding: .85rem 2rem;
    border-radius: 100px;
    border: 2px solid transparent;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease),
        background .3s var(--ease), color .3s var(--ease);
    display: inline-flex;
    align-items: center;
}

.btn:active {
    transform: translateY(1px);
}

/* Green dark CTA (matches slide "START PRESENTATION" button) */
.btn-cta {
    background: var(--g-dark);
    color: #fff;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    font-size: .88rem;
}

.btn-cta:hover {
    background: var(--g-mid);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26, 56, 24, .3);
}

/* Orange primary */
.btn-gold {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 8px 24px -6px var(--orange-glow);
}

.btn-gold:hover {
    background: var(--orange-lt);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px -8px var(--orange-glow);
}

/* Green */
.btn-navy {
    background: var(--g-mid);
    color: #fff;
}

.btn-navy:hover {
    background: var(--g-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline-light-thin {
    background: transparent;
    color: var(--g-dark);
    border-color: var(--g-dark);
}

.btn-outline-light-thin:hover {
    background: var(--g-dark);
    color: #fff;
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--border-md);
}

.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
}

/* ---- CTA decorative row (slide 1 dot-line) */
.cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-deco {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--orange);
}

.cta-deco-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

.cta-deco-line {
    width: 70px;
    height: 2px;
    background: var(--orange);
}

/* ----------------------------------------------------------------------------
   6. NAVIGATION — always white, clean
   ------------------------------------------------------------------------- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: var(--nav-h);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s var(--ease);
}

.site-nav.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .1);
}

/* Keep legacy modifiers from conflicting */
.site-nav.nav-light:not(.scrolled) {
    background: var(--white);
    backdrop-filter: none;
}

.site-nav .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: .05em;
    color: var(--orange);
    transition: color .3s;
}

.brand-name-side {
    color: var(--g-dark);

}

.brand-sub {
    font-size: .6rem;
    letter-spacing: .28em;
    color: var(--g-mid);
    margin-top: 3px;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink-s);
    padding: .5rem 1rem;
    position: relative;
    transition: color .25s var(--ease);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: .2rem;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.navbar-nav .nav-link:hover {
    color: var(--ink);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link.active {
    color: var(--ink);
}

/* Nav social */
.nav-social-link {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--g-pale);
    color: var(--g-mid);
    font-size: .9rem;
    transition: background .25s, color .25s, transform .25s;
}

.nav-social-link:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: .4rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bar {
    width: 26px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        margin: .75rem -12px 0;
        padding: 1rem 1.5rem 1.5rem;
        border-radius: var(--radius);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .navbar-nav .nav-link {
        color: var(--ink-s);
        padding: .7rem 0;
    }

    .navbar-nav .nav-link::after {
        left: 0;
        right: 0;
    }

    .navbar-nav .btn-gold {
        margin-top: .75rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ----------------------------------------------------------------------------
   7. HERO — Slide 1 style: white left + orange diagonal right panel
   ------------------------------------------------------------------------- */
.hero {
    background: var(--white);
    height: 780px;
    min-height: 780px;
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ----------------------------------------------------------------------------
   HERO BLUR BACKGROUND TEXT WRAPPER
   ------------------------------------------------------------------------- */
.hero-blur-wrapper {
    position: relative;
    /* Optional: Add padding if you want a distinct card look, otherwise set to 0 */
    padding: 2rem 2.5rem 2.5rem 0;
    border-radius: var(--radius-lg);
    z-index: 1;
}

/* The Blurred Background Image */
.hero-blur-wrapper::before {
    content: "";
    position: absolute;
    inset: -40px;
    /* Expands the image slightly so blurred edges don't show white borders */
    background-image: url('../../images/backgraound.webp');
    /* REPLACE with your actual image path */
    background-size: cover;
    background-position: center;
    filter: blur(50px);
    /* Controls the intensity of the blur */
    border-radius: calc(var(--radius-lg) + 20px);
    z-index: -2;
}


/* Ensure text sits on top of the overlay and blur */
.hero-blur-content {
    position: relative;
    z-index: 2;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 991.98px) {
    .hero-blur-wrapper {
        padding: 2rem;
    }

    .hero-blur-wrapper::after {
        inset: 0;
    }
}

/* Diagonal orange panel */
.hero-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    background: var(--orange);
    clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

/* Small accent circle at bottom */
.hero-panel-dot {
    position: absolute;
    bottom: -6%;
    right: 38%;
    width: 160px;
    height: 160px;
    background: var(--orange);
    border-radius: 50%;
    opacity: .6;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Hero title lines */
.hero-title-line {
    display: flex;
    align-items: baseline;
    gap: .22em;
    flex-wrap: nowrap;
    margin-bottom: .5rem;
}

.hero-line1 {
    font-family: var(--font-bebas);
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    color: var(--orange);
    line-height: .90;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.hero-line2 {
    font-family: var(--font-bebas);
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    color: var(--g-dark);
    line-height: .90;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.hero-line3 {
    font-family: var(--font-display);
    font-size: clamp(.82rem, 1.1vw, 1rem);
    color: var(--g-dark);
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-top: .8rem;
    margin-bottom: 1.8rem;
}

.hero-desc {
    font-style: italic;
    color: var(--ink-s);
    font-size: clamp(.95rem, 1.2vw, 1.1rem);
    max-width: 42ch;
    line-height: 1.65;
    margin-bottom: 2.2rem;
}

/* Hero right image composition */
.hero-right {
    position: relative;
    padding: 0 1rem 2rem 2rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-frame-wrap {
    position: relative;
    flex-shrink: 0;
    margin-top: -50px;
}

.hero-side-image {
    position: absolute;
    left: -170px;
    top: 55px;
    width: 300px;
    height: 310px;
    border-radius: 18px;
    overflow: hidden;

    z-index: 1;
}

.hero-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-main-frame {
    position: relative;
    left: 170px;
    border-radius: 28px;
    overflow: hidden;
    border-color: #B02A37;
    z-index: 2;
}

.hero-main-frame img {
    width: 220px;
    height: 480px;
    object-fit: cover;
    display: block;
}

.hero-float-circle {
    position: absolute;
    bottom: -36px;
    left: 120px;
    right: auto;
    top: auto;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    border: 4px solid var(--white);
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
    z-index: 10;
    background-color: #f0f9ee;
}

.hero-float-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stat strip on hero */
.hero-stats-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(.8rem, 2vw, 1.8rem);
    margin-top: 2.5rem;
    padding-top: 1.8rem;
    border-top: 2px solid var(--border);
}

.hero-stat-item .num {
    font-family: var(--font-bebas);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--orange);
    line-height: 1;
    letter-spacing: .02em;
}

.hero-stat-item .lbl {
    font-size: .8rem;
    color: var(--ink-s);
    margin-top: .25rem;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: .04em;
}

/* Page head for interior pages */
.page-head {
    padding: calc(var(--nav-h) + 3.5rem) 0 3rem;
    background: var(--white);
    border-bottom: 3px solid var(--orange);
    position: relative;
}

.page-head h1 {
    font-family: var(--font-bebas);
    font-size: var(--fs, clamp(3rem, 7vw, 7.5rem));
    line-height: .9;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: var(--g-dark);
    margin-bottom: .6rem;
}

.page-head .ph-title-orange {
    color: var(--orange);
}

.page-head .ph-subtitle {
    color: var(--ink-s);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    max-width: 60ch;
}

.breadcrumb-nav {
    font-size: .85rem;
    color: var(--ink-m);
    margin-bottom: 1rem;
}

.breadcrumb-nav a {
    color: var(--g-mid);
}

.breadcrumb-nav a:hover {
    color: var(--orange);
}

/* ----------------------------------------------------------------------------
   8. IMAGE FRAMES — thick colored borders (slides 2, 4, 5, 6 style)
   ------------------------------------------------------------------------- */
.img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: block;
    line-height: 0;
    height: 350px;
    width: 450px;
}

.img-frame img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .65s var(--ease);
}

.img-frame:hover img {
    transform: scale(1.04);
}

.if-orange {
    border: 5px solid var(--orange);
}

.if-green {
    border: 5px solid var(--g-dark);
}

.if-tall img {
    aspect-ratio: 3/4;
}

.if-wide img {
    aspect-ratio: 4/3;
}

.if-sq img {
    aspect-ratio: 1/1;
}

/* Phone-frame images (slide 4 style) */
.img-phone-frame {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.img-phone-frame.if-orange {
    border: 5px solid var(--orange);
}

.img-phone-frame.if-green {
    border: 5px solid var(--g-dark);
}

.img-phone-frame img {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
    transition: transform .65s var(--ease);
}

.img-phone-frame:hover img {
    transform: scale(1.04);
}

/* ----------------------------------------------------------------------------
   9. STAT BADGES — floating overlays on images
   ------------------------------------------------------------------------- */
.stat-badge {
    border-radius: 16px;
    padding: .9rem 1.4rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: absolute;
    min-width: 140px;
    z-index: 10;
}

.sb-orange {
    background: var(--orange);
    color: #fff;
}

.sb-green {
    background: var(--g-dark);
    color: #fff;
}

.stat-badge .sbn {
    font-family: var(--font-bebas);
    font-size: 2.6rem;
    line-height: 1;
    display: block;
    letter-spacing: .02em;
}

.stat-badge .sbl {
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .9;
    margin-top: .15rem;
}

/* Image + badge wrapper */
.img-stat-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Slide 5 — fluid image frames inside the 2×2 reasons grid */
.reasons-img-grid .img-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

/* Horizontal stat badge (slide 5 "10+ YEARS" style) */
.stat-band {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border-radius: 100px;
    padding: .7rem 1.6rem;
    font-family: var(--font-bebas);
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: .02em;
    box-shadow: var(--shadow);
    position: absolute;
    z-index: 10;
    white-space: nowrap;
}

.stat-band .sb-value {
    font-size: 1.8rem;
}

.stat-band .sb-desc {
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .9;
}

.stat-band.sb-orange {
    background: var(--orange);
    color: #fff;
}

.stat-band.sb-green {
    background: var(--g-dark);
    color: #fff;
}

/* ----------------------------------------------------------------------------
   10. REVIEW CARDS — testimonial style (Slide 2)
   ------------------------------------------------------------------------- */
.review-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: .9rem 1.1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: box-shadow .3s var(--ease);
}

.review-card:hover {
    box-shadow: var(--shadow);
}

.review-photo-wrap {
    position: relative;
    flex-shrink: 0;
    border-radius: 50%;
}

.review-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.review-photo.rp-orange {
    border: 3px solid var(--orange);
}

.review-photo.rp-green {
    border: 3px solid var(--g-dark);
}

.review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-name-badge {
    display: block;
    margin-top: .3rem;
    padding: .18rem .5rem;
    border-radius: 20px;
    font-family: var(--font-bebas);
    font-size: .8rem;
    letter-spacing: .04em;
    color: #fff;
    white-space: nowrap;
    text-align: center;
}

.rnb-orange {
    background: var(--orange);
}

.rnb-green {
    background: var(--g-dark);
}

.review-body {
    padding-top: 0;
}

.star-rating {
    color: var(--orange);
    font-size: .88rem;
    letter-spacing: .06em;
    margin-bottom: .3rem;
}

.review-text {
    font-style: italic;
    color: var(--ink-m);
    font-size: .82rem;
    line-height: 1.5;
    margin: 0;
}

/* ----------------------------------------------------------------------------
   11. NUMBERED ITEMS — Slide 5 style
   ------------------------------------------------------------------------- */
.numbered-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 1.8rem;
}

.num-box {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-family: var(--font-bebas);
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: .02em;
}

.nb-orange {
    background: var(--orange);
}

.nb-green {
    background: var(--g-dark);
}

.nb-gmid {
    background: var(--g-mid);
}

.ni-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .3rem;
}

.ni-title.nt-orange {
    color: var(--orange);
}

.ni-title.nt-green {
    color: var(--g-mid);
}

.ni-body {
    color: var(--ink-s);
    font-size: .92rem;
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------------------------------------------------
   12. FRANCHISE OPTION CARDS — Slide 4 style
   ------------------------------------------------------------------------- */
.foc {
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    height: 100%;
}

.foc:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.foc-orange {
    background: var(--orange);
}

.foc-green {
    background: var(--g-dark);
}

.foc-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
    transition: transform .35s var(--ease), background .35s;
}

.foc:hover .foc-icon {
    background: rgba(255, 255, 255, .3);
    transform: scale(1.1);
}

.foc-label {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .04em;
    line-height: 1.35;
    text-transform: uppercase;
}

/* ----------------------------------------------------------------------------
   13. MINI CHART CARD — Slide 3 style
   ------------------------------------------------------------------------- */
.mini-chart-card {
    background: var(--orange);
    border-radius: 20px;
    padding: 1.4rem 1.4rem 1rem;
    position: relative;
}

.mini-chart-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--orange);
    font-size: .95rem;
    font-weight: 900;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
    margin-bottom: 1rem;
}

.mc-bar {
    flex: 1;
    background: rgba(255, 255, 255, .35);
    border-radius: 4px 4px 0 0;
}

.mc-bar:last-child {
    background: #fff;
}

.mc-bar:nth-child(1) {
    height: 44%;
}

.mc-bar:nth-child(2) {
    height: 62%;
}

.mc-bar:nth-child(3) {
    height: 79%;
}

.mc-bar:nth-child(4) {
    height: 100%;
}

.mc-stat {
    font-family: var(--font-bebas);
    font-size: 3rem;
    color: #fff;
    line-height: 1;
    letter-spacing: .02em;
}

.mc-desc {
    color: rgba(255, 255, 255, .85);
    font-size: .85rem;
    line-height: 1.5;
    margin: .3rem 0 0;
}

/* Large stat display (right side of Slide 3) */
.big-stat {
    margin-bottom: 1.8rem;
}

.big-stat .bs-num {
    font-family: var(--font-bebas);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: .9;
    letter-spacing: .01em;
}

.big-stat .bs-text {
    color: var(--ink-s);
    font-size: .92rem;
    line-height: 1.6;
    margin-top: .5rem;
}

.big-stat-divider {
    height: 3px;
    background: var(--g-mid);
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 3px;
}

/* ----------------------------------------------------------------------------
   14. VISION / MISSION BLOCK — Slide 6 style
   ------------------------------------------------------------------------- */
.vm-row {
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-top: 2rem;
}

.vm-div {
    background: var(--orange);
    height: 100%;
    min-height: 60px;
    border-radius: 2px;
}

.vm-head {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: .4rem;
}

.vm-head.vmh-orange {
    color: var(--orange);
}

.vm-head.vmh-green {
    color: var(--g-dark);
}

.vm-text {
    color: var(--ink-s);
    font-size: .9rem;
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------------------------------------------------
   15. FEATURE CARDS — colorful icon cycling
   ------------------------------------------------------------------------- */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem;
    height: 100%;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
    color: var(--ink);
}

.feature-card p {
    color: var(--ink-s);
    font-size: .95rem;
    margin-bottom: 0;
}

/* Feature icon — colorful cycling */
.feature-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
    flex-shrink: 0;
    color: #fff;
    transition: transform .4s var(--ease);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-4deg);
}

/* Auto color cycling */
.feature-card:nth-child(3n+1) .feature-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
}

.feature-card:nth-child(3n+2) .feature-icon {
    background: linear-gradient(135deg, var(--g-dark), #2d5530);
}

.feature-card:nth-child(3n) .feature-icon {
    background: linear-gradient(135deg, var(--g-mid), var(--g-light));
}

/* Dark variant for bg-navy sections */
.feature-card.is-dark {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .1);
}

.feature-card.is-dark h3 {
    color: #fff;
}

.feature-card.is-dark p {
    color: rgba(255, 255, 255, .7);
}

.feature-card.is-dark:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-6px);
}

.feature-card.is-dark .feature-icon {
    background: rgba(250, 136, 3, .18);
    color: var(--orange-lt);
}

/* ----------------------------------------------------------------------------
   16. STEP CARDS
   ------------------------------------------------------------------------- */
.step-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.4rem 1.8rem 1.8rem;
    height: 100%;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.step-num {
    position: absolute;
    top: -22px;
    left: 1.8rem;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-bebas);
    font-size: 1.3rem;
    letter-spacing: .02em;
    border-radius: 12px;
    box-shadow: 0 6px 18px -4px var(--orange-glow);
}

.step-week {
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--g-mid);
}

.step-card h4 {
    font-size: 1.1rem;
    margin: .4rem 0 .5rem;
    color: var(--ink);
}

.step-card p {
    color: var(--ink-s);
    font-size: .9rem;
    margin: 0;
}

/* Stat block (legacy) */
.stat-block {
    text-align: center;
    padding: 1rem;
}

.stat-block .stat-num {
    font-family: var(--font-bebas);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    color: var(--ink);
    line-height: 1;
    letter-spacing: .02em;
}

.bg-navy .stat-block .stat-num {
    color: var(--orange-lt);
}

.stat-block .stat-label {
    margin-top: .6rem;
    color: var(--ink-s);
    font-size: .88rem;
}

.bg-navy .stat-block .stat-label {
    color: rgba(255, 255, 255, .68);
}

/* ----------------------------------------------------------------------------
   17. TIMELINE
   ------------------------------------------------------------------------- */
.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(var(--orange), var(--border));
}

.tl-item {
    position: relative;
    padding-left: 66px;
    padding-bottom: 2.2rem;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-dot {
    position: absolute;
    left: 12px;
    top: 2px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border: 3px solid var(--orange);
    border-radius: 50%;
}

.tl-year {
    font-family: var(--font-bebas);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--orange);
    letter-spacing: .02em;
}

.tl-item h4 {
    font-size: 1.05rem;
    margin: .1rem 0 .3rem;
    color: var(--ink);
}

.tl-item p {
    color: var(--ink-s);
    font-size: .92rem;
    margin: 0;
}

.bg-navy .tl-dot {
    background: var(--g-dark);
}

.bg-navy .tl-item h4 {
    color: #fff;
}

.bg-navy .tl-item p {
    color: rgba(255, 255, 255, .65);
}

/* ----------------------------------------------------------------------------
   18. BRAND CHIPS — partners
   ------------------------------------------------------------------------- */
.brand-chip {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.1rem;
    text-align: center;
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.brand-chip:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: var(--shadow-sm);
}

.brand-chip .bc-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink);
}

.brand-chip .bc-cat {
    font-size: .72rem;
    color: var(--ink-m);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-top: .2rem;
}

/* Check list with colored tick */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: .9rem;
    color: var(--ink-m);
}

.check-list li::before {
    content: "\F26E";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: -1px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    background: rgba(55, 148, 54, .14);
    color: var(--g-mid);
    border-radius: 6px;
    font-size: .78rem;
}

.bg-navy .check-list li {
    color: rgba(255, 255, 255, .78);
}

/* ----------------------------------------------------------------------------
   19. CTA BANNER
   ------------------------------------------------------------------------- */
.cta-banner {
    position: relative;
    background: var(--g-dark);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
    overflow: hidden;
    border: 4px solid var(--g-dark);
}

.cta-banner::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -130px;
    right: -60px;
    background: radial-gradient(circle, rgba(250, 136, 3, .25), transparent 70%);
    border-radius: 50%;
}

.cta-banner>* {
    position: relative;
    z-index: 1;
}

/* Media frame (legacy) */
.media-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.media-frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.media-frame:hover img {
    transform: scale(1.05);
}

.media-badge {
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    right: 1.4rem;
    background: rgba(26, 56, 24, .88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 1.1rem 1.3rem;
    color: #fff;
}

.media-badge .mb-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}

.media-badge .mb-text {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

/* ----------------------------------------------------------------------------
   20. APP SECTION
   ------------------------------------------------------------------------- */
.app-section {
    background: var(--g-dark);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 1.5rem + 3vw, 3.5rem);
}

.app-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(250, 136, 3, .2), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.phone-mockup {
    position: relative;
    border-radius: 40px;
    padding: 20px;
    flex-shrink: 0;
    transition: transform .5s var(--ease);
}

.phone-mockup:hover {
    transform: translateY(-8px);
}

.phone-mockup-1 {
    width: 260px;
    height: 480px;
    z-index: 2;
    transform: rotate(-4deg);
}

.phone-mockup-2 {
    width: 260px;
    height: 480px;
    z-index: 1;
    transform: rotate(4deg) translateX(-30px) translateY(20px);
    margin-left: -2rem;
}

.phone-mockup-1:hover {
    transform: rotate(-2deg) translateY(-10px);
}

.phone-mockup-2:hover {
    transform: rotate(2deg) translateX(-30px) translateY(10px);
}


.phone-screen {
    border-radius: 28px;
    overflow: hidden;
    line-height: 0;
}

.phone-screen img {
    width: 100%;
    display: block;
    border-radius: 28px;
}

.app-phones {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    padding: 1rem 0 0;
    overflow: hidden;
}

.app-content .app-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .9rem;
    background: rgba(114, 183, 36, .18);
    border: 1px solid rgba(114, 183, 36, .35);
    border-radius: 100px;
    color: var(--g-light);
    font-family: var(--font-display);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.app-features li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .75rem;
    color: rgba(255, 255, 255, .78);
    font-size: .95rem;
}

.app-features li i {
    color: var(--g-light);
    flex-shrink: 0;
    font-size: 1.1rem;
    margin-top: .2rem;
}

.app-download-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.qr-block {
    text-align: center;
}

.bi-facebook {
    color: #1877F2;
}

.bi-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bi-google-play {
    background: linear-gradient(135deg, #2299FF 0%, #41F0A0 35%, #FFD13B 65%, #FF334B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.bi-google {
    background: linear-gradient(45deg, #4285F4 25%, #EA4335 50%, #FBBC05 75%, #34A853 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.qr-block img {
    width: 100px;
    height: 100px;
    padding: 6px;
    object-fit: contain;
    border-radius: 12px;
}

.qr-block span {
    display: block;
    margin-top: .5rem;
    font-size: .7rem;
    color: rgba(255, 255, 255, .55);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    padding: .45rem .85rem;
    background: #01875f;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-display);
    font-size: .88rem;
    font-weight: 600;
    transition: background .3s, transform .3s, box-shadow .3s;
    min-width: 175px;
    box-shadow: 0 8px 24px rgba(1, 135, 95, .35);
}

.store-badge:hover {
    background: #016f4e;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(1, 135, 95, .45);
}

.store-badge i {
    font-size: 1.8rem;
    color: #fff;
    flex-shrink: 0;
}

.store-badge span {
    display: flex;
    flex-direction: column;
}

.store-badge span small {
    font-size: .6rem;
    opacity: .8;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: block;
}

.store-badge span>strong {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .01em;
}

/* ----------------------------------------------------------------------------
   21. BRAND SHOWCASE
   ------------------------------------------------------------------------- */
.brand-hero-wrap {
    background: linear-gradient(135deg, var(--g-pale), #e4f4de);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    overflow: hidden;
    border: 3px solid var(--border);
    position: relative;
}

.brand-hero-wrap::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    bottom: -90px;
    right: -70px;
    background: radial-gradient(circle, rgba(55, 148, 54, .18), transparent 70%);
    border-radius: 50%;
}

.brand-logo-img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 24px rgba(55, 148, 54, .2));
}

.brand-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .28rem .75rem;
    background: rgba(55, 148, 54, .12);
    border: 1px solid rgba(55, 148, 54, .28);
    border-radius: 100px;
    color: var(--g-mid);
    font-family: var(--font-display);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.brand-launch-flag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .28rem .75rem;
    background: rgba(250, 136, 3, .1);
    border: 1px solid rgba(250, 136, 3, .28);
    border-radius: 100px;
    color: var(--orange);
    font-family: var(--font-display);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Store gallery */
.store-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: .75rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.sg-item {
    overflow: hidden;
    position: relative;
}

.sg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.sg-item:hover img {
    transform: scale(1.07);
}

.sg-item:first-child {
    grid-row: 1/3;
}

.sg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 56, 24, .6), transparent 50%);
    opacity: 0;
    transition: opacity .4s;
}

.sg-item:hover .sg-overlay {
    opacity: 1;
}

/* ----------------------------------------------------------------------------
   22. FRANCHISE FORM
   ------------------------------------------------------------------------- */
.form-wrap {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.form-progress {
    display: flex;
    background: var(--g-dark);
    padding: 1.6rem clamp(1.2rem, 4vw, 2.6rem);
    gap: .6rem;
}

.fp-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.fp-dot {
    width: 36px;
    height: 36px;
    margin: 0 auto .5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .6);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .9rem;
    transition: all .35s var(--ease);
}

.fp-label {
    font-size: .73rem;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .04em;
    font-family: var(--font-display);
    font-weight: 600;
    transition: color .35s;
}

.fp-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    left: calc(50% + 22px);
    right: calc(-50% + 22px);
    height: 2px;
    background: rgba(255, 255, 255, .15);
    transition: background .35s;
}

.fp-step.is-active .fp-dot {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 0 0 5px var(--orange-glow);
}

.fp-step.is-active .fp-label {
    color: #fff;
}

.fp-step.is-done .fp-dot {
    background: rgba(55, 148, 54, .25);
    border-color: var(--g-mid);
    color: var(--g-light);
}

.fp-step.is-done::after {
    background: var(--g-mid);
}

.form-body {
    padding: clamp(1.6rem, 4vw, 3rem);
}

.form-step {
    display: none;
    animation: fadeStep .45s var(--ease);
}

.form-step.is-active {
    display: block;
}

@keyframes fadeStep {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.form-step-title {
    font-size: 1.35rem;
    margin-bottom: .25rem;
}

.form-step-sub {
    color: var(--ink-s);
    font-size: .9rem;
    margin-bottom: 1.8rem;
}

.form-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .84rem;
    color: var(--ink);
    margin-bottom: .45rem;
    letter-spacing: .02em;
}

.form-control,
.form-select {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .8rem 1rem;
    font-size: .95rem;
    color: var(--ink);
    transition: border-color .25s, box-shadow .25s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--g-mid);
    box-shadow: 0 0 0 4px rgba(55, 148, 54, .15);
    outline: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #DC3545;
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: var(--g-mid);
}

.field-error {
    display: none;
    color: #DC3545;
    font-size: .8rem;
    margin-top: .3rem;
}

.field-error.show {
    display: block;
}

.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--border);
}

.form-alert {
    border-radius: var(--radius);
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.8rem;
    font-size: .95rem;
    display: flex;
    gap: .8rem;
    align-items: flex-start;
}

.form-alert i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.form-alert-success {
    background: rgba(55, 148, 54, .1);
    border: 1px solid rgba(55, 148, 54, .3);
    color: #1a5e1a;
}

.form-alert-error {
    background: rgba(220, 53, 69, .08);
    border: 1px solid rgba(220, 53, 69, .3);
    color: #B02A37;
}

.review-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem;
}

.review-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .6rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: .92rem;
}

.review-list li:last-child {
    border-bottom: none;
}

.review-list .rl-key {
    color: var(--ink-s);
}

.review-list .rl-val {
    font-weight: 600;
    color: var(--ink);
    text-align: right;
}

/* ----------------------------------------------------------------------------
   23. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
    background: var(--g-dark);
    color: rgba(255, 255, 255, .7);
    padding: clamp(3.5rem, 2.5rem + 4vw, 5.5rem) 0 2rem;
}

.footer-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    margin-bottom: .5rem;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: .1em;
    color: #fff;
    text-transform: uppercase;
}

.footer-desc {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 1rem;
}

.footer-promise {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--orange-lt);
    font-size: .92rem;
}

.footer-head {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    /* Ensure the container doesn't blow out on mobile */
    max-width: 100%;
}

.footer-links li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;

    /* Forces single line and truncates long text with an ellipsis */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.footer-links a {
    color: rgba(255, 255, 255, .6);
}

.footer-links a:hover {
    color: var(--orange-lt);
}

.footer-links span {
    display: inline-block;
    width: 64px;
    color: rgba(255, 255, 255, .4);
    font-size: .76rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: .7rem;
    margin-bottom: .85rem;
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
}

.footer-contact i {
    color: var(--orange-lt);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, .65);
}

.footer-contact a:hover {
    color: var(--orange-lt);
}

.footer-socials {
    display: flex;
    gap: .6rem;
    margin-top: 1.2rem;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .65);
    font-size: 1rem;
    transition: background .25s, color .25s, transform .25s;
    border: 1px solid rgba(255, 255, 255, .08);
}

.footer-social-btn:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-2px);
}

.footer-social-head {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.social-qr-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    transition: transform .3s;
}

.social-qr-item:hover {
    transform: translateY(-3px);
}

.social-qr-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #fff;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, .1);
    object-fit: contain;
}

.social-qr-label {
    font-family: var(--font-display);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    display: flex;
    align-items: center;
    gap: .3rem;
}

.social-qr-label i {
    color: var(--orange-lt);
}

.social-qr-item:hover .social-qr-label {
    color: var(--orange-lt);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
}

.footer-bottom p {
    margin: 0;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

/* ----------------------------------------------------------------------------
   24. PRELOADER
   ------------------------------------------------------------------------- */
.page-loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: linear-gradient(135deg, var(--orange-lt), var(--orange-dk));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity .65s var(--ease), visibility .65s var(--ease);
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 300px;
    padding: 0 1.75rem;
    box-sizing: border-box;
}

.loader-logo {
    width: clamp(52px, 16vw, 80px);
    height: auto;
    flex-shrink: 0;
    margin-bottom: 1.2rem;
    animation: loaderPulse 1.4s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 18px rgba(55, 148, 54, .4));
}

@keyframes loaderPulse {
    from { transform: scale(.94); opacity: .8; }
    to   { transform: scale(1.06); opacity: 1; }
}

.loader-wordmark {
    font-family: var(--font-bebas);
    font-size: clamp(1.45rem, 5.5vw, 2rem);
    color: #0b8f2a;
    letter-spacing: .18em;
    /* Shift text right to compensate for trailing letter-spacing so glyphs are visually centred */
    padding-left: .18em;
    line-height: 1.1;
    width: 100%;
}

.loader-sub {
    font-family: var(--font-display);
    font-size: clamp(.58rem, 2.2vw, .7rem);
    font-weight: 700;
    letter-spacing: .18em;
    padding-left: .18em;
    text-transform: uppercase;
    color: var(--white);
    margin-top: .25rem;
    width: 100%;
}

.loader-bar {
    width: 100%;
    max-width: 160px;
    height: 5px;
    background: rgba(255, 255, 255, .15);
    border-radius: 3px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, #0b8f2a, var(--orange));
    border-radius: 5px;
    animation: loaderFill 1.4s var(--ease) forwards;
}

@keyframes loaderFill {
    from { width: 0; }
    to   { width: 100%; }
}

/* ----------------------------------------------------------------------------
   25. BACK TO TOP
   ------------------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 1.05rem;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px) scale(.8);
    pointer-events: none;
    transition: opacity .35s, transform .35s, background .25s;
    z-index: 1025;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--orange-dk);
    transform: translateY(-3px);
}

/* ----------------------------------------------------------------------------
   26. RESPONSIVE — comprehensive breakpoints
   ------------------------------------------------------------------------- */

/* ---- Tablets & below (≤ 991px) ------------------------------------------- */
@media (max-width: 991.98px) {

    /* Hero — orange panel becomes a horizontal bottom strip */
    .hero {
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-panel {
        width: 100%;
        top: auto;
        bottom: 0;
        height: 220px;
        clip-path: polygon(0 42%, 100% 0%, 100% 100%, 0 100%);
    }

    .hero-panel-dot {
        display: none;
    }

    /* Hero image — show centered below text on tablet */
    .hero-right {
        display: flex !important;
        justify-content: center;
        padding: 0 1rem 1.5rem;
    }

    .hero-main-frame {
        left: 0;
        top: 0;
    }

    .hero-main-frame img {
        width: 180px;
        height: 290px;
    }

    .hero-float-circle {
        display: none;
    }

    .hero-blur-wrapper {
        padding: 2rem 1.5rem 1.5rem;
    }

    /* Stat badge bottom clearance */
    .img-stat-wrap {
        padding-bottom: 2.5rem;
    }
}

/* ---- Mobile (≤ 767px) ----------------------------------------------------- */
@media (max-width: 767.98px) {

    /* Hero */
    .hero {
        padding-top: calc(var(--nav-h) + 1rem);
        padding-bottom: 2.5rem;
    }

    .hero-panel {
        height: 190px;
        clip-path: polygon(0 45%, 100% 5%, 100% 100%, 0 100%);
    }

    .hero-main-frame img {
        width: 150px;
        height: 245px;
    }

    .hero-right {
        padding: 0 0 .5rem;
    }

    .hero-stats-bar {
        gap: clamp(.75rem, 3vw, 1.5rem);
        margin-top: 1.5rem;
        padding-top: 1.2rem;
        flex-wrap: wrap;
    }

    .hero-blur-wrapper {
        padding: 1.5rem 1rem 1rem;
    }

    /* CTA row */
    .cta-row {
        gap: 1rem;
    }

    .cta-row .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .cta-deco {
        display: none;
    }

    /* Stat badges */
    .img-stat-wrap {
        padding-bottom: 2.5rem;
    }

    .stat-badge {
        min-width: 105px;
        padding: .6rem .85rem;
    }

    .stat-badge .sbn {
        font-size: 1.9rem;
    }

    .stat-badge .sbl {
        font-size: .6rem;
    }

    /* Vision / Mission */
    .vm-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vm-div {
        display: none;
    }

    /* Store gallery */
    .store-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 150px 150px 150px;
    }

    .sg-item:first-child {
        grid-row: auto;
    }

    /* Phone mockups */
    .phone-mockup-1 {
        width: 130px;
    }

    .phone-mockup-2 {
        width: 130px;
        transform: rotate(4deg) translateX(-18px) translateY(12px);
    }

    .app-phones {
        padding: 0.5rem 0 0;
    }

    /* App download row */
    .app-download-row {
        flex-wrap: wrap;
        gap: 1rem;
    }

    /* Franchise form */
    .form-progress {
        padding: 1.2rem .8rem;
    }

    .fp-label {
        display: none;
    }

    .review-list li {
        flex-direction: column;
        gap: .15rem;
    }

    .review-list .rl-val {
        text-align: left;
    }

    /* Back to top */
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: .95rem;
    }

    /* Display text — prevent overflow on narrow screens */
    .d-mega {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }

    .d-xl {
        font-size: clamp(2.2rem, 9vw, 3.8rem);
    }

    .d-lg {
        font-size: clamp(1.5rem, 5vw, 2.25rem);
    }

    .d-md {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .d-sm {
        font-size: clamp(1.2rem, 4.5vw, 2rem);
    }

    /* Stat band */
    .stat-band {
        font-size: 1.3rem;
        padding: .5rem 1rem;
        white-space: normal;
    }

    .stat-band .sb-value {
        font-size: 1.3rem;
    }

    /* Sections */
    .section {
        padding: clamp(2.5rem, 2rem + 5vw, 5rem) 0;

    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: .4rem;
    }
}

.brand-chip {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.brand-chip:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: #d1d1d1;
}

.bc-logo-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    /* Creates a clean backdrop for transparent PNGs */
    border-radius: 50%;
    padding: 10px;
}

.bc-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Ensures logos aren't stretched */
}

.bc-name {
    font-weight: 700;
    font-size: 1rem;
    color: #2b2b2b;
    margin-bottom: 4px;
}

.bc-cat {
    font-size: 0.75rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ---- Small phones (≤ 479px) ----------------------------------------------- */
@media (max-width: 479.98px) {

    /* Hero */
    .hero {
        padding-top: calc(var(--nav-h) + .75rem);
    }

    .hero-panel {
        height: 165px;
        clip-path: polygon(0 42%, 100% 0%, 100% 100%, 0 100%);
    }

    .hero-main-frame img {
        width: 130px;
        height: 215px;
    }

    .hero-stats-bar {
        gap: .6rem;
    }

    .hero-stat-item .num {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }

    .hero-stat-item .lbl {
        font-size: .68rem;
    }

    /* Stat badges — scale down on tiny screens */
    .stat-badge {
        min-width: 88px;
        padding: .5rem .7rem;
    }

    .stat-badge .sbn {
        font-size: 1.6rem;
    }

    /* Store gallery — single column */
    .store-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .store-gallery .sg-item {
        height: 200px;
    }

    .sg-item:first-child {
        grid-row: auto;
    }

    /* Phone mockups */
    .phone-mockup-1 {
        width: 115px;
    }

    .phone-mockup-2 {
        width: 115px;
        transform: rotate(4deg) translateX(-14px) translateY(10px);
    }

    /* QR code */
    .qr-block img {
        width: 100px;
        height: 100px;
    }

    /* Section & page-head */
    .section {
        padding: 2.5rem 0;
    }

    .section-tight {
        padding: 2rem 0;
    }

    .page-head {
        padding: calc(var(--nav-h) + 2rem) 0 2rem;
    }

    .page-head h1 {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1320px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================================
   33. ENTERPRISE MOBILE RESPONSIVE
       All rules target ≤ 991px — desktop (≥ 992px) is completely unchanged.
   ============================================================================ */

/* ============================================================================
   34. ADDITIONAL MOBILE / TABLET LAYOUT FIXES  (≤ 991.98px)
       - Footer brand column: center on mobile/tablet
       - Phone mockup screenshots: larger on mobile
       - App section: reduce vertical gap above "Now on Google Play"
       - Franchise hero heading lines: center on mobile
   ============================================================================ */

/* ── Tablet + Mobile (≤ 991.98px) ──────────────────────────────────────────── */
@media (max-width: 991.98px) {

    /* Footer brand column — center the logo + name + socials */
    .site-footer .col-lg-4:first-child {
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
        width: 100%;
        display: flex !important;
    }

    .footer-socials {
        justify-content: center;
    }

    /* Franchise-page hero: center the heading lines (spans are direct children) */
    .hero .col-lg-6>.hero-line1,
    .hero .col-lg-6>.hero-line2 {
        text-align: center;
        display: block;
    }

    /* App section screenshots: increase phone mockup size */
    .phone-mockup-1,
    .phone-mockup-2 {
        width: clamp(150px, 44vw, 220px);
    }

    /* App section: reduce excessive gap above "Now on Google Play" badge */
    .app-section .row.g-5 {
        --bs-gutter-y: 1.25rem;
    }

    .app-phones-wrap {
        margin-bottom: 0 !important;
        padding-top: 0;
    }

    /* Services.php app section (no app-phones-wrap wrapper) */
    .app-section .app-phones {
        padding-top: 0.75rem;
    }
}

/* ── Mobile (≤ 767.98px) ───────────────────────────────────────────────────── */
@media (max-width: 767.98px) {

    /* Further increase phone mockups */
    .phone-mockup-1,
    .phone-mockup-2 {
        width: clamp(145px, 42vw, 185px);
    }

    .phone-mockup-2 {
        transform: rotate(4deg) translateX(-24px) translateY(14px);
    }

    /* Tighten gap even more */
    .app-phones-wrap {
        margin-bottom: 0 !important;
    }

    .app-section .row.g-5 {
        --bs-gutter-y: 0.25rem;
    }
}

/* ── Small phones (≤ 479.98px) ─────────────────────────────────────────────── */
@media (max-width: 479.98px) {

    .phone-mockup-1,
    .phone-mockup-2 {
        width: clamp(130px, 40vw, 165px);
    }

    .phone-mockup-2 {
        transform: rotate(4deg) translateX(-20px) translateY(12px);
    }
}

/* ── Tablet + Mobile shared (≤ 991px) ──────────────────────────────────────── */
@media (max-width: 991.98px) {

    /* Image frames: fill column width, prevent the fixed 350 px from overflowing */
    .img-frame {
        width: 100%;
    }

    /* App section: remove the 780 px forced height */
    .app-section {
        min-height: auto !important;
        border-radius: 0;
        padding: 3rem 0;
    }

    /* CTA banner: slightly smaller radius fits narrower containers better */
    .cta-banner {
        border-radius: var(--radius);
    }

    /* Brand hero round: keep centred */
    .brand-hero-wrap-round {
        margin-left: auto;
        margin-right: auto;
    }

    /* Franchise hero: each word on its own line (spans are direct col children) */
    .hero .col-lg-6>.hero-line1,
    .hero .col-lg-6>.hero-line2 {
        display: block;
    }
}

/* ── Mobile (≤ 767px) ────────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {

    /* ---- Global ---- */
    .section {
        padding: 3rem 0;
    }

    .section-tight {
        padding: 2.2rem 0;
    }

    /* ---- Image frames: fluid, auto height ---- */
    .img-frame {
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    .img-frame img {
        width: 100%;
        height: auto;
        min-height: 200px;
        object-fit: cover;
    }

    /* Half-width column frames (col-6): stay square */
    .col-6>.img-stat-wrap>.img-frame,
    .col-6>.img-frame {
        aspect-ratio: 1 / 1;
        min-height: unset;
    }

    .col-6>.img-stat-wrap>.img-frame img,
    .col-6>.img-frame img {
        aspect-ratio: 1 / 1;
        min-height: unset;
        height: 100%;
    }

    /* ---- Stat badges: cap at column edges ---- */
    .img-stat-wrap .stat-badge {
        min-width: 110px;
    }

    /* ---- Stat band: cap width, allow wrapping ---- */
    .stat-band {
        max-width: 100%;
        text-align: center;
    }

    /* ---- Hero ---- */
    .hero {
        height: auto;
        min-height: auto;
    }

    .hero-blur-wrapper {
        padding: 1.5rem 1rem 1rem;
    }

    .hero-title-line {
        justify-content: center;
    }

    /* ---- Introduction section ---- */
    .intro-col-inner .d-md {
        text-align: center;
    }

    .hero-stats-bar {
        flex-wrap: wrap;
        gap: .75rem 1.5rem;
    }

    .hero-stat-item {
        flex: 0 0 auto;
    }

    /* ---- Achieve cards (Proven Growth section) ---- */
    .achieve-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: .6rem;
    }

    .achieve-card {
        flex: 1 1 calc(33.33% - .5rem);
        max-width: none;
        min-width: 90px;
    }

    /* ---- App section ---- */
    .app-phones-wrap {
        margin-bottom: 1.5rem;
        padding-top: 0;
    }

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

    .app-content .app-features li {
        text-align: left;
    }

    .app-content .app-badge {
        justify-content: center;
    }

    .app-download-row {
        justify-content: center;
    }

    /* ---- Store gallery ---- */
    .store-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px;
    }

    .sg-item:first-child {
        grid-row: auto;
        grid-column: 1 / -1;
        height: 200px;
    }

    /* ---- Social QR grid ---- */
    .social-qr-grid {
        flex-wrap: wrap;
    }

    /* ---- Footer links: allow wrapping on narrow screens ---- */
    .footer-links li {
        white-space: normal;
    }

    /* ---- Review name badge: allow wrapping on narrow screens ---- */
    .review-name-badge {
        white-space: normal;
    }

    /* ---- Footer bottom ---- */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: .4rem;
    }

    /* ---- CTA banner ---- */
    .cta-banner {
        padding: 2rem 1.5rem;
        border-radius: var(--radius);
    }

    /* ---- Form ---- */
    .form-wrap {
        border-radius: var(--radius);
    }

    .form-body {
        padding: 1.6rem 1.1rem;
    }

    .form-progress {
        padding: 1.2rem .85rem;
    }

    /* ---- Numbered items ---- */
    .numbered-item {
        gap: 1rem;
        margin-bottom: 1.4rem;
    }
}

/* ── Small phones (≤ 479px) ─────────────────────────────────────────────────── */
@media (max-width: 479.98px) {

    /* ---- Container: slightly tighter gutters ---- */
    .container {
        padding-left: .875rem;
        padding-right: .875rem;
    }

    /* ---- Image frames: thinner border on small screens ---- */
    .img-frame {
        border-width: 3px;
        min-height: 180px;
    }

    .img-frame img {
        min-height: 180px;
    }

    /* ---- Hero stats: 2 × 2 grid ---- */
    .hero-stats-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .75rem;
        border-top-width: 1.5px;
    }

    /* ---- Achieve cards: 2-per-row ---- */
    .achieve-card {
        flex: 1 1 calc(50% - .3rem);
        max-width: calc(50% - .3rem);
        min-width: unset;
    }

    .achieve-card .ac-num {
        font-size: 2rem;
    }

    .achieve-card .ac-lbl {
        font-size: .6rem;
    }

    /* ---- Store gallery: single column ---- */
    .store-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .store-gallery .sg-item {
        height: 190px;
    }

    .sg-item:first-child {
        grid-column: auto;
        grid-row: auto;
        height: 190px;
    }

    /* ---- App section ---- */
    .app-section {
        padding: 2.5rem 0;
    }

    .app-download-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .store-badge {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }

    .phone-mockup-2 {
        margin-left: -1.2rem;
    }

    /* ---- QR code ---- */
    .qr-block img {
        width: 90px;
        height: 90px;
    }

    /* ---- Feature cards ---- */
    .feature-card {
        padding: 1.5rem 1rem;
    }

    /* ---- Numbered items ---- */
    .num-box {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .numbered-item {
        gap: .85rem;
        margin-bottom: 1.3rem;
    }

    /* ---- Franchise tier cards ---- */
    .foc {
        padding: 1.2rem .85rem;
    }

    .foc-icon {
        width: 60px;
        height: 60px;
        font-size: 1.35rem;
        margin-bottom: .7rem;
    }

    /* ---- Step cards ---- */
    .step-card {
        padding-top: 2.2rem;
    }

    /* ---- Img phone frame ---- */
    .img-phone-frame {
        border-width: 3px !important;
    }

    /* ---- Stat band on very small screens ---- */
    .stat-band {
        padding: .45rem .85rem;
        gap: .35rem;
        font-size: 1.1rem;
    }

    .stat-band .sb-value {
        font-size: 1.1rem;
    }

    .stat-band .sb-desc {
        font-size: .65rem;
    }

    /* ---- VM row: tighter ---- */
    .vm-row {
        margin-top: 1.2rem;
    }

    /* ---- Page head ---- */
    .page-head {
        padding: calc(var(--nav-h) + 1.5rem) 0 1.5rem;
    }

    /* ---- Hero panel height ---- */
    .hero-panel {
        height: 140px;
    }

    /* ---- CTA banner ---- */
    .cta-banner {
        padding: 1.75rem 1rem;
        border-radius: var(--radius-sm);
    }

    /* ---- Franchise form progress dots ---- */
    .form-progress {
        padding: 1rem .6rem;
    }

    .fp-dot {
        width: 30px;
        height: 30px;
        font-size: .78rem;
    }

    .fp-step:not(:last-child)::after {
        top: 15px;
    }

    /* ---- Form body ---- */
    .form-body {
        padding: 1.2rem .85rem;
    }

    /* ---- Form nav: wrap so both buttons are reachable ---- */
    .form-nav {
        flex-wrap: wrap;
        gap: .6rem;
        align-items: center;
    }

    #btnNext,
    #btnSubmit {
        flex: 1 1 auto;
        justify-content: center;
    }

    /* ---- Table: tighter cells ---- */
    .table {
        font-size: .78rem;
    }

    .table th,
    .table td {
        padding: .4rem .3rem;
    }

    /* ---- Section padding ---- */
    .section {
        padding: 2.5rem 0;
    }

    .section-tight {
        padding: 2rem 0;
    }
}

/* ============================================================================
   27. SECTION SLIDE — fixed 780px height sections
   ============================================================================ */
.section-slide {
    min-height: 780px;
    padding: 2.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-slide>.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Equal-height columns for intro */
.intro-cols {
    align-items: stretch !important;
}

.intro-col-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.intro-col-inner>.img-stat-wrap {
    flex: 1;
}

/* ============================================================================
   28. STAT BADGE — polished
   ============================================================================ */
.stat-badge {
    border-radius: 18px;
    padding: .9rem 1.3rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
    text-align: center;
    position: absolute;
    min-width: 140px;
    z-index: 10;
    backdrop-filter: blur(6px);
}

.stat-badge .sb-icon {
    font-size: 1.3rem;
    margin-bottom: .25rem;
    display: block;
    opacity: .9;
}

/* ============================================================================
   29. PROVEN GROWTH — three achievement cards
   ============================================================================ */
.achieve-row {
    display: flex;
    flex-wrap: nowrap;
    gap: .6rem;
    justify-content: flex-end;
}

.achieve-card {
    border-radius: 16px;
    padding: .85rem 1.2rem;
    text-align: center;
    min-width: 110px;
    flex: 1;
    max-width: 140px;
}

.achieve-card .ac-num {
    font-family: var(--font-bebas);
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: .02em;
    color: #fff;
}

.achieve-card .ac-lbl {
    font-family: var(--font-display);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .9;
    margin-top: .15rem;
    color: #fff;
}

/* ============================================================================
   30. DHATRI — heading row, round logo, round icons
   ============================================================================ */
.dhatri-heading-row {
    display: flex;
    align-items: flex-end;
    gap: .5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.dhatri-sub-text {
    font-family: var(--font-bebas);
    font-size: .82rem;
    line-height: 1.2;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--orange);
    padding-bottom: .25rem;
    opacity: .9;
}

.brand-hero-wrap-round {
    background: linear-gradient(135deg, var(--g-pale), #e4f4de);
    border-radius: 50%;
    width: 270px;
    height: 270px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 2rem 1.5rem;
    border: 3px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(55, 148, 54, .12);
}

.brand-hero-wrap-round::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -60px;
    right: -50px;
    background: radial-gradient(circle, rgba(55, 148, 54, .18), transparent 70%);
    border-radius: 50%;
}

.brand-hero-wrap-round .brand-logo-img {
    max-width: 100%;
    max-height: 130px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 6px 18px rgba(55, 148, 54, .22));
}

.fi-round {
    border-radius: 50% !important;
}

/* Dhatri feature cards — compact */
.dhatri-cat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem;
    height: 100%;
    text-align: center;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.dhatri-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.dhatri-cat-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
    margin: 0 auto .7rem;
    color: #fff;
}

/* ============================================================================
   31. APP SECTION — height 780px, improved layout
   ============================================================================ */
.app-section {
    min-height: 780px;
    display: flex;
    align-items: center;
}

.app-section>.container {
    width: 100%;
}

.app-phones-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding-top: 1rem;
}

/* ============================================================================
   32. RESPONSIVE OVERRIDES for new classes
   ============================================================================ */
@media (max-width: 991.98px) {
    .hero {
        height: auto;
        min-height: auto;
    }

    .hero-frame-wrap {
        margin-top: 0;
    }

    .hero-side-image {
        display: none;
    }

    .hero-float-circle {
        bottom: -24px;
        left: -24px;
        width: 86px;
        height: 86px;
    }

    .section-slide {
        min-height: auto;
    }

    .achieve-row {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .brand-hero-wrap-round {
        width: 220px;
        height: 220px;
        padding: 1.5rem;
    }

    .brand-hero-wrap-round .brand-logo-img {
        max-height: 110px;
    }
}

@media (max-width: 767.98px) {
    .hero-stats-bar {
        flex-wrap: wrap;
        gap: .75rem;
    }

    .achieve-row {
        justify-content: flex-start;
    }

    .col-lg-5:has(.dhatri-heading-row) .eyebrow {
        display: flex;
        justify-content: center;
    }

    .dhatri-heading-row {
        flex-direction: column;
        align-items: center;
        gap: .2rem;
        text-align: center;
    }

    .brand-hero-wrap-round {
        width: 180px;
        height: 180px;
        padding: 1.2rem;
    }
}

/* ============================================================================
   33. COMPANY PROFILE VIEWER
   ============================================================================ */

/* Page wrapper — clears fixed navbar */
.cp-wrap {
    padding-top: var(--nav-h);
    display: flex;
    flex-direction: column;
}

/* ── Header band ───────────────────────────────────────────────────────── */
.cp-band {
    background: var(--white);
    border-bottom: 3px solid var(--orange);
    padding: 1.25rem 0 1.1rem;
    flex-shrink: 0;
}

.cp-heading {
    font-family: var(--font-bebas);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: var(--g-dark);
    margin: .3rem 0 .15rem;
}

.cp-heading-accent {
    color: var(--orange);
}

.cp-sub {
    font-size: .82rem;
    color: var(--ink-m);
    margin: 0;
}

/* ── Viewer outer — full-bleed background, flex-centers the card ───────── */
.cp-viewer-outer {
    flex: 1;
    background: var(--off-wh);
    padding: 2.5rem 1.5rem 3rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* ── Card — fixed 720px on desktop, collapses to 100% on mobile ─────────── */
.cp-viewer-card {
    width: 70%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* ── Iframe frame ──────────────────────────────────────────────────────── */
.cp-viewer-frame {
    width: 100%;          /* = 720px, set by parent card */
    height: 580px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #111;
    box-shadow:
        0 0 0 3px var(--orange),
        0 24px 64px rgba(0, 0, 0, .20);
}

.cp-viewer-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* ── Footer strip below iframe ─────────────────────────────────────────── */
.cp-viewer-footer {
    padding-top: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .9rem;
}

.cp-hint {
    font-size: .83rem;
    color: var(--ink-m);
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

/* ── Action buttons — split the full card width equally ─────────────────── */
.cp-actions {
    display: flex;
    gap: .85rem;
    width: 100%;
}

.cp-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .cp-viewer-outer {
        padding: 1.75rem 1rem 2.5rem;
    }

    .cp-viewer-frame {
        /* Maintain 16:9 aspect ratio on mobile */
        height: calc((100vw - 2rem) * 0.5625);
        min-height: 220px;
        border-radius: var(--radius);
    }
}

@media (max-width: 575.98px) {
    .cp-viewer-outer {
        padding: 1.25rem .75rem 2rem;
    }

    .cp-actions {
        flex-direction: column;
        gap: .65rem;
    }

    .cp-viewer-frame {
        border-radius: var(--radius-sm);
    }
}