:root {
    --primary: #4a24e8;
    --primary-dark: #3a1bc0;
    --primary-light: #ede9fd;
    --secondary: #ff8000;
    --secondary-light: #fff3e6;
    --dark: #464646;
    --dark-2: #1a1e23;
    --dark-card: #272c31;
    --muted: #6c757d;
    --accent: #00c896;
    --accent-dim: rgba(0, 200, 150, .12);
    --blue: #2563eb;
    --blue-dim: rgba(37, 99, 235, .1);
    --purple: #7c3aed;
    --amber: #f59e0b;
    --amber-dim: rgba(245, 158, 11, .1);
    --brand: #1a1150;
    --brand-mid: #2d1f7a;
    --brand-dark: #09061e;
    --light-bg: #f8f9fa;
    --surface: #F8F7FF;
    --border: rgba(0, 0, 0, 0.08);
    --white: #ffffff;
    --radius-sm: 4px;
    --radius: .35rem;
    --radius-md: .55rem;
    --radius-lg: .75rem;
    --radius-xl: .95rem;
    /* --radius-lg: 20px; */
    --text-3: #7f7fa3;
    --shadow-sm: 0 2px 12px rgba(92, 59, 255, 0.08);
    --shadow-md: 0 8px 40px rgba(92, 59, 255, 0.13);



    /* colors */
    --orange: #E8500A;
    --warning: #E8500A;
    --orange-lt: #FFF0EB;
    --warning-light: #FFF0EB;
    --orange-md: #FDDDD0;
    --green: #16A34A;
    --success: #16A34A;
    --success-light: #DCFCE7;
    --green-lt: #DCFCE7;
    --red: #DC2626;
    --red-lt: #FEE2E2;
    --danger: #dc2626;
    --danger-light: #fee2e2;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.ff-poppins {
    font-family: 'Poppins', sans-serif;
}

p {
    margin-bottom: 4px;
}

/* ── Utilities ── */
.text-primary-custom {
    color: var(--primary) !important;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
}

/* .section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
} */

.section-label.on-dark {
    color: var(--secondary);
}

.section-label.on-dark::before {
    background: var(--secondary);
}

.section-h2 {

    font-size: clamp(28px, 4vw, 46px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.5px;
    color: var(--dark);
}

.section-h2 em {
    font-style: normal;
    color: var(--primary);
}

.section-h2.on-dark {
    color: var(--white);
}

.section-h2.on-dark em {
    color: var(--secondary);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── NAVBAR ── */
#mainNav {
    background: rgba(255, 255, 255, .96) !important;
    backdrop-filter: blur(10px);
    /* border-bottom: 1px solid var(--border); */
    transition: box-shadow .3s;
    padding-top: 0;
    padding-bottom: 0;
}

#mainNav.scrolled {
    /* box-shadow: 0 4px 30px rgba(74, 36, 232, .1); */
    box-shadow: 0 4px 30px rgba(92, 59, 255, 0.10);
}

.navbar-brand {

    font-weight: 800;
    font-size: 22px;
    color: var(--dark) !important;
    letter-spacing: -.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
}

.brand-accent {
    color: var(--primary);
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #444 !important;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: all .2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.show {
    color: var(--primary) !important;
    background: var(--primary-light);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.show,
.nav-item.dropdown.show .nav-link.dropdown-toggle {
    color: var(--primary) !important;
    background: var(--primary-light) !important;
}

.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    padding: 8px;
    margin-top: 6px;
}

.dropdown-item {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--dark);
    transition: all .2s;
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Mega menu */
.mega-menu {
    min-width: 660px !important;
    padding: 20px !important;
}

.mega-col-title {
    /*  */
    font-size: 14px;
    font-weight: 500;
    /* letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted); */
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all .2s;
}

.mega-item:hover {
    background: var(--primary-light);
}

.mega-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    flex-shrink: 0;
    transition: background .2s;
    color: var(--primary);
}

.mega-item:hover .mega-icon {
    background: var(--primary);
    color: #fff;
}

.mega-item-name {
    /*  */
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.mega-item-desc {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.4;
}

.btn-signin {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all .2s;
}

.btn-signin:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.btn-demo {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--white) !important;
    background: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: all .25s;
}

.btn-demo:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(74, 36, 232, .3);
}

/* ── HERO ── */
.hero {
    min-height: 90vh;
    padding-top: 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(rgba(74, 36, 232, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 36, 232, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, black 30%, transparent 100%);
}

.hero-blob {
    position: absolute;
    top: -180px;
    right: -120px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(74, 36, 232, .1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: blobPulse 6s ease-in-out infinite alternate;
}

.hero-blob-2 {
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 128, 0, .07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

@keyframes blobPulse {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.07) translate(18px, -12px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    border: 1px solid rgba(74, 36, 232, .2);
    border-radius: 100px;
    padding: 6px 14px 6px 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    animation: fadeUp .6s ease both;
}

.badge-dot {
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
}

.hero h1 {

    font-size: clamp(38px, 5.5vw, 56px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--dark);
    animation: fadeUp .7s .1s ease both;
}

.hero h1 .c-primary {
    color: var(--primary);
}

.hero h1 .c-secondary {
    color: var(--secondary);
}

.c-primary {
    color: var(--primary) !important;
}

.c-secondary {
    color: var(--secondary) !important;
}

.hero-sub {
    font-size: 18px;
    font-weight: 400;
    /* color: var(--muted); */
    line-height: 1.5;
    /* max-width: 520px; */
    animation: fadeUp .7s .2s ease both;
}

.btn-hero-primary {
    /* font-family: 'Inter', sans-serif; */
    font-size: 13.5px;
    font-weight: 500;
    color: var(--white) !important;
    background: var(--primary);
    padding: 10px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: all .25s;
    box-shadow: 0 4px 20px rgba(74, 36, 232, .3);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(74, 36, 232, .4);
    color: var(--white);
}

.btn-hero-secondary {
    /* font-family: 'Inter', sans-serif; */
    font-size: 13.5px;
    font-weight: 500;
    color: var(--primary);
    background: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, .12);
    transition: all .25s;
    box-shadow: 0 6px 18px rgba(96, 122, 255, 0.2);
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    animation: fadeUp .7s .4s ease both;
}

.trust-avatars {
    display: flex;
}

.trust-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
}

.trust-av:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 13.5px;
    color: var(--muted);
}

.trust-text strong {
    color: var(--dark);
    font-weight: 600;
}

/* Hero visual card */
.hero-visual {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 80px rgba(74, 36, 232, .15);
    border: 1px solid rgba(74, 36, 232, .1);
    padding: 28px;
    position: relative;
    animation: fadeUp .8s .2s ease both;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.hv-title {

    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 18px;
}

.hv-stat {
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
}

.hv-stat-num {

    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.hv-stat-label {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
}

.hv-bar-wrap {
    margin-top: 14px;
}

.hv-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 5px;
}

.hv-bar-val {
    color: var(--primary);
    font-weight: 600;
}

.hv-bar {
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.hv-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    animation: barGrow 1.2s .8s ease both;
    transform-origin: left;
}

@keyframes barGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.hv-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

.hv-pill {
    font-size: 11.5px;
    font-weight: 500;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 100px;
}

.hv-pill.sec {
    background: var(--secondary-light);
    color: var(--secondary);
}

/* Float badges */
.float-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(74, 36, 232, .1);
    z-index: 2;
    animation: floatBob 4s ease-in-out infinite;
}

.float-badge-img {
    position: absolute;
    z-index: 2;
    animation: floatBob 4s ease-in-out infinite;
    bottom: -26px;
    left: -22px;
    animation-delay: 1.5s;
    width: 20%;
}

.float-badge-1 {
    top: -18px;
    right: -18px;
}

.float-badge-2 {
    bottom: 36px;
    left: -22px;
    animation-delay: 1.5s;
}

.fb-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.fb-text {
    font-size: 12px;
    color: var(--dark);
}

.fb-text strong {
    font-weight: 600;
    font-size: 13.5px;
    display: block;

}

@keyframes floatBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ── TICKER ── */
.ticker {
    /* background: var(--dark); */
    padding: 13.5px 0;
    overflow: hidden;
    /* border-top: 3px solid var(--primary); */
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    padding: 0 2px;
    font-size: 13.5px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.ticker-item strong {
    color: var(--secondary);
}

.ticker-dot {
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── PRODUCTS ── */
.sec-products {
    padding: 80px 0;
    background: var(--light-bg);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 22px 24px 0;
    text-decoration: none;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(74, 36, 232, .14);
    border-color: rgba(74, 36, 232, .2);
}

.product-card:hover::after {
    transform: scaleX(1);
}

.product-card:hover .prod-icon i {
    -webkit-text-fill-color: #ffffff;
}

.product-card:hover .prod-icon {
    background: var(--primary);
    transform: rotate(-5deg) scale(1.1);
}



.prod-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    /* background: var(--primary-light); */
    background: linear-gradient(135deg, rgba(238, 162, 56, 0.1) 0%, rgba(37, 45, 116, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all .3s;
    flex-shrink: 0;
    margin-bottom: 10px;
    color: var(--primary);
}

.prod-icon i {
    background: linear-gradient(135deg, #ee3897 0%, #0048ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
}

.prod-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.prod-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
}

.prod-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.prod-tag {
    font-size: 11px;
    font-weight: 500;
    background: var(--light-bg);
    color: var(--muted);
    padding: 3px 10px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
}

.prod-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--primary);
    /* opacity: 0; */
    transition: opacity .3s, transform .3s;
    font-size: 14px;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}

.product-card:hover .prod-arrow {
    /* opacity: 1; */
    background: #ede9fd;
    transform: translate(3px, -3px);
}


/* ── WHY SECTION ── */

.stat-card {
    /* background: #ffffff0d; */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    /* border: 1px solid #fff3; */
    transition: border-color .3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* .stat-card:hover {
    border-color: var(--primary);
} */


.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgb(0 0 0 / 15%), rgba(210, 118, 57, 0.18), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 25px 30px rgba(17, 0, 126, 0.05),
        0 0 0 1px rgba(255, 215, 0, 0.1);
}

.stat-num {
    /*  */
    font-size: 44px;
    font-weight: 500;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
    margin-top: 8px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.why-check {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.why-check:last-child {
    border-bottom: none;
}

.why-check-ic {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(74, 36, 232, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d3c9ff;
    font-size: 14px;
}

.why-check p {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
    margin: 0;
}

.why-check p strong {
    color: #fff;
    font-weight: 600;
}

/* ── FEATURES ── */
.sec-features {
    padding: 80px 0;
    background: var(--white);
}

.feat-tab {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all .25s;
    background: transparent;
    border: 1px solid transparent;
    text-align: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
}

.feat-tab:hover {
    background: var(--light-bg);
}

.feat-tab.active {
    background: var(--white);
    border-color: var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
}

.feat-tab.active .feat-num-badge {
    background: var(--primary);
    color: #fff;
}

.feat-tab.active::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    width: 0%;
    z-index: 2;
    animation: tabProgress 5s linear forwards;
}

@keyframes tabProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* tab responsive */
/* Container for the tabs */
.tabs-wrapper {
    display: flex;
    flex-direction: column;
    /* Vertical on Desktop */
    gap: 8px;
}

@media (max-width: 991.98px) {
    .tabs-wrapper {
        flex-direction: row;
        /* Horizontal on Mobile */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        /* Space for scrollbar if visible */
    }

    .feat-tab {
        flex: 0 0 280px;
        /* Fixed width on mobile so they don't squash */
        scroll-snap-align: start;
        white-space: normal;
        /* Keep text wrapping inside the tab */
    }

    /* Hide scrollbar for a cleaner look (optional) */
    .tabs-wrapper::-webkit-scrollbar {
        display: none;
    }

    .tabs-wrapper {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .feat-tab.active {
        border-color: var(--primary);
    }

}



/* end tab responsive */

.feat-num-badge {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);

    transition: all .25s;
    flex-shrink: 0;
}

.feat-title {

    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.feat-sub {
    font-size: 12.5px;
    color: var(--muted);
}

.feat-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(74, 36, 232, .08);
    padding: 40px;
    position: relative;
    overflow: hidden;
}


.feat-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.htab-left .feat-panel::before {
    display: none;
}

.feat-panel h3 {

    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.feat-panel p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.feat-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.feat-bullets li {
    font-size: 14px;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.feat-bullets li .bi {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.feat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: 28px;
    transition: gap .2s;
}

.feat-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ── TESTIMONIALS ── */
.sec-testi {
    /* padding: 80px 0; */
    /* background: var(--light-bg); */
}

.bg-light-grey {
    background: var(--light-bg);
    /* background: linear-gradient(#f5f6f6, #fff); */
}

.tcard {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    height: 100%;
}

.tcard::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 80px;
    line-height: 1;
    color: var(--primary-light);
    font-family: Georgia, serif;
    pointer-events: none;
}

.tcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(74, 36, 232, .12);
    border-color: rgba(74, 36, 232, .2);
}

.tcard-stars {
    color: var(--secondary);
    font-size: 13.5px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.tcard-text {
    font-size: 14.5px;
    color: #444;
    line-height: 1.75;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.tcard-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;
    font-size: 16px;
    color: #fff;
}

.tcard-name {

    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.tcard-role {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* ── INDUSTRIES ── */
.sec-industries {
    padding: 80px 0;
    /* background: var(--dark); */
}

.ind-pill {
    background: #1e2861;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 100px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    transition: all .25s;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    display: inline-block;
}

.ind-pill:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 36, 232, .3);
}

/* ── CTA ── */
.sec-cta {
    /* padding: 90px 0; */
    /* background: linear-gradient(135deg, var(--primary) 0%, #6b3ef0 100%); */
    position: relative;
    overflow: hidden;
}

/* .sec-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
} */

.cta-h2 {

    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 600;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.1;
}

.cta-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
}

.btn-cta-white {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--primary);
    background: #fff;
    padding: 10px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    color: var(--primary-dark);
}

.btn-cta-outline {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    padding: 10px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, .35);
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-1px);
    color: #fff;
}

/* ── FOOTER ── */
footer {
    background: var(--dark-2);
    color: rgba(255, 255, 255, .5);
    padding: 60px 0 0;
    /* margin-top: 60px; */
}

.footer-brand {

    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1px;
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.5;
    max-width: 350px;
}

.footer-col-head {

    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: color .2s;
}

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

.footer-contact a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .2s;
}

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

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: 14px;
    transition: all .2s;
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, .07);
    margin: 48px 0 0;
}

.footer-bottom {
    background: var(--dark-card);
    padding: 22px 0;
}

.footer-legal a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .2s;
}

.footer-legal a:hover {
    color: #fff;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width:767.98px) {
    .hero h1 {
        font-size: 36px;
        letter-spacing: -.5px;
    }

    .feat-bullets {
        grid-template-columns: 1fr;
    }

    .hero-blob,
    .hero-blob-2 {
        display: none;
    }

    .float-badge {
        display: none;
    }

    .mega-menu {
        min-width: 320px !important;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .feat-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .workflow-steps {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .ind-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .fi-features {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* owl carousel */

.tp-brand-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, #0000 0%, #000 10% 90%, #0000 100%);
    mask-image: linear-gradient(90deg, #0000 0%, #000 10% 90%, #0000 100%);
}

.tp-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.tp-brand-item img {
    width: 100%;
    max-height: 50px;
    object-fit: contain;
}

/* .owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
} */

/* Force linear transition for the carousel stage */
.entries-brand-carousel .owl-stage {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.section-brand {
    background: linear-gradient(135deg, #f0f5ff 0%, #fff8e8 100%);
    position: relative;
    overflow: hidden;
}

.section-brand::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.06) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    pointer-events: none;
}

.section-brand::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 198, 28, 0.1) 0%, transparent 70%);
    bottom: -100px;
    right: 5%;
    pointer-events: none;
}

.bg-purple-gradient {
    /* background: linear-gradient(180deg, #26175e, #392498); */
    background: linear-gradient(320deg, #230b83, #3d20b3);
}

/* home industries */


.home-features_wrap {
    position: relative;
    overflow: hidden;
    padding: 34px 0;
}

.home-features_marquee {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    display: flex;
    -webkit-mask-image: linear-gradient(90deg, #0000 0%, #000 10% 25%, #0000 35% 65%, #000 75% 90%, #0000 100%);
    mask-image: linear-gradient(90deg, #0000 0%, #000 10% 25%, #0000 35% 65%, #000 75% 90%, #0000 100%)
}

.home-features_marquee.is-right {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.home-features_marquee-part {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex: none;
    display: flex
}

.home-features_marquee-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border: 1px solid #f1f1f1;
    border-radius: 2rem;
    background-color: #f9f9f9;
    flex: none;
    align-items: center;
    padding: .65rem 1.25rem;
    display: flex
}

.home-features_marquee-item i {
    color: #4a24e8;
}

.home-features_mask {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, #0000 0%, #000 10% 25%, #0000 35% 65%, #000 75% 90%, #0000 100%);
    mask-image: linear-gradient(90deg, #0000 0%, #000 10% 25%, #0000 35% 65%, #000 75% 90%, #0000 100%)
}

.home-features_txt-wrap {
    z-index: 1;
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    align-items: center;
    width: 22rem;
    display: flex;
    position: absolute;
    /* top: 1.5rem; */
    left: calc(50% - 11rem)
}

.home-features_marquee-part {
    animation: featuresMarqueeToLeft 70s linear infinite;
}

.home-features_marquee.is-right .home-features_marquee-part {
    animation: featuresMarqueeToRight 70s linear infinite;
}

/* Default state of the icon */
[data-move="true"] {
    transition: transform 0.3s ease;
}

/* Move icon 4px to the right when button is hovered */
[data-hover-target="true"]:hover [data-move="true"] {
    transform: translateX(4px);
}

/* Return icon to its original position when hover ends */
[data-hover-target="true"] {
    transition: transform 0.3s ease;
}


@keyframes featuresMarqueeToLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

@keyframes featuresMarqueeToRight {
    from {
        transform: translateX(calc(-100% - 1rem));
    }

    to {
        transform: translateX(0);
    }
}

.btn-pause {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
}

.ft-progress-bar {
    flex: 1;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.ft-progress {
    height: 100%;
    width: 0%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* nav top */
/* remove default bootstrap arrow */
.navbar .dropdown-toggle::after {
    display: none;
}

/* icon animation */
.dropdown-icon {
    display: inline-flex;
    transition: transform 0.25s ease;
}

/* rotate when open */
.nav-item.show .dropdown-icon {
    transform: rotate(180deg);
}

/* optional smooth dropdown */
.dropdown-menu {
    transition: all 0.2s ease;
}

/* end nav top */


/* inside hero section */
/* HERO */
.hero-section {
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, #F8F7FF 0%, #EEF2FF 60%, #E0FDF4 100%);
    position: relative;
    overflow: hidden;
    min-height: inherit;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 99, 255, .08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(108, 99, 255, .08);
    border: 1px solid rgba(108, 99, 255, .2);
    color: var(--primary);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-section .hero-badge::before {
    content: '\f589';
    font-size: 10px;
    font-family: bootstrap-icons !important;
}

.btn-gradient {
    background-image: linear-gradient(#273efc, #245ce8);
    border: 1px solid #0000;
}

.btn-gradient:hover {
    background-image: linear-gradient(120deg, #245ce8, #273efc);
    border: 1px solid #0000;
}

/* accounting */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.why-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
    cursor: default;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, .12);
}

.why-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.purple {
    background: rgba(108, 99, 255, .1) !important;
}

.teal {
    background: rgba(0, 212, 168, .2) !important;
}

.amber {
    background: rgba(245, 158, 11, .2) !important;
}

.blue {
    background: rgba(59, 130, 246, .2) !important;
}

.why-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.stat-num span {
    color: var(--accent);
}

.stat-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    margin-top: 4px;
    font-family: var(--font-body);
}

/* FEATURES */
.features-section {
    padding: 80px 32px;
}

.features-header {
    text-align: center;
    margin-bottom: 56px;
}

/* 
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 72px;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse>* {
    direction: ltr;
} */

.feature-tag {
    display: inline-block;
    background: rgba(108, 99, 255, .08);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.feature-block h3 {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 600;
    color: var(--brand);
    letter-spacing: -.3px;
    margin-bottom: 12px;
    line-height: 1.25;
}

.feature-block p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 400;
}

.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--brand);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 13px;
    border-radius: 50px;
    font-family: var(--font-body);
}

/* FEATURE PANELS */


.panel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-family: var(--font-body);
}

.panel-row:last-child {
    border-bottom: none;
}

.pr-label {
    color: var(--muted);
}

.pr-val {
    font-weight: 600;
    color: var(--brand);
    font-family: var(--font-head);
}

.progress-block {
    margin-top: 16px;
}

.pb-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.pb-bar {
    height: 8px;
    background: #E5E7EB;
    border-radius: 99px;
    margin-bottom: 10px;
    overflow: hidden;
}

.pb-fill {
    height: 100%;
    border-radius: 99px;
}

/* FAQ */
.faq-wrap {
    padding: 2rem 0;
}

.faq-header {
    margin-bottom: 2rem;
}

.faq-header h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 6px;
}

.faq-header p {
    font-size: 14px;
    margin: 0;
}

.faq-item {
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item.open {
    border-color: #ddd;
    background: var(--surface);
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

/* .faq-btn:hover {
    background: #ccc;
} */

.faq-num {
    font-size: 11px;
    font-weight: 500;
    border: 0.5px solid var(--border);
    border-radius: 6px;
    padding: 2px 7px;
    min-width: 28px;
    text-align: center;
    flex-shrink: 0;
    background: #EEF2FF;
}

.faq-item.open .faq-num {
    background: #7d65e8;
    border-color: var(--border);
    color: #fff;
}

.faq-q {
    font-size: 15px;
    font-weight: 500;
    flex: 1;
    line-height: 1.4;
}

.faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.open .faq-body {
    max-height: 500px;
    padding: 0 20px 18px;
}

.faq-body p {
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 10px;
}

.faq-body p:last-child {
    margin: 0;
}

.faq-checks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 6px;
    margin: 10px 0;
}

.faq-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;

}

.faq-divider {
    width: 100%;
    height: 0.5px;
    margin: 0 0 14px;
}

/* inventory */
/* ─── LOGOS STRIP ─── */
.logos {
    background: var(--surface);
    padding: 24px 40px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.logos p {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 18px
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap
}

.logo-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
    opacity: .55;
    text-transform: uppercase;
}

/* stats bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 56px;
}

.sb-item {
    background: var(--white);
    padding: 30px 28px
}

.sb-num {
    font-size: 36px;
    font-weight: 800;
    /* color: var(--brand); */
    line-height: 1;
    margin-bottom: 7px;
    letter-spacing: -1.5px
}

.sb-label {
    color: var(--text-2)
}


/* ─── FEATURES GRID ─── */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 52px;
}

.feat-card {
    background: var(--white);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: background .18s;
}

.feat-card:hover {
    background: var(--surface)
}

/* 
.feat-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: .06;
}

.feat-card.fg::before {
    background: var(--accent)
}

.feat-card.fp::before {
    background: var(--purple)
}

.feat-card.fb::before {
    background: var(--blue)
}

.feat-card.fy::before {
    background: var(--amber)
}

.feat-card.fr::before {
    background: var(--red)
} */


.feat-desc {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 16px
}

.feat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px
}

.ftag {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-3);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 6px;
}

.dlist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 24px
}

.dlist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.55;
}

.ck {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 200, 150, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ck svg {
    width: 10px;
    height: 10px
}

/* detail visual panel */
.dvis {
    background: var(--surface);
    /* border: 1px solid var(--border); */
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.dvis-head {
    padding: 22px 22px 0
}

.dvis-toprow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px
}

.dvis-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1)
}

.dbadge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(0, 200, 150, .1);
    color: #00a87c;
}

.dbadge.amber {
    background: rgba(245, 158, 11, .1);
    color: #b45309
}

.dbadge.blue {
    background: rgba(37, 99, 235, .1);
    color: #2563eb
}

.dbadge.live {
    background: rgba(0, 200, 150, .1);
    color: #00a87c;
    display: flex;
    align-items: center;
    gap: 5px
}

.live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #00c896;
    animation: pulse 1.5s infinite
}

.mini-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px
}

.mini-tbl th {
    text-align: left;
    padding: 6px 10px;
    color: var(--text-3);
    font-weight: 600;
    font-size: 10px;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: .4px;
}

.mini-tbl td {
    padding: 9px 10px;
    border-bottom: 1px solid var(--border);
    color: var(--text-2)
}

.mini-tbl td:first-child {
    font-weight: 600;
    color: var(--text-1)
}

.mini-tbl tr:last-child td {
    border-bottom: none
}

.dvis-foot {
    background: linear-gradient(135deg, #1a1150, #2d1f7a);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dvf-l {
    font-size: 11px;
    color: rgba(255, 255, 255, .5)
}

.dvf-val {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px
}

.dvf-chip {
    font-size: 11px;
    font-weight: 800;
    color: #09061e;
    background: var(--accent);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
}

/* end */

/* tabs */
/* Container and Base Nav */
.tab-header-content .nav-underline {
    justify-content: center;
    gap: 39px;
    border-bottom: 1px solid #dbdbdb;
    font-weight: 500;
    border-radius: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
}

/* Base Link State */
.tab-header-content .nav-link {
    color: #000;
    border-bottom: 1px solid transparent;
    padding: 12px 0;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
    font-weight: 500 !important;
}

/* Active State - This is your permanent blue line */
.tab-header-content .nav-underline .nav-link.active {
    color: #2e36fd;
    border-bottom: 1px solid #c4c7fc !important;
    /* Keep the blue line visible */
    border-radius: 0;
}

/* Progress Bar - Overlays on top of the blue line */
.tab-header-content .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    /* Sits exactly on the blue border */
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #2e36fd;
    /* Green Progress */
    z-index: 2;
    /* We use a class-based trigger for the animation to reset it on click */
    animation: tabProgress 5s linear forwards;
}

/* Pause on Hover */
.tab-header-content:hover .nav-link.active::after,
#pills-tabContent:hover~.tab-header-content .nav-link.active::after {
    animation-play-state: paused;
}

@keyframes tabProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Hide Scrollbar */
.nav-underline::-webkit-scrollbar {
    display: none;
}

/* ─── WORKFLOW ─── */
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 52px;
    position: relative;
}

.workflow-steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #b53fa9, #5e00ff);
    opacity: .15;
}

.wstep {
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 1
}

.wstep-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9400ea, #2700ff);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 18px rgba(26, 17, 80, .22);
}

.wstep-title {
    font-weight: 600;
    margin-bottom: 6px
}

.wstep-desc {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.55
}

/* manufacturing */




/* Floating mini-cards */
.mfg-float-card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13.5px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: start;
    gap: 4px;
    border: 1px solid rgba(74, 36, 232, .1);
    z-index: 2;
    animation: floatBob 5s ease-in-out infinite;
}

.mfg-float-1 {
    bottom: 10px;
    left: -32px;
    min-width: 160px;
    animation: floatCard 4s ease-in-out infinite;
}

.mfg-float-2 {
    top: -60px;
    right: -28px;
    min-width: 140px;
}

.float-label {
    font-size: 10px;
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 500;
}

.float-val {
    font-size: 20px;
    font-weight: 600;
}

.float-sub {
    font-size: 10px;
    color: var(--accent) !important;
    margin-top: 2px;
}

.navbar-entries.scrolled {
    box-shadow: 0 4px 30px rgba(92, 59, 255, 0.10);
}

/* hrms */
.hero-float-card {
    position: absolute;
    top: -40px;
    right: -20px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    animation: floatCard2 5s ease-in-out infinite;
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-float-card .fc-label {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}

.hero-float-card .fc-val {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-float-card .fc-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #dcfce7;
    color: #15803d;
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
}


/* App download card inside hero */
/* .app-download-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border-light);
    padding: 20px 22px;
    max-width: 260px;
    position: absolute;
    bottom: 30px;
    left: -30px;
    animation: floatCard 4s ease-in-out infinite;
} */

.app-download-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border-light);
    /* padding: 20px 22px; */
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.app-download-card h6 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.app-store-btns {
    display: flex;
    /* flex-direction: column; */
    gap: 12px;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2c1496;
    color: #fff !important;
    border-radius: 10px;
    padding: 8px 14px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1.5px solid rgba(255, 255, 255, .2);
}

.app-store-btn:hover {
    background: var(--brand);
    color: #fff;
    transform: scale(1.02);
}

.app-store-btn .store-icon {
    font-size: 22px;
    line-height: 1;
}

.app-store-btn .store-text {
    display: flex;
    flex-direction: column;
}

.app-store-btn .store-sub {
    font-size: 9px;
    opacity: 0.75;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.app-store-btn .store-name {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

/* end app button */

.bg-gradient1 {
    background: linear-gradient(160deg, #f0edff 0%, #fdfcff 55%, #fff0eb 100%);
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 4px;
}

@media (max-width: 575px) {
    .hero-stats {
        gap: 20px;
    }

    .app-badge-row {
        flex-direction: column;
    }

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

    .module-tab {
        flex: 1 0 50%;
    }
}

/* ======= LOGOS MARQUEE ======= */
.logos-section {
    background: #fff;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 18px 0;
    overflow: hidden;
}

.logos-label {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    padding-right: 32px;
}

.marquee-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marquee 8s linear infinite;
}

.marquee-track img {
    height: 28px;
    opacity: 0.55;
    filter: grayscale(1);
    transition: all 0.3s;
}

.marquee-track img:hover {
    opacity: 1;
    filter: none;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.feat-grid.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


/* BOM CARD */
.ep-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.ep-card-hdr {
    background: #e4e0fc;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ep-card-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.ep-card-body {
    padding: 16px;
}

.bom-node {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    border-radius: 7px;
    margin-bottom: 3px;
    border: 1px solid transparent;
    font-size: 12px;
    transition: background .12s;
}

.bom-node:hover {
    background: var(--surface);
    border-color: var(--border);
}

.bom-node.l0 {
    background: var(--orange-lt);
    border-color: var(--orange-md);
}

.bom-node.l1 {
    margin-left: 18px;
}

.bom-node.l2 {
    margin-left: 36px;
}

.bom-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bom-name {
    font-weight: 600;
    flex: 1;
    color: var(--text);
}

.bom-qty {
    font-size: 10px;
    color: var(--text3);
    background: var(--surface);
    padding: 2px 6px;
    border-radius: 4px;
}

.bom-cost {
    font-size: 10px;
    color: var(--amber);
    min-width: 52px;
    text-align: right;
    font-family: monospace;
    font-weight: 600;
}

/* WORK ORDERS */
.wo-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wo-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 14px;
}

.wo-hdr {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
}

.wo-id {
    font-size: 11px;
    color: var(--blue);
    font-family: monospace;
    font-weight: 600;
}

.wo-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.wo-meta {
    display: flex;
    gap: 14px;
    font-size: 11px;
    color: var(--text3);
    margin-bottom: 9px;
    font-weight: 500;
}

.wo-prog-wrap {
    background: var(--surface);
    border-radius: 4px;
    height: 5px;
    margin-bottom: 5px;
}

.wo-prog-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--orange);
    transition: width 1s ease;
}

.wo-foot {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text3);
}

/* COSTING */
.ep-cost-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 20px;
    margin-top: 44px;
}

.cost-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.cost-lbl {
    font-size: 12px;
    color: var(--text2);
    min-width: 118px;
    font-weight: 500;
}

.cost-bar-bg {
    flex: 1;
    background: var(--surface);
    border-radius: 4px;
    height: 8px;
    border: 1px solid var(--border);
}

.cost-bar-fg {
    height: 100%;
    border-radius: 4px;
}

.cost-val {
    font-size: 12px;
    font-weight: 600;
    min-width: 72px;
    text-align: right;
    font-family: monospace;
    color: var(--text);
}

.cost-pct {
    font-size: 10px;
    color: var(--text3);
    min-width: 28px;
    font-weight: 500;
}

.var-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
}

.var-item:last-child {
    border-bottom: none;
}

.var-name {
    color: var(--text2);
    font-weight: 500;
}

.var-std {
    font-family: monospace;
    font-size: 11px;
    color: var(--text);
}

.var-act {
    font-family: monospace;
    font-size: 11px;
}

.var-diff {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
}

.vf {
    background: var(--green-lt);
    color: var(--green);
}

.vu {
    background: var(--red-lt);
    color: var(--red);
}


/* KPI cards */
.ep-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.ep-kpi {
    background: var(--surface);
    border-radius: 10px;
    padding: 11px 13px;
    border: 1px solid var(--border);
}

.ep-kpi-lbl {
    font-size: 10px;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 5px;
}

.ep-kpi-val {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.ep-kpi-delta {
    font-size: 10px;
    margin-top: 3px;
    font-weight: 500;
}

.d-up {
    color: var(--green);
}

.d-dn {
    color: var(--red);
}

/* Charts row */
.ep-chart-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.ep-chart-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
}

.ep-chart-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ep-chart-badge {
    background: var(--green-lt);
    color: var(--green);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
}

.chart-wrap {
    position: relative;
    width: 100%;
}

/* Orders table */
.ep-orders {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
}

.ep-orders-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 10px;
}

.ep-orow {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 8px;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
}

.ep-orow:last-child {
    border-bottom: none;
}

.ep-oid {
    font-weight: 600;
    font-family: monospace;
    color: var(--blue);
}

.ep-oprod {
    color: var(--text2);
}

.ep-pill {
    border-radius: 4px;
    padding: 2px 7px;
    font-size: 10px;
    font-weight: 600;
}

.p-run {
    background: #DBEAFE;
    color: #1D4ED8;
}

.p-done {
    background: var(--green-lt);
    color: var(--green);
}

.p-pend {
    background: var(--amber-lt);
    color: var(--amber);
}

.ep-bar-wrap {
    background: #E8E4DF;
    border-radius: 4px;
    height: 4px;
    width: 48px;
}

.ep-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--orange);
}


/* MODULES FLOW */
.ep-flow {
    margin-top: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    flex-wrap: wrap;
}

.ep-mod {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 16px 18px;
    text-align: center;
    min-width: 106px;
    transition: border-color .15s, transform .15s;
    cursor: default;
}

.ep-mod:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.ep-mod.active {
    border-color: var(--blue);
    background: var(--blue-dim);
}

.ep-mod-icon {
    font-size: 20px;
    margin-bottom: 6px;
}

.ep-mod-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
}

.ep-mod-sub {
    font-size: 10px;
    color: var(--text3);
    margin-top: 2px;
    font-weight: 500;
}

.ep-arrow {
    color: var(--text3);
    font-size: 16px;
    flex-shrink: 0;
}


.ep-trust {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.ep-trust span {
    font-size: 12px;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.ep-trust span::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green-lt);
    border: 1.5px solid var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--green);
}

/* end set card */

/* crm */
.vp-content .section-sub {
    margin-bottom: 2rem;
}

.vp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vp-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.vp-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.vp-check svg {
    width: 11px;
    height: 11px;
}

.vp-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
}

.hero-card-stack {
    position: relative;
}

.hero-main-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.pipeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.pipeline-header h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.pipeline-header .live-badge {
    background: var(--success-light);
    color: var(--success);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.pipeline-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.pipeline-col {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
}

.pipeline-col-header {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.pipeline-card {
    background: var(--white);
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    padding: 0.5rem;
    margin-bottom: 0.4rem;
}

.pipeline-card-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.15rem;
}

.pipeline-card-value {
    font-size: 0.68rem;
    color: var(--primary);
    font-weight: 600;
}

.pipeline-card-tag {
    font-size: 0.6rem;
    color: var(--gray-600);
}

.badge-new {
    background: var(--primary-light);
    color: var(--primary);
}

.badge-hot {
    background: #fff3e6;
    color: var(--secondary);
}

.badge-warm {
    background: #fef9c3;
    color: #854d0e;
}

.float-card-1 {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 0.9rem 1.1rem;
    box-shadow: var(--shadow-md);
    min-width: 160px;
}

.float-card-2 {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 0.9rem 1.1rem;
    box-shadow: var(--shadow-md);
    min-width: 180px;
}

.float-label {
    font-size: 0.7rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.float-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
}

.float-sub {
    font-size: 0.7rem;
    color: var(--green);
    font-weight: 600;
    margin-top: 0.1rem;
}

.float-sub.orange {
    color: var(--secondary);
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    transition: all .25s;
    cursor: default;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(74, 36, 232, 0.1);
    transform: translateY(-3px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    font-size: 1rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
}

.tag-primary {
    background: var(--primary-light);
    color: var(--primary);
}

.tag-orange {
    background: var(--secondary-light);
    color: var(--secondary);
}

.tag-gray {
    background: var(--gray-100);
    color: var(--gray-600);
}


/* FEATURE DEEP DIVE */
.feature-section {
    background: #fff;
}

.feature-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.ftab {
    padding: 0.55rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1.5px solid var(--gray-200);
    color: var(--gray-600);
    cursor: pointer;
    transition: all .2s;
    background: var(--white);
    font-family: 'Inter', sans-serif;
}

.ftab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.ftab:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.feature-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-detail-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.bullet-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 8px;
    flex-shrink: 0;
}

.feature-detail-visual {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

/* MOCK UI */
.mock-pipeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mock-row {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1rem;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mock-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
}

.cn {
    font-size: .78rem;
    font-weight: 600;
    flex: 1;
    line-height: 1;
}

.cm {
    font-size: .68rem;
    color: var(--gray-600)
}

.av1 {
    background: var(--primary-light);
    color: var(--primary);
}

.av2 {
    background: var(--secondary-light);
    color: var(--secondary);
}

.av3 {
    background: var(--success-light);
    color: var(--success);
}

.mock-info {
    flex: 1;
}

.mock-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
}

.mock-meta {
    font-size: 0.72rem;
    color: var(--gray-600);
}

.mock-score {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
}

.stage-pill {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.stage-new {
    background: var(--primary-light);
    color: var(--primary);
}

.stage-qualified {
    background: #dcfce7;
    color: #16a34a;
}

.stage-quoted {
    background: #fff3e6;
    color: #ea580c;
}

/* QUOTA MOCK */
.mock-quote {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.mock-quote-header {
    background: var(--primary);
    color: #fff;
    padding: 0.9rem 1.1rem;
}

.mock-quote-header h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.mock-quote-header p {
    font-size: 0.72rem;
    opacity: 0.8;
    color: #fff;
    line-height: 1;
}

.mock-quote-body {
    padding: 1rem;
}

.quote-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.8rem;
}

.quote-line:last-child {
    border-bottom: none;
    font-weight: 600;
}

.quote-total {
    color: var(--primary);
}


/* end crm */

.btn-ghost {
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
    transition: all .2s;
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost-light {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-primary {
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    transition: all .2s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: #3a18c8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 36, 232, 0.3);
}

.workflow-steps2 {
    display: flex;
    gap: 0;
    margin-top: 3rem;
    position: relative;
}

.workflow-steps2::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 0;
}

.workflow-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
}

.workflow-step.active .step-circle {
    background: var(--primary);
    color: #fff;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.step-desc {
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.4;
    max-width: 200px;
    margin: auto;
}

.platform-card {
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
}

.platform-card.mobile {
    background: var(--primary);
    color: #fff;
}

.platform-card.desktop {
    background: var(--dark);
    color: #fff;
}

.platform-icon {
    font-size: 2.5rem;
}

.platform-card h3 {
    font-size: 1.45rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    margin-top: 1.25rem;
}

.platform-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.65;
}

.platform-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.platform-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}


/* LAW COVERAGE */
.law-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.law-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border-radius: 100px;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all .2s;
    cursor: default;
}

.law-chip:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.cd-green {
    background: var(--green);
}

.cd-orange {
    background: var(--secondary);
}

.cd-primary {
    background: var(--primary);
}

.tag-success {
    background: var(--green-lt);
    color: var(--green);
}



/* workflow horizontal */
.workflow-steps-list.wfhorizontal {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wfhorizontal .wstep {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-left: 3px solid var(--gray-200);
    margin-left: 24px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
}

.wfhorizontal .wstep.active {
    border-left-color: var(--primary);
    background: var(--primary-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.wfhorizontal .wstep-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid var(--white);
}

.wfhorizontal .wstep.active .wstep-num {
    background: var(--primary);
    color: #fff;
}

.wfhorizontal .wstep-content {
    padding-left: 0.5rem;
    text-align: left;
}

.wfhorizontal .wstep-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.wfhorizontal .wstep-content p {
    font-size: 0.82rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

.wfhorizontal .wstep.active .wstep-content p {
    color: var(--primary);
}

/* CALENDAR MOCK */
.cal-mock {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cal-header {
    background: var(--primary);
    padding: 1rem 1.25rem;
}

.cal-header h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.cal-header p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.cal-body {
    padding: 1.1rem;
}

.cal-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.cal-item:last-child {
    border-bottom: none;
}

.cal-date {
    text-align: center;
    min-width: 40px;
    flex-shrink: 0;
}

.cal-day {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.cal-month {
    font-size: 0.65rem;
    color: var(--gray-600);
    text-transform: uppercase;
    font-weight: 600;
}

.cal-info {
    flex: 1;
}

.cal-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.cal-law {
    font-size: 0.7rem;
    color: var(--gray-600);
}

.cal-status {
    flex-shrink: 0;
}

.status-pill {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.sp-due {
    background: var(--red-lt);
    color: var(--red);
}

.sp-pending {
    background: var(--orange-lt);
    color: var(--orange);
}

.sp-done {
    background: var(--green-lt);
    color: var(--green);
}

/* DOCUMENT FOLDER MOCK */
.folder-mock {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.folder-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.folder-header h5 {
    font-size: 0.9rem;
    font-weight: 600;
}

.folder-body {
    padding: 1rem;
}

.folder-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background .15s;
    cursor: pointer;
}

.folder-row:hover {
    background: var(--gray-50);
}

.folder-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.folder-name {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--dark);
}

.folder-meta {
    font-size: 0.7rem;
    color: var(--gray-600);
}

.folder-badge {
    margin-left: auto;
}

/* RISK DASHBOARD */
.risk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.risk-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.risk-card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.risk-card-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.risk-card-body {
    padding: 1.25rem;
}

.risk-level {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.risk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.risk-name {
    font-size: 0.85rem;
    font-weight: 600;
    flex: 1;
}

.risk-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.15rem 0.55rem;
    border-radius: 100px;
}

.rt-high {
    background: var(--red);
    color: var(--red-lt);
}

.rt-med {
    background: var(--orange-lt);
    color: var(--orange);
}

.rt-low {
    background: var(--green-lt);
    color: var(--green);
}

.audience-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all .2s;
}

.audience-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.audience-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.cta-checklist {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;

}

.cta-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.9;
    color: #fff !important;
}

.cta-check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}


/* ca practice */


.ps-left h2 em {
    font-style: normal;
    color: var(--secondary)
}

.ps-left p {
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
    line-height: 1.7
}

.tool-chaos {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem
}

.tool-pill {
    padding: .45rem 1rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .55);
    font-size: .8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, .12);
    position: relative
}

.tool-pill.crossed::after {
    content: '';
    position: absolute;
    left: .5rem;
    right: .5rem;
    top: 50%;
    height: 1.5px;
    background: var(--red);
    transform: translateY(-50%)
}

.arrow-badge {
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    height: 100%;
}

.arrow-badge .big {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff
}

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

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

.tag {
    font-size: .7rem;
    font-weight: 600;
    padding: .2rem .55rem;
    border-radius: 100px
}

.tg-p {
    background: var(--primary-light);
    color: var(--primary)
}

.tg-o {
    background: var(--secondary-light);
    color: var(--secondary)
}

.tg-g {
    background: var(--gray-100);
    color: var(--gray-600)
}

.tg-s {
    background: var(--green-lt);
    color: var(--green)
}

.tg-d {
    background: var(--danger-light);
    color: var(--danger);
}

/* MOCK PANELS */
.mock-panel {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-md)
}

.mp-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mp-header h5 {
    font-size: .88rem;
    font-weight: 600;
}

.mp-body {
    padding: 1.1rem
}

.client-row {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .6rem .75rem;
    border-radius: var(--radius-lg);
    margin-bottom: .35rem;
    border: 1px solid var(--gray-200);
    background: #fff
}

.spill {
    font-size: .62rem;
    font-weight: 600;
    padding: .15rem .5rem;
    border-radius: 100px
}

.sp-ok {
    background: var(--success-light);
    color: var(--success)
}

.sp-due {
    background: var(--danger-light);
    color: var(--danger)
}

.sp-pend {
    background: var(--warning-light);
    color: var(--warning)
}

/* * BILLING MOCK  */

.billing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: .82rem
}

.billing-row:last-child {
    border-bottom: none;
    font-weight: 600;
    color: var(--primary)
}

.br-client {
    font-weight: 600
}

.br-amount {
    font-weight: 600
}

.br-status {
    font-size: .68rem;
    font-weight: 600;
    padding: .15rem .5rem;
    border-radius: 100px
}

/* AUDIENCE */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem
}

.aud-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all .2s
}

.aud-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md)
}

.aud-icon {
    font-size: 2rem;
    margin-bottom: .75rem
}

.aud-card h4 {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .45rem
}

.aud-card p {
    font-size: .78rem;
    color: var(--gray-600)
}

.testi-text {
    font-size: .78rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.testi-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700
}

.testi-name {
    font-size: .85rem;
    font-weight: 600
}

.testi-role {
    font-size: .75rem;
    color: var(--gray-600)
}

.lc-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative
}

.lc-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 0
}

.lc-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 .5rem
}

.lc-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem
}

.lc-step.active .lc-circle {
    background: var(--primary)
}

.lc-step h4 {
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .3rem
}

.lc-step p {
    font-size: .7rem;
    color: rgba(255, 255, 255, .45)
}

/* ─── PAYSLIP SIMULATOR ─── */
.sim-section {
    background: var(--gray-50)
}

.sim-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.sim-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: .4rem
}

.sim-input {
    width: 100%;
    padding: .7rem .9rem;
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-200) !important;
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: #fff;
    transition: border-color .2s
}

.sim-input:focus {
    outline: none;
    border-color: var(--primary) !important
}

.sim-row {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    border: 1px solid var(--gray-200)
}

.payslip-mock {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
    overflow: hidden
}

.ps-header {
    background: var(--primary);
    padding: 1.25rem 1.5rem
}

.ps-header h5 {
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.ps-header p {
    font-size: .75rem;
    color: rgba(255, 255, 255, .75);
    margin-top: .2rem;
    margin-bottom: 0;
}

.ps-body {
    padding: 1.25rem
}

.ps-section {
    margin-bottom: 1rem
}

.ps-section-title {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-600);
    margin-bottom: .5rem
}

.ps-line {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    padding: .35rem 0;
    border-bottom: 1px solid var(--gray-100)
}

.ps-line:last-child {
    border-bottom: none
}

.ps-line .label {
    color: var(--gray-700)
}

.ps-line .value {
    font-weight: 600
}

.ps-total {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: .85rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .75rem
}

.ps-total .tlabel {
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary)
}

.ps-total .tvalue {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary)
}

/* ─── ATTENDANCE MOCK ─── */
.attend-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .3rem;
    margin-top: .75rem
}

.cal-day-h {
    text-align: center;
    font-size: .65rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    padding: .3rem 0
}

.cal-day {
    text-align: center;
    padding: .4rem .2rem;
    border-radius: var(--radius);
    font-size: .75rem;
    font-weight: 500;
    cursor: default;
    transition: all .15s
}

.cd-present {
    background: var(--success-light);
    color: var(--success)
}

.cd-absent {
    background: var(--danger-light);
    color: var(--danger)
}

.cd-half {
    background: var(--warning-light);
    color: var(--warning)
}

.cd-leave {
    background: var(--primary-light);
    color: var(--primary)
}

.cd-empty {
    color: var(--gray-400)
}

.cd-today {
    border: 2px solid var(--primary);
    font-weight: 700
}

.attend-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 1rem
}

.as-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1rem;
    border: 1px solid var(--gray-200);
    text-align: center
}

.as-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700
}

.as-lbl {
    font-size: .7rem;
    color: var(--gray-600);
    margin-top: .2rem
}

.ess-features {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-top: 1.5rem
}

.ess-feat {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: .85rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, .08)
}

.ess-feat-icon {
    font-size: 1.3rem;
    flex-shrink: 0
}

.ess-feat h4 {
    font-size: .88rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .15rem
}

.ess-feat p {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5)
}

.ess-store-btns {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap
}

.store-btn {
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    padding: .55rem 1.25rem;
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: .5rem
}

.store-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .4)
}

.comp-badge {
    display: inline-block;
    background: var(--success-light);
    color: var(--success);
    font-size: .65rem;
    font-weight: 600;
    padding: .15rem .55rem;
    border-radius: 100px;
    margin-top: .5rem
}

/* ─── HERO PAYROLL MOCK ─── */
.payroll-mock {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    overflow: hidden
}

.pm-bar {
    background: var(--dark);
    padding: .85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.pm-bar h5 {
    font-size: .85rem;
    font-weight: 600;
    color: #fff
}

.pm-dots {
    display: flex;
    gap: 5px
}

.pm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.pm-body {
    padding: 1.1rem
}

.pm-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    margin-bottom: 1rem
}

.kpi {
    background: var(--gray-50);
    border-radius: var(--r-sm);
    padding: .7rem;
    text-align: center
}

.kn {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700
}

x .kl {
    font-size: .67rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-top: .1rem
}

.emp-row {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem .7rem;
    border-radius: var(--r-sm);
    margin-bottom: .35rem;
    border: 1px solid var(--gray-200)
}

.a1 {
    background: var(--primary-light);
    color: var(--primary)
}

.a2 {
    background: var(--secondary-light);
    color: var(--secondary)
}

.a3 {
    background: var(--success-light);
    color: var(--success)
}

.a4 {
    background: var(--warning-light);
    color: var(--warning)
}

.en {
    font-size: .78rem;
    font-weight: 600;
    flex: 1
}

.em {
    font-size: .68rem;
    color: var(--gray-600)
}

.av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 600;
    flex-shrink: 0
}

.epill {
    font-size: .62rem;
    font-weight: 600;
    padding: .15rem .5rem;
    border-radius: 100px
}

.ep-ok {
    background: var(--success-light);
    color: var(--success)
}

.ep-pend {
    background: var(--warning-light);
    color: var(--warning)
}

.ep-proc {
    background: var(--primary-light);
    color: var(--primary)
}

/* vendor mockup */
.vendor-mock {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-md)
}

.vm-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.vm-header h5 {
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 0;
}

.vm-body {
    padding: 1rem
}

.vendor-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem .75rem;
    border-radius: var(--radius-sm);
    margin-bottom: .4rem;
    border: 1px solid var(--gray-200)
}

.vendor-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 600;
    flex-shrink: 0
}

.va1 {
    background: var(--success-light);
    color: var(--success)
}

.va2 {
    background: var(--danger-light);
    color: var(--danger)
}

.va3 {
    background: var(--warning-light);
    color: var(--warning)
}

.va4 {
    background: var(--primary-light);
    color: var(--primary)
}

.vn {
    font-size: .82rem;
    font-weight: 600
}

.vm {
    font-size: .7rem;
    color: var(--gray-600)
}

.vscore {
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 600
}

.score-bar-wrap {
    flex: 1;
    height: 6px;
    background: var(--gray-200);
    border-radius: 100px;
    overflow: hidden
}

.score-bar {
    height: 100%;
    border-radius: 100px
}

/* compare */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    margin-top: 3rem
}

.compare-col {
    padding: 2rem
}

.compare-col.old {
    background: var(--gray-50)
}

.compare-col.new {
    background: var(--primary)
}

.compare-col h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem
}

.compare-col.new h3 {
    color: #fff
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
    font-size: .875rem
}

.compare-col.old .compare-item {
    color: var(--gray-600)
}

.compare-col.new .compare-item {
    color: rgba(255, 255, 255, .9)
}

.ci-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .65rem;
    margin-top: 1px
}

.ci-bad {
    background: var(--danger-light);
    color: var(--danger)
}

.ci-good {
    background: rgba(255, 255, 255, .2);
    color: #fff
}

/* features */
.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    text-align: center
}

.sbi-n {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff
}

.sbi-l {
    font-size: .78rem;
    color: rgba(255, 255, 255, .65);
    margin-top: .15rem
}

/* CAP TABLE MOCK */
.ct-mock {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden
}

.ct-bar {
    background: var(--dark);
    padding: .9rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.ct-bar h5 {
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.ct-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--gray-200)
}

.ct-tab {
    padding: .45rem 1.1rem;
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    border-bottom: 2px solid transparent;
    color: var(--gray-600);
    font-family: 'Inter', sans-serif
}

.ct-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary)
}

.ct-body {
    padding: 1.1rem
}

/* DONUT CHART */
.ownership-chart {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem
}

.donut-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0
}

.donut-wrap svg {
    width: 100%;
    height: 100%
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

.donut-pct {
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.donut-lbl {
    font-size: .58rem;
    color: var(--gray-600);
    line-height: 1;
}

.legend {
    display: flex;
    flex-direction: column;
    gap: .15rem
}

.legend-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem
}

.ld {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0
}

.lt {
    color: var(--gray-700)
}

.lv {
    font-weight: 600;
    margin-left: auto;
    padding-left: .5rem
}

/* SHAREHOLDER TABLE */
.sh-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .75rem
}

.sh-table th {
    padding: .35rem .6rem;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: .67rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: var(--gray-50)
}

.sh-table td {
    padding: .35rem .6rem;
    border-bottom: 1px solid var(--gray-100)
}

.sh-table tr:last-child td {
    border-bottom: none
}

.share-type {
    font-size: .65rem;
    font-weight: 600;
    padding: .15rem .5rem;
    border-radius: 100px
}

.st-equity {
    background: var(--primary-light);
    color: var(--primary)
}

.st-ccps {
    background: var(--secondary-light);
    color: var(--secondary)
}

.st-esop {
    background: var(--success-light);
    color: var(--success)
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.pain-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .88rem;
    color: rgba(255, 255, 255, .7)
}

.pain-x {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(220, 38, 38, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    color: var(--danger);
    flex-shrink: 0;
    font-weight: 700
}

.fix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem
}

.fix-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 1.1rem;
    transition: all .22s;
    position: relative;
    overflow: hidden;
}

.fix-card h4 {
    font-size: .88rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .35rem
}

.fix-card p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.55
}

.fix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem
}

.fix-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 1.1rem
}

.fix-card .set-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .4);
    /* margin: 0 auto 18px; */
}

.fix-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .75rem
}

.fix-card p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.55
}

.fix-card:hover {
    /* border-color: var(--primary); */
    box-shadow: 0 10px 36px rgba(46, 54, 253, .10);
    transform: translateY(-4px);
}

.deep-tabs {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.dtab {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all .2s;
    border: 1.5px solid var(--gray-200);
    background: #fff
}

.dtab:hover {
    border-color: var(--primary);
    background: var(--primary-light)
}

.dtab.active {
    border-color: var(--primary);
    background: var(--primary-light)
}

.dtab.active .dtab-icon {
    color: var(--primary);
}

.dtab-icon {
    font-size: 1.3rem;
    margin-bottom: .4rem
}

.dtab h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .45rem
}

.dtab p {
    font-size: .78rem;
    color: var(--gray-600)
}

.dtab.active h4 {
    color: var(--primary)
}

/* MOCK PANELS */
.ct-panel {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-md)
}

.cp-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.cp-header h5 {
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 0;
}

.cp-body {
    padding: 1.25rem
}

/* DILUTION CHART */
.dil-bar {
    margin-bottom: .75rem
}

.dil-label {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    margin-bottom: .25rem
}

.dil-label .name {
    font-weight: 600
}

.dil-label .pct {
    color: var(--gray-600)
}

.dil-track {
    height: 10px;
    background: var(--gray-100);
    border-radius: 100px;
    overflow: hidden;
    display: flex
}

.dil-seg {
    height: 100%
}

/* ESOP */
.esop-employee {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem .8rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    margin-bottom: .5rem
}

.esop-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    font-weight: 700
}

.ea1 {
    background: var(--primary-light);
    color: var(--primary)
}

.ea2 {
    background: var(--success-light);
    color: var(--success)
}

.ea3 {
    background: var(--secondary-light);
    color: var(--secondary)
}

.esop-name {
    font-size: .8rem;
    font-weight: 600
}

.esop-meta {
    font-size: .7rem;
    color: var(--gray-600)
}

.vest-bar-wrap {
    flex: 1;
    height: 6px;
    background: var(--gray-200);
    border-radius: 100px;
    overflow: hidden
}

.vest-bar {
    height: 100%;
    border-radius: 100px;
    background: var(--primary)
}

.vest-pct {
    font-size: .72rem;
    font-weight: 600;
    color: var(--primary);
    min-width: 36px;
    text-align: right
}

.mv-card.mission {
    background: var(--primary);
    color: #fff;
}

.mv-card {
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.mv-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.mv-card.vision {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.mv-card .icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, .2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.mv-card.mission p {
    color: rgba(255, 255, 255, 0.8);
}

.mv-card h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mv-card.vision .mv-tag {
    display: inline-block;
    margin-top: 1.25rem;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.val-card {
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all .25s;
    cursor: default;
    height: 100%;
    position: relative;
}

.val-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.val-num {
    /* font-family: 'Poppins', sans-serif; */
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
    position: absolute;
    right: 20px;
    top: 20px;
}

.val-icon {
    font-size: 1.75rem;
    margin-bottom: 0.85rem;
}

.val-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.val-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* team */
.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1.5px solid var(--gray-200);
    text-align: center;
    transition: all .25s;
    height: 100%;
}

.team-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.team-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    position: relative;
}

.team-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all .2s;
}

.team-card:hover .team-avatar::after {
    border-color: var(--primary);
}

.av-purple {
    background: var(--primary-light);
    color: var(--primary);
}

.av-orange {
    background: var(--secondary-light);
    color: var(--secondary);
}

.av-green {
    background: var(--success-light);
    color: var(--success);
}

.av-dark {
    background: var(--gray-100);
    color: var(--gray-700);
}

.team-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: 'Poppins', sans-serif;
}

.team-role {
    font-size: 0.78rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.team-badge {
    display: inline-block;
    margin-top: 0.6rem;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.55rem;
    border-radius: 100px;
}

.team-card .role {
    font-size: .78rem;
    color: var(--text-muted);
    background: var(--bg-soft);
    padding: .25rem .6rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: .75rem;
}

.team-card .actions {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-card .actions a {
    color: var(--primary);
    font-size: .8rem;
    text-decoration: none;
    transition: color .2s;

}

.team-card .actions a:hover {
    color: var(--primary);
}

.investor-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    align-items: start;
    gap: .95rem;
    transition: box-shadow .2s, transform .2s;
}

.investor-card:hover {
    box-shadow: 0 6px 24px rgba(74, 36, 232, .1);
    transform: translateY(-2px);
}

.investor-avatar {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: .87rem;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
}

.investor-card h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 .15rem;
}

.investor-card span {
    font-size: .75rem;
    color: var(--text-muted);
}

.investor-card a {
    color: var(--primary);
    font-size: .8rem;
    text-decoration: none;
}

.investor-card a:hover {
    text-decoration: underline;
}

/* CHAOS CARD */
.chaos-card {
    /* background: var(--dark); */
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.chaos-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(74, 36, 232, .2);
    pointer-events: none;
}

.cc-label {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.cc-tools {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.cc-tool {
    padding: .5rem .85rem;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    line-height: 1;
}

.cc-tool.crossed {
    background: rgba(220, 38, 38, .15);
    color: rgba(255, 255, 255, .8);
    border: 1px solid rgba(220, 38, 38, .25);
}

.cc-tool.crossed::after {
    content: '';
    position: absolute;
    left: .5rem;
    right: .5rem;
    top: 50%;
    height: 1.5px;
    background: rgba(220, 38, 38, .7);
    transform: translateY(-50%);
}

.cc-arrow {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cc-arrow h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.cc-arrow span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .75);
}

.cc-arrow-icon {
    font-size: 1.5rem;
}

/* compare 2 */
/* BEFORE / AFTER SLIDE */

/* compare 2 */
/* BEFORE / AFTER SLIDE */

.ba-col {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    border: 1.5px solid var(--gray-200);
}

.ba-header {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.ba-col.before .ba-header {
    background: var(--gray-50);
}

.ba-col.after .ba-header {
    background: var(--primary);
}

.ba-header-icon {
    font-size: 1.25rem;
}

.ba-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .2rem;
}

.ba-col.after .ba-header h3 {
    color: #fff;
    line-height: 1;
}

.ba-col.after .ba-header p {
    color: rgba(255, 255, 255, .7);

}

.ba-header p {
    font-size: .78rem;
    color: var(--gray-600);
}

.ba-body {
    padding: 1.25rem 1.25rem 1rem;
}

.ba-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .8rem;
    border-radius: var(--radius-md);
    margin-bottom: .5rem;
}

.ba-col.before .ba-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.ba-col.after .ba-item {
    background: var(--primary-light);
    border: 1px solid rgba(74, 36, 232, .15);
}

.ba-item-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.ba-item h4 {
    font-size: .83rem;
    font-weight: 600;
    margin-bottom: .15rem;
}

.ba-col.before .ba-item h4 {
    color: var(--danger);
}

.ba-col.after .ba-item h4 {
    color: var(--primary);
}

.ba-item p {
    font-size: .75rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.pillar-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 1rem;
}

.pillar-points li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .82rem;
    color: var(--gray-700);
}

.pp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    margin-top: 7px;
}

/* why ai section */
.ai-content .sec-label {
    color: rgba(255, 255, 255, .45);
    margin-bottom: 10px;
}

.ai-cards {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-top: 2rem;
}

.ai-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    transition: all .2s;
}

.ai-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--primary);
}

.ai-card-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.ai-card h4 {
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .25rem;
}

.ai-card p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.55;
}

/* AI Visual */
.ai-visual {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
}

.av-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.av-header h5 {
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
}

.av-badge {
    background: rgba(34, 197, 94, .15);
    color: #22c55e;
    font-size: .68rem;
    font-weight: 600;
    padding: .2rem .65rem;
    border-radius: 100px;
}

.av-insight {
    background: rgba(74, 36, 232, .25);
    border: 1px solid rgba(74, 36, 232, .4);
    border-radius: var(--radius-lg);
    padding: 1rem 1.1rem;
    margin-bottom: .85rem;
}

.av-insight-label {
    font-size: .68rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .35rem;
}

.av-insight p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.55;
}

.av-insight-action {
    display: inline-block;
    margin-top: .5rem;
    background: var(--primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    padding: .2rem .65rem;
    border-radius: 100px;
    cursor: pointer;
}

.av-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
    margin-top: 1rem;
}

.avm {
    background: rgba(255, 255, 255, .06);
    border-radius: var(--radius-md);
    padding: .75rem;
    text-align: center;
}

.avm-n {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}

.avm-l {
    font-size: .62rem;
    color: rgba(255, 255, 255, .45);
    margin-top: .1rem;
}


/* INDIA SECTION */

.india-laws {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.ilaw {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 100px;
    padding: .45rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    transition: all .2s;
}

.ilaw:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}

.ilaw-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.india-promise {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.india-promise h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ip-row {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.ip-row:last-child {
    border-bottom: none;
}

.ip-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ip-row h4 {
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: .2rem;
}

.ip-row p {
    font-size: .78rem;
    color: var(--gray-600);
}

/* proof */
.proof-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all .2s;
    height: 100%;
}

.proof-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.proof-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: .35rem;
}

.proof-lbl {
    font-size: .85rem;
    font-weight: 600;
    color: var(--dark-2);
    margin-bottom: .35rem;
}

.proof-sub {
    font-size: .75rem;
    color: var(--gray-600);
    line-height: 1.2;
}

/* cta check list */
.cta-checklist {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cc-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .85);
    font-size: .85rem;
}

.cc-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    color: #fff;
    flex-shrink: 0;
}

.hero-badge.before-none::before {
    display: none;
}

/* contact */
.quick-channels {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.qc-chip {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 100px;
    padding: .5rem 1.25rem;
    color: rgba(0, 0, 0, 0.85);
    font-size: .85rem;
    font-weight: 500;
    transition: all .2s;
    cursor: pointer;
}

.qc-chip:hover {
    background: var(--primary);
    border-color: rgba(0, 0, 0, 0.35);
    color: #fff;
}

.qc-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}


/* contact page */

/* ─── CONTACT FORM ─── */
.form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--gray-200);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.form-header h2 em {
    font-style: normal;
    color: var(--primary);
}

.form-header p {
    font-size: .92rem;
    color: var(--gray-600);
}

/* INTENT TABS */
.intent-tabs {
    display: flex;
    gap: .5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.itab {
    padding: .45rem 1.1rem;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--gray-200);
    background: #fff;
    color: var(--gray-600);
    transition: all .2s;
    font-family: 'Inter', sans-serif;
}

.itab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.itab:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

/* FORM FIELDS */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1rem;
}

.form-group.half {
    margin-bottom: 0;
}

label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-700);
}

label .req {
    color: var(--danger);
    margin-left: 2px;
}

input,
select,
textarea {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--gray-200);
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: #fff;
    transition: all .2s;
    outline: none;
    appearance: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 36, 232, .08);
}

input::placeholder,
textarea::placeholder {
    color: var(--gray-400);
}

textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

/* CAPTCHA BOX */
.captcha-box {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.captcha-check {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.captcha-cb {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.captcha-cb.checked {
    background: var(--success);
    border-color: var(--success);
}

.captcha-cb.checked::after {
    content: '✓';
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
}

.captcha-label {
    font-size: .85rem;
    color: var(--gray-700);
    font-weight: 500;
}

.captcha-logo {
    font-size: .65rem;
    color: var(--gray-400);
    text-align: right;
}

/* SUBMIT BUTTON */
.submit-btn {
    width: 100%;
    padding: .95rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 36, 232, .35);
}

.submit-btn svg {
    width: 18px;
    height: 18px;
}

/* SUCCESS STATE */
.success-state {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.success-state h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--success);
    margin-bottom: .5rem;
}

.success-state p {
    font-size: .9rem;
    color: var(--gray-600);
}

/* ─── RIGHT SIDEBAR ─── */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* CONTACT CHANNEL CARDS */
.channel-card {
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--gray-200);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all .25s;
}

.channel-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.cc-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .85rem;
}

.cc-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cc-icon-sales {
    background: var(--primary-light);
}

.cc-icon-support {
    background: var(--success-light);
}

.cc-icon-jobs {
    background: var(--secondary-light);
}

.cc-icon-phone {
    background: #eff6ff;
}

.cc-info h4 {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .2rem;
}

.cc-info p {
    font-size: .8rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.cc-action {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: .55rem 1rem;
    transition: all .2s;
    width: fit-content;
}

.cc-action:hover {
    background: var(--primary);
    color: #fff;
}

.cc-action-green {
    color: var(--success);
    background: var(--success-light);
}

.cc-action-green:hover {
    background: var(--success);
    color: #fff;
}

.cc-action-orange {
    color: var(--secondary);
    background: var(--secondary-light);
}

.cc-action-orange:hover {
    background: var(--secondary);
    color: #fff;
}

/* Response time badge */
.resp-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .7rem;
    font-weight: 600;
    padding: .2rem .65rem;
    border-radius: 100px;
    margin-top: .65rem;
}

.rb-fast {
    background: var(--success-light);
    color: var(--success);
}

.rb-normal {
    background: var(--warning-light);
    color: var(--warning);
}

/* OFFICE CARD */
.office-card {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    color: #fff;
}

.office-card h4 {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.office-detail {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.od-row {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .83rem;
}

.od-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.od-text {
    color: rgba(255, 255, 255, .8);
    line-height: 1.55;
}

.od-text a {
    color: #fff;
    font-weight: 500;
}

.od-text a:hover {
    text-decoration: underline;
}

.hours-badge {
    display: inline-block;
    margin-top: .85rem;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .85);
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .75rem;
    border-radius: 100px;
}

/* SOCIAL LINKS */
.social-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--gray-200);
}

.social-card h5 {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .85rem;
}

.social-links {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.slink {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .9rem;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    border: 1.5px solid var(--gray-200);
    background: #fff;
    color: var(--gray-700);
    transition: all .2s;
}

.slink:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* ─── MAP STRIP ─── */
.map-strip {
    background: var(--gray-50);
    padding: 4rem 2rem;
}

.map-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.map-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
}

.map-header h2 em {
    font-style: normal;
    color: var(--primary);
}

.map-header p {
    font-size: .9rem;
    color: var(--gray-600);
}

.map-frame {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    height: 400px;
    position: relative;
    box-shadow: var(--shadow);
}

.map-placeholder-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e0fd 0%, var(--gray-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .85rem;
}

.map-pin-big {
    font-size: 3.5rem;
}

.map-address {
    text-align: center;
}

.map-address h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .35rem;
}

.map-address p {
    font-size: .85rem;
    color: var(--gray-600);
}

.map-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--primary);
    color: #fff;
    padding: .65rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: .88rem;
    font-weight: 600;
    transition: all .2s;
}

.map-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 36, 232, .3);
}

/* end contact page */



/* form fields */
.f-label {
    /* font-family: 'Poppins', sans-serif; */
    /* font-weight: 500; */
    font-size: .78rem;
    color: var(--gray-800);
    margin-bottom: 4px;
    display: block;
}

.f-label .req {
    color: var(--secondary);
}

.f-input {
    width: 100%;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    color: var(--dark);
    background: var(--gray-50);
    transition: all .25s;
    outline: none;
}

.f-input:focus {
    border-color: var(--primary);
    background: var(--primaryl);
    box-shadow: 0 0 0 3px rgba(46, 54, 253, .1);
}

.f-input::placeholder {
    color: var(--gray-600);
}

.f-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7a99' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

.phone-wrap {
    display: flex;
    gap: 8px;
}

.phone-code {
    width: 120px;
    flex-shrink: 0;
}

.phone-num {
    flex: 1;
}

.f-group {
    margin-bottom: 2px;
}

/* submit btn */
.btn-submit {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px;
    /* font-family: 'Poppins', sans-serif; */
    font-weight: 600;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    transition: left .5s;
}

.btn-submit:hover {
    background: #1a23e8;
    box-shadow: 0 8px 28px rgba(46, 54, 253, .4);
    transform: translateY(-1px);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.btn-submit.loading .spinner {
    display: block;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

/* form footer note */
.form-note {
    font-size: .74rem;
    color: var(--gray-600);
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}

.form-note a {
    color: var(--primary);
    text-decoration: none;
}

/* progress steps */
.step-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 22px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 6px;
    /* flex: 1; */
    padding: 0;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .75rem;
    flex-shrink: 0;
    border: 2px solid;
    transition: all .3s;
}

.step-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.step-dot.done {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.step-dot.pending {
    background: var(--gray-100);
    border-color: var(--gray-200);
    color: var(--gray-600);
}

.step-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .72rem;
}

.step-label.active {
    color: var(--primary);
}

.step-label.pending {
    color: var(--gray-600);
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    border-radius: 2px;
    margin: 0 6px;
}

.step-line.done {
    background: var(--primary);
}

/* OTP MODAL */
.otp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.otp-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.otp-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    max-width: 440px;
    width: 92%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .35);
    transform: scale(.95) translateY(10px);
    transition: all .3s;
}

.otp-overlay.show .otp-modal {
    transform: scale(1) translateY(0);
}

.otp-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
}

.otp-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.otp-sub {
    font-size: .88rem;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.6;
}

.otp-sub strong {
    color: var(--dark);
}

/* OTP input boxes */
.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.otp-box {
    width: 58px;
    height: 60px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    text-align: center;
    color: var(--dark);
    background: var(--gray-50);
    transition: all .25s;
    outline: none;
}

.otp-box:focus {
    border-color: var(--primary);
    background: var(--primaryl);
    box-shadow: 0 0 0 3px rgba(46, 54, 253, .1);
}

.otp-box.filled {
    border-color: var(--primary);
    background: var(--primaryl);
}

.otp-box.error {
    border-color: #ef4444;
    background: #fff0f0;
    animation: shake .3s;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0)
    }

    25%,
    75% {
        transform: translateX(-4px)
    }

    50% {
        transform: translateX(4px)
    }
}

.otp-error {
    font-size: .8rem;
    color: #ef4444;
    margin-bottom: 14px;
    display: none;
}

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

.btn-verify {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .93rem;
    cursor: pointer;
    transition: all .25s;
    margin-bottom: 14px;
}

.btn-verify:hover {
    background: #1a23e8;
    box-shadow: 0 6px 20px rgba(46, 54, 253, .4);
}

.otp-resend {
    font-size: .8rem;
    color: var(--gray-600);
}

.otp-resend a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.otp-resend a.disabled {
    color: var(--gray-600);
    pointer-events: none;
}

.otp-timer {
    font-weight: 600;
    color: var(--secondary);
}

.btn-otp-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: color .2s;
}

.btn-otp-close:hover {
    color: var(--dark);
}

.otp-modal-wrap {
    position: relative;
}

.otp-phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

#otpPhoneText {
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
}

.otp-edit-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s ease;
}

.otp-edit-btn:hover {
    transform: scale(1.06);
    background: #e0e7ff;
}


.form-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.form-card-sub {
    font-size: .84rem;
    color: var(--gray-600);
    margin-bottom: 14px;
}

.bookdemo-wrap {
    min-height: 100vh;
    background: linear-gradient(150deg, #040c1e 0%, var(--dark-2) 48%, #120e30 100%);
    position: relative;
    overflow: hidden;
}

/* book demo LEFT PANEL */
.demo-badge {
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .35rem .9rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(6px);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.demo-left h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

.demo-left h1 em {
    color: #ffd480;
    font-style: normal;
}

.demo-left .lead-text {
    font-size: .95rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.25rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .9rem;
    font-size: .875rem;
    color: rgba(0, 0, 0, 0.88);
    line-height: 1.55;
}

.benefit-list li .ico {
    width: 26px;
    height: 26px;
    background: rgba(41, 0, 164, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .8rem;
    color: #3700ff;
    margin-top: .05rem;
}

.stat-row {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.stat-pill {
    background: var(--primary-light);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: .8rem 1.2rem;
    flex: 1;
    min-width: 110px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.stat-pill .num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
}

.stat-pill .lbl {
    font-size: .72rem;
    color: rgba(0, 0, 0, 0.7);
    margin-top: .25rem;
}

/* client logos strip */
.logo-strip {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.logo-strip p {
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.logo-scroll {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.logo-scroll img {
    height: 22px;
    opacity: .55;
    filter: brightness(0) invert(1);
    transition: opacity .2s;
}

.logo-scroll img:hover {
    opacity: .9;
}


.h-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.orb1 {
    width: 650px;
    height: 650px;
    background: #22c55e;
    opacity: .1;
    top: -200px;
    right: -150px;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    opacity: .1;
    bottom: -120px;
    left: -80px;
}

.orb3 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: .1;
    top: 40%;
    left: 38%;
}

/* video pop */
.video-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 2;
    transform: scale(0.9);
    transition: 0.35s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal video {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 28px;
    cursor: pointer;
    z-index: 5;
    line-height: 1;
    transition: 0.3s ease;
}

.video-close:hover {
    transform: rotate(90deg);
}

body.video-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }

    .video-close {
        top: -12px;
        right: -8px;
    }
}


/* blog */

/* CATEGORY PILLS */
.cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.cat-pill {
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: .35rem .9rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all .18s;
    background: #fff;
}

.cat-pill:hover,
.cat-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.cat-pill.secondary-pill:hover,
.cat-pill.secondary-pill.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}


/* BLOG CARD */
.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(74, 36, 232, .1);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}

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

.blog-card-img-wrap {
    overflow: hidden;
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h3 {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: var(--dark) !important;
    line-height: 1.4 !important;
    margin-bottom: 0;
    flex: 1;
}

.blog-card-body h3 a {
    color: inherit;
    transition: color .2s;
}

.blog-card-body h3 a:hover {
    color: var(--primary);
}

.blog-card-body p {
    font-size: .82rem;
    color: #5a5a5a;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: .9rem;
    margin-top: auto;
}

.blog-card-footer .date {
    font-size: .75rem;
    color: var(--muted);
}

.tag-badge {
    font-size: .7rem;
    font-weight: 500;
    padding: .16rem .7rem;
    border-radius: 50px;
    background: #ebebfd;
    color: var(--primary);
}

.post-meta-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex-wrap: wrap;
    margin-bottom: .85rem !important;
}

.post-date {
    font-size: .78rem;
    color: var(--muted);
}