/* =========================================================
   Raya Global Fintech - Site Styles (Bootstrap 5)
   ========================================================= */

:root {
    --brand: #039CB3;
    --brand-dark: #027386;
    --navy: #0B3A40;
    --navy-2: #0C6478;
    --navy-deep: #062024;
    --orange: #F6921E;
    --green: #189F44;
    --purple: #6A2FD9;
    --teal: #0B7F8F;
    --yellow: #f5b400;
    --blue: #1FB7D6;
    --text: #26282B;
    --muted: #6D6E70;
    --light-bg: #F2F9FA;
    --border: #DCEAEC;
    --radius: 14px;
    --shadow-sm: 0 4px 14px rgba(8, 37, 41, .06);
    --shadow: 0 10px 30px rgba(8, 37, 41, .10);
    --font: 'Poppins', 'Mukta', sans-serif;
    --font-hi: 'Mukta', 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
    font-size: 15px;
}

a { text-decoration: none; }

img { max-width: 100%; }

/* ---------- Utility colours ---------- */
.text-brand  { color: var(--brand) !important; }
.text-navy   { color: var(--navy-2) !important; }
.text-orange { color: var(--orange) !important; }
.text-green  { color: var(--green) !important; }
.text-purple { color: var(--purple) !important; }

.bg-blue   { background: #1F83C0; }
.bg-orange { background: #F6921E; }
.bg-purple { background: #7A3FDB; }
.bg-green  { background: #1CAE4C; }
.bg-teal   { background: #0F8F6F; }
.bg-yellow { background: #f7b500; }

/* ---------- Buttons ---------- */
.btn {
    font-weight: 600;
    border-radius: 8px;
    padding: .6rem 1.2rem;
    font-size: .92rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    transition: all .25s ease;
}
.btn-lg { padding: .8rem 1.5rem; font-size: 1rem; }

.btn-brand {
    background: var(--brand);
    color: #fff;
    border: 2px solid var(--brand);
    box-shadow: 0 6px 16px rgba(3, 156, 179, .25);
}
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; transform: translateY(-2px); }

.btn-navy {
    background: var(--navy-2);
    color: #fff;
    border: 2px solid var(--navy-2);
    box-shadow: 0 6px 16px rgba(12, 100, 120, .25);
}
.btn-navy:hover { background: var(--navy); border-color: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-outline-navy {
    background: #fff;
    color: var(--navy);
    border: 2px solid var(--navy-2);
}
.btn-outline-navy:hover { background: var(--navy-2); color: #fff; }
.nav-actions .btn-outline-navy { border: 1.5px solid #C9DADD; color: var(--navy); }
.nav-actions .btn-outline-navy:hover { border-color: var(--navy-2); color: #fff; }

.btn-white {
    background: #fff;
    color: var(--brand);
    border: 2px solid #fff;
    min-width: 200px;
}
.btn-white:hover { background: var(--light-bg); color: var(--brand-dark); transform: translateY(-2px); }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
    background: var(--navy-deep);
    color: #fff;
    font-size: .82rem;
    padding: .5rem 0;
}
.topbar-info { gap: .4rem 1.6rem; }
.topbar-info li { display: flex; align-items: center; gap: .4rem; }
.topbar-info a { color: #fff; }
.topbar-info a:hover { color: #FFD9A8; }

.topbar-social a,
.footer-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .8rem;
    margin-left: 6px;
    transition: transform .2s;
}
.topbar-social a:hover,
.footer-social a:hover { transform: translateY(-2px); color: #fff; }
.s-fb { background: #1877f2; }
.s-wa { background: #25d366; }
.s-tg { background: #229ed9; }
.s-yt { background: #ff0000; }

/* =========================================================
   NAVBAR
   ========================================================= */
.main-nav {
    background: #fff;
    padding: .7rem 0;
    box-shadow: 0 2px 12px rgba(8, 37, 41, .06);
}
.main-nav .logo { height: 62px; width: auto; }

.main-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: .92rem;
    padding: .5rem .9rem !important;
    position: relative;
}
.main-nav .nav-link:hover { color: var(--brand); }
.main-nav .nav-link.active { color: var(--brand); font-weight: 600; }

@media (min-width: 992px) {
    .main-nav .nav-link.active::after {
        content: "";
        position: absolute;
        left: .9rem;
        right: .9rem;
        bottom: -14px;
        height: 3px;
        border-radius: 3px;
        background: var(--brand);
    }
    .main-nav .dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
}

.main-nav .dropdown-menu {
    border: 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: .5rem;
}
.main-nav .dropdown-item { border-radius: 6px; font-size: .9rem; padding: .5rem .9rem; }
.main-nav .dropdown-item:hover { background: #E3F6F8; color: var(--brand); }

.navbar-toggler {
    border: 0;
    font-size: 1.9rem;
    color: var(--navy);
    padding: 0 .25rem;
}
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991.98px) {
    .main-nav .navbar-collapse {
        padding: 1rem 0 .5rem;
        border-top: 1px solid var(--border);
        margin-top: .7rem;
    }
    .main-nav .dropdown-menu { box-shadow: none; background: var(--light-bg); }
    .nav-actions { margin-top: .75rem; }
    .nav-actions .btn { flex: 1; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    padding: 3rem 0 2rem;
    background:
        radial-gradient(circle at 78% 40%, rgba(31, 131, 192, .07), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #F7FBFC 100%);
    overflow: hidden;
}

.hero-tag {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-hi);
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.3;
    padding: .15rem .8rem;
    border-radius: 6px 6px 6px 0;
    margin-bottom: .6rem;
}

.hero-title {
    font-family: var(--font-hi);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4.3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--brand);
}

.hero-sub {
    font-family: var(--font-hi);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 700;
    color: #26282B;
    line-height: 1.5;
    margin-bottom: 1.6rem;
}

.pill {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    padding: .55rem .9rem;
    font-size: .82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.hero-pills { margin-bottom: 2rem; }

/* Hero visual */
.hero-visual {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.orbit {
    position: absolute;
    inset: 6%;
    border-radius: 50%;
    border: 2px dashed #D5EBF0;
    background: radial-gradient(circle, rgba(31, 183, 214, .07) 0%, transparent 70%);
}
.orbit::after {
    content: "";
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    border: 1px solid #E3F2F5;
}
.hero-phone {
    position: relative;
    z-index: 2;
    height: 100%;
    width: auto;
    transform: rotate(8deg);
    filter: drop-shadow(0 25px 35px rgba(8, 37, 41, .28));
    animation: floatY 5s ease-in-out infinite;
}
.float-icon {
    position: absolute;
    z-index: 3;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.fi-1 { top: 4%;  left: 12%; }
.fi-2 { top: 44%; left: -2%; }
.fi-3 { top: 6%;  right: 2%; }
.fi-4 { top: 38%; right: -3%; }
.fi-5 { bottom: 16%; right: 2%; }

@keyframes floatY {
    0%, 100% { transform: rotate(8deg) translateY(0); }
    50%      { transform: rotate(8deg) translateY(-12px); }
}

/* Latest update bar */
.update-bar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: .6rem .8rem;
    margin-top: 2.5rem;
    gap: 1rem;
}
.update-badge {
    background: var(--brand);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: .35rem .8rem;
    border-radius: 6px;
    white-space: nowrap;
}
.update-text {
    flex: 1;
    overflow: hidden;
    font-family: var(--font-hi);
    font-weight: 600;
    font-size: .92rem;
    white-space: nowrap;
}
.update-text span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 18s linear infinite;
}
@media (min-width: 992px) {
    .update-text span { padding-left: 0; animation: none; }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}
.update-link {
    color: var(--navy-2);
    font-weight: 600;
    font-size: .85rem;
    white-space: nowrap;
}
.update-link:hover { color: var(--brand); }

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.section-pad { padding: 4rem 0; }

.section-head { margin-bottom: 2.5rem; }
.eyebrow {
    display: block;
    font-family: var(--font-hi);
    color: var(--brand);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: .25rem;
}
.section-title {
    font-family: var(--font-hi);
    font-weight: 800;
    color: var(--navy);
    font-size: clamp(1.7rem, 3.8vw, 2.4rem);
    margin-bottom: .6rem;
}
.title-dots { display: inline-flex; gap: 5px; }
.title-dots { gap: 4px; }
.title-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.title-dots i:nth-child(2) { background: #7A3FDB; }
.title-dots i:nth-child(3) { background: var(--navy-2); }

/* =========================================================
   SERVICES
   ========================================================= */
.service-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 1.6rem 1rem 1.4rem;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: #D6ECF1;
}
.svc-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 18px rgba(8, 37, 41, .15);
}
.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .45rem;
}
.service-card p {
    font-family: var(--font-hi);
    font-size: .85rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why {
    background: linear-gradient(180deg, #0B3A40 0%, #0A3E45 100%);
    color: #fff;
    padding: 3rem 0 6rem;
}
.why .eyebrow { font-size: .95rem; }
.why-item { text-align: center; }
.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    border: 2px solid rgba(255, 255, 255, .35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: .8rem;
    transition: background .25s;
}
.why-item:hover .why-icon { background: var(--brand); border-color: var(--brand); }
.why-item h4 { font-size: .95rem; font-weight: 600; margin-bottom: .3rem; }
.why-item p {
    font-family: var(--font-hi);
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
    margin: 0;
}

/* =========================================================
   STATS
   ========================================================= */
.stats-wrap { margin-top: -4rem; position: relative; z-index: 2; }
.stats-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.6rem 2rem;
}
.stat { display: flex; align-items: center; gap: .9rem; }
.stat-icon {
    flex: 0 0 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
}
.si-blue   { background: #E7F9FD; color: #1F83C0; }
.si-red    { background: #E3F6F8; color: var(--brand); }
.si-orange { background: #fff0dc; color: #F6921E; }
.si-navy   { background: #E7F9FD; color: var(--navy-2); }
.stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}
.stat small { font-size: .82rem; color: var(--muted); font-weight: 500; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-section { padding: 3rem 0 2rem; }
.cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(95deg, #039CB3 0%, #026A7C 22%, #E0791E 48%, #0C6373 72%, #0C6478 100%);
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0 55%, rgba(255, 255, 255, .06) 55% 70%, transparent 70%),
        radial-gradient(circle at 12% 120%, rgba(255, 255, 255, .14), transparent 40%);
}
.cta-content { position: relative; z-index: 2; color: #fff; max-width: 520px; }
.cta-content h2 {
    font-family: var(--font-hi);
    font-weight: 700;
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    margin-bottom: .5rem;
}
.cta-content h2 span { color: #ffcf1f; }
.cta-lead {
    font-family: var(--font-hi);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: .3rem;
}
.cta-small {
    font-family: var(--font-hi);
    font-size: .95rem;
    opacity: .9;
    margin-bottom: 1.3rem;
}
.cta-person {
    position: absolute;
    bottom: 0;
    height: 100%;
    max-height: 290px;
    z-index: 1;
}
.cta-man   { left: 2%; }
.cta-woman { right: 1%; }
.cta-phone {
    position: absolute;
    right: 17%;
    top: 50%;
    height: 170px;
    transform: translateY(-50%) rotate(-10deg);
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .3));
}
.cta-coin {
    position: absolute;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, .08);
}
.cta-coin.c1 { left: 5%;  top: 18%; }
.cta-coin.c2 { left: 22%; bottom: 14%; }
.cta-coin.c3 { right: 6%; top: 12%; }

@media (min-width: 768px) {
    .cta-coin.c1 { left: 20%; top: 18%; }
    .cta-coin.c2 { left: 21%; bottom: 20%; }
}
@media (max-width: 991.98px) {
    .cta-person { max-height: 220px; opacity: .95; }
    .cta-content { max-width: 380px; }
}
@media (max-width: 767.98px) {
    .cta-coin.c1 { left: 4%; top: auto; bottom: 10%; }
    .cta-coin.c2 { left: auto; right: 4%; bottom: 10%; }
    .cta-banner { padding-bottom: 4.5rem; }
}

/* =========================================================
   APP DOWNLOAD
   ========================================================= */
.app-section { padding: 1.5rem 0 4rem; }
.app-card {
    background: linear-gradient(100deg, #E4FAFF 0%, #EDFCFF 45%, #DDF9FF 100%);
    border-radius: 10px;
    padding: 2rem 2rem;
    border: 1px solid #DDF6FB;
}
.new-badge {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: .15rem .6rem;
    border-radius: 4px;
    margin-bottom: .5rem;
}
.app-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .4rem;
}
.app-sub {
    font-family: var(--font-hi);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.app-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: .6rem 2rem;
    margin-bottom: 1.5rem;
    font-size: .88rem;
    font-weight: 500;
}
@media (max-width: 991.98px) { .app-features { justify-content: center; } }
.app-features i { color: var(--green); margin-right: .35rem; }

.app-phone {
    height: 330px;
    width: auto;
    transform: rotate(8deg);
    filter: drop-shadow(0 20px 25px rgba(8, 37, 41, .25));
}

.dl-title { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.dl-sub { font-size: .85rem; color: var(--muted); margin-bottom: .8rem; }
.qr {
    width: 110px;
    height: 110px;
    background: #fff;
    padding: 6px;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #000;
    color: #fff;
    border-radius: 8px;
    padding: .45rem .9rem;
    min-width: 150px;
    transition: transform .2s;
}
.store-btn:hover { color: #fff; transform: translateY(-2px); }
.store-btn img { width: 24px; height: 24px; }
.store-btn span { font-size: 1.05rem; font-weight: 600; line-height: 1.1; text-align: left; }
.store-btn small { display: block; font-size: .6rem; font-weight: 400; letter-spacing: .3px; text-transform: uppercase; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, .8);
    padding: 3.5rem 0 0;
    font-size: .88rem;
}
.footer-logo {
    height: 56px;
    width: auto;
    display: block;
    background: #fff;
    border-radius: 8px;
    padding: .5rem .8rem;
    margin-bottom: 1rem;
}
.footer-about { font-family: var(--font-hi); line-height: 1.7; }
.footer-social a { margin: 0 6px 0 0; width: 32px; height: 32px; font-size: .95rem; }

.footer h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
}
.footer-links,
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a,
.footer-contact a,
.bottom-links a { color: rgba(255, 255, 255, .8); transition: color .2s, padding .2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact a:hover,
.bottom-links a:hover { color: #fff; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    margin-bottom: .8rem;
    word-break: break-word;
}
.footer-contact i { color: #fff; margin-top: 2px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 2.5rem;
    padding: 1.2rem 0;
    font-size: .85rem;
}
.bottom-links li + li::before {
    content: "|";
    margin: 0 .9rem;
    color: rgba(255, 255, 255, .4);
}

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */
@media (max-width: 991.98px) {
    .hero { padding-top: 2rem; }
    .hero-visual { max-width: 400px; }
    .section-pad { padding: 3rem 0; }
}

@media (max-width: 575.98px) {
    body { font-size: 14px; }
    .topbar { font-size: .75rem; }
    .topbar-info { gap: .3rem 1rem; justify-content: center; width: 100%; }
    .main-nav .logo { height: 44px; }

    .hero-btns .btn { width: 100%; }
    .hero-visual { max-width: 320px; }
    .float-icon { width: 46px; height: 46px; font-size: 1.15rem; }

    .update-bar { flex-wrap: wrap; gap: .5rem; }
    .update-text { order: 3; flex-basis: 100%; }
    .update-link { margin-left: auto; }

    .service-card { padding: 1.2rem .6rem 1rem; }
    .svc-icon { width: 52px; height: 52px; font-size: 1.3rem; }
    .service-card h3 { font-size: .9rem; }
    .service-card p { font-size: .78rem; }

    .stats-card { padding: 1.3rem 1rem; }
    .stat { flex-direction: column; text-align: center; gap: .5rem; }
    .stat strong { font-size: 1.3rem; }

    .cta-banner { padding: 2.5rem 1rem; }
    .cta-coin { width: 34px; height: 34px; font-size: .95rem; }

    .app-card { padding: 1.5rem 1rem; }
    .app-features { gap: .5rem 1rem; }
    .app-phone { height: 280px; }
    .store-btn { min-width: 0; flex: 1; }

    .bottom-links li + li::before { margin: 0 .5rem; }
}

/* =========================================================
   INNER PAGES (About, Services, Refund Policy)
   ========================================================= */
.bg-red { background: #039CB3; }
.text-teal   { color: #039CB3 !important; }
.text-yellow { color: #f7b500 !important; }
.text-blue   { color: #1F83C0 !important; }

.topbar-tagline { font-weight: 500; }

/* ---------- Page banner ---------- */
.page-banner {
    position: relative;
    background: linear-gradient(110deg, #062024 0%, #0B4249 55%, #0C5F6B 100%);
    color: #fff;
    padding: 3rem 0;
    min-height: 240px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 {
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: .6rem;
}
.banner-lead { font-size: clamp(1rem, 1.8vw, 1.25rem); margin-bottom: .25rem; }
.banner-hi {
    font-family: var(--font-hi);
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.page-banner .breadcrumb { margin: 0; font-size: 1.05rem; }
.page-banner .breadcrumb a { color: #fff; }
.page-banner .breadcrumb a:hover { color: #8AD6E6; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: #fff; }
.page-banner .breadcrumb-item.active { color: #fff; }
.breadcrumb-arrow .breadcrumb-item + .breadcrumb-item::before {
    content: "\F285";
    font-family: "bootstrap-icons";
    font-size: .75rem;
    padding-top: .3rem;
    padding-right: .6rem;
}
.page-banner .breadcrumb-arrow .breadcrumb-item.active { color: #3AA6D6; }

/* About banner: navy on left fading into office wall */
.about-banner {
    min-height: 300px;
    background:
        linear-gradient(90deg, #062024 0%, #0A3238 38%, rgba(10, 50, 56, .55) 52%, rgba(10, 50, 56, 0) 66%),
        url(../images/about-banner.svg) right center / auto 100% no-repeat,
        #062024;
}
.about-banner::after {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 55%;
    background: linear-gradient(115deg, transparent 60%, rgba(31, 131, 192, .35) 60%, transparent 85%);
    pointer-events: none;
}

/* Services banner with network pattern + phone */
.services-banner {
    min-height: 330px;
    overflow: visible;
    background:
        url(../images/network-bg.svg) center / cover no-repeat,
        radial-gradient(circle at 70% 50%, rgba(31, 131, 192, .35), transparent 50%),
        linear-gradient(110deg, #062024 0%, #0B4249 60%, #0C5F6B 100%);
    z-index: 3;
}
.svc-banner-visual { position: relative; height: 330px; }
.svc-banner-phone {
    position: absolute;
    left: 50%;
    top: -10px;
    height: 400px;
    transform: translateX(-50%) rotate(12deg);
    filter: drop-shadow(0 25px 30px rgba(0, 0, 0, .35));
    z-index: 2;
}
.svc-banner-visual .float-icon { width: 58px; height: 58px; font-size: 1.5rem; }
.sb-1 { left: 16%; top: 2%; }
.sb-2 { left: 6%;  top: 32%; }
.sb-3 { left: 1%;  top: 62%; }
.sb-4 { right: 4%; top: 6%; }
.sb-5 { right: -2%; top: 40%; }
.sb-6 { right: 6%; top: 72%; }

/* Policy banner */
.policy-banner { min-height: 220px; padding: 2rem 0; }
.policy-banner-img { max-height: 200px; width: auto; }

/* ---------- Shared bits ---------- */
.eyebrow-red {
    display: block;
    color: var(--brand);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: .2rem;
}
.eyebrow-navy { color: var(--navy) !important; font-weight: 700; font-size: 1.15rem; }
.title-line {
    display: inline-block;
    width: 140px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--navy-2) 0 40%, var(--brand) 40% 60%, var(--navy-2) 60%);
}
.handwrite {
    font-family: 'Kalam', cursive;
    font-weight: 700;
    line-height: 1.25;
    font-size: 1.8rem;
    transform: rotate(-6deg);
    display: inline-block;
    margin: .5rem 0 0;
}
.handwrite span { display: inline-block; padding-left: 1.2rem; }
.handwrite-red { color: var(--brand); border-bottom: 2px solid var(--brand); padding-bottom: .2rem; }
.handwrite-navy { color: var(--navy-2); font-size: 2rem; }
.handwrite-navy .h3line { border-bottom: 2px solid var(--brand); padding-left: 2.2rem; }

/* ---------- About: story ---------- */
.story-section { padding: 1.5rem 0 2rem; }
.story-title {
    font-weight: 700;
    color: var(--navy);
    font-size: clamp(1.35rem, 2.4vw, 1.6rem);
    line-height: 1.4;
    margin-bottom: 1rem;
}
.story-title span { color: var(--brand); }
.story-text { font-family: var(--font-hi); font-size: 1rem; line-height: 1.7; color: #33363A; }
.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 6px solid #fff;
}
.mvv-card {
    background: #EDFAFD;
    border-radius: 12px;
    padding: .5rem 1.5rem;
    height: 100%;
}
.mvv-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.3rem 0;
}
.mvv-item + .mvv-item { border-top: 1px solid #D6EDF2; }
.mvv-icon { font-size: 2.3rem; line-height: 1; flex: 0 0 48px; text-align: center; }
.mvv-item h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
.mvv-item p { font-family: var(--font-hi); font-size: .98rem; line-height: 1.6; margin: 0; color: #33363A; }
.mvv-item .values b { color: var(--navy-2); font-weight: 400; margin: 0 .2rem; }

/* ---------- About: why (light) ---------- */
.why-light { background: #EEF9FB; padding: 2rem 0 2.2rem; }
.why-light-title { font-weight: 700; color: var(--navy); font-size: clamp(1.4rem, 2.6vw, 1.7rem); margin-bottom: .2rem; }
.why-light-sub { font-family: var(--font-hi); font-weight: 600; font-size: 1.15rem; margin: 0; color: #26282B; }
.wl-item { text-align: center; }
@media (min-width: 992px) {
    .why-light-row > .col + .col .wl-item { border-left: 1px solid #D3EAEE; }
}
.wl-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: .7rem;
    box-shadow: 0 6px 14px rgba(8, 37, 41, .15);
}
.wl-item h4 { font-size: .98rem; font-weight: 600; color: var(--navy); margin-bottom: .2rem; }
.wl-item p { font-family: var(--font-hi); font-size: .92rem; color: #4A4D50; margin: 0; }

/* ---------- About: stats band ---------- */
.stats-band {
    background: linear-gradient(90deg, #0A3238 0%, #0C5B66 50%, #0A3238 100%);
    color: #fff;
    padding: 1.4rem 0;
}
.sb-item { display: flex; align-items: center; justify-content: center; gap: .9rem; }
@media (min-width: 992px) {
    .stats-band .col + .col .sb-item { border-left: 1px solid rgba(255, 255, 255, .2); }
}
.sb-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.sb-item strong { display: block; font-size: 1.6rem; font-weight: 700; line-height: 1.1; }
.sb-item small { font-size: .82rem; opacity: .85; }

/* ---------- About: commitment ---------- */
.commitment { padding: 1rem 0; }
.commit-img { width: 100%; height: 130px; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow-sm); }
.commit-title { font-weight: 700; color: var(--navy); font-size: clamp(1.2rem, 2.2vw, 1.45rem); margin-bottom: .6rem; }
.commit-text { font-family: var(--font-hi); font-size: .98rem; line-height: 1.7; margin-bottom: .3rem; }
.commit-sign { text-align: right; color: var(--brand); font-size: .8rem; font-weight: 500; margin: 0; }

/* ---------- About: journey ---------- */
.journey { background: #EEF9FB; padding: 1.2rem 0 1.4rem; }
.journey-title { font-weight: 700; color: var(--navy); font-size: 1.3rem; margin-bottom: .1rem; }
.journey-sub { font-family: var(--font-hi); font-size: .95rem; margin: 0; }
.journey-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 10px;
    padding: .8rem 1.2rem;
    box-shadow: var(--shadow-sm);
    color: var(--text);
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}
.journey-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--text); }
.jc-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.journey-card h4 { font-family: var(--font-hi); font-size: 1rem; font-weight: 700; margin: 0; }
.journey-card p { font-family: var(--font-hi); font-size: .9rem; margin: 0; color: #4A4D50; }

/* ---------- About: wide CTA (blue -> red) ---------- */
.cta-wide { padding: 2.5rem 0 0; }
.cta-wide-inner {
    position: relative;
    background: linear-gradient(90deg, #0C6478 0%, #0C6270 35%, #D96D14 65%, #026E80 100%);
    min-height: 190px;
}
.cta-wide-text { padding: 2.2rem 0; color: #fff; }
.cta-wide-text h2 {
    font-family: var(--font-hi);
    font-weight: 500;
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}
.cta-people { position: relative; height: 190px; }
.cta-people img, .cr-people img { position: absolute; bottom: 0; }
.cp-man   { left: 4%;  height: 240px; }
.cp-woman { left: 50%; height: 225px; }
.cp-phone { left: 38%; bottom: 55px !important; height: 110px; transform: rotate(-8deg); z-index: 2; }

/* ---------- Services grid ---------- */
.services-list { padding: 6rem 0 2.5rem; background: #fff; }
.svc-row-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    padding: 1.2rem 1rem;
    transition: transform .25s, box-shadow .25s;
}
.svc-row-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-row-card .svc-icon { flex: 0 0 58px; width: 58px; height: 58px; margin: 0; font-size: 1.55rem; }
.svc-row-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: .3rem; }
.svc-row-card p { font-family: var(--font-hi); font-size: .88rem; color: #4A4D50; line-height: 1.55; margin-bottom: .5rem; }
.fastag-txt { font-size: .62rem; font-weight: 800; font-style: italic; letter-spacing: .3px; }
.learn-more { font-size: .82rem; font-weight: 600; color: var(--navy-2); }
.learn-more i { margin-left: .3rem; transition: margin .2s; }
.learn-more:hover { color: var(--brand); }
.learn-more:hover i { margin-left: .5rem; }

/* ---------- Services: features strip ---------- */
.features-strip-wrap { padding: 0 0 2rem; }
.features-strip {
    background: #EEF9FB;
    border-radius: 10px;
    padding: 1.2rem 1.5rem 1.5rem;
}
.fs-title { text-align: center; font-family: var(--font-hi); font-weight: 700; color: var(--navy); font-size: 1.3rem; margin-bottom: 1rem; }
.fs-item { display: flex; align-items: center; gap: .8rem; }
@media (min-width: 992px) {
    .features-strip .col + .col .fs-item { border-left: 1px solid #D3EAEE; padding-left: 1rem; }
}
.fs-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--navy);
}
.fs-item h4 { font-size: .92rem; font-weight: 600; color: var(--navy); margin: 0 0 .15rem; }
.fs-item p { font-family: var(--font-hi); font-size: .85rem; line-height: 1.4; margin: 0; color: #33363A; }

/* ---------- Services: rocket CTA (navy -> red) ---------- */
.cta-rocket {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 200px;
    background: linear-gradient(90deg, #0C4E57 0%, #0B5762 35%, #D96D14 65%, #039CB3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}
.cr-text { position: relative; z-index: 2; color: #fff; }
.cr-text h2 {
    font-family: var(--font-hi);
    font-weight: 600;
    font-size: clamp(1.2rem, 2.4vw, 1.7rem);
    line-height: 1.5;
    margin-bottom: 1.1rem;
}
.cr-text h2 span { color: #ffcf1f; }
.cr-coins .cta-coin { position: absolute; }
.cr-coins .cta-coin:nth-child(1) { left: 3%; top: 16%; }
.cr-coins .cta-coin:nth-child(2) { left: 9%; top: 38%; }
.cr-coins .cta-coin:nth-child(3) { left: 2%; top: 56%; }
.cr-coins .cta-coin:nth-child(4) { left: 7%; bottom: 8%; }
.cr-people { position: absolute; left: 10%; bottom: 0; width: 280px; height: 100%; }
.cr-people .cp-man { left: 0; height: 185px; }
.cr-people .cp-woman { left: 125px; height: 175px; }
.cr-people .cp-phone { left: 100px; bottom: 60px !important; height: 90px; }
.cr-growth { position: absolute; right: 2%; bottom: 0; height: 170px; }
@media (min-width: 992px) { .cr-text { margin-left: 22%; margin-right: 18%; } }
@media (min-width: 768px) and (max-width: 991.98px) { .cr-text { margin-right: 25%; } .cr-growth { height: 130px; } }

/* ---------- Policy pages ---------- */
.policy-section { padding: 1.8rem 0 2.5rem; }
.policy-intro { font-size: 1rem; line-height: 1.7; color: #26282B; margin-bottom: 1.5rem; }

.commit-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #E6F9FD;
    border: 1px solid #CDEFF6;
    border-radius: 10px;
    padding: 1.3rem 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
}
.commit-shield { font-size: 4.5rem; line-height: 1; color: var(--navy-2); flex: 0 0 auto; }
.commit-card h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: .1rem; }
.commit-quote { font-family: var(--font-hi); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.commit-card p { font-size: .95rem; }

.mini-feature {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    padding: 1rem .5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}
.mini-feature i { font-size: 2.4rem; line-height: 1; }
.mini-feature span { font-weight: 600; font-size: .92rem; color: var(--navy); line-height: 1.35; }

.line-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    font-weight: 700;
    color: var(--navy-2);
    margin: 2.2rem 0 1.4rem;
    text-align: center;
}
.line-title::before, .line-title::after {
    content: "";
    height: 2px;
    background: var(--navy-2);
    flex: 0 1 90px;
}

.kp-card {
    display: flex;
    gap: 1.2rem;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 1.1rem 1.2rem;
}
.kp-icon {
    position: relative;
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    border-radius: 50%;
    background: #EEF9FB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--navy-2);
}
.kp-x {
    position: absolute;
    right: 20px;
    bottom: 22px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    border: 2px solid #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
}
.kp-card h3 {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy-2);
    margin-bottom: .45rem;
}
.kp-card h3 b {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: .8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.kp-card p { font-size: .92rem; line-height: 1.55; margin: 0; color: #33363A; }
.kp-card ul { padding-left: 1.1rem; margin: 0; font-size: .88rem; line-height: 1.55; color: #33363A; }
.kp-card li { margin-bottom: .2rem; }

.need-help {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem 1.5rem;
    background: #fdf5dc;
    border: 1px solid #f3dc92;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
}
.nh-avatar { width: 90px; height: 90px; flex: 0 0 90px; }
.nh-text { flex: 1 1 320px; }
.nh-badge {
    display: inline-block;
    background: #f9d65c;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.3rem;
    padding: .1rem 1rem;
    border-radius: 30px;
    margin-bottom: .4rem;
}
.nh-text p { font-family: var(--font-hi); font-size: 1.15rem; font-weight: 500; margin: 0; color: var(--navy); }
.nh-contact {
    border-left: 2px solid var(--navy);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.nh-contact a { color: var(--navy); font-weight: 600; font-size: 1.05rem; }
.nh-contact a:hover { color: var(--brand); }
.nh-contact i { margin-right: .4rem; }
.nh-phones { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .9rem; }
.nh-phones .sep { color: var(--navy); }

.policy-list { max-width: 900px; }
.pl-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
}
.pl-item:first-child { padding-top: 0; }
.pl-item:last-child { border-bottom: 0; }
.pl-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border: 1px solid #D6E7EA;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--navy);
}
.pl-body { border-left: 1px solid var(--border); padding-left: 1.3rem; flex: 1; }
.pl-body h3 { font-size: 1.2rem; font-weight: 600; color: var(--navy-2); margin-bottom: .4rem; }
.pl-body p { font-size: .93rem; line-height: 1.6; margin: 0 0 .4rem; color: #26282B; }
.pl-body ul { padding-left: 1.2rem; margin: 0; font-size: .93rem; line-height: 1.6; }
.pl-body li { margin-bottom: .25rem; }
.pl-contact { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .9rem; margin-top: .3rem; }
.pl-contact a { color: var(--navy-2); font-weight: 500; }
.pl-contact a:hover { color: var(--brand); }
.pl-contact .sep { color: #8F9294; }

/* ---------- Inner pages: responsive ---------- */
@media (max-width: 991.98px) {
    .about-banner {
        background:
            linear-gradient(90deg, rgba(6, 32, 36, .96) 0%, rgba(10, 50, 56, .93) 60%, rgba(10, 50, 56, .85) 100%),
            url(../images/about-banner.svg) right center / cover no-repeat;
    }
    .services-banner { min-height: 240px; }
    .services-list { padding-top: 3rem; }
    .mvv-card { padding: .3rem 1.2rem; }
}
@media (max-width: 767.98px) {
    .page-banner { min-height: 200px; padding: 2.2rem 0; }
    .handwrite { font-size: 1.5rem; }
    .kp-card { flex-direction: column; align-items: flex-start; }
    .kp-icon { width: 76px; height: 76px; flex-basis: 76px; font-size: 2.1rem; }
    .kp-x { right: 10px; bottom: 12px; }
    .nh-contact { border-left: 0; padding-left: 0; border-top: 1px solid #e9cf7a; padding-top: .8rem; width: 100%; }
    .commit-card { flex-direction: column; text-align: center; }
    .line-title::before, .line-title::after { flex-basis: 30px; }
}
@media (max-width: 575.98px) {
    .pl-item { gap: .8rem; }
    .pl-icon { width: 48px; height: 48px; flex-basis: 48px; font-size: 1.35rem; }
    .pl-body { padding-left: .8rem; }
    .pl-body h3 { font-size: 1.05rem; }
    .nh-avatar { width: 70px; height: 70px; flex-basis: 70px; }
    .nh-text p { font-size: 1rem; }
    .sb-item { flex-direction: column; text-align: center; gap: .4rem; }
}

/* =========================================================
   CONTACT, RETAILER, DISTRIBUTOR, ABOUT (v2)
   ========================================================= */
.bg-navy       { background: var(--navy-2); }
.bg-teal-light { background: #0FAEC2; }

.btn-gradient {
    background: linear-gradient(90deg, #039CB3 0%, #D96D14 50%, #0C6478 100%);
    color: #fff;
    border: 0;
    padding: .85rem 1.2rem;
    font-size: 1.02rem;
}
.btn-gradient:hover { color: #fff; filter: brightness(1.08); transform: translateY(-2px); }
.btn-light-white { background: #fff; color: var(--navy); border: 0; }
.btn-light-white:hover { background: #EEF9FB; color: var(--navy); }
.btn-light-white i { color: var(--brand); }
.btn-outline-white { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline-white:hover { background: #fff; color: var(--navy); }
.btn-sm { padding: .4rem .9rem; font-size: .85rem; }

/* ---------- Contact ---------- */
.contact-banner {
    min-height: 280px;
    background:
        linear-gradient(100deg, #062024 0%, #0B4249 50%, #039CB3 50%, #039CB3 51%, rgba(0, 0, 0, 0) 51.1%),
        url(../images/about-banner.svg) right center / auto 100% no-repeat,
        #062024;
}
.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 55%, rgba(31, 131, 192, .3) 70%, transparent 85%);
    pointer-events: none;
}
.breadcrumb-plain { font-size: .92rem !important; }
.banner-rule {
    display: block;
    width: 200px;
    height: 2px;
    margin: .2rem 0 1rem;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.contact-main { padding: 2rem 0 2.2rem; }
.head-hi { display: block; font-family: var(--font-hi); font-weight: 700; color: var(--navy); font-size: 1.15rem; }
.head-en { font-weight: 700; color: var(--navy); font-size: clamp(1.4rem, 2.6vw, 1.7rem); margin-bottom: .4rem; }
.head-en span { color: var(--brand); }
.head-rule {
    display: block;
    width: 70px;
    height: 3px;
    margin-bottom: 1.3rem;
    background: linear-gradient(90deg, var(--brand) 0 45%, transparent 45% 55%, var(--navy-2) 55%);
}
.head-rule-light { background: linear-gradient(90deg, var(--brand) 0 45%, transparent 45% 55%, #fff 55%); }

.icon-field { position: relative; }
.icon-field > i {
    position: absolute;
    left: 1rem;
    top: .95rem;
    color: #6D6E70;
    font-size: 1.05rem;
    pointer-events: none;
}
.icon-field .form-control {
    padding: .8rem 1rem .8rem 2.8rem;
    border: 1px solid #D6E7EA;
    border-radius: 6px;
    font-family: var(--font-hi);
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(8, 37, 41, .04);
}
.icon-field .form-control:focus { border-color: var(--navy-2); box-shadow: 0 0 0 .2rem rgba(12, 100, 120, .12); }
.captcha-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    max-width: 300px;
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: .8rem .9rem;
    font-size: .88rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}
.captcha-box .form-check-input { width: 1.5rem; height: 1.5rem; border-radius: 2px; }
.captcha-logo { display: flex; flex-direction: column; align-items: center; color: #3AA6D6; font-size: 1.5rem; line-height: 1; }
.captcha-logo small { font-size: .55rem; color: #555; margin-top: .2rem; }

.info-card {
    display: flex;
    gap: 1rem;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 1.1rem 1rem;
}
.ic-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}
.info-card h3 { font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: .2rem; }
.ic-value { display: block; font-size: 1.2rem; font-weight: 600; margin-bottom: .4rem; word-break: break-word; }
.ic-value.ic-small { font-size: .82rem; }
.info-card p { font-size: .8rem; color: #4A4D50; margin: 0; line-height: 1.7; }
.ic-address { font-size: .78rem !important; }
.ic-hours { font-size: .88rem !important; line-height: 1.9 !important; }

.map-section { padding-bottom: 1.5rem; }
.map-wrap {
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #E9F3F5;
}
.map-card {
    flex: 1 1 300px;
    max-width: 100%;
    background: var(--navy-deep);
    color: #fff;
    padding: 1.6rem 1.4rem;
}
@media (min-width: 992px) { .map-card { flex: 0 0 31%; } }
.map-card h2 { font-family: var(--font-hi); font-weight: 700; font-size: 1.4rem; margin-bottom: .5rem; }
.map-card p { display: flex; gap: .6rem; line-height: 1.8; font-size: .98rem; margin-bottom: 1.2rem; }
.map-card p i { color: var(--brand); margin-top: .1rem; }
.map-frame { flex: 1 1 400px; min-height: 250px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 250px; border: 0; display: block; }

.help-topics-wrap { padding-bottom: 2rem; }
.help-topics { background: #EEF9FB; border-radius: 10px; padding: 1.2rem 1.2rem 1.4rem; }
.help-topics h2 { text-align: center; font-family: var(--font-hi); font-weight: 700; color: var(--navy); font-size: 1.4rem; margin-bottom: 1rem; }
.ht-item { display: block; text-align: center; color: var(--text); padding: .2rem .4rem; height: 100%; }
@media (min-width: 992px) { .help-topics .col + .col .ht-item { border-left: 1px solid #CFE6EA; } }
.ht-item > i { font-size: 2.3rem; line-height: 1; display: inline-block; margin-bottom: .5rem; transition: transform .2s; }
.ht-item:hover > i { transform: translateY(-3px); }
.ht-item h4 { font-size: .92rem; font-weight: 600; color: var(--navy); margin-bottom: .2rem; }
.ht-item p { font-family: var(--font-hi); font-size: .85rem; margin: 0; color: #33363A; }

/* ---------- Retailer / Distributor hero ---------- */
.partner-hero { position: relative; overflow: hidden; padding: 1.6rem 0 0; }
.retailer-hero {
    background:
        linear-gradient(90deg, #F4FCFD 0%, #F4FCFD 38%, rgba(244, 247, 253, .7) 50%, rgba(244, 247, 253, 0) 65%),
        url(../images/shop-bg.svg) right center / cover no-repeat;
}
.distributor-hero {
    background:
        radial-gradient(circle at 75% 40%, rgba(31, 131, 192, .25), transparent 45%),
        linear-gradient(100deg, #F4FCFD 0%, #EAFAFD 45%, #C9F3FB 75%, #9CE6F5 100%);
}
.pill-badge {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-hi);
    font-weight: 600;
    font-size: 1rem;
    padding: .25rem 1rem;
    border-radius: 8px;
    margin-bottom: .8rem;
}
.partner-title {
    font-family: var(--font-hi);
    font-weight: 800;
    color: var(--navy);
    font-size: clamp(2rem, 4.2vw, 2.9rem);
    line-height: 1.2;
    margin-bottom: .8rem;
}
.partner-title span { color: var(--brand); }
.partner-sub { font-family: var(--font-hi); font-size: 1.12rem; color: #26282B; margin-bottom: 1rem; }
.hero-mini { margin-bottom: 1.3rem; }
.hero-mini span {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: .45rem;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: .45rem .7rem;
    box-shadow: var(--shadow-sm);
    text-align: left;
}
.hero-mini i { grid-row: span 2; font-size: 1.3rem; }
.hero-mini b { font-size: .72rem; font-weight: 600; line-height: 1.2; }
.hero-mini small { font-family: var(--font-hi); font-size: .72rem; color: #4A4D50; line-height: 1.2; }

.feature-bar {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.2rem;
}
.feature-bar span {
    flex: 1 1 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .74rem;
    font-weight: 600;
    color: var(--navy);
    padding: .7rem .5rem;
    text-align: left;
    line-height: 1.25;
}
.feature-bar span + span { border-left: 1px solid var(--border); }
.feature-bar i { font-size: 1.5rem; color: var(--navy-2); }

.partner-visual { position: relative; min-height: 340px; }
.pv-phone {
    position: absolute;
    left: 4%;
    bottom: 12px;
    height: 290px;
    z-index: 3;
    filter: drop-shadow(0 18px 25px rgba(8, 37, 41, .3));
}
.pv-person { position: absolute; left: 26%; bottom: 0; height: 340px; z-index: 2; }
.benefit-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    z-index: 4;
    background: rgba(6, 32, 36, .92);
    color: #fff;
    border-radius: 10px;
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow);
}
.benefit-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .6rem; }
.benefit-card ul { list-style: none; padding: 0; margin: 0; }
.benefit-card li { display: flex; align-items: center; gap: .55rem; font-family: var(--font-hi); font-size: .85rem; padding: .35rem 0; }
.benefit-card li i {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 50%;
    background: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
}
.benefit-card-blue { background: linear-gradient(160deg, #0A3238 0%, #0C6478 100%); }
.benefit-card-blue li i { border-radius: 5px; background: rgba(255, 255, 255, .15); border: 1px solid rgba(255, 255, 255, .4); }

@media (max-width: 991.98px) {
    .partner-visual { min-height: 0; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
    .pv-phone, .pv-person { display: none; }
    .benefit-card { position: static; transform: none; width: 100%; max-width: 420px; }
    .partner-hero { padding-bottom: 2rem; }
    .retailer-hero { background: linear-gradient(rgba(244, 247, 253, .92), rgba(244, 247, 253, .92)), url(../images/shop-bg.svg) center / cover; }
}

/* ---------- Partner services ---------- */
.partner-services { padding: 1.8rem 0 1.5rem; }
.ps-title { font-family: var(--font-hi); font-weight: 700; color: var(--navy); font-size: clamp(1.3rem, 2.8vw, 1.7rem); margin-bottom: .3rem; }
.ps-title span { color: var(--navy-2); }
.title-dots-line {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 2px;
    background: var(--brand);
    vertical-align: middle;
}
.title-dots-line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 6px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--navy-2) 2.6px, transparent 3px) 0 0 / 10px 6px repeat-x, #fff;
}
.mini-svc {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    padding: 1rem .5rem .9rem;
    transition: transform .25s, box-shadow .25s;
}
.mini-svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mini-svc .svc-icon { width: 46px; height: 46px; font-size: 1.2rem; margin-bottom: .6rem; }
.mini-svc h3 { font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
.mini-svc p { font-family: var(--font-hi); font-size: .76rem; color: #4A4D50; margin: 0; line-height: 1.5; }
.line-title-sm { font-family: var(--font-hi); font-size: clamp(1.25rem, 2.6vw, 1.6rem); color: var(--navy); margin-bottom: 1.2rem; }

/* ---------- Steps / join / features ---------- */
.partner-steps { padding: 1rem 0 1rem; }
.steps-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    padding: 1rem 1.2rem 1.3rem;
    height: 100%;
}
.steps-card-plain { background: transparent; border: 0; box-shadow: none; padding: 0; }
.steps-title { text-align: center; font-family: var(--font-hi); font-weight: 700; color: var(--navy); font-size: 1.35rem; margin-bottom: 1rem; }
.steps-title-line { display: flex; align-items: center; justify-content: center; gap: .8rem; }
.steps-title-line::before { content: ""; width: 40px; height: 2px; background: var(--navy); }
.steps-row { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.step { flex: 1; text-align: center; }
.step-boxed {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: .9rem .5rem;
    align-self: stretch;
}
.step-no {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .95rem;
    margin-bottom: .4rem;
}
.step-boxed .step-no { margin-bottom: 0; }
.step-icon { display: block; font-size: 2.2rem; color: var(--navy); line-height: 1.1; margin-bottom: .4rem; }
.step-boxed .step-icon { display: inline-block; margin: 0; }
.step h4 { font-family: var(--font-hi); font-size: .95rem; font-weight: 700; color: var(--navy); margin: .3rem 0 .2rem; }
.step p { font-family: var(--font-hi); font-size: .8rem; color: #4A4D50; margin: 0; line-height: 1.5; }
.step-arrow { font-size: 1.3rem; color: var(--navy); flex: 0 0 auto; }
@media (max-width: 767.98px) {
    .steps-row { flex-wrap: wrap; }
    .step { flex: 1 1 45%; }
    .step-arrow { display: none; }
}

.join-card {
    display: flex;
    align-items: center;
    gap: .5rem;
    height: 100%;
    background: linear-gradient(135deg, #EEFBFD 0%, #DBF6FB 100%);
    border-radius: 10px;
    padding: 1.2rem;
}
.join-card h3 { font-family: var(--font-hi); font-weight: 600; color: var(--navy); font-size: 1.2rem; line-height: 1.5; margin-bottom: .8rem; }
.join-card h3 span { color: var(--navy-2); font-weight: 700; }
.join-foot { font-family: var(--font-hi); font-size: .85rem; font-weight: 600; color: var(--navy-2); margin: .8rem 0 0; }
.join-shop { width: 45%; max-width: 170px; }

.feat-card {
    display: flex;
    align-items: center;
    gap: .9rem;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 1rem;
}
.feat-card > i { font-size: 2.6rem; line-height: 1; }
.feat-card h4 { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: .2rem; }
.feat-card p { font-family: var(--font-hi); font-size: .8rem; color: #4A4D50; margin: 0; line-height: 1.5; }
.dark-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    background: linear-gradient(135deg, #062024 0%, #0C5B66 100%);
    color: #fff;
    border-radius: 10px;
    padding: 1rem 1.1rem;
}
.dark-card > div { position: relative; z-index: 2; max-width: 75%; }
.dark-card h3 { font-family: var(--font-hi); font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.dark-card p { font-family: var(--font-hi); font-size: .82rem; opacity: .9; margin-bottom: .6rem; }
.dark-card .btn-white { min-width: 0; color: var(--brand); }
.dark-card-img { position: absolute; right: -6px; bottom: 0; width: 55%; opacity: .95; }

/* ---------- Why list / testimonial / register ---------- */
.partner-bottom { padding: 1rem 0 2rem; }
.why-list-title { font-family: var(--font-hi); font-weight: 700; color: var(--navy); font-size: 1.25rem; margin-bottom: .7rem; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 1.8rem; font-family: var(--font-hi); font-size: .92rem; margin-bottom: .55rem; color: #26282B; }
.check-list li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--green);
    font-size: 1.15rem;
}
.check-list-sm li { font-size: .85rem; margin-bottom: .35rem; }

.testimonial {
    display: flex;
    gap: 1rem;
    height: 100%;
    background: #F0F6F7;
    border-radius: 10px;
    padding: 1.3rem 1.2rem;
}
.t-avatar { width: 84px; height: 84px; flex: 0 0 84px; border-radius: 50%; border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.t-quote { font-size: 1.8rem; color: #8F9294; line-height: 1; }
.testimonial p { font-family: var(--font-hi); font-size: .88rem; line-height: 1.6; margin: .2rem 0 .6rem; }
.testimonial strong { display: block; font-family: var(--font-hi); font-size: .88rem; color: var(--navy); }
.testimonial em { font-size: .8rem; color: #4A4D50; }

.register-cta {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 190px;
    background: linear-gradient(90deg, #026E80 0%, #D96D14 55%, #0C6478 100%);
    border-radius: 10px;
    padding: 1.4rem 1.3rem;
    color: #fff;
}
.rc-text { position: relative; z-index: 2; max-width: 62%; }
.rc-text h2 { font-family: var(--font-hi); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.45; margin-bottom: .4rem; }
.rc-text p { font-family: var(--font-hi); font-size: .95rem; margin-bottom: .9rem; }
.rc-text .btn-white { min-width: 150px; }
.rc-person { position: absolute; right: -10px; bottom: 0; height: 90%; z-index: 1; }
.rc-phone { position: absolute; right: 26%; bottom: 20px; height: 90px; transform: rotate(-8deg); z-index: 2; }
@media (max-width: 575.98px) { .rc-text { max-width: 100%; } }

/* ---------- Distributor: opportunities / network / support / earn ---------- */
.opp-card {
    height: 100%;
    border: 1px solid #D6E7EA;
    border-radius: 8px;
    background: #F7FCFD;
    padding: 1rem;
}
.opp-card h2 { font-family: var(--font-hi); font-weight: 700; color: var(--navy); font-size: 1.25rem; margin-bottom: .8rem; }
.opp-item {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    text-align: center;
    padding: .9rem .5rem;
}
.opp-item > i { font-size: 2.1rem; line-height: 1; display: inline-block; margin-bottom: .5rem; }
.opp-item h4 { font-family: var(--font-hi); font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.opp-item p { font-family: var(--font-hi); font-size: .76rem; color: #4A4D50; margin: 0; line-height: 1.5; }
.network-card {
    display: flex;
    align-items: center;
    gap: .5rem;
    height: 100%;
    background: linear-gradient(135deg, #062024 0%, #0C5B66 100%);
    color: #fff;
    border-radius: 10px;
    padding: 1.2rem 1.3rem;
}
.network-card h3 { font-family: var(--font-hi); font-weight: 700; font-size: 1.25rem; margin-bottom: .5rem; }
.network-card p { font-family: var(--font-hi); font-size: .92rem; line-height: 1.6; opacity: .92; }
.network-img { width: 48%; flex: 0 0 48%; }
.support-card {
    height: 100%;
    background: #EEF9FB;
    border: 1px solid #D6EDF2;
    border-radius: 8px;
    padding: 1.1rem;
}
.sc-icon { font-size: 2rem; color: var(--navy); line-height: 1; }
.support-card h3 { font-family: var(--font-hi); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.support-card p { font-family: var(--font-hi); font-size: .82rem; margin-bottom: .6rem; }
.cta-dist { background: linear-gradient(90deg, #0C4E57 0%, #0C6478 40%, #B85A10 70%, #E0791E 100%); height: 100%; }
@media (min-width: 992px) { .cta-dist .cr-text { margin-left: 30%; margin-right: 2%; } }
.cr-coins-3 .cta-coin:nth-child(1) { left: 3%; top: 14%; }
.cr-coins-3 .cta-coin:nth-child(2) { left: 3%; top: 42%; }
.cr-coins-3 .cta-coin:nth-child(3) { left: 4%; top: 70%; bottom: auto; }
.cta-dist .cr-people { left: 9%; }
.earn-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, #026E80 0%, #D96D14 55%, #0C6478 100%);
    color: #fff;
    border-radius: 12px;
    padding: 1.3rem 1.3rem;
}
.earn-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .4rem; position: relative; z-index: 2; }
.earn-card p { font-family: var(--font-hi); font-size: .88rem; line-height: 1.6; position: relative; z-index: 2; margin: 0; }
.earn-img { position: absolute; right: 8px; bottom: 0; width: 62%; }

/* ---------- About v2 ---------- */
.about2-banner {
    min-height: 290px;
    background:
        linear-gradient(90deg, #062024 0%, #0A3238 40%, rgba(10, 50, 56, .5) 52%, rgba(10, 50, 56, 0) 62%),
        url(../images/about2-banner.svg) right center / auto 100% no-repeat,
        #062024;
}
.page-banner .breadcrumb-red .breadcrumb-item.active { color: #29C6D6; }
.about2-intro { padding: 1.5rem 0; }
.about2-img { width: 100%; border-radius: 8px; box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.eyebrow-line { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-hi); color: var(--brand); font-weight: 600; font-size: .95rem; }
.eyebrow-line::before { content: ""; width: 26px; height: 2px; background: var(--brand); }
.about2-title { font-weight: 700; color: var(--navy); font-size: clamp(1.5rem, 3vw, 1.9rem); margin: .2rem 0 .6rem; }
.about2-text { font-family: var(--font-hi); font-size: .95rem; line-height: 1.7; color: #26282B; }
.value-tile {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    padding: .8rem .4rem;
}
.vt-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: .4rem;
}
.value-tile h4 { font-family: var(--font-hi); font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .15rem; }
.value-tile p { font-family: var(--font-hi); font-size: .74rem; color: #4A4D50; margin: 0; line-height: 1.45; }

.mv-strip { background: #EEF9FB; border-radius: 10px; padding: 1rem 1.6rem 1.3rem; }
.mv-strip h2 { text-align: center; font-family: var(--font-hi); font-weight: 700; color: var(--navy); font-size: 1.45rem; margin-bottom: .8rem; }
.mv-strip h2 span { color: var(--brand); }
.mv-item { display: flex; gap: 1.2rem; align-items: flex-start; }
@media (min-width: 768px) { .mv-item-divider { border-left: 1px solid #CFE6EA; padding-left: 1.6rem; } }
.mv-item > i { font-size: 2.6rem; line-height: 1; }
.mv-item h3 { font-family: var(--font-hi); font-size: 1.1rem; font-weight: 700; color: var(--navy-2); margin-bottom: .25rem; }
.mv-item p { font-family: var(--font-hi); font-size: .92rem; margin: 0; line-height: 1.6; }

.sub-heading { font-family: var(--font-hi); font-weight: 700; color: var(--navy); font-size: 1.3rem; margin-bottom: 1rem; }
.sub-heading::after { content: ""; display: block; width: 36px; height: 3px; background: var(--brand); margin-top: .35rem; border-radius: 2px; }
.sub-heading-plain::after { display: none; }
.wli { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.1rem; }
.wli > i {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    background: #EEF9FB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.wli h4 { font-family: var(--font-hi); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .1rem; }
.wli p { font-family: var(--font-hi); font-size: .82rem; margin: 0; color: #4A4D50; }
.stats-map { background: #EEF9FB; border-radius: 10px; padding: 1.2rem; height: 100%; }
.sm-stat { text-align: center; }
@media (min-width: 768px) { .sm-stats .col + .col .sm-stat { border-left: 1px solid #CFE6EA; } }
.sm-stat i { font-size: 1.6rem; display: block; line-height: 1; margin-bottom: .4rem; }
.sm-stat strong { display: block; font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.sm-stat small { font-size: .74rem; color: #4A4D50; font-weight: 500; }
.india-map { width: 100%; max-width: 300px; display: block; margin: 0 auto; }
.map-note { font-family: var(--font-hi); font-size: .95rem; line-height: 1.7; margin: 0; }

.timeline { position: relative; display: flex; justify-content: space-between; gap: 1rem; padding: 0 1rem; }
.timeline::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 22px;
    border-top: 2px dotted #B6D6DC;
}
.tl-item { position: relative; flex: 1; text-align: center; max-width: 240px; }
.tl-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #E3F6F8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: .4rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 5px #fff;
}
.tl-item h4 { font-family: var(--font-hi); font-size: .92rem; font-weight: 700; margin-bottom: .2rem; }
.tl-item p { font-family: var(--font-hi); font-size: .8rem; color: #4A4D50; margin: 0; line-height: 1.5; }
@media (max-width: 767.98px) {
    .timeline { flex-wrap: wrap; }
    .timeline::before { display: none; }
    .tl-item { flex: 1 1 45%; }
}

.cv-card {
    display: flex;
    gap: .6rem;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: .7rem .7rem;
}
.cv-card > i { font-size: 1.4rem; line-height: 1.2; }
.cv-card h4 { font-family: var(--font-hi); font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .1rem; }
.cv-card p { font-family: var(--font-hi); font-size: .74rem; color: #4A4D50; margin: 0; line-height: 1.45; }
.team-img { width: 100%; border-radius: 8px; box-shadow: var(--shadow-sm); aspect-ratio: 16 / 7; object-fit: cover; }

.cta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    background: linear-gradient(90deg, #039CB3 0%, #045668 35%, #B85A10 70%, #0C6478 100%);
    color: #fff;
    border-radius: 10px;
    padding: 1.3rem 2rem;
}
.cta-bar h2 { font-family: var(--font-hi); font-weight: 700; font-size: clamp(1.3rem, 2.8vw, 1.9rem); margin-bottom: .2rem; }
.cta-bar p { font-family: var(--font-hi); margin: 0; font-size: .95rem; }
.cta-bar .btn-white { min-width: 170px; }

@media (max-width: 991.98px) {
    .contact-banner { background: linear-gradient(90deg, rgba(6, 32, 36, .96), rgba(10, 50, 56, .9)), url(../images/about-banner.svg) right center / cover no-repeat; }
    .about2-banner { background: linear-gradient(90deg, rgba(6, 32, 36, .96), rgba(10, 50, 56, .88)), url(../images/about2-banner.svg) right center / cover no-repeat; }
}
@media (max-width: 575.98px) {
    .cta-bar { padding: 1.2rem; text-align: center; justify-content: center; }
    .cta-bar .d-flex { justify-content: center; }
    .join-shop { display: none; }
    .network-img { display: none; }
    .dark-card > div { max-width: 100%; }
    .dark-card-img { opacity: .25; }
    .testimonial { flex-direction: column; align-items: center; text-align: center; }
    .feature-bar span { flex-basis: 50%; }
    .feature-bar span:nth-child(3) { border-left: 0; }
    .feature-bar span:nth-child(n+3) { border-top: 1px solid var(--border); }
}

.contact-banner .banner-hi,
.contact-banner .banner-lead { max-width: 520px; }

@media (min-width: 992px) {
    .hero-mini { gap: .35rem !important; flex-wrap: nowrap !important; }
    .hero-mini span { padding: .4rem .45rem; column-gap: .3rem; }
    .hero-mini i { font-size: 1.1rem; }
    .hero-mini b, .hero-mini small { font-size: .66rem; white-space: nowrap; }
}

@media (min-width: 992px) {
    .partner-title { font-size: 2.6rem; }
    .pv-phone { left: 0; height: 270px; }
    .pv-person { left: 18%; height: 320px; }
    .benefit-card { width: 235px; }
    .cta-dist .cr-text { margin-left: 36%; }
    .cta-dist .cr-text h2 { font-size: 1.35rem; }
}

/* =========================================================
   PRIVACY, PARTNERS, REGISTER, LOGIN, HOME (v2)
   ========================================================= */
.text-gold { color: #ffc21a !important; }

/* ---------- Privacy (round icons) ---------- */
.policy-list-round .pl-icon {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
    border-radius: 50%;
    border: 1px solid #E3EFF2;
    box-shadow: 0 6px 16px rgba(8, 37, 41, .08);
}

/* ---------- Partners ---------- */
.partners-banner {
    min-height: 260px;
    background:
        linear-gradient(90deg, #062024 0%, #0A3238 38%, rgba(10, 50, 56, .6) 55%, rgba(10, 50, 56, .2) 100%),
        url(../images/partners-banner.svg) right center / auto 100% no-repeat,
        #062024;
}
.partners-banner h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: .2rem; }
.banner-rule-red { width: 70px; height: 4px; background: var(--brand); border-radius: 2px; margin-bottom: 1rem; }
.partners-grid { padding: 1.3rem 0 2rem; }
.partner-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    padding: 1rem .8rem 1.3rem;
    transition: transform .25s, box-shadow .25s;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.partner-logo {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .5rem;
}
.partner-logo img { max-height: 54px; max-width: 100%; object-fit: contain; }
.pl-text {
    font-weight: 800;
    font-size: 1.35rem;
    color: #33363A;
    letter-spacing: -.3px;
    line-height: 1.1;
}
.partner-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: .3rem; }
.partner-card p { font-family: var(--font-hi); font-size: .88rem; color: #0C6478; line-height: 1.5; margin: 0; }
.pc-bar {
    position: absolute;
    left: 50%;
    bottom: .6rem;
    width: 46px;
    height: 3px;
    border-radius: 2px;
    background: var(--c, var(--navy-2));
    transform: translateX(-50%);
}
.partnership-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    background: linear-gradient(90deg, #0A3238 0%, #0C5B66 100%);
    color: #fff;
    border-radius: 10px;
    padding: 1rem 1.5rem;
}
.ps-left { display: flex; align-items: center; gap: 1.3rem; flex: 1 1 420px; }
.ps-shield { position: relative; font-size: 4.2rem; line-height: 1; flex: 0 0 auto; }
.ps-shield .bi-hand-thumbs-up-fill { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -52%); font-size: 1.8rem; }
.ps-left h2 { color: #ffc21a; font-weight: 700; font-size: 1.25rem; margin-bottom: .2rem; }
.ps-left p { font-family: var(--font-hi); margin: 0; font-size: .95rem; }
.ps-features { display: flex; flex-wrap: wrap; }
.ps-features span {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .3rem;
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.25;
    padding: .2rem 1.1rem;
}
.ps-features span + span { border-left: 1px solid rgba(255, 255, 255, .25); }
.ps-features i { font-size: 1.7rem; }


/* ---------- Auth pages (register + login) ---------- */
.auth-section {
    padding: 1.5rem 0 1.5rem;
    background: linear-gradient(180deg, #F2FBFD 0%, #ffffff 100%);
}
.reg-title { font-weight: 700; color: var(--navy); font-size: clamp(1.6rem, 3.2vw, 2.1rem); line-height: 1.3; margin: .6rem 0 .6rem; }
.reg-sub { font-family: var(--font-hi); font-size: 1.1rem; color: #26282B; margin-bottom: .4rem; }
.head-rule-red { background: var(--brand); width: 50px; }
.reg-features { display: grid; gap: .6rem; }
.rf-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: .6rem .9rem;
}
.rf-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}
.rf-item h3 { font-size: .98rem; font-weight: 600; color: var(--navy); margin: 0; }
.rf-item p { font-family: var(--font-hi); font-size: .85rem; margin: 0; color: #33363A; }
.reg-visual { position: relative; height: 230px; margin-top: 1rem; }
.rv-shop { position: absolute; left: 0; bottom: 0; height: 170px; }
.rv-phone { position: absolute; left: 36%; bottom: -20px; height: 240px; transform: rotate(12deg); filter: drop-shadow(0 16px 20px rgba(8, 37, 41, .25)); }
.rv-node {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 0 0 4px #fff, var(--shadow-sm);
}
.rv-node.n1 { left: 78%; top: 8%; }
.rv-node.n2 { left: 68%; top: 38%; }
.rv-node.n3 { left: 88%; top: 38%; }
.rv-node.n4 { left: 78%; top: 70%; }

.auth-card {
    height: 100%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(8, 37, 41, .1);
    padding: 1.6rem 1.8rem;
}
.auth-title { text-align: center; font-weight: 700; color: var(--navy); font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: .3rem; }
.auth-title span { color: var(--brand); }
.auth-sub { text-align: center; color: #4A4D50; margin-bottom: .4rem; }
.dot-rule {
    display: block;
    width: 80px;
    height: 6px;
    margin: 0 auto 1.3rem;
    background:
        radial-gradient(circle, var(--navy-2) 3px, transparent 3.5px) center / 8px 6px no-repeat,
        linear-gradient(90deg, var(--brand) 0 40%, transparent 40% 60%, var(--brand) 60%) center / 100% 2px no-repeat;
}
.auth-form .form-label { font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: .35rem; }
.auth-form .form-label b { color: var(--brand); }
.auth-form .form-control,
.auth-form .form-select {
    padding: .7rem .9rem;
    border: 1px solid #D6E7EA;
    border-radius: 6px;
    font-size: .92rem;
}
.auth-form .form-control:focus,
.auth-form .form-select:focus { border-color: var(--navy-2); box-shadow: 0 0 0 .2rem rgba(12, 100, 120, .12); }
.auth-form .form-check-label { font-size: .88rem; }
.auth-form .form-check-label a { color: var(--navy-2); }
.pw-field { position: relative; }
.pw-field .form-control { padding-right: 2.8rem; }
.pw-toggle {
    position: absolute;
    right: .6rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #4A4D50;
    font-size: 1.15rem;
    padding: .2rem .3rem;
}
.auth-switch { font-size: .92rem; color: #4A4D50; }
.auth-switch a { color: var(--brand); font-weight: 600; }

.choose-strip, .process-strip { background: #F4FCFD; border-radius: 10px; padding: 1rem 1.2rem 1.2rem; }
.choose-strip h2, .process-strip h2 { text-align: center; font-family: var(--font-hi); font-weight: 700; color: var(--navy); font-size: 1.35rem; margin-bottom: 1rem; }
.cs-item { display: flex; align-items: center; gap: .6rem; height: 100%; }
@media (min-width: 992px) { .choose-strip .col + .col .cs-item { border-left: 1px solid #D3EAEE; padding-left: .8rem; } }
.cs-item > i { font-size: 2.3rem; line-height: 1; }
.cs-ring { border: 3px solid currentColor; border-radius: 50%; width: 46px; height: 46px; font-size: 1.5rem !important; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 46px; }
.cs-item h4 { font-size: .8rem; font-weight: 600; color: var(--navy); margin: 0 0 .1rem; }
.cs-item p { font-family: var(--font-hi); font-size: .74rem; margin: 0; color: #4A4D50; line-height: 1.4; }
.process-row { display: flex; align-items: flex-start; justify-content: space-between; gap: .4rem; }
.pr-step { position: relative; flex: 1; text-align: center; }
.pr-step .step-no { position: absolute; left: 8%; top: 0; }
.pr-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--navy);
    margin-bottom: .5rem;
}
.pr-step h4 { font-family: var(--font-hi); font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.pr-step p { font-family: var(--font-hi); font-size: .82rem; color: #4A4D50; margin: 0; }
.pr-arrow { flex: 0 0 60px; margin-top: 34px; border-top: 2px dotted var(--navy-2); position: relative; }
.pr-arrow::after { content: ""; position: absolute; right: -2px; top: -6px; border: 5px solid transparent; border-left: 7px solid var(--navy-2); }
@media (max-width: 767.98px) {
    .process-row { flex-wrap: wrap; justify-content: center; }
    .pr-step { flex: 1 1 45%; margin-bottom: .8rem; }
    .pr-arrow { display: none; }
}

/* Login */
.welcome-panel {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 560px;
    border-radius: 12px;
    color: #fff;
    padding: 1.8rem 1.8rem 0;
    background:
        radial-gradient(circle at 70% 85%, rgba(31, 131, 192, .55), transparent 40%),
        linear-gradient(160deg, #062024 0%, #0C5B66 100%);
}
.welcome-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/network-bg.svg) center bottom / cover no-repeat;
    opacity: .6;
    pointer-events: none;
}
.welcome-panel > * { position: relative; z-index: 1; }
.welcome-panel h1 { font-weight: 700; font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin-bottom: .5rem; }
.wp-sub { font-size: 1.05rem; line-height: 1.6; opacity: .95; margin-bottom: .6rem; }
.wp-features { display: grid; gap: 1rem; margin-top: .5rem; max-width: 380px; }
.wp-item { display: flex; gap: 1rem; align-items: flex-start; }
.wp-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1F83C0, #0C6478);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}
.wp-item h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .15rem; }
.wp-item p { font-size: .88rem; margin: 0; opacity: .9; }
.wp-phone { position: absolute; right: 6%; bottom: -70px; height: 270px; transform: rotate(14deg); z-index: 2; }
@media (max-width: 991.98px) { .welcome-panel { min-height: 0; padding-bottom: 1.8rem; } .wp-phone { display: none !important; } }

.auth-card-login { padding: 2.2rem 2.4rem; display: flex; flex-direction: column; justify-content: center; }
.icon-field-lg .form-control { padding-top: .95rem; padding-bottom: .95rem; font-size: 1rem; }
.icon-field-lg > i { top: 1.05rem; font-size: 1.2rem; }
.forgot-link { color: var(--navy-2); font-weight: 600; font-size: .92rem; }
.auth-btn { padding: .9rem 1rem; font-size: 1.15rem; }
.or-divider { position: relative; text-align: center; margin: 1.1rem 0; }
.or-divider::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; border-top: 1px solid var(--border); }
.or-divider span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    font-weight: 600;
    color: var(--navy);
}
.trust-strip {
    margin-top: 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.2rem;
}
.ts-item { display: flex; align-items: center; gap: .9rem; }
@media (min-width: 992px) { .trust-strip .col + .col .ts-item { border-left: 1px solid var(--border); padding-left: 1rem; } }
.ts-item > i { font-size: 2.4rem; color: var(--navy); line-height: 1; }
.ts-item h4 { font-size: .95rem; font-weight: 600; color: var(--navy); margin: 0; }
.ts-item p { font-size: .85rem; margin: 0; color: #4A4D50; }

/* ---------- Home v2: service rows ---------- */
.svc-rows { display: grid; gap: .7rem; }
.svc-line {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    padding: .8rem 1.3rem;
    color: var(--text);
    transition: transform .2s, box-shadow .2s;
}
.svc-line:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--text); }
.svc-line .svc-icon { width: 64px; height: 64px; flex: 0 0 64px; margin: 0; font-size: 1.7rem; }
.upi-txt { font-weight: 800; font-style: italic; font-size: 1rem; }
.sl-text { flex: 1 1 36%; min-width: 0; }
.sl-text h3 { font-family: var(--font-hi); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.sl-text p { font-family: var(--font-hi); font-size: .9rem; margin: 0; color: #33363A; line-height: 1.5; }
.sl-brands { flex: 0 0 24%; display: flex; flex-wrap: wrap; gap: .4rem .9rem; align-items: center; }
.sl-brands span { font-weight: 800; font-size: .82rem; color: #4A4D50; font-style: italic; }
.sl-brands-icons i { font-size: 1.4rem; width: 38px; height: 38px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; justify-content: center; }
.sl-art { flex: 0 0 auto; height: 76px; width: 110px; object-fit: contain; }
.sl-go {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}
@media (max-width: 991.98px) { .sl-brands { display: none; } }
@media (max-width: 575.98px) {
    .svc-line { gap: .8rem; padding: .8rem; }
    .svc-line .svc-icon { width: 50px; height: 50px; flex-basis: 50px; font-size: 1.3rem; }
    .sl-art { display: none; }
    .sl-go { width: 32px; height: 32px; flex-basis: 32px; }
    .sl-text h3 { font-size: 1rem; }
    .auth-card, .auth-card-login { padding: 1.3rem 1.1rem; }
    .ps-features span { padding: .2rem .6rem; }
}
@media (max-width: 991.98px) {
    .partners-banner { background: linear-gradient(90deg, rgba(6, 32, 36, .95), rgba(10, 50, 56, .85)), url(../images/partners-banner.svg) right center / cover no-repeat; }
}

/* ---------- Navbar fit (8 menu items + 2 buttons) ---------- */
.main-nav .nav-link,
.nav-actions .btn { white-space: nowrap; }
@media (min-width: 992px) and (max-width: 1399.98px) {
    .main-nav .nav-link { padding: .5rem .55rem !important; font-size: .88rem; }
    .main-nav .nav-link.active::after { left: .55rem; right: .55rem; }
    .nav-actions .btn { padding: .5rem .8rem; font-size: .85rem; }
    .main-nav .logo { height: 54px; }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .main-nav .nav-link { padding: .5rem .35rem !important; font-size: .8rem; }
    .main-nav .nav-link.active::after { left: .35rem; right: .35rem; }
    .nav-actions .btn { padding: .45rem .6rem; font-size: .78rem; }
    .nav-actions .btn i { display: none; }
    .main-nav .logo { height: 46px; }
}

.auth-form .icon-field .form-control { padding-left: 2.9rem; }
.auth-form .pw-field .form-control { padding-right: 2.9rem; }

@media (min-width: 992px) {
    .hero-pills { flex-wrap: nowrap !important; }
    .hero-pills .pill { padding: .5rem .65rem; font-size: .78rem; white-space: nowrap; }
}

/* =========================================================
   TERMS BANNER + RETAILER DASHBOARD
   ========================================================= */
.terms-banner {
    min-height: 190px;
    background:
        repeating-linear-gradient(120deg, transparent 0 60px, rgba(31, 131, 192, .14) 60px 110px, transparent 110px 170px),
        linear-gradient(90deg, #062024 0%, #062024 45%, rgba(6, 32, 36, 0) 75%),
        linear-gradient(110deg, #062024 0%, #0C5B66 100%);
}

/* ---------- Dashboard ---------- */
.dash-body { background: #F6FBFC; }
.dash-container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 16px; }
.dash-appbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    box-shadow: 0 2px 10px rgba(8, 37, 41, .06);
    padding: .5rem 0;
}
.dash-logo { height: 44px; width: auto; }
.dash-iconbtn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.25rem;
    background: var(--light-bg);
}
.dash-dot { position: absolute; top: 9px; right: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); border: 2px solid #fff; }
.dash-user {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 30px;
    padding: .25rem .8rem .25rem .25rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--navy);
}
.dash-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--navy-2); color: #fff; display: inline-flex; align-items: center; justify-content: center; }

.dash-top {
    padding: 1.2rem 0 .5rem;
    background:
        linear-gradient(180deg, transparent 0%, transparent 62%, #F6FBFC 62%),
        linear-gradient(100deg, #026E80 0%, #045668 28%, #0C6478 60%, #0A3238 100%);
}
.wallet-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(8, 37, 41, .15);
    padding: 1.1rem .5rem;
    margin-bottom: 1rem;
}
.wc-col { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .45rem; padding: 0 .5rem; }
.wc-col + .wc-col { border-left: 1px solid var(--border); }
.wc-label { font-size: .95rem; font-weight: 500; color: #33363A; display: inline-flex; align-items: center; gap: .4rem; }
.wc-label i { font-size: 1.35rem; }
.wc-amt { font-size: clamp(1.25rem, 3.4vw, 2rem); font-weight: 700; line-height: 1.1; }
.wc-btn { padding: .4rem 1rem; font-size: .88rem; border-radius: 8px; min-width: 70%; }
.wc-btn-red { background: var(--brand); color: #fff; border: 0; }
.wc-btn-red:hover { background: var(--brand-dark); color: #fff; }
.wc-btn-blue { border: 1.5px solid var(--navy-2); color: var(--navy-2); background: #fff; }
.wc-btn-blue:hover { background: var(--navy-2); color: #fff; }
.wc-btn-purple { border: 1.5px solid #6A2FD9; color: #6A2FD9; background: #fff; }
.wc-btn-purple:hover { background: #6A2FD9; color: #fff; }

.dash-promo { padding-bottom: 2rem; }
.promo-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 200px;
    border-radius: 14px;
    overflow: hidden;
    padding: 1.3rem 1.8rem;
    color: #fff;
    background: radial-gradient(circle at 80% 50%, rgba(31, 131, 192, .5), transparent 45%), linear-gradient(110deg, #0A3238 0%, #0C6478 100%);
    box-shadow: 0 10px 26px rgba(8, 37, 41, .18);
}
.promo-red { background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, .15), transparent 45%), linear-gradient(110deg, #023D49 0%, #039CB3 100%); }
.promo-green { background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, .15), transparent 45%), linear-gradient(110deg, #0F7A34 0%, #1CAE4C 100%); }
.promo-purple { background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, .15), transparent 45%), linear-gradient(110deg, #4A20A8 0%, #6A2FD9 100%); }
.promo-slide h2 { font-weight: 600; font-size: clamp(1.25rem, 3.6vw, 2rem); line-height: 1.3; margin-bottom: .5rem; }
.promo-slide p { margin: 0; font-size: clamp(.95rem, 2.2vw, 1.25rem); opacity: .95; }
.promo-slide img { height: 170px; width: auto; flex: 0 0 auto; }
.promo-dots { margin: 0; bottom: .3rem; }
.promo-dots [data-bs-target] {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background: #C9D6D8;
    opacity: 1;
    margin: 0 4px;
}
.promo-dots .active { background: var(--brand); }

.dash-services { padding: .6rem 0 1.2rem; }
.dash-title { font-weight: 700; color: var(--navy); font-size: 1.45rem; margin: 0; }
.dash-title::after { content: ""; display: block; width: 40px; height: 3px; border-radius: 2px; background: var(--brand); margin-top: .35rem; }
.dash-viewall { border: 1.5px solid var(--brand); color: var(--brand); border-radius: 30px; padding: .35rem 1.2rem; font-size: .9rem; background: #fff; }
.dash-viewall:hover { background: var(--brand); color: #fff; }
.dash-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; }
@media (min-width: 992px) { .dash-grid { grid-template-columns: repeat(10, 1fr); } }
.dt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .55rem;
    background: #fff;
    border: 1px solid #EDF4F6;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(8, 37, 41, .06);
    padding: .9rem .3rem .8rem;
    text-align: center;
    color: var(--text);
    font-weight: 600;
    font-size: .88rem;
    line-height: 1.2;
    transition: transform .2s, box-shadow .2s;
}
.dt:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--text); }
.dt-ic {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    background: linear-gradient(145deg, var(--a), var(--b));
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .12), 0 4px 10px rgba(0, 0, 0, .12);
}
.dt-round { border-radius: 50%; }
.dt-txt { font-size: .85rem; font-weight: 800; font-style: italic; }

.dash-trust-wrap { padding-bottom: 1.5rem; }
.dash-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(8, 37, 41, .08);
    padding: .9rem .6rem;
}
.dtr { display: flex; align-items: center; gap: .6rem; padding: 0 .6rem; }
.dtr + .dtr { border-left: 1px solid var(--border); }
.dtr > i { font-size: 1.9rem; line-height: 1; flex: 0 0 auto; }
.dtr-badge { width: 32px; height: 32px; border-radius: 50%; background: #6A2FD9; color: #fff; font-size: 1rem !important; display: inline-flex; align-items: center; justify-content: center; }
.dtr h4 { font-size: .9rem; font-weight: 600; color: var(--navy); margin: 0; }
.dtr p { font-size: .78rem; color: #4A4D50; margin: 0; }

@media (max-width: 767.98px) {
    .dash-trust { grid-template-columns: repeat(2, 1fr); row-gap: .9rem; }
    .dtr:nth-child(3) { border-left: 0; }
    .promo-slide { min-height: 160px; padding: 1.1rem 1.2rem; }
    .promo-slide img { height: 120px; }
}
@media (max-width: 575.98px) {
    .dash-grid { gap: .5rem; }
    .dt { font-size: .72rem; padding: .7rem .15rem .6rem; border-radius: 12px; }
    .dt-ic { width: 42px; height: 42px; font-size: 1.25rem; border-radius: 11px; }
    .wc-label { font-size: .78rem; flex-direction: column; gap: .2rem; }
    .wc-btn { font-size: .72rem; padding: .35rem .4rem; min-width: 92%; }
    .promo-slide img { height: 95px; }
    .dtr > i { font-size: 1.5rem; }
    .dtr h4 { font-size: .8rem; }
    .dtr p { font-size: .7rem; }
}
