@font-face {
    font-family: 'Calibri normal';
    src: url('font/calibri-font-family/calibri-regular.ttf') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri Bold';
    src: url('font/calibri-font-family/calibri-bold.ttf') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =============================================
       CSS VARIABLES
    ============================================= */

:root {
    --red: #852A35;
    --red-dark: #852A35;
    --red-light: #ff6b6b;
    --red-bg: #fff5f5;
    --red-bg2: #ffe8e8;
    --ink: #111111;
    --black: #000000;
    --near-black: #111111;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #ebebeb;
    --gray-400: #333333;
    --gray-600: #333333;
    --gray-800: #333333;

    --grad-red: linear-gradient(135deg, #852A35 0%, #852A35 100%);
    --grad-hero: linear-gradient(140deg, #fff5f5 0%, #ffe8e8 50%, #fff8f8 100%);
    --grad-light: linear-gradient(140deg, #fff8f8 0%, #ffe8e8 100%);

    --shadow-xs: 0 1px 8px rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 28px rgba(0, 0, 0, 0.11);
    --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.14);
    --shadow-red: 0 6px 28px rgba(255, 49, 49, 0.28);

    --radius-sm: 0.5rem;
    --radius: 1.1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --trans: all 0.3s var(--ease);

    --grad-hero: linear-gradient(135deg, #ffffff 0%, #ffffff 55%, #ffe8e8 100%);
    --grad-light: linear-gradient(135deg, #fff8f8 0%, #ffe8e8 100%);
    --shadow-xs: 0 1px 4px rgba(0, 0, 0, .06);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, .08);
    --shadow-md: 0 6px 28px rgba(0, 0, 0, .11);
    --shadow-lg: 0 16px 56px rgba(0, 0, 0, .14);
    --shadow-red: 0 6px 28px rgba(255, 49, 49, .28);
    --r-sm: .5rem;
    --r: 1rem;
    --r-lg: 1.5rem;
    --r-xl: 2rem;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --tr: all .3s var(--ease);
}

/* =============================================
       RESET & BASE
    ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

@media (max-width: 1350px) {
    html {
        font-size: 86%;
    }

    /* .phone-device {
    width: 236px !important;
    height: 461px !important;
  } */
}

@media (max-width: 768px) {
    .btn-icon{
        height:20px;
    }
    .action-btn{
        height:calc(87 * var(--rc)) !important;
    }
    .cta-box{
            grid-template-columns: 1fr !important;
    }
    html {
        font-size: 100%;
        overflow-x: hidden !important;
    }

    .hero {
        padding-top: 6rem !important;
        padding-bottom: 3rem;
    }

    body {
        overflow-x: hidden !important;
    }

    .phone-scene {
        justify-content: center;
    }

    .banner-photo {
        padding: 0 1rem;
        display: block;
    }

    .phone-device {
        display: none;
    }

    .left-text {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

body {
    font-family: 'Calibri normal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* =============================================
       TYPOGRAPHY
    ============================================= */
h1 {
    font-family: "Open Sans", sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
}

h2 {
    font-family: "Open Sans", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
}

h3 {
    font-family: "Open Sans", sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.35;
}

h4 {
    font-family: "Open Sans", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
}

p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

li {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
}

.text-grad {
    background: #852A35;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white {
    color: var(--white) !important;
}

.text-red {
    color: var(--red) !important;
}

.text-center {
    text-align: center;
}

/* =============================================
       LAYOUT
    ============================================= */
.container {
    width: 90%;
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
}

.section-lg {
    padding: 6.5rem 0;
}

/* =============================================
       BUTTONS
    ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 2rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid transparent;
    transition: var(--trans);
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-red);
    color: var(--white);
    /* box-shadow: var(--shadow-red); */
}

.btn-primary:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 10px 36px rgba(255, 49, 49, .42); */
}

.btn-outline {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}

.btn-outline:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--red);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: #222;
    transform: translateY(-2px);
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.3rem 1.4rem;
    border-radius: var(--radius-sm);
    /* background: var(--black); */
    color: #333;
    font-family: inherit;
    font-size: 0.85rem;
    border: 1px solid #333;
    transition: var(--trans);
}

.btn-store:hover {
    /* background: #1a1a1a; */
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-store .store-icon {
    font-size: 1.2rem;
}

.btn-store .store-sub {
    font-size: 0.6rem;
    opacity: 0.65;
    display: block;
}

.btn-store .store-name {
    font-size: 1.1rem;
    font-weight: 700;
}

/* =============================================
       SECTION LABEL / TAG
    ============================================= */
.sec-tag {
      display: inline-flex;
    align-items: center;
    gap: .5rem;
    /* background: #e0e3ec; */
    border: 1px solid var(--red);
    border-radius: 2rem;
    padding: .35rem 1.1rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1.4rem;
}

.sec-tag::before {
    /* content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: var(--red); */
}

/* =============================================
       REVEAL ANIMATION
    ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.on,
.reveal-left.on,
.reveal-right.on {
    opacity: 1;
    /*text-align:center;*/
    transform: none;
}

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

.d4 {
    transition-delay: .4s;
}

/* =============================================
       NAVBAR
    ============================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: #181A19;
    backdrop-filter: blur(14px);
    /* border-bottom: 1px solid #717171; */
    transition: var(--trans);
}

#navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.4rem;
    width: 90%;
    /* max-width:1240px;  */
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -.01em;
}

.nav-logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    transition: var(--trans);
    position: relative;
    padding: .25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--trans);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.nav-actions a {
    padding: .5rem 1.2rem;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: .4rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--trans);
}

/* Mobile nav overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
}

.mobile-menu.open {
    display: flex;
}

.mob-close {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--black);
}

.mobile-menu a {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--black);
    transition: var(--trans);
}

.mobile-menu a:hover {
    color: var(--red);
}

@media (max-width:900px) {
    .phone-device {
        display: none;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* =============================================
       HERO  (Section 1)
    ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /*background: var(--grad-hero); */
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

/*.hero::before {*/
/*  content:''; position:absolute; top:-15%; right:-8%; width:55vw; height:55vw;*/
/*  max-width:680px;*/
/*  background:radial-gradient(circle, rgba(255,49,49,.07) 0%, transparent 70%);*/
/*  border-radius:50%; pointer-events:none;*/
/*}*/
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    z-index: 1;
    /* max-width:1240px; */
    margin: 0 auto;
}

/* live badge */
.live-badge {

    /* display: inline-flex; */
    /* align-items: center; */
    /* gap: .5rem;
    background: rgba(255, 49, 49, .09);
    border: 1px solid rgba(255, 49, 49, .2);
    border-radius: 2rem;
    padding: .35rem 1.1rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1.4rem; */
}

.live-dot {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 2s infinite;
}

/* Hover */
.card-hover-m{
    position:relative;
    overflow:hidden;
    transition:
        transform .6s cubic-bezier(.16,1,.3,1),
        box-shadow .6s cubic-bezier(.16,1,.3,1);
    will-change:transform;
}

.card-hover-m::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );
    transition:left .8s ease;
    pointer-events:none;
}

.card-hover-m:hover{
    /* transform: translateY(0) scale(1.03); */
    box-shadow:
        0 15px 35px rgba(0,0,0,.08),
        0 35px 80px rgba(0,0,0,.15);
}

.card-hover-m:hover::before{
    left:150%;
}

.prob-card-anim {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay);
}

.prob-card-anim.animate {
    opacity: 1;
    transform: translateY(0);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.hero-title {
    margin-bottom: 1rem;
}

/* rotating taglines */
.tagline-wrap {
    max-width: 255px;
    /* width:42%; */
    position: relative;
    height: 2rem;
    /* overflow: hidden; */
    /* margin-bottom: 1.4rem; */
     gap: .5rem;
    /* background: rgba(255, 49, 49, .09); */
    border: 1px solid #852A35;
    border-radius: 2rem;
    padding: .35rem 1.1rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1.4rem;
}

.floating-image {
    animation: floatRotate 6s ease-in-out infinite;
}

@keyframes floatRotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

.tagline-item {
    position: absolute;
    /* width: 100%; */
    font-size: 0.8rem;
    font-weight: 600;
     color: var(--red);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.tagline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.tagline-item.exit {
    opacity: 0;
    transform: translateY(-16px);
}

.hero-desc {
    font-size: .98rem;
    color: var(--gray-600);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    margin-bottom: 0.8rem;
}

.hero-stores {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1rem;
    /* border-top: 1px solid rgba(0, 0, 0, .07); */
}

.stat-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-num span {
    color: #fff;
}

.stat-label {
    font-size: 15px;
    color: #fff;
    margin-top: .2rem;
}

/* Phone mockup */
.phone-scene {
    position: relative;
    display: flex;
    padding:1.5rem;
}

.phone-device {
    width: 13rem;
    left: -11rem;
    bottom: -1.7rem;
    height: 25.1rem;
    background: var(--near-black);
    border-radius: var(--radius-lg);
    position: absolute;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .32), 0 0 0 2px rgba(255, 255, 255, .08);
    flex-shrink: 0;
}

.phone-screen {
    position: absolute;
    inset: 8px;
    border-radius: 2rem;
    overflow: hidden;
    background: linear-gradient(160deg, #10101e 0%, #1a1a2e 60%, #0f1a30 100%);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 22px;
    background: var(--near-black);
    border-radius: 0 0 1.1rem 1.1rem;
    z-index: 10;
}

.phone-ui {
    padding: 2rem 1.1rem 1.1rem;
    color: #fff;
}

.p-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem;
}

.p-app-name {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    opacity: .55;
}

.p-badge {
    background: var(--red);
    border-radius: 2rem;
    padding: .18rem .55rem;
    font-size: .58rem;
    font-weight: 700;
}

.p-scan-zone {
    border: 1.5px dashed rgba(255, 49, 49, .55);
    border-radius: .75rem;
    padding: .85rem;
    text-align: center;
    margin-bottom: .75rem;
    background: rgba(255, 255, 255, .03);
}

.p-scan-zone i {
    font-size: 1.5rem;
    color: var(--red);
    opacity: .7;
    display: block;
    margin-bottom: .3rem;
}

.p-scan-label {
    font-size: .58rem;
    opacity: .5;
}

.p-scan-line {
    width: 75%;
    height: 1.5px;
    background: var(--red);
    margin: .4rem auto 0;
    opacity: .6;
    animation: scanline 2s ease-in-out infinite;
}

@keyframes scanline {

    0%,
    100% {
        transform: translateY(0);
        opacity: .7;
    }

    50% {
        transform: translateY(8px);
        opacity: .3;
    }
}

.p-items {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.p-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border-radius: .4rem;
    padding: .42rem .7rem;
}

.p-item-name {
    font-size: .6rem;
    opacity: .75;
}

.p-item-qty {
    font-size: .68rem;
    font-weight: 700;
    color: var(--red);
}

.p-item.warn {
    border: 1px solid rgba(255, 49, 49, .35);
}

.p-item.warn .p-item-qty {
    color: #f59e0b;
}

.p-progress {
    margin-top: .75rem;
    background: rgba(255, 49, 49, .12);
    border-radius: .4rem;
    padding: .5rem .7rem;
    text-align: center;
}

.p-prog-label {
    font-size: .57rem;
    opacity: .5;
}

.p-prog-val {
    font-size: .88rem;
    font-weight: 700;
    color: var(--red);
}

.phone-scene img{
    border-radius: 8px;
}

/* Floating chips around phone */
.chip {
    z-index: 100;
    position: absolute;
    background: #fff;
    border-radius: 8px;
    padding: .6rem .9rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .55rem;
    animation: floatY 4s ease-in-out infinite;
}

.chip i {
    font-size: 1.1rem;
    color: var(--red);
    flex-shrink: 0;
}

.chip-title {
    font-size: .68rem;
    font-weight: 700;
    color: var(--black);
}

.chip-sub {
    font-size: .6rem;
    color: var(--gray-400);
}

.chip-1 {
    top: -9px;
    left: 101px;
    animation-delay: 0s;
}

.chip-2 {
    bottom: 47px;
    left: 196px;
    animation-delay: 1.8s;
}

.chip-3 {
   bottom:0;
    left: 183px;
    animation-delay: 3.2s;
}
.chip-3 img{
    height: 51px;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width:900px) {
    .banner-photo{
            height: auto !important;
    }
    .hero{
        display: block !important;
    }
    .hero-grid {
      display: flex !important;
      flex-direction: column-reverse;
              align-items: unset !important;
    }

    .hero-desc,
    .hero-btns,
    .hero-stores,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .phone-scene {
        order: -1;
    }

    .chip-1,
    .chip-3 {
        display: none;
    }

    /* .chip-2 { right:0; } */
}

/* =============================================
       TRUST MARQUEE
    ============================================= */
.trust-strip {
    background: var(--black);
    padding: 1.1rem 0;
    overflow: hidden;
}

.trust-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.trust-track:hover {
    animation-play-state: paused;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
    font-size: .82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
}

.trust-item i {
    color: var(--red);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =============================================
       SECTION 2: STOP OUTSOURCING YOUR ACCURACY
    ============================================= */
.stop-section {
    /* background: #163e64; */
    position: relative;
    overflow: hidden;
}

/* .stop-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 40%, rgba(255, 49, 49, .1) 0%, transparent 60%);
    pointer-events: none;
} */

.stop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.stop-text .sec-tag {
    /* color: var(--red-light); */
}

.stop-text h2 {
    color: #000;
    margin-bottom: 1.4rem;
}

.stop-text p {
    color: #333;
    margin-bottom: 1.2rem;
    line-height: 1.85;
}

.stop-text p strong {
    color: var(--white);
}

.stop-checks {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin: 1.6rem 0 2rem;
}

.stop-check {
    display: flex;
    align-items: baseline;
    gap: .75rem;
    color: #333;
    font-size: .95rem;
}

.stop-check i {
    color:#852A35;
    margin-top: .15rem;
    flex-shrink: 0;
}

.stop-check strong {
    color: var(--white);
}

/* Dashboard visual */
.dashboard-card {
    background: #161616;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .07);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .5);
    position: relative;
}
.bgf1 p{
    color:#fff;
}
.wbotext{
    flex:1;
}
.bgf1 .icon{
    width:3rem;
    height:3rem;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #fff;
    border-radius:50%;
}
.wbo{
    background-color: #fff;
    padding: 0.5rem;
    margin-top: 1.4rem;
    border-radius: 0.5rem;
}
.bgf1{
    display: flex;
    border-radius: 0.5rem;
    align-items: baseline;
    gap: .75rem;
     background-color: #163e64;
    padding: 1.5rem;
    margin: 1.4rem 0;
    color:#fff !important;
}
.d1bg{
    background-color: #163e64;
    padding: 0.5rem;
    color: #fff !important;  
    border-radius:0.5rem; 
    /* margin-bottom: 1.4rem;  */
}
.db-topbar {
    background: #1e1e1e;
    padding: .9rem 1.4rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.db-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.db-url {
    font-size: .65rem;
    color: rgba(255, 255, 255, .3);
    margin-left: auto;
}

.db-body {
    padding: 1.4rem;
}

.db-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .9rem;
    margin-bottom: 1.4rem;
}

.db-stat {
    background: rgba(255, 255, 255, .04);
    border-radius: var(--radius-sm);
    padding: .9rem .75rem;
    text-align: center;
}

.db-stat-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
}

.db-stat-label {
    font-size: .6rem;
    color: rgba(255, 255, 255, .4);
    margin-top: .2rem;
}

.db-bars {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.db-row {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.db-label {
    font-size: .62rem;
    color: rgba(255, 255, 255, .4);
    width: 65px;
    flex-shrink: 0;
}

.db-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .07);
    border-radius: 2rem;
    overflow: hidden;
}

.db-fill {
    height: 100%;
    background: var(--grad-red);
    border-radius: 2rem;
}

.db-pct {
    font-size: .62rem;
    color: rgba(255, 255, 255, .4);
    width: 28px;
    text-align: right;
}

/* floating % badge */
.db-badge {
    position: absolute;
    top: -1.2rem;
    right: -1.2rem;
    background: var(--red);
    color: #fff;
    border-radius: var(--radius);
    padding: .9rem 1.3rem;
    text-align: center;
    box-shadow: 0 10px 28px rgba(255, 49, 49, .42);
}

.db-badge-num {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
}

.db-badge-label {
    font-size: .68rem;
    opacity: .85;
}

@media (max-width:900px) {
    .stop-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
       SECTION 3: THE POWER OF PROFESSIONAL AUDITS
    ============================================= */
/*.power-section { background:var(--grad-hero); }*/
.power-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/*.power-sticky  { position:sticky; top:6rem; }*/
.power-sticky h2 {
    margin-bottom: 1.2rem;
}

.power-sticky p {
    /* margin-bottom: 1.5rem; */
}

.power-checks {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 2rem;
}

.p-check {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: 1.1rem;
    color: #333;
}

.p-check i {
    color: var(--red);
    flex-shrink: 0;
}

.p-check strong {
    color: var(--black);
}

/* Feature cards (scroll) */
.power-cards {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.feat-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e0e3ec;
    transition: var(--trans);
}

.feat-card:hover {
    /* transform: translateX(6px); */
    /* box-shadow: var(--shadow-lg); */
}

.feat-card-top {
    padding: 2rem 2rem 1.1rem;
}

.feat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #852A35;
    border:1px solid #e0e3ec;
    margin-bottom: 1.1rem;
}

.feat-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: .4rem;
}

.feat-card-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* .feat-card-bottom {
      min-height:90px; position:relative; overflow:hidden;
      background:linear-gradient(to top, rgba(255,49,49,.09), transparent);
      display:flex; align-items:flex-end; padding:1.1rem 1.5rem;
    } */
.feat-card-bg-icon {
    height: 200px;
}

.feat-card-bg-icon img {
    width: 100%;
    height: 100%;
}

@media (max-width:900px) {
    .power-layout {
        grid-template-columns: 1fr;
    }

    .power-sticky {
        position: static;
    }
}

/* =============================================
       SECTION 4: BUILT FOR SPEED
    ============================================= */
.speed-section {
    background: var(--white);
}

.speed-header {
    margin-bottom: 3.5rem;
}

.speed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.speed-card {
    /*background: #fff;*/
    background: var(--grad-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 2rem;
    border: 1px solid rgba(255, 49, 49, .09);
    transition: var(--trans);
    position: relative;
    overflow: hidden;
}

.speed-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.speed-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 49, 49, .06), transparent);
    pointer-events: none;
}

.speed-card-icon img {
    border-radius: 100px;
    filter: invert(1);
    mix-blend-mode: multiply;
}

.speed-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-sm);
    /*background:var(--grad-red);*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.speed-card h3 {
    margin-bottom: .5rem;
}

.speed-card p {
    font-size: 1.1rem;
}

@media (max-width:768px) {
    .tagline-wrap{
        width:73% !important;
    }
    .speed-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
       SECTION 5: ACCURATE STOCK VISIBILITY AT SCALE
    ============================================= */
.visibility-section {
    background: #fff;
}

.visibility-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.visibility-sticky {
    position: sticky;
    top: 6rem;
}

.acc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
}

.acc-item {
    border-bottom: 1px solid var(--gray-200);
    cursor: pointer;
}

.acc-head {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1.4rem 0;
    user-select: none;
}

.acc-ico {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    font-size: 1.1rem;
    transition: var(--trans);
}

.acc-item.open .acc-ico {
    background: var(--red);
    color: #fff;
}

.acc-title {
    font-size: .98rem;
    font-weight: 700;
    color: var(--black);
}

.acc-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s var(--ease);
}

.acc-item.open .acc-body {
    max-height: 220px;
}

.acc-body p {
    font-size: 1.1rem;
    color: #333;
    padding-bottom: 1.4rem;
    line-height: 1.75;
}

/* Right: image panel */
.vis-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 40rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vis-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.vis-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 49, 49, .18), rgba(255, 255, 255, 0));
}

.vis-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
}

.vis-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.vis-card {
    background: rgba(255, 255, 255, .9);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(6px);
    text-align: center;
}

.vis-card-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--red);
}

.vis-card-label {
    font-size: 1.1rem;
    color: var(--gray-600);
}

@media (max-width:900px) {
    .visibility-layout {
        grid-template-columns: 1fr;
    }

    .visibility-sticky {
        position: static;
    }
}

/* =============================================
       SECTION 6: FASTER COUNTS — ROI
    ============================================= */
.roi-section {
    background: var(--near-black);
    position: relative;
    overflow: hidden;
}

/* .roi-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 49, 49, .1) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 49, 49, .06) 0%, transparent 55%);
    pointer-events: none;
} */

.roi-inner {
    position: relative;
    z-index: 1;
}

.roi-header {
    text-align: center;
    margin-bottom: 3rem;
}

.roi-header h2 {
    color: var(--white);
}

.roi-header p {
    color: rgba(255, 255, 255, .55);
}

.roi-grid1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.numns{
    flex:2;
}

.roi-card1 {
    overflow: hidden;
    /* text-align: center; */
    /* padding: 2.5rem 1.5rem; */
    background: rgba(255, 255, 255, .04);
    /* border: 1px solid #e0e3ec; */
    border-radius: 0.5rem;
    /* transition: var(--trans); */
     box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.roi-card1:hover {
    /* background: #e0e3ec;
    border-color: #e0e3ec; */

    /* transform: translateY(-4px); */
}

.uli{
    padding: 1rem 1rem;
    /* border-top:1px solid #e0e3ec; */
}
.wf-comp-container{
transition:
        transform .6s cubic-bezier(.16,1,.3,1),
        box-shadow .6s cubic-bezier(.16,1,.3,1);
}


/* Hover */

.roi-icon>div {
   display: flex;
   flex:0.5;
    /* font-size: 1.3rem; */
    border: 1px solid #e0e3ec;
    width: 3rem;
    margin: 0 auto;
    border-radius: 100%;
    height: 3rem;
    color: #fff;
    margin-bottom: .75rem;
    align-items: center;
    justify-content: center;
}

.roi-num {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: .5rem;
}

.roi-lbl {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.5;
}

@media (max-width:900px) {
    .roi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
       SECTION 7: YOUR BUSINESS, YOUR SCHEDULE
    ============================================= */
.control-section {
    background: var(--white);
}

.control-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.control-text h2 {
    margin-bottom: 1.2rem;
}

.control-text>p {
    margin-bottom: 1.5rem;
}

.control-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2rem;
}

.c-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.1rem;
    color: var(--gray-600);
}

.c-item i {
    color: var(--red);
}

.control-tagline {
    font-size: .92rem;
    font-style: italic;
    color: var(--gray-400);
    margin-bottom: 1.75rem;
}

.control-tagline strong {
    color: var(--black);
    font-style: normal;
}

/* Dashboard image area */
.control-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.control-visual img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    display: block;
}

.ctrl-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: .75rem;
    align-items: center;
}

.ctrl-badge-icon {
    font-size: 1.5rem;
    color: var(--red);
}

.ctrl-badge-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
}

.ctrl-badge-lbl {
    font-size: 1.1rem;
    color: var(--gray-400);
}

@media (max-width:900px) {
    .control-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
       SECTION 8: THE PROBLEM WE SOLVE
    ============================================= */
.problem-section {
    background: #f2f4f7;
}

.problem-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.prob-card {
    background: #fff;
    border: 1px solid #e0e3ec;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* TOP BLUE BOX */
.prob-card-top {
    background: #163e64;
    color: #fff;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-height: 110px;
}
.bot-icon svg,
.prob-card-icon svg{
    width:1.3rem;
    display: block;
    height:1.3rem;
}
.bot-icon svg{
stroke: #852A35;
}
.prob-card-icon{
    border:1px solid #fff !important;
    border-radius:50%;

     /* background-color: #fff; */
}
.bot-icon{
   border:1px solid #852A35 !important;
    border-radius:50%; 
}
.bot-icon,
.prob-card-top .prob-card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    flex-shrink: 0;
    margin: 0;
    align-items: center;
    border: none;
    color: #fff;
    background: transparent;
    justify-content: center;
}

.prob-card-top h3 {
    margin: 0;
    color: #fff;
    /* font-size: 1.75rem; */
    /* line-height: 1.3; */
}

/* CONTENT */
.prob-card-body {
    padding: 1.8rem;
    flex: 1;
}

.prob-card-body p {
    margin: 0;
    /* color: #666;
    line-height: 1.7; */
}

/* BOTTOM BOX */
.prob-card-bottom {
    border-top: 2px solid #e0e3ec;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #852A35;
    font-weight: 700;
    /* text-align: center;
    justify-content: center; */
}

/* .prob-card-bottom svg {
    width: 36px;
    height: 36px;
    stroke: #852A35;
    flex-shrink: 0;
} */

.prob-card-bottom span {
    /* font-size: 1.3rem;
    line-height: 1.4; */
}

@media (max-width:768px) {

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .prob-card-top {
        min-height: auto;
        padding: 1.25rem;
    }

    .prob-card-top h3 {
        font-size: 1.4rem;
    }

    .prob-card-bottom {
        padding: 1.25rem;
    }

    .prob-card-bottom span {
        font-size: 1.1rem;
    }
}

/* =============================================
       SECTION 9: PRODUCT SUITE SNAPSHOT
    ============================================= */
.suite-section {
    background: var(--white);
}

.suite-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.suite-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.suite-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .07);
    transition: var(--trans);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.suite-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.suite-top {
    padding: 2rem 1.75rem 1.5rem;
    flex: 1;
    background: var(--grad-light);
}

.suite-plan-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(255, 49, 49, .1);
    border-radius: 2rem;
    padding: .22rem .75rem;
    margin-bottom: 1.1rem;
}

.suite-plan-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: .4rem;
}

.suite-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

.suite-target {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-400);
}

.suite-target span {
    color: var(--black);
}

.suite-bottom {
    padding: 1.25rem 1.75rem;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.suite-learn {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: var(--trans);
}

.suite-learn:hover {
    gap: .7rem;
}

@media (max-width:1024px) {
    .suite-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .suite-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
       SECTION 10: HOW IT WORKS
    ============================================= */
.hiw-section {
    background: #f7f7f7;
}

.hiw-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hiw-steps {
    position: relative;
}

.hiw-connector {
    position: absolute;
    top: 3.8rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), var(--red), transparent);
    opacity: .18;
    pointer-events: none;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.hiw-step {
    text-align: center;
    padding: 1.1rem;
}

.hiw-num-outer {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.hiw-num {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--grad-red);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-step h3 {
    margin-bottom: .5rem;
}

.hiw-step p {
    font-size: 1.1rem;
}

.hiw-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width:768px) {
    .testi-swiper {
        padding: 0.5rem 0 0rem !important;
    }

    .floating-list {
        align-items: start !important;
        flex-wrap: wrap !important;
        flex-direction: column;
        margin-top: 3.1rem !important;
    }

    .vis-panel {
        min-height: 25rem !important;
    }

    .roi-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .hiw-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .hiw-connector {
        display: none;
    }
}

/* =============================================
       SECTION 11: WHO IT'S FOR
    ============================================= */
.who-section {
    background: var(--white);
}

.who-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.who-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0, 0, 0, .06);
    transition: var(--trans);
    display: flex;
    flex-direction: column;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.who-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.who-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}

.who-card:hover .who-img img {
    transform: scale(1.05);
}

.who-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .45), transparent);
}

.who-tag {
    position: absolute;
    bottom: .9rem;
    left: 1.1rem;
    background: var(--red);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .07em;
    padding: .2rem .65rem;
    border-radius: 2rem;
    text-transform: uppercase;
}

.who-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.who-body h3 {
    margin-bottom: .5rem;
}

.who-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.who-link {
    font-size: .82rem;
    font-weight: 700;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: var(--trans);
}

.who-link:hover {
    gap: .7rem;
}

@media (max-width:768px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
       SECTION 12: SOCIAL PROOF / TRUST
    ============================================= */
.trust-section {
    background: #f7f7f7;
}

.trust-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.ts-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-xs);
}

.ts-num {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.ts-label {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-top: .4rem;
}

.testi-swiper {
    padding: 0.5rem 0 3rem;
}

.testi-slide {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0, 0, 0, .05);
}

.testi-stars {
    color: #f59e0b;
    font-size: .85rem;
    margin-bottom: .75rem;
}

.testi-quote {
    font-size: 1.4rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: .75rem;
}

.testi-text {
    height: 11rem;
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.4rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.testi-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--grad-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testi-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--black);
}

.testi-role {
    font-size: .78rem;
    color: var(--gray-400);
}

@media (max-width:768px) {
    .trust-stats {
        grid-template-columns: 1fr;
    }
}

/* =============================================
       SECTION 13: PRICING TEASER
    ============================================= */
.pricing-section {
    background: var(--white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.pricing-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.price-card {
    background: #fff;
    border-radius: 0.5rem;
    padding: 2.5rem 1.75rem;
    border: 1px solid #e0e3ec;
    transition: var(--trans);
    position: relative;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.price-card.popular {
    background: #163e64;
    /* border-color: var(--red); */
    transform: scale(1.04);
    /* box-shadow: 0 18px 52px rgba(255, 49, 49, .28); */
}

.price-card.popular:hover {
    transform: scale(1.04) translateY(-4px);
}

.pop-badge {
    position: absolute;
    top: -1.1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-red);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: .28rem 1.1rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.price-plan {
    font-size: .72rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .4rem;
}

.price-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: .4rem;
}

.price-card.popular .price-name {
    color: var(--white);
}

.price-short {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

.price-card.popular .price-short {
    color: #fff;
}
.price-card .reveal.d2 .price-sub,
.price-card .reveal.d2 i {
    color:#fff;
}

.price-from {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--black);
}

.price-card.popular .price-from {
    color: var(--white);
}

.price-sub {
    font-size: .9rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.price-card.popular .price-sub {
    color: rgba(255, 255, 255, .45);
}

.price-feats {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.75rem;
}

.pf {
    display: flex;
    align-items: baseline;
    gap: .55rem;
    font-size: 1.1rem;
    color: var(--gray-600);
}

.price-card.popular .pf {
    color: #fff;
}

.pf i {
    color: #852A35;
    font-size: .75rem;
    margin-top: .15rem;
    flex-shrink: 0;
}

@media (max-width:1024px) {
    .pricing-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card.popular {
        transform: none;
    }
}

@media (max-width:600px) {
    .pricing-strip {
        grid-template-columns: 1fr;
    }
}

/* =============================================
       CTA SECTION  (Section 14)
       — red box, static inclined lines top-right
    ============================================= */
.cta-footer-wrap {
    background: #f2f4f7;
    padding: 3rem 0 0;
}

.cta-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--red);
    border-radius: var(--radius-xl);
    /* padding: 2rem 2.5rem; */
    margin: 0 auto;
    width: 90%;
}

/* static inclined lines — top right */
.cta-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    pointer-events: none;
}

.cta-lines svg {
    width: 100%;
    height: 100%;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    /* background: rgba(255, 255, 255, .18); */
    color: #fff;
    border-radius: 2rem;
    padding: .3rem 1.1rem;
    font-size: .75rem;
    border: 1px solid #fff;
    font-weight: 700;
    margin-bottom: 1.4rem;
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 1.2rem;
}

.cta-box p {
    color: rgba(255, 255, 255, .8);
    margin-bottom: 1.1rem;
    font-size: 1.1rem;
}



.cta-stores {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 1.1rem;
}

.cta-tagline {
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
    font-style: italic;
}

@media (max-width:768px) {
    .ct-img{
        height:15rem;
    }
    .cta-box {
        /* padding: 3rem 2rem; */
    }
}

/* =============================================
       FOOTER
    ============================================= */
footer {
    background: #f2f4f7;
    padding: 0 0 2rem;
}

.footer-top {
    display: grid;
    /* grid-template-columns: 2fr 1fr 1fr 1fr; */
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-brand .f-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.1rem;
}

.footer-brand .f-logo span {
    color: var(--red);
}

.footer-brand p {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.f-social {
    display: flex;
    gap: .65rem;
}

.f-social a {
    width: 2.4rem;
    height: 2.4rem;
    border-radius:100%;
  
    color: #852A35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    border:1px solid #852A35;
    transition: var(--trans);
}

.f-social a:hover {
    background: var(--red);
    color: #fff;
}

.f-col h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.15rem;
    letter-spacing: .04em;
}

.f-col ul li {
    margin-bottom: .55rem;
}

.f-col ul li a {
    font-size: 1.1rem;
    color: #000;
    transition: var(--trans);
}

.f-col ul li a:hover {
    color: var(--red);
}

.footer-bottom {
    /* border-top: 1px solid rgba(255, 255, 255, .06); */
    /* padding-top: 1.75rem; */
    display: flex;
    background-color: #163e64;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.1rem;
}

.footer-bottom p {
    font-size: 1.1rem;
    padding:1rem 0;
    color: #fff;
}

.footer-bottom span {
    color: var(--red);
}

@media (max-width:900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* swiper bullets */
.swiper-pagination-bullet {
    background: var(--red) !important;
}

.swiper-pagination-bullet-active {
    width: 20px !important;
    border-radius: 2rem !important;
}

.nav-logo img {
    height: 4rem;
}

.reveal-right.on img {
    border-radius: 1.5rem;
}

.floating-list li i {
    color: var(--red);
}

.floating-list li {
    line-height: 1.5;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.floating-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 2.1rem;
}

.banner-photo {
    /* position: absolute; */
    /* width: 50rem; */
    /* z-index: -1;
    right: -14px;
    top: 5%;
    object-fit: contain; */
}

.left-text {
    padding-left: 4rem;
}

.mt-4 {
    margin-top: 4rem;
}








/* ═══════════════════════════════════════════════
     BANNER / HERO
  ═══════════════════════════════════════════════ */
.about-banner {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

/* Gradient blob top-right */
.about-banner::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse at 70% 30%, rgba(255, 49, 49, .09) 0%, rgba(255, 200, 200, .06) 40%, transparent 70%);
    pointer-events: none;
}

.about-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 49, 49, .04) 50%, rgba(255, 49, 49, .08) 100%);
    pointer-events: none;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 49, 49, .08);
    border: 1px solid rgba(255, 49, 49, .18);
    border-radius: 2rem;
    padding: .35rem 1rem;
    font-size: .75rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1.5rem;
}

.banner-title {
    margin-bottom: 1.4rem;
}

.banner-desc {
    font-size: 1.05rem;
    max-width: 500px;
    margin-bottom: 2.25rem;
    line-height: 1.85;
}

.banner-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--gray-200);
}

.bstat-num {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.bstat-num span {
    color: var(--red);
}

.bstat-lbl {
    font-size: .75rem;
    color: var(--gray-400);
    margin-top: .2rem;
}

/* Right side: image + chips */
.banner-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-img-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 520px;
}

.banner-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.banner-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 49, 49, .05) 0%, transparent 60%);
}

/* Floating white chips */
.f-chip {
    position: absolute;
    background: var(--white);
    border-radius: var(--r);
    padding: .65rem 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .55rem;
    animation: floatY 4s ease-in-out infinite;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, .05);
}

.f-chip i {
    font-size: 1.05rem;
    color: var(--red);
    flex-shrink: 0;
}

.f-chip-title {
    font-size: .68rem;
    font-weight: 700;
    color: var(--black);
}

.f-chip-sub {
    font-size: .6rem;
    color: var(--gray-400);
}

.fc-1 {
    top: 8%;
    left: -10%;
    animation-delay: 0s;
}

.fc-2 {
    bottom: 20%;
    right: -8%;
    animation-delay: 1.6s;
}

.fc-3 {
    top: 45%;
    right: -12%;
    animation-delay: 3s;
}

.fc-4 {
    bottom: 6%;
    left: 2%;
    animation-delay: 2.2s;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media(max-width:900px) {
    .banner-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-desc {
        margin: 0 auto 2rem;
    }

    .banner-stats {
        justify-content: center;
    }

    .banner-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .fc-1,
    .fc-3 {
        display: none;
    }
}

/* ═══════════════════════════════════════════════
     WHO WE ARE
  ═══════════════════════════════════════════════ */
.who-are-section {
    background: var(--white);
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.who-text h2 {
    margin-bottom: 1.25rem;
}

.who-text p {
    margin-bottom: 1.25rem;
}

.who-team-tag {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--r);
    padding: 1rem 1.25rem;
    margin-top: .5rem;
}

.who-team-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--grad-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.who-team-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--black);
}

.who-team-role {
    font-size: .75rem;
    color: var(--gray-400);
}

/* Right: big feature image with overlay cards */
.who-visual {
    position: relative;
}

.who-img-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.who-img-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.who-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .35), transparent);
}

.who-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    border-radius: var(--r);
    padding: .9rem 1.2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: .75rem;
}

.wib-icon {
    font-size: 1.4rem;
    color: var(--red);
}

.wib-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
}

.wib-lbl {
    font-size: .68rem;
    color: var(--gray-400);
}

@media(max-width:900px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
     OUR MISSION  — 5-box bento grid
  ═══════════════════════════════════════════════ */
.mission-section {
    background: var(--gray-50);
}

.mission-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

/* left col: 2 boxes stacked */
.bento-left {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
    grid-column: 1/3;
}

/* center: big box */
.bento-center {
    grid-column: 3/4;
}

/* right col: 2 boxes stacked */
.bento-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
    grid-column: 4/6;
}

.b-box {
    border-radius: var(--r-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--tr);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--white);
}

.b-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.b-box-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--r-sm);
    background: var(--grad-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}

.b-box h4 {
    margin-bottom: .5rem;
}

.b-box p {
    font-size: .85rem;
    line-height: 1.65;
}

/* Center box: image at bottom, text at top */
.b-center-box {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    background: var(--near-black, #111);
    transition: var(--tr);
    height: 100%;
}

.b-center-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.b-center-text {
    padding: 2rem 2rem 1.5rem;
    flex: 1;
}

.b-center-text .sec-tag {
    color: var(--red-light, #ff6b6b);
}

.b-center-text h3 {
    color: var(--white);
    margin-bottom: .75rem;
}

.b-center-text p {
    color: rgba(255, 255, 255, .6);
    font-size: .88rem;
}

.b-center-img {
    height: 160px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.b-center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.b-center-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17, 17, 17, .6), transparent);
}

/* Left col small boxes */
.b-box.accent {
    background: var(--near-black, #111);
    border-color: rgba(255, 255, 255, .08);
}

.b-box.accent h4 {
    color: var(--white);
}

.b-box.accent p {
    color: rgba(255, 255, 255, .55);
}

.b-box.accent .b-box-icon {
    background: rgba(255, 49, 49, .2);
}

.b-box.accent .b-box-icon i {
    color: var(--red);
}

@media(max-width:1100px) {
    .bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .bento-left {
        grid-column: 1/2;
        grid-template-rows: auto;
    }

    .bento-center {
        grid-column: 2/3;
    }

    .bento-right {
        grid-column: 1/3;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .bento {
        grid-template-columns: 1fr;
    }

    .bento-left,
    .bento-center,
    .bento-right {
        grid-column: auto;
    }

    .bento-right {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
     OUR STORY  — Full-width Swiper
  ═══════════════════════════════════════════════ */
.story-section {
    background: var(--white);
    overflow: hidden;
    padding: 5rem 0 0;
}

.story-header {
    text-align: center;
    margin-bottom: 3.5rem;
    width: 90%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.story-swiper {
    width: 100% !important;
    padding: 0 0 4rem !important;
}

.story-slide {
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    height: 480px;
    display: flex;
    align-items: flex-end;
}

.story-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .1) 60%, transparent 100%);
}

.story-slide-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    width: 100%;
}

.story-slide-num {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.story-slide h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: .6rem;
}

.story-slide p {
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
    line-height: 1.7;
    max-width: 560px;
}

/* Roadmap teaser at end */
.story-roadmap {
    background: var(--gray-50);
    padding: 4rem 0;
    border-top: 1px solid var(--gray-200);
}

.roadmap-inner {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.roadmap-left h3 {
    margin-bottom: .75rem;
}

.roadmap-left p {
    font-size: .9rem;
}

.roadmap-items {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.rmap-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r);
    padding: 1rem 1.25rem;
    transition: var(--tr);
}

.rmap-item:hover {
    border-color: var(--red);
    transform: translateX(4px);
}

.rmap-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: var(--r-sm);
    background: var(--grad-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    flex-shrink: 0;
}

.rmap-label {
    font-size: .88rem;
    font-weight: 700;
    color: var(--black);
}

.rmap-sub {
    font-size: .75rem;
    color: var(--gray-400);
}

.rmap-badge {
    margin-left: auto;
    font-size: .65rem;
    font-weight: 700;
    padding: .2rem .65rem;
    border-radius: 2rem;
}

.badge-soon {
    background: rgba(255, 49, 49, .1);
    color: var(--red);
}

.badge-dev {
    background: rgba(99, 102, 241, .1);
    color: #6366f1;
}

.badge-plan {
    background: rgba(16, 185, 129, .1);
    color: #10b981;
}

@media(max-width:768px) {
    .roadmap-inner {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
     THE TEAM
  ═══════════════════════════════════════════════ */
.team-section {
    background: var(--white);
}

.team-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.team-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--tr);
    background: var(--white);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}

.team-card:hover .team-photo img {
    transform: scale(1.06);
}

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .4), transparent);
}

.team-body {
    padding: 1.5rem;
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: .25rem;
}

.team-role {
    font-size: .78rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: .75rem;
}

.team-bio {
    /* font-size: .82rem; */
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.team-socials {
    display: flex;
    gap: .5rem;
}

.team-socials a {
    width: 2rem;
    height: 2rem;
    border-radius: var(--r-sm);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    color: var(--gray-600);
    transition: var(--tr);
}

.team-socials a:hover {
    background: var(--red);
    color: #fff;
}

@media(max-width:1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
     PRODUCT DEVELOPMENT APPROACH
  ═══════════════════════════════════════════════ */
.approach-section {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(255, 49, 49, .1) 0%, transparent 60%);
    pointer-events: none;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.approach-text .sec-tag {
    color: var(--red-light);
}

.approach-text h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.approach-text p {
    color: rgba(255, 255, 255, .65);
    margin-bottom: 2rem;
    line-height: 1.85;
}

.approach-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pillar {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r);
    padding: 1.4rem;
    transition: var(--tr);
}

.pillar:hover {
    background: rgba(255, 49, 49, .1);
    border-color: rgba(255, 49, 49, .25);
}

.pillar-icon {
    font-size: 1.3rem;
    color: var(--red);
    margin-bottom: .65rem;
}

.pillar h4 {
    color: var(--white);
    margin-bottom: .35rem;
    font-size: .95rem;
}

.pillar p {
    /* font-size: .8rem; */
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

/* Right: product roadmap visual */
.approach-visual {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r-xl);
    padding: 2.5rem;
}

.pv-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.pv-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pv-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding-bottom: 1rem;
}

.pv-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pv-dot {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

.dot-done {
    background: rgba(34, 197, 94, .15);
    color: #22c55e;
}

.dot-active {
    background: rgba(255, 49, 49, .15);
    color: var(--red);
}

.dot-next {
    background: rgba(99, 102, 241, .15);
    color: #818cf8;
}

.pv-label {
    font-size: .88rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
    flex: 1;
}

.pv-year {
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
}

.pv-line {
    width: 2px;
    height: 24px;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(255, 49, 49, .3), rgba(255, 49, 49, .05));
}

@media(max-width:900px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
     GLOBAL REACH & PARTNERS
  ═══════════════════════════════════════════════ */
.global-section {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

/* Globe bg on right */
.globe-bg {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 700px;
    height: 120%;
    pointer-events: none;
    opacity: .12;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='98' fill='none' stroke='%23ff3131' stroke-width='.5'/%3E%3Cellipse cx='100' cy='100' rx='60' ry='98' fill='none' stroke='%23ff3131' stroke-width='.4'/%3E%3Cellipse cx='100' cy='100' rx='98' ry='40' fill='none' stroke='%23ff3131' stroke-width='.4'/%3E%3Cellipse cx='100' cy='100' rx='98' ry='70' fill='none' stroke='%23ff3131' stroke-width='.3'/%3E%3Cline x1='2' y1='100' x2='198' y2='100' stroke='%23ff3131' stroke-width='.3'/%3E%3Cline x1='100' y1='2' x2='100' y2='198' stroke='%23ff3131' stroke-width='.3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.global-inner {
    position: relative;
    z-index: 2;
}

.global-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

.global-text .sec-tag {
    color: var(--red-light);
}

.global-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.global-text p {
    color: rgba(255, 255, 255, .6);
}

/* Region boxes */
.region-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.r-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r);
    padding: 1.25rem 1.4rem;
    transition: var(--tr);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.r-box:hover {
    background: rgba(255, 49, 49, .1);
    border-color: rgba(255, 49, 49, .25);
    transform: translateY(-2px);
}

.r-icon {
    font-size: 1.4rem;
}

.r-name {
    /* font-size: .88rem; */
    font-weight: 700;
    color: var(--white);
}

.r-count {
    /* font-size: .72rem; */
    color: var(--red);
}

/* Partners row */
.partners-row {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 2.5rem;
}

.partners-label {
    /* font-size: .72rem; */
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.partner-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
}

.partner-box:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .15);
}

.partner-box span {
    /* font-size: .82rem; */
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .04em;
}

@media(max-width:900px) {
    .global-top {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:600px) {
    .region-boxes {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════════
     VALUES PILLARS  (white section between)
  ═══════════════════════════════════════════════ */
.values-section {
    background: var(--white);
}

.values-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.val-card {
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--tr);
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.val-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-red);
    transform: scaleX(0);
    transition: var(--tr);
}

.val-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.val-card:hover::before {
    transform: scaleX(1);
}

.val-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 1rem;
}

.val-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--r-sm);
    background: rgba(255, 49, 49, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
}

.val-card h3 {
    margin-bottom: .5rem;
}

.val-card p {
    font-size: .88rem;
    line-height: 1.65;
}

@media(max-width:900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
     CTA — center, dotted map bg
  ═══════════════════════════════════════════════ */
/*.cta-section {*/
/*    background: var(--ink);*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    padding: 6rem 0;*/
/*    text-align: center;*/
/*}*/

/* Dotted map background */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 49, 49, .25) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 28px 28px, 14px 14px;
    background-position: 0 0, 7px 7px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.cta-inner {
    padding:3rem 2rem;
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.cta-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 49, 49, .15);
    color: var(--red);
    border: 1px solid rgba(255, 49, 49, .25);
    border-radius: 2rem;
    padding: .35rem 1.1rem;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section h2 {
    /*color: var(--white);*/
    margin-bottom: 1.25rem;
}



.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    /* justify-content: center; */
    margin-bottom: 2rem;
}

.cta-stores {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.cta-note {
    font-size: .82rem;
    color: rgba(255, 255, 255, .35);
    font-style: italic;
}

.cta-note strong {
    color: var(--white);
    font-style: normal;
}

/* ═══════════════════════════════════════════════
     FOOTER (same bg as CTA)
  ═══════════════════════════════════════════════ */


.footer-divider {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 3.5rem;
}

.footer-top {
    /* display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem; */
}

.f-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .9rem;
}

.f-logo span {
    color: var(--red);
}


.f-social {
    display: flex;
    gap: .6rem;
}



/*.f-col h5 {*/
/*    font-size: .8rem;*/
/*    font-weight: 700;*/
/*    color: var(--white);*/
/*    margin-bottom: 1.1rem;*/
/*    letter-spacing: .04em;*/
/*}*/

.f-col ul li {
    margin-bottom: .5rem;
}



.f-col ul li a:hover {
    color: var(--red);
}

/* .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
} */



.footer-bottom span {
    color: var(--red);
}

@media(max-width:900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* swiper overrides */
.swiper-pagination-bullet {
    background: var(--red) !important;
}

.swiper-pagination-bullet-active {
    width: 20px !important;
    border-radius: 2rem !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    width: 2.8rem !important;
    height: 2.8rem !important;
    backdrop-filter: blur(8px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: .9rem !important;
}












/* ═══════════════════════════════════════════════
     BANNER / HERO
  ═══════════════════════════════════════════════ */
.about-banner {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

/* Gradient blob top-right */
.about-banner::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse at 70% 30%, rgba(255, 49, 49, .09) 0%, rgba(255, 200, 200, .06) 40%, transparent 70%);
    pointer-events: none;
}

.about-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 49, 49, .04) 50%, rgba(255, 49, 49, .08) 100%);
    pointer-events: none;
}

.reveal-lefts {
    text-align: center;
}

/*.banner-grid {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: 5rem;*/
/*    align-items: center;*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/

.banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 49, 49, .08);
    border: 1px solid rgba(255, 49, 49, .18);
    border-radius: 2rem;
    padding: .35rem 1rem;
    font-size: .75rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1.5rem;
}

.banner-title {
    margin-bottom: 1.4rem;
}

.banner-desc {
    font-size: 1.05rem;
    max-width: 35rem;
    margin: 0 auto 2.2rem auto;
    margin-bottom: 2.25rem;
    line-height: 1.85;
}

.banner-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--gray-200);
}

.bstat-num {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.bstat-num span {
    color: var(--red);
}

.bstat-lbl {
    font-size: .75rem;
    color: var(--gray-400);
    margin-top: .2rem;
}

/* Right side: image + chips */
.banner-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-img-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 520px;
}

.banner-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.banner-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 49, 49, .05) 0%, transparent 60%);
}

/* Floating white chips */
.f-chip {
    position: absolute;
    background: var(--white);
    border-radius: var(--r);
    padding: .65rem 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .55rem;
    animation: floatY 4s ease-in-out infinite;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, .05);
}

.f-chip i {
    font-size: 1.05rem;
    color: var(--red);
    flex-shrink: 0;
}

.f-chip-title {
    font-size: .68rem;
    font-weight: 700;
    color: var(--black);
}

.f-chip-sub {
    font-size: .6rem;
    color: var(--gray-400);
}

.fc-1 {
    top: 8%;
    left: -10%;
    animation-delay: 0s;
}

.fc-2 {
    bottom: 20%;
    right: -8%;
    animation-delay: 1.6s;
}

.fc-3 {
    top: 45%;
    right: -4%;
    animation-delay: 3s;
}

.fc-4 {
    bottom: 6%;
    left: 2%;
    animation-delay: 2.2s;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media(max-width:900px) {
    .banner-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-desc {
        margin: 0 auto 2rem;
    }

    .banner-stats {
        justify-content: center;
    }

    .banner-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .fc-1,
    .fc-3 {
        display: none;
    }
}

/* ═══════════════════════════════════════════════
     WHO WE ARE
  ═══════════════════════════════════════════════ */
.who-are-section {
    background: var(--white);
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.who-text h2 {
    margin-bottom: 1.25rem;
}

.who-text p {
    margin-bottom: 1.25rem;
}

.who-team-tag {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--r);
    padding: 1rem 1.25rem;
    margin-top: .5rem;
}

.who-team-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--grad-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.who-team-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--black);
}

.who-team-role {
    font-size: .75rem;
    color: var(--gray-400);
}

/* Right: big feature image with overlay cards */
.who-visual {
    position: relative;
}

.who-img-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.who-img-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.who-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .35), transparent);
}

.who-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    border-radius: var(--r);
    padding: .9rem 1.2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: .75rem;
}

.wib-icon {
    font-size: 1.4rem;
    color: var(--red);
}

.wib-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
}

.wib-lbl {
    font-size: .68rem;
    color: var(--gray-400);
}

@media(max-width:900px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
     OUR MISSION  — 5-box bento grid
  ═══════════════════════════════════════════════ */
.mission-section {
    background: var(--gray-50);
}

.mission-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

/* left col: 2 boxes stacked */
.bento-left {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
    grid-column: 1/3;
}

/* center: big box */
.bento-center {
    grid-column: 3/4;
}

/* right col: 2 boxes stacked */
.bento-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
    grid-column: 4/6;
}

.b-box {
    border-radius: var(--r-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--tr);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--white);
}

.b-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.b-box-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--r-sm);
    background: var(--grad-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}

.b-box h4 {
    margin-bottom: .5rem;
}

.b-box p {
    font-size: .85rem;
    line-height: 1.65;
}

/* Center box: image at bottom, text at top */
.b-center-box {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    background: var(--near-black, #111);
    transition: var(--tr);
    height: 100%;
}

.b-center-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.b-center-text {
    padding: 2rem 2rem 1.5rem;
    flex: 1;
}

.b-center-text .sec-tag {
    color: var(--red-light, #ff6b6b);
}

.b-center-text h3 {
    color: var(--white);
    margin-bottom: .75rem;
}

.b-center-text p {
    color: rgba(255, 255, 255, .6);
    font-size: .88rem;
}

.b-center-img {
    height: 160px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.b-center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.b-center-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17, 17, 17, .6), transparent);
}

/* Left col small boxes */
.b-box.accent {
    background: var(--near-black, #111);
    border-color: rgba(255, 255, 255, .08);
}

.b-box.accent h4 {
    color: var(--white);
}

.b-box.accent p {
    color: rgba(255, 255, 255, .55);
}

.b-box.accent .b-box-icon {
    background: rgba(255, 49, 49, .2);
}

.b-box.accent .b-box-icon i {
    color: var(--red);
}

@media(max-width:1100px) {
    .bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .bento-left {
        grid-column: 1/2;
        grid-template-rows: auto;
    }

    .bento-center {
        grid-column: 2/3;
    }

    .bento-right {
        grid-column: 1/3;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .bento {
        grid-template-columns: 1fr;
    }

    .bento-left,
    .bento-center,
    .bento-right {
        grid-column: auto;
    }

    .bento-right {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
     OUR STORY  — Full-width Swiper
  ═══════════════════════════════════════════════ */
.story-section {
    background: var(--white);
    overflow: hidden;
    padding: 5rem 0 0;
}

.story-header {
    text-align: center;
    margin-bottom: 3.5rem;
    width: 90%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.story-swiper {
    width: 100% !important;
    padding: 0 0 6rem !important;
}

.story-slide {
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    height: 480px;
    display: flex;
    align-items: flex-end;
}

.story-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .1) 60%, transparent 100%);
}

.story-slide-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    width: 100%;
}

.story-slide-num {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.story-slide h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: .6rem;
}

.story-slide p {
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
    line-height: 1.7;
    max-width: 560px;
}

/* Roadmap teaser at end */
.story-roadmap {
    margin-top: 3rem;
    background: var(--gray-50);
    padding: 4rem 0;
    border-top: 1px solid var(--gray-200);
}

.roadmap-inner {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.roadmap-left h3 {
    margin-bottom: .75rem;
}

.roadmap-left p {
    font-size: .9rem;
}

.roadmap-items {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.rmap-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r);
    padding: 1rem 1.25rem;
    transition: var(--tr);
}

.rmap-item:hover {
    border-color: var(--red);
    transform: translateX(4px);
}

.rmap-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: var(--r-sm);
    background: var(--grad-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    flex-shrink: 0;
}

.rmap-label {
    font-size: .88rem;
    font-weight: 700;
    color: var(--black);
}

.rmap-sub {
    font-size: .75rem;
    color: var(--gray-400);
}

.rmap-badge {
    margin-left: auto;
    font-size: .65rem;
    font-weight: 700;
    padding: .2rem .65rem;
    border-radius: 2rem;
}

.badge-soon {
    background: rgba(255, 49, 49, .1);
    color: var(--red);
}

.badge-dev {
    background: rgba(99, 102, 241, .1);
    color: #6366f1;
}

.badge-plan {
    background: rgba(16, 185, 129, .1);
    color: #10b981;
}

@media(max-width:768px) {
    .roadmap-inner {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
     THE TEAM
  ═══════════════════════════════════════════════ */
.team-section {
    background: var(--white);
}

.team-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.team-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--tr);
    background: var(--white);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}

.team-card:hover .team-photo img {
    transform: scale(1.06);
}

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .4), transparent);
}

.team-body {
    padding: 1.5rem;
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: .25rem;
}

.team-role {
    font-size: .78rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: .75rem;
}

.team-bio {
    /* font-size: .82rem; */
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.team-socials {
    display: flex;
    gap: .5rem;
}

.team-socials a {
    width: 2rem;
    height: 2rem;
    border-radius: var(--r-sm);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    color: var(--gray-600);
    transition: var(--tr);
}

.team-socials a:hover {
    background: var(--red);
    color: #fff;
}

@media(max-width:1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
     PRODUCT DEVELOPMENT APPROACH
  ═══════════════════════════════════════════════ */
.approach-section {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(255, 49, 49, .1) 0%, transparent 60%);
    pointer-events: none;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.approach-text .sec-tag {
    color: var(--red-light);
}

.approach-text h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.approach-text p {
    color: rgba(255, 255, 255, .65);
    margin-bottom: 2rem;
    line-height: 1.85;
}

.approach-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pillar {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r);
    padding: 1.4rem;
    transition: var(--tr);
}

.pillar:hover {
    background: rgba(255, 49, 49, .1);
    border-color: rgba(255, 49, 49, .25);
}

.pillar-icon {
    font-size: 1.3rem;
    color: var(--red);
    margin-bottom: .65rem;
}

.pillar h4 {
    color: var(--white);
    margin-bottom: .35rem;
    font-size: .95rem;
}

.pillar p {
    /* font-size: .8rem; */
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

/* Right: product roadmap visual */
.approach-visual {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r-xl);
    padding: 2.5rem;
}

.pv-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.pv-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pv-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding-bottom: 1rem;
}

.pv-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pv-dot {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

.dot-done {
    background: rgba(34, 197, 94, .15);
    color: #22c55e;
}

.dot-active {
    background: rgba(255, 49, 49, .15);
    color: var(--red);
}

.dot-next {
    background: rgba(99, 102, 241, .15);
    color: #818cf8;
}

.pv-label {
    font-size: .88rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
    flex: 1;
}

.pv-year {
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
}

.pv-line {
    width: 2px;
    height: 24px;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(255, 49, 49, .3), rgba(255, 49, 49, .05));
}

@media(max-width:900px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
     GLOBAL REACH & PARTNERS
  ═══════════════════════════════════════════════ */
.global-section {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

/* Globe bg on right */
.globe-bg {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 700px;
    height: 120%;
    pointer-events: none;
    opacity: .12;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='98' fill='none' stroke='%23ff3131' stroke-width='.5'/%3E%3Cellipse cx='100' cy='100' rx='60' ry='98' fill='none' stroke='%23ff3131' stroke-width='.4'/%3E%3Cellipse cx='100' cy='100' rx='98' ry='40' fill='none' stroke='%23ff3131' stroke-width='.4'/%3E%3Cellipse cx='100' cy='100' rx='98' ry='70' fill='none' stroke='%23ff3131' stroke-width='.3'/%3E%3Cline x1='2' y1='100' x2='198' y2='100' stroke='%23ff3131' stroke-width='.3'/%3E%3Cline x1='100' y1='2' x2='100' y2='198' stroke='%23ff3131' stroke-width='.3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.global-inner {
    position: relative;
    z-index: 2;
}

.global-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

.global-text .sec-tag {
    color: var(--red-light);
}

.global-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.global-text p {
    color: rgba(255, 255, 255, .6);
}

/* Region boxes */
.region-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.r-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r);
    padding: 1.25rem 1.4rem;
    transition: var(--tr);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.r-box:hover {
    background: rgba(255, 49, 49, .1);
    border-color: rgba(255, 49, 49, .25);
    transform: translateY(-2px);
}

.r-icon {
    font-size: 1.4rem;
}

.r-name {
    /* font-size: .88rem; */
    font-weight: 700;
    color: var(--white);
}

.r-count {
    /* font-size: .72rem; */
    color: var(--red);
}

/* Partners row */
.partners-row {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 2.5rem;
}

.partners-label {
    /* font-size: .72rem; */
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.partner-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
}

.partner-box:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .15);
}

.partner-box span {
    /* font-size: .82rem; */
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .04em;
}

@media(max-width:900px) {
    .global-top {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:600px) {
    .region-boxes {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════════
     VALUES PILLARS  (white section between)
  ═══════════════════════════════════════════════ */
.values-section {
    background: var(--white);
}

.values-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.val-card {
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--tr);
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.val-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-red);
    transform: scaleX(0);
    transition: var(--tr);
}

.val-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.val-card:hover::before {
    transform: scaleX(1);
}

.val-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 1rem;
}

.val-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--r-sm);
    background: rgba(255, 49, 49, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
}

.val-card h3 {
    margin-bottom: .5rem;
}

.val-card p {
    font-size: .88rem;
    line-height: 1.65;
}

@media(max-width:900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
     CTA — center, dotted map bg
  ═══════════════════════════════════════════════ */
.cta-section {
    /*background: var(--ink);*/
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    text-align: center;
}

/* Dotted map background */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 49, 49, .25) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 28px 28px, 14px 14px;
    background-position: 0 0, 7px 7px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.cta-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 49, 49, .15);
    color: var(--red);
    border: 1px solid rgba(255, 49, 49, .25);
    border-radius: 2rem;
    padding: .35rem 1.1rem;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/*.cta-section h2 {*/
/*    color: var(--white);*/
/*    margin-bottom: 1.25rem;*/
/*}*/

.cta-section p {

    margin-bottom: 2.5rem;
    font-size: 1.02rem;
}



.cta-stores {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.cta-note {
    font-size: .82rem;
    color: rgba(255, 255, 255, .35);
    font-style: italic;
}

.cta-note strong {
    color: var(--white);
    font-style: normal;
}

/* ═══════════════════════════════════════════════