/* ============================================================
   PRIMABI — site.css
   Dutco-inspired premium structure · PRIMABI teal/cyan palette
   ============================================================ */

:root {
    --teal: #0F766E;
    --teal-bright: #14B8A6;
    --sky: #0891B2;
    --cyan: #67E8F9;
    --navy: #0B1E3F;
    --navy-2: #102a55;
    --gold: #F5C24A;
    --bg: #FFFFFF;
    --surface: #F6FAFB;
    --text: #0F172A;
    --muted: #64748B;
    --border: #E2E8F0;
    --grad-hero: linear-gradient(135deg,#0F766E 0%,#0891B2 55%,#14B8A6 100%);
    --grad-mesh: radial-gradient(circle at 20% 20%, rgba(20,184,166,.35), transparent 50%), radial-gradient(circle at 80% 30%, rgba(8,145,178,.32), transparent 55%), radial-gradient(circle at 50% 90%, rgba(103,232,249,.30), transparent 55%);
    --shadow-card: 0 10px 40px -10px rgba(8,145,178,.18);
    --shadow-glow: 0 20px 60px -15px rgba(20,184,166,.40);
    /*    --font-display: 'Sora', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;*/
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --nav-h: 71px;
    --radius: 14px;
    --dark-grey: #2E2E2E; /* Rich dark grey */
    --charcoal: #3A3A3A; /* Premium charcoal */
    --graphite: #4A4A4A; /* Soft graphite */
    --silver-grey: #6B6B6B
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h)
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

button {
    font-family: inherit;
    border: 0;
    background: none;
    cursor: pointer;
    color: inherit
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1.08
}

::selection {
    background: rgba(20,184,166,.35)
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 120px 0;
    position: relative
}

.section--surface {
    background: linear-gradient(to bottom,var(--bg),var(--surface))
}

.grad {
    background: var(--grad-hero);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px
}

.section__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px
}

    .section__head h2 {
        font-size: clamp(32px,4vw,52px);
        font-weight: 700
    }

    .section__head p {
        margin-top: 18px;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.6
    }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    background: #fff;
    transition: opacity .8s ease,transform .8s ease,filter .8s ease
}

    .preloader.is-hidden {
        opacity: 0;
        transform: scale(1.04);
        filter: blur(16px);
        pointer-events: none
    }

.preloader__bg {
    position: absolute;
    inset: 0;
    background: var(--grad-mesh);
    opacity: .55
}

.preloader__inner {
    position: relative;
    text-align: center
}

.preloader__stage {
    position: relative;
    height: 200px;
    width: 360px;
    margin: 0 auto
}

.coworker {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(20,184,166,.35);
    box-shadow: 0 8px 24px -8px rgba(8,145,178,.45);
    color: var(--teal);
    transform: translate(-50%,-50%) translate(var(--tx),var(--ty)) scale(.4);
    opacity: 0;
    animation: coworkerIn 2.2s cubic-bezier(.65,0,.35,1) forwards;
    animation-delay: var(--d);
}

    .coworker svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round
    }

@keyframes coworkerIn {
    0% {
        transform: translate(-50%,-50%) translate(var(--tx),var(--ty)) scale(.4);
        opacity: 0
    }

    25% {
        opacity: 1;
        transform: translate(-50%,-50%) translate(calc(var(--tx)*.85),calc(var(--ty)*.85)) scale(1)
    }

    60% {
        opacity: 1;
        transform: translate(-50%,-50%) translate(calc(var(--tx)*.25),calc(var(--ty)*.25)) scale(1.05)
    }

    85% {
        opacity: 1;
        transform: translate(-50%,-50%) scale(.9)
    }

    100% {
        opacity: 0;
        transform: translate(-50%,-50%) scale(.2)
    }
}

.preloader__logo {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px,6vw,76px);
    letter-spacing: .32em;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: logoIn 1s cubic-bezier(.65,0,.35,1) 2s forwards;
}

@keyframes logoIn {
    from {
        opacity: 0;
        transform: scale(.7);
        letter-spacing: .7em;
        filter: blur(10px)
    }

    to {
        opacity: 1;
        transform: scale(1);
        letter-spacing: .32em;
        filter: blur(0)
    }
}

.preloader__line {
    width: 220px;
    height: 1px;
    margin: 36px auto 0;
    background: var(--border);
    overflow: hidden;
    opacity: 0;
    animation: fadeIn .4s ease 2.4s forwards
}

    .preloader__line span {
        display: block;
        width: 33%;
        height: 100%;
        background: linear-gradient(90deg,transparent,var(--teal-bright),transparent);
        animation: slide 2.4s ease-in-out infinite
    }

@keyframes slide {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(300%)
    }
}
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    transition: opacity .6s ease, visibility .6s ease;
}

    .preloader.hide {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.preloader__tag {
    margin-top: 22px;
    font-size: 12px;
    letter-spacing: .45em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0;
    animation: fadeUp .7s ease 2.7s forwards
}

@keyframes fadeIn {
    to {
        opacity: 1
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}
/* =========================
   NAVBAR (PRIMABI)
========================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .6s ease, transform .6s ease, visibility .6s ease, box-shadow .3s ease;
}

body.is-ready .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav.is-scrolled {
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.nav__inner {
    max-width: 1250px;
    margin: auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

/* ── Logo ── */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
    z-index: 10;
}

.logo-image {
    height: 32px;
    width: auto;
}

.logo-divider {
    margin: 0 8px;
    color: #bdbdbd;
}

.logo-text {
    color: #7d7d7d;
    font-weight: 500;
}

/* ── Nav links (desktop) ── */
.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
    flex: 1;
    justify-content: center;
}

.nav__link {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding-bottom: 4px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

    .nav__link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background: #0E756D;
        border-radius: 2px;
        transition: width 0.25s ease;
    }

    .nav__link:hover {
        color: #0E756D;
    }

        .nav__link:hover::after {
            width: 100%;
        }

    .nav__link.is-active {
        color: #0E756D;
        font-weight: 600;
    }

        .nav__link.is-active::after {
            width: 100%;
        }

/* ── Request Demo button (desktop only) ── */
.demo-btn {
    text-decoration: none;
    background: #0E756D;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: background .25s ease, transform .25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

    .demo-btn:hover {
        background: #18b67d;
        color: #fff;
        transform: translateY(-2px);
    }

/* Mobile-only demo button — hidden on desktop */
.demo-btn--mobile {
    display: none;
}

/* ── Hamburger (hidden on desktop) ── */
.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    flex-shrink: 0;
}

    .nav__hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #333;
        border-radius: 2px;
        transition: transform .3s ease, opacity .3s ease;
    }

    .nav__hamburger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav__hamburger.is-open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav__hamburger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* =========================
   MOBILE  (max 960px)
========================= */

/* ============================================================
   PASTE THIS at the very BOTTOM of your site.css
   ============================================================ */

@media (max-width: 960px) {

    /* Nav always visible */
    .nav,
    body:not(.is-ready) .nav {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    /* Hamburger visible */
    .nav__hamburger {
        display: flex !important;
    }

    /* Hide desktop button */
    .demo-btn:not(.demo-btn--mobile) {
        display: none !important;
    }

    /* ── KEY FIX: remove max-height/opacity animation, use display ── */
    .nav__links {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
        background: #ffffff !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
        z-index: 99999 !important;
        flex-direction: column !important;
        padding: 8px 0 16px !important;
        transition: none !important;
    }

        /* Show when is-open */
        .nav__links.is-open {
            display: flex !important;
        }

        /* Each link */
        .nav__links .nav__link {
            display: block !important;
            padding: 14px 24px !important;
            font-size: 15px !important;
            font-weight: 500 !important;
            color: #333333 !important;
            border-bottom: 1px solid #f0f0f0 !important;
            width: 100% !important;
            box-sizing: border-box !important;
            max-height: none !important;
            opacity: 1 !important;
            visibility: visible !important;
        }

            .nav__links .nav__link:hover {
                background: #f8f8f8 !important;
                color: #0E756D !important;
            }

            .nav__links .nav__link.is-active {
                background: #f0faf9 !important;
                color: #0E756D !important;
                border-left: 3px solid #0E756D !important;
                padding-left: 21px !important;
            }

    /* Request Demo in menu */
    .demo-btn--mobile {
        display: block !important;
        margin: 12px 16px 4px !important;
        text-align: center !important;
        background: #0E756D !important;
        color: #ffffff !important;
        padding: 12px 20px !important;
        border-radius: 8px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        width: calc(100% - 32px) !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: none !important;
    }
}
/* ============================================================
   HERO  — orbit / circle of businesses (original)
   ============================================================ */
/*.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 60px;
    overflow: hidden;
    background: linear-gradient( 135deg, #F3D7B6 0%, #D9B382 50%, #B87333 100%);
}*/
:root {
    --nav-h: 70px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    isolation: isolate; /* keeps backdrop-filter scoped */
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    
}

    .hero__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.30) 50%, rgba(0,0,0,.70) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding-top: 60px;
    padding-left: 50px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,.9);
    font-size: 15px;
    margin-bottom: 25px;
    padding-top:10px;

}

.hero__badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4f46e5;
}

.hero__spark {
    color: #2563eb;
    font-size: 16px;
}
/*.fa-solid, .fas {
    font-weight: 600;
    color: #fff;
}*/


.hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(52px, 6vw, 50px);
    font-weight: 400; /* Light like screenshot */
    color: #fff;
    line-height: 1.15;
    letter-spacing: 1px;
    margin: 0 0 24px;
    max-width: 1050px;
}

.hero__desc {
    max-width: 780px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    font-weight: 300;
    margin-bottom: 28px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    color: #111;
    padding: 8px 8px 8px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

    .hero__cta:hover {
        transform: translateY(-10px);
        box-shadow: 0 14px 36px rgba(0,0,0,.32);
    }

.hero__cta-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #0f8b8d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.hero__cta:hover .hero__cta-arrow {
    transform: translateX(3px);
}

/* ===== APPLE-STYLE FROSTED GLASS STATS ===== */
.hero-glass-stats {
    position: relative;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1500px;
    z-index: 5;
    /* Translucent fill — keep alpha LOW so blur is visible */
    background: linear-gradient(180deg, rgb(156 160 172 / 28%) 0%, rgb(192 200 225 / 32%) 100%);
    border-radius: 0px;
    /* IMPORTANT: -webkit- FIRST, standard SECOND */
    -webkit-backdrop-filter: blur(30px) saturate(160%);
    backdrop-filter: blur(30px) saturate(160%);
    box-shadow: 0 20px 60px -20px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.10);
    overflow: hidden;
    transition: transform .5s ease, box-shadow .5s ease;
    margin-top:60px;
}

    .hero-glass-stats:hover {
        transform: translateX(-50%) translateY(-3px);
        box-shadow: 0 30px 70px -20px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.14);
    }

.hero-glass-stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    min-height: 130px;
}

.hgs-col {
    position: relative;
    text-align: center;
    padding: 22px 24px;
}

    .hgs-col + .hgs-col::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 56%;
        background: linear-gradient(180deg, transparent, rgba(255,255,255,.28), transparent);
    }

.hgs-title {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 6px;
    text-shadow: 0 1px 2px rgba(0,0,0,.25);
}

.hgs-sub {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,.72);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero__content {
        padding: calc(var(--nav-h) + 40px) 24px 260px;
    }

    .hero-glass-stats {
        width: 94%;
        bottom: 18px;
    }

    .hero-glass-stats__inner {
        grid-template-columns: repeat(2, 1fr);
        min-height: 0;
    }

    .hgs-col {
        padding: 18px 12px;
    }

        .hgs-col:nth-child(3)::before {
            display: none;
        }

        .hgs-col:nth-child(3)::after,
        .hgs-col:nth-child(4)::after {
            content: "";
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
        }

    .hgs-title {
        font-size: 26px;
    }

    .hgs-sub {
        font-size: 12.5px;
    }
}

@media (max-width: 560px) {
    .hero__content {
        padding: calc(var(--nav-h) + 30px) 20px 360px;
    }

    .hero-glass-stats__inner {
        grid-template-columns: 1fr;
    }

    .hgs-col::before {
        display: none;
    }

    .hgs-col + .hgs-col::after {
        content: "";
        position: absolute;
        top: 0;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    }

    .hgs-title {
        font-size: 24px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__cta {
        font-size: 13px;
    }
}

/* ============================================================
   HOW IT WORKS SECTION
   Add this to site.css
   ============================================================ */
.hiw {
    background: linear-gradient( to bottom, #FFFFFF 0%, #FFFFFF 80%, #f4f6f9 100% );
    padding: 100px 0 80px;
}
/* ── Top header row ── */
.hiw__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
}

.hiw__header-left {
    max-width: 620px;
}

/* Eyebrow */
.hiw__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.hiw__eyebrow-line {
    display: block;
    width: 32px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    flex-shrink: 0;
}

.hiw__eyebrow span:last-child {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #444;
}

/* Title */
.hiw__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 3vw, 50px);
    font-weight: 400;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

/* Subtitle */
.hiw__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.75;
    max-width: 580px;
}

/* Team block */
.hiw__team {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-top: 6px;
}

.hiw__team-avatars {
    display: flex;
    align-items: center;
    position: relative;
    width: 64px;
    height: 40px;
}

.hiw__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    position: absolute;
}

    .hiw__avatar:first-child {
        left: 0;
        z-index: 2;
    }

.hiw__avatar--overlap {
    left: 22px;
    z-index: 1;
}

.hiw__team-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hiw__team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}

.hiw__team-role {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    color: #94a3b8;
    font-style: italic;
}

/* ── Two column body ── */
.hiw__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left image */
.hiw__image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.10);
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}

.hiw__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: none; /* override site.css global img rule */
}

/* Right steps */
.hiw__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hiw__step {
    padding: 28px 0;
    border-bottom: 1px solid #f1f5f9;
}

    .hiw__step:first-child {
        padding-top: 0;
    }

    .hiw__step:last-child {
        border-bottom: none;
    }

.hiw__step-header {
    margin-bottom: 10px;
}

.hiw__step-num {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #0f172a;
    line-height: 1.4;
}

.hiw__step-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.75;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .hiw {
        padding: 72px 0 60px;
    }

    .hiw__header {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }

    .hiw__body {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hiw__image-wrap {
        position: static;
        max-height: 360px;
    }

    .hiw__image {
        max-height: 360px;
        object-position: center top;
    }
}

@media (max-width: 560px) {
    .hiw {
        padding: 56px 0 48px;
    }

    .hiw__title {
        font-size: 24px;
    }

    .hiw__step {
        padding: 20px 0;
    }
}

/* ============================================================
   HOW IT WORKS — IMAGE RIGHT VARIANT
   Update existing .hiw__body to support reversed layout
   ============================================================ */

/* The existing hiw section already handles steps 1-4.
   Just make sure your hiw__body has image LEFT, steps RIGHT.
   The image on the RIGHT for steps 3-4 is handled by
   adding a second .hiw__body--reverse block or simply
   putting all 4 steps in one column next to one image.

   Based on the screenshot, the layout is:
   - Steps on LEFT, Building image on RIGHT (reversed)
   Add this class to your second body row if needed:
*/

.hiw__body--reverse {
    grid-template-columns: 1fr 1fr;
    direction: ltr;
}

    .hiw__body--reverse .hiw__image-wrap {
        order: 2;
    }

    .hiw__body--reverse .hiw__steps {
        order: 1;
    }

/* ============================================================
   STATS BAR — rounded card
   ============================================================ */
.stats-bar {
    background: #f4f6f9;
    padding: 60px 0 80px;
}

.stats-bar__card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    padding: 48px 40px;
    gap: 0;
}
.stats-bar__icon .fa-solid {
    color: #000 !important;
}

/* Vertical divider */
.stats-bar__divider {
    width: 1px;
    height: 60px;
    background: #e8ecf0;
    flex-shrink: 0;
    margin: 0 20px;
}

/* Each stat item */
.stats-bar__item {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    padding: 0 20px;
}

/* Icon circle */
.stats-bar__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: #64748b;
}

/* Number + label */
.stats-bar__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats-bar__value {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 300;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -0.5px;
}

.stats-bar__label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #94a3b8;
    font-weight: 400;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .stats-bar__card {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 32px 0;
        padding: 40px 24px;
    }

    .stats-bar__divider {
        display: none;
    }

    .stats-bar__item {
        padding: 16px;
        justify-content: flex-start;
        border-bottom: 1px solid #f1f5f9;
    }

        .stats-bar__item:nth-child(5),
        .stats-bar__item:nth-child(7) {
            border-bottom: none;
        }
}

@media (max-width: 600px) {
    .stats-bar {
        padding: 40px 0 56px;
    }

    .stats-bar__card {
        grid-template-columns: 1fr 1fr;
        padding: 28px 16px;
        gap: 0;
        border-radius: 16px;
    }

    .stats-bar__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 20px 8px;
        border-bottom: 1px solid #f1f5f9;
        border-right: none;
    }

        /* Right column items — no right border */
        .stats-bar__item:nth-child(odd) {
            border-right: 1px solid #f1f5f9;
        }

    .stats-bar__value {
        font-size: 26px;
    }

    .stats-bar__label {
        font-size: 11px;
    }

    .stats-bar__icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}

.hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .3em;
    z-index: 3
}

.hero__mouse {
    width: 24px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.4);
    display: flex;
    justify-content: center;
    padding-top: 6px
}

    .hero__mouse span {
        width: 4px;
        height: 8px;
        border-radius: 2px;
        background: rgba(255,255,255,.8);
        animation: mouseScroll 1.8s ease-in-out infinite
    }

@keyframes mouseScroll {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

@media (max-width:640px) {
    .orbit__node-lbl {
        display: none
    }

    .orbit__node-ico {
        width: 44px;
        height: 44px;
        font-size: 15px
    }

    .orbit__center {
        padding: 20px
    }
}

/* ============================================================
   WHY PRIMABL PRODUCTIVITY SECTION
   Add to site.css
   ============================================================ */

.why-primabl {
    background: #fff;
    padding: 90px 0 70px;
}

/* ── Eyebrow ── */
.why__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.why__eyebrow-line {
    display: block;
    width: 32px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    flex-shrink: 0;
}

.why__eyebrow span:last-child {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #444;
}

/* ── Heading ── */
.why__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 400;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 48px;
    max-width: 520px;
    letter-spacing: 1px;
}

/* ── Body: two columns ── */
.why__body {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: start;
}

/* ── Left image column ── */
.why__image-col {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}

.why__image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: visible;
}

.why__image {
    width: 100%;
    height: px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    display: block;
    max-width: none;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* Green badge circle */
.why__badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #0F766E;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15,118,110,0.35);
    z-index: 2;
    padding: 10px;
}

/* ── Right slides column ── */
.why__slides-col {
    position: relative;
    min-height: 420px;
}

/* Slide visibility */
.why__slide {
    display: none;
    flex-direction: column;
    gap: 0;
    animation: fadeSlide 0.4s ease;
}

    .why__slide.is-active {
        display: flex;
    }

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.why__slide.slide-in-left {
    animation: fadeSlideLeft 0.4s ease;
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.why__step:hover .fa-solid,
.why__step:hover .fas {
    color: #fff !important;
}
.why__step-icon i {
    color: #000000;
    transition: color 0.3s ease;
}

.why__step:hover .why__step-icon i {
    color: #fff !important;
}

/* Each step row */
.why__step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

    .why__step:last-child {
        border-bottom: none;
    }

/* Icon circle */
.why__step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #64748b;
    flex-shrink: 0;
    margin-top: 2px;
    transition: background 0.2s, color 0.2s;
}

.why__step:hover .why__step-icon {
    background: #0F766E;
    color: #fff;
}

/* Step content */
.why__step-content {
    flex: 1;
}

.why__step-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 300;
    color: #111;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.why__step-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.75;
    text-align: justify;
}

/* ── Navigation arrows ── */
.why__nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 32px;
}

.why__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #334155;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

    .why__nav-btn:hover:not(:disabled) {
        background: #0F766E;
        border-color: #0F766E;
        color: #fff;
        box-shadow: 0 6px 16px rgba(15,118,110,0.25);
    }

    .why__nav-btn:disabled {
        opacity: 0.35;
        cursor: not-allowed;
    }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .why__body {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .why__image-col {
        position: static;
    }

    .why__image {
        height: 280px;
    }

    .why__badge {
        width: 80px;
        height: 80px;
        font-size: 12px;
        top: -14px;
        right: -14px;
    }
}

@media (max-width: 560px) {
    .why-primabl {
        padding: 60px 0 50px;
    }

    .why__title {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .why__step {
        gap: 14px;
        padding: 16px 0;
    }

    .why__step-num {
        font-size: 26px;
    }

    .why__step-icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .why__nav-btn {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
}
/* =============================================
   Platform Features Section
   ============================================= */

.platform-features {
    padding: 60px 48px;
    font-family: 'Poppins', sans-serif;
    max-width: 100%;
    margin: 0 auto;
    background-color: #F8F8F8;
}

/* Header */
.features-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    letter-spacing: 0.22em;
}

.header-line {
    width: 32px;
    height: 2px;
    background-color: #222;
}

.header-eyebrow {
    font-family:'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #444;
    text-transform: uppercase;
}

.features-title {
    font-size: 34px;
    font-weight: 400;
    color: #111;
    margin: 0 0 10px 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.features-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 36px 0;
    max-width: 520px;
    line-height: 1.65;
}

/* ── Outer row: arrow | track | arrow ── */
.carousel-outer {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── Middle clip zone ── */
.carousel-wrapper {
    flex: 1;
    overflow: hidden; /* clips cards — arrows are OUTSIDE this */
}

/* ── Sliding track ── */
.features-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

/* ── Cards ── */
.feature-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 36px 28px 32px;
    /* exactly 1/3 of track width minus gaps */
    width: calc((100% - 48px) / 3); /* use width, not min-width */
    min-width: 0; /* prevent content from forcing card wider */
    flex-shrink: 0;
    overflow: hidden; /* clip any overflowing text */
    word-break: break-word;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
}

    /* Hover → green gradient */
    .feature-card:hover {
        background: linear-gradient( 135deg, #42d6ab 0%, #27c29a 30%, #16a085 65%, #0f766e 100% );
        border-color: transparent;
        transform: translateY(-6px);
        margin-top:10px;
    }

/* Card number */
.card-number {
    font-size: 44px;
    font-weight: 0;
    line-height: 1;
    margin-bottom: 52px;
    color: rgba(0, 0, 0);
    transition: color 0.80s ease;
}

.feature-card:hover .card-number {
    color:#fff;
}

/* Card title */
.card-title {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 14px 0;
    color: #111;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-card:hover .card-title {
    color: #fff;
}

/* Card list */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .card-list li {
        font-size: 13px;
        color: #555;
        line-height: 1.65;
        padding: 3px 0;
        transition: color 0.3s ease;
        white-space: normal; /* ← add this */
        word-wrap: break-word; /* ← add this */
        overflow-wrap: break-word; /* ← add this */
    }

.feature-card:hover .card-list li {
    color: rgba(255, 255, 255, 0.88);
}

/* ── Arrow buttons — always visible, outside clip zone ── */
.nav-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 26px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    line-height: 1;
    padding: 0;
    user-select: none;
}

    .nav-arrow:hover {
        background: #f0f0f0;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
        color: #000;
    }

    .nav-arrow:disabled {
        opacity: 0.25;
        cursor: not-allowed;
        pointer-events: none;
    }

/* ── Responsive ── */
@media (max-width: 900px) {
    .platform-features {
        padding: 40px 20px;
    }

    .feature-card {
        min-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 580px) {
    .features-title {
        font-size: 22px;
    }

    .feature-card {
        min-width: 100%;
    }
}




/* /* ============================================================
   OPERATIONS DASHBOARD SECTION
   Add to site.css
   ============================================================ */

.ops {
    background: #f4f6f9;
}
.ops__kpi-icon i {
    color: #fff !important;
}
/* ── Teal hero bar ── */
.ops__hero-bar {
    background: #0F766E;
    padding: 40px 0 36px;
}

.ops__hero-header {
    margin-bottom: 28px;
}

.ops__hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    color: #fff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size:24px;
    letter-spacing: 1px;
}

.ops__hero-divider {
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

.ops__hero-sub {
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 400;
    color: rgba(255,255,255,0.75);
}

.ops__hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* ── KPI cards row ── */
.ops__kpi-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.12);
    border-radius: 14px;
    overflow: hidden;
}

.ops__kpi-card {
    background: rgba(255,255,255,0.10);
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

    .ops__kpi-card:hover {
        background: rgba(255,255,255,0.18);
    }

.ops__kpi-icon {
    font-size: 26px;
    color: rgba(255,255,255,0.90);
    flex-shrink: 0;
    width: 36px;
    text-align: center;
}

.ops__kpi-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ops__kpi-value {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 300;
    color: #fff;
    line-height: 1;
}

.ops__kpi-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

.ops__kpi-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
}

    .ops__kpi-sub.teal {
        color: #00E6A0;
    }

    .ops__kpi-sub.strikethrough {
        color: #00E6A0;
    }

/* ── White body ── */
.ops__body {
    padding: 32px 0 60px;
}

.ops__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ── Panel card ── */
.ops__panel {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.ops__panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 8px;
}

.ops__panel-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.ops__see-all {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #0E756D;
    font-weight: 500;
    text-decoration: none;
}

    .ops__see-all:hover {
        text-decoration: underline;
    }

/* ── Table ── */
.ops__table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

    .ops__table th {
        text-align: left;
        padding: 10px 12px;
        background: #f8fafc;
        color: #94a3b8;
        font-size: 12px;
        font-weight: 500;
        border-bottom: 1px solid #f1f5f9;
    }

    .ops__table td {
        padding: 12px 12px;
        border-bottom: 1px solid #f8fafc;
        color: #374151;
    }

    .ops__table tr:last-child td {
        border-bottom: none;
    }

    .ops__table tbody tr:hover {
        background: #f8fafc;
    }

/* ── Pagination ── */
.ops__pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.ops__page-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #64748b;
}

.ops__page-btns {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ops__page-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .ops__page-btn:hover,
    .ops__page-btn--active {
        background: #0F766E;
        color: #fff;
        border-color: #0F766E;
    }

/* ── Work flags ── */
.ops__flags {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}

.ops__flag-row {
    display: grid;
    grid-template-columns: 72px 1fr 40px;
    align-items: center;
    gap: 12px;
}

.ops__flag-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #64748b;
}

.ops__flag-bar {
    height: 10px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
}

.ops__flag-fill {
    height: 100%;
    border-radius: 999px;
    width: 0%; /* start at 0 — JS animates it */
}

.ops__flag-fill--green {
    background: #10b981;
}

.ops__flag-fill--dark {
    background: #0F766E;
}

.ops__flag-fill--blue {
    background: #93c5fd;
}




.ops__flag-pct {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-align: right;
}

/* ── Activity badges ── */
.ops__badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.ops__badge {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
}

.ops__badge--blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.ops__badge--teal {
    background: #ccfbf1;
    color: #0F766E;
}

.ops__badge--purple {
    background: #ede9fe;
    color: #7c3aed;
}

/* ── Efficiency pill ── */
.ops__eff-pill {
    display: inline-block;
    background: #f0fdf4;
    color: #15803d;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
}

.ops__formula {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

/* ── Approvals ── */
.ops__approvals {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ops__approval-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    gap: 12px;
}

    .ops__approval-row:last-child {
        border-bottom: none;
    }

.ops__approval-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ops__approval-team {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}

.ops__approval-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    color: #94a3b8;
}

.ops__status {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
    flex-shrink: 0;
}

.ops__status--pending {
    background: #fef9c3;
    color: #a16207;
}

.ops__status--approved {
    background: #d1fae5;
    color: #065f46;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .ops__kpi-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .ops__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ops__kpi-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .ops__kpi-card {
        padding: 14px 12px;
        gap: 10px;
    }

    .ops__kpi-icon {
        font-size: 20px;
    }

    .ops__panel {
        padding: 18px 16px;
    }

    .ops__flag-row {
        grid-template-columns: 64px 1fr 36px;
        gap: 8px;
    }
}

@media (max-width: 420px) {
    .ops__kpi-row {
        grid-template-columns: 1fr 1fr;
    }

    .ops__hero-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


/* =============================================
   8 Modules Section
   ============================================= */

.modules-section {
    padding: 60px 48px;
    background: #f5f5f7;
    font-family: 'Poppins', Arial, sans-serif;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ── Header ── */
.modules-top {
    margin-bottom: 36px;
}

.modules-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.modules-eyebrow-line {
    width: 34px;
    height: 2px;
    background: #222;
    flex-shrink: 0;
}

.modules-eyebrow-text {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #444;
}

.modules-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 400;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 48px;
    max-width: 520px;
    letter-spacing: 1px;
}

.modules-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 36px 0;
    max-width: 520px;
    line-height: 1.65;
}

/* ── Outer flex row: [arrow] [clip] [arrow] ── */
.modules-outer {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── Clip zone ── */
.modules-wrapper {
    flex: 1;
    overflow: hidden;
}

/* ── Sliding track ── */
.modules-track {
    display: flex;
    gap: 19px;
    transition: transform 0.70s cubic-bezier(0.45, 0.05, 0.10, 1.00);
    will-change: transform;
    align-items: stretch;
}

/* ── Card ── */
/* ── Card — smooth hover on entire card ── */
.module-card {
    background: #fff;
    border-radius: 10px;
    overflow: visible;
    width: calc((100% - 60px) / 4);
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border: 1px solid #e6e6e6;
    position: relative;
    cursor: pointer;
    /* Single transition covers everything */
    transition: transform 0.30s ease, box-shadow 0.30s ease, border-color 0.30s ease;
}

    /* ── Entire card lifts on hover ── */
    .module-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 16px 40px rgba(14, 117, 109, 0.18), 0 6px 16px rgba(0, 0, 0, 0.10);
        border-color: #0E756D;
    }
/* ── Image block ── */
.module-img-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: visible;
    background: #e8e8e8;
    border-radius: 10px 10px 0 0;
    flex-shrink: 0;
}

.module-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
}



/* Clip overflow only on the image (not the badge) */
.module-img-wrap::after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    border-radius: 10px 10px 0 0;
    pointer-events: none;
    overflow: hidden;
}

/* Empty image placeholder */
.module-img-wrap--empty {
    background: linear-gradient(135deg, #e8f8f2 0%, #d0f0e4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
}

/* ── Icon badge ── */
.module-icon-badge {
    position: absolute;
    bottom: -26px;
    left: 20%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background-color: #0E756D;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 14px rgba(14, 117, 109, 0.30);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.module-card:hover .module-icon-badge {
    background-color: #0a5e57;
    box-shadow: 0 6px 20px rgba(14, 117, 109, 0.45);
}

.module-icon-badge--center {
    position: static;
    transform: none;
    width: 52px;
    height: 52px;
}

.module-icon-badge i,
.module-icon-badge .module-icon-fallback {
    font-size: 20px;
    color: #fff;
}

/* ── Card body ── */
.module-card-body {
    padding: 38px 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

/* ── Module Title ── */
.module-name {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px;
    line-height: 1.4;
    letter-spacing: -0.2px;
    transition: color 0.25s ease;
}

.module-card:hover .module-name {
    color: #0E756D;
}

/* ── Description ── */
.module-desc {
    font-size: 12px;
    color: #6b6b6b;
    line-height: 1.6;
    margin: 0 0 14px;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    min-height: 96px;
}

/* ── Read More ── */
.module-read-more {
    font-size: 12px;
    font-weight: 600;
    color: #0E756D;
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
    transition: letter-spacing 0.2s ease;
}

    .module-read-more:hover {
        text-decoration: underline;
        letter-spacing: 0.02em;
    }

/* ── Arrow buttons ── */
.mod-arrow {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
    padding: 0;
    line-height: 1;
    user-select: none;
}

    .mod-arrow:hover {
        background: #0E756D;
        color: #fff;
        border-color: #0E756D;
        box-shadow: 0 4px 14px rgba(14, 117, 109, 0.30);
    }

    .mod-arrow:disabled {
        opacity: 0.22;
        cursor: not-allowed;
        pointer-events: none;
    }

/* ── Responsive ── */

/* 3 cards visible */
@media (max-width: 1100px) {
    .module-card {
        width: calc((100% - 40px) / 3);
    }
}

/* 2 cards visible */
@media (max-width: 768px) {
    .modules-section {
        padding: 40px 20px;
    }

    .module-card {
        width: calc((100% - 20px) / 2);
    }

    .modules-title {
        margin-bottom: 24px;
    }
}

/* 1 card visible */
@media (max-width: 480px) {
    .modules-section {
        padding: 32px 16px;
    }

    .module-card {
        width: 100%;
    }

    .mod-arrow {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}

/* =============================================
   Pricing Section
   ============================================= */

.pricing-section {
    padding: 70px 48px 80px;
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(#0E756D 50%, #F4F5F7 40%, #F4F5F7 100%);
}


.pricing-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Header ── */
.pricing-header {
    margin-bottom: 48px;
}

.pricing-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pricing-eyebrow-line {
    width: 32px;
    height: 2px;
    background: rgba(255,255,255,0.7);
    flex-shrink: 0;
}

.pricing-eyebrow-text {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
}

.pricing-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 48px;
    max-width: 520px;
    letter-spacing: 1px;
}

.pricing-subtitle {
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 36px 0;
    max-width: 520px;
    line-height: 1.65;
}

/* ── Cards row ── */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* ── Base card ── */
.price-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
    min-height: 520px;
}

/* ── Featured card — slightly taller / elevated ── */
.price-card--featured {
    padding-top: 52px; /* extra room for the badge */
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    z-index: 2;
    
}

/* ── "Most Popular" badge ── */
.price-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1fa575, #0d7a5a);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 22px;
    border-radius: 0 0 12px 12px;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

/* ── Card top block ── */
.price-card__top {
    margin-bottom: 28px;
}

/* ── Price amount ── */
.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.price-dollar {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.price-dollar--custom {
    font-size: 38px;
}

.price-period {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

/* ── Plan name ── */
.price-plan-name {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
    line-height: 1.2;
}

/* ── Plan description ── */
.price-plan-desc {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ── Feature list ── */
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .price-features li {
        font-size: 13px;
        color: #444;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.5;
    }

        .price-features li i {
            color: #1fa575;
            font-size: 13px;
            margin-top: 2px;
            flex-shrink: 0;
        }

/* ── Buttons ── */
.price-btn {
    display: block;
    text-align: center;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-top: auto;
    cursor: pointer;
}

/* Outline button — Starter & Enterprise */
.price-btn--outline {
    border: 1.5px solid #ccc;
    color: #215294;
    background: transparent;
}

    .price-btn--outline:hover {
        border-color: #1fa575;
        background: #f0fdf8;
    }

/* Solid button — Professional */
.price-btn--solid {
    background: linear-gradient(135deg, #1fa575, #0d7a5a);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(15,120,80,0.30);
}

    .price-btn--solid:hover {
        background: linear-gradient(135deg, #0d7a5a, #085e43);
        box-shadow: 0 6px 22px rgba(15,120,80,0.40);
    }

/* ── Responsive ── */
@media (max-width: 860px) {
    .pricing-section {
        padding: 50px 24px 60px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .price-card--featured {
        order: -1; /* show featured first on mobile */
    }

    .price-card {
        min-height: unset;
    }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #ffffff;
    color: rgba(255,255,255,.75);
    padding: 80px 0 24px
}

.footer__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 48px
}

@media(max-width:860px) {
    .footer__container {
        grid-template-columns: 1fr
    }
}

.footer__brand .nav__name {
    color: #fff;
    margin-left: 8px
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 14px
}

    .footer__brand > div:first-child {
        display: flex;
        align-items: center;
        gap: 10px
    }

.footer__tagline {
    color: rgba(0,0,0,.65);
    font-size: 14px;
    line-height: 1.6;
    max-width: 360px;
    margin-top: 6px
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .footer__social a {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform 0.3s ease;
    }

        .footer__social a i {
            font-size: 14px;
            color: #fff;
        }

        .footer__social a:hover {
            transform: translateY(-4px);
        }


   
    
    /* Facebook */
    .footer__social .facebook {
        background: #4267B2;
    }

    /* LinkedIn */
    .footer__social .linkedin {
        background: #0077B5;
    }

    /* X (Twitter) */
    .footer__social .twitter-x {
        background: #000;
    }
        .footer__social a:hover {
            background: var(--teal-bright);
            transform: translateY(-2px)
        }

.footer__links {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 32px
}

@media(max-width:600px) {
    .footer__links {
        grid-template-columns: repeat(2,1fr)
    }
}

.footer__col h4 {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.footer__col a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(0,0,0,.65);
    transition: color .25s
}

    .footer__col a:hover {
        color: #0E756D;
    }

.footer__bottom {
    max-width: 1240px;
    margin: 30px auto 0;
    padding: 18px 24px 0;
    border-top: 1px solid rgba(255,255,255,.50);
    font-size: 13px;
    color: rgba(0,0,0,.5);
    text-align: center
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease,transform .8s ease
}

    .reveal-up.in {
        opacity: 1;
        transform: none
    }
