/* ── TOKENS ── */
:root {
    --primary: #2e36fd;
    --primary-light: #ede9fd;
    --primary-hover: #1e26e0;
    --primary-dark: #1e1b4b;
    --primary-xdark: #0f13a8;
    --secondary: #f18911;
    --secondary-dark: #d4740a;
    --secondary-light: #fff3e6;
    --dark: #464646;
    --dark2: #0e1020;
    --dark3: #141728;
    --white: #ffffff;
    --ink: #464646;
    --ink60: rgba(13, 17, 23, .6);
    --ink30: rgba(13, 17, 23, .3);
    /* --ink10: rgba(13, 17, 23, .07); */
    --ink10: rgba(13, 17, 23, .06);
    --border: rgba(13, 17, 23, .09);
    --muted: #6b7280;
    /* --border: #e2e4f5; */
    --border-dark: rgba(255, 255, 255, .08);
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --surface: #f4f5ff;
    --surface2: #eef0ff;

    --g50: #f8f9fa;

    --P: #2e36fd;
    --PL: #ede9fd;
    --PH: #1e26e0;
    --S: #f18911;
    --SL: #fff3e6;
    --D: #464646;

    --radius-sm: 4px;
    --radius: .35rem;
    --radius-md: .42rem;
    --radius-lg: .75rem;
    --radius-xl: .95rem;
    --radius-xxl: 26px;
    --shadow: 0 2px 8px rgba(46, 54, 253, 0.06);
    --shadow-sm: 0 2px 10px rgba(46, 54, 253, 0.08);
    --shadow-md: 0 8px 32px rgba(46, 54, 253, 0.12);
    --shadow-lg: 0 24px 64px rgba(46, 54, 253, 0.18);

    --r4: 4px;
    --r8: 8px;
    --r12: 12px;
    --r16: 16px;
    --r20: 20px;
    --r24: 24px;
    --radius9: 999px;
    --sh-sm: 0 1px 3px rgba(0, 0, 0, .06);
    --sh-md: 0 4px 16px rgba(0, 0, 0, .08);
    --sh-lg: 0 12px 40px rgba(0, 0, 0, .1);
    --sh-blue: 0 8px 28px rgba(46, 54, 253, .25);
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

ol,
ul {
    padding: 0;
    margin: 0;
}

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
    background: #1e1b4b;
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    overflow: hidden;
    position: relative;
}

.ann-bar .ann-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: annSlide 18s linear infinite;
    white-space: nowrap;
}

.ann-bar a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}

.ann-bar a:hover {
    text-decoration: underline;
}

.ann-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

@keyframes annSlide {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }
}

/* ── NAVBAR ── */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-right: 32px;
    flex-shrink: 0;
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark i {
    color: #fff;
    font-size: 16px;
}

.logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
}

.logo-name span {
    color: var(--primary);
}

.nav-links-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    border-radius: var(--radius);
    transition: all .18s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active-page {
    color: var(--ink);
    background: var(--ink10);
}

.nav-link i {
    font-size: 13px;
}

.nav-divider {
    width: 1px;
    height: 22px;
    background: var(--border);
    margin: 0 10px;
    flex-shrink: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.btn-ghost {
    height: 36px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border-radius: var(--radius);
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: all .18s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    background: var(--ink10);
}

.btn-ghost:hover {
    color: var(--ink);
    background: var(--white);
    border-color: var(--ink30);
}

.btn-primary {
    height: 36px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(46, 54, 253, .35);
}


.btn-secondary {
    height: 36px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    background: var(--secondary);
    color: #fff;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
    background: #0e1020;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(253, 125, 46, 0.35);
}

/* ── HERO ── */
.hero-section {
    padding: 162px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* subtle noise grain */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E"); */
    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: 55px 55px;
    mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, black 30%, transparent 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink10);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius-xxl);
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 28px;
    transition: all .2s;
}

.hero-badge:hover {
    background: rgba(46, 54, 253, .06);
    border-color: rgba(46, 54, 253, .2);
    color: var(--primary);
}

.hero-badge .hb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
}

.hero-badge .hb-text {
    font-weight: 500;
}

.hero-badge .hb-link {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.hero-h1 {
    font-family: 'Poppins', sans-serif;
    /* font-size: clamp(42px, 6vw, 70px); */
    font-size: clamp(1.6rem, 6vw, 3.6rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.02em;
    color: var(--dark);
    margin-bottom: 22px;
    /* max-width: 840px; */
    margin-left: auto;
    margin-right: auto;
}

.hero-h1 .grad {
    background: linear-gradient(90deg, var(--primary) 0%, #5b63ff 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradMove 4s linear infinite;
}

@keyframes gradMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-h1 .orange {
    background: linear-gradient(90deg, var(--secondary), #f5a94a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark);
    max-width: 780px;
    margin: 0 auto 36px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-lg-primary {
    height: 50px;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all .2s;
    /* box-shadow: 0 1px 2px rgba(46, 54, 253, .2), 0 0 0 1px var(--primary); */
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.35);
}


.btn-lg-primary:hover {
    background: var(--primary-hover) !important;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 54, 253, .35), 0 0 0 1px var(--primary-dark);
}

.btn-lg-ghost {
    height: 50px;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: var(--dark);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all .2s;
}

.btn-lg-ghost:hover {
    border-color: var(--dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}


.btn-lg-yellow {
    height: 50px;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    background: #ffc61c;
    color: var(--ink);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(255, 198, 28, 0.4);
    transition: all .2s;
}

.btn-lg-yellow:hover {
    border-color: var(--secondary);
    box-shadow: 0 6px 24px rgba(255, 198, 28, 0.4);
    color: var(--ink);
    transform: translateY(-2px);
}

/* Rating pill */
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--dark);
    font-weight: 500;
}

.stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: -1px;
}

/* Hero product screenshot */
.hero-screen-wrap {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    width: 100%;
    max-width: 1040px;
    bottom: -10px;
}

.hero-screen-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, transparent, #fff);
    z-index: 2;
    pointer-events: none;
}

.hero-screen {
    background: #f4f5f8;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
    overflow: hidden;
    box-shadow:
        0 0 0 1px var(--border),
        0 4px 6px rgba(0, 0, 0, .04),
        0 20px 60px rgba(0, 0, 0, .1);
}

/* Fake browser chrome */
.screen-chrome {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.chrome-bar {
    flex: 1;
    height: 26px;
    background: #f4f5f8;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
    font-size: 11px;
    color: var(--dark);
}

.chrome-bar i {
    font-size: 10px;
}

/* Dashboard layout inside screen */
.dash-wrap {
    display: flex;
    min-height: 440px;
}

.dash-sidebar {
    width: 180px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid var(--border);
    padding: 16px 10px;
}

.dash-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 8px;
    margin-bottom: 16px;
}

.dash-logo-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-logo-icon i {
    color: #fff;
    font-size: 11px;
}

.dash-logo-txt {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--ink);
}

.dash-logo-txt span {
    color: var(--primary);
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 2px;
    cursor: default;
}

.dash-nav-item.active {
    background: rgba(46, 54, 253, .08);
    color: var(--primary);
}

.dash-nav-item i {
    font-size: 13px;
    width: 16px;
    text-align: center;
}

.dash-main {
    flex: 1;
    padding: 20px;
    background: #f7f8fc;
    overflow: hidden;
}

/* Stats row */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.stat-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 14px 16px;
}

.sc-label {
    font-size: 9px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 6px;
    line-height: 1.2;
}

.sc-val {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}

.sc-trend {
    font-size: 10px;
    margin-top: 4px;
    line-height: 1.2;
}

.sc-up {
    color: #16a34a;
}

.sc-down {
    color: #dc2626;
}

/* Services table */
.svc-table-wrap {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 14px;
}

.svc-table-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 8px 14px;
    background: #f9fafb;
    border-bottom: 1px solid var(--border);
    font-size: 10px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .7px;
}

.svc-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

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

.tr-name {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: start;
}

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

.tr-svc {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}

.tr-sub {
    font-size: 10px;
    color: var(--gray-400);
    line-height: 1.2;
}

.tr-cell {
    font-size: 11px;
    color: var(--dark);
    line-height: 1.2;
}

.tr-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-xl);
    font-size: 10px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.pill-green {
    background: rgba(22, 163, 74, .1);
    color: #16a34a;
}

.pill-amber {
    background: rgba(217, 119, 6, .1);
    color: #b45309;
}

.pill-blue {
    background: rgba(46, 54, 253, .1);
    color: var(--primary);
}

/* Mini progress chart */
.mini-progress {
    height: 3px;
    background: #e9eaf0;
    border-radius: 2px;
    margin-top: 5px;
}

.mini-fill {
    height: 100%;
    border-radius: 2px;
}

/* Floating notification cards on screen */
.notif {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
    font-size: 11px;
    z-index: 10;
    animation: notifFloat 4s ease-in-out infinite;
}

.notif-1 {
    left: -50px;
    top: -30px;
    animation-delay: 0s;
}

.notif-2 {
    right: -36px;
    bottom: 20px;
    animation-delay: 1.8s;
}

@keyframes notifFloat {

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

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

.notif-head {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
}

.notif-icon {
    font-size: 16px;
}

.notif-title {
    font-weight: 700;
    font-size: 11px;
    color: var(--ink);
}

.notif-body {
    color: var(--dark);
    font-size: 10px;
    line-height: 1.5;
}

.notif-tag {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    margin-top: 5px;
}


/* ── HERO DUAL LAYOUT ── */
.hero-dual {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}

/* Desktop takes most of the width */
.hero-desktop-col {
    flex: 1;
    min-width: 0;
    position: relative;
}

/* Phone column sits to the right, slightly elevated */
.hero-phone-col {
    flex-shrink: 0;
    /* width: 250px; */
    position: absolute;
    margin-bottom: 0;
    z-index: 4;
    align-self: flex-end;
    padding-bottom: 0;
    right: -100px;
    bottom: -30px;
}

/* ── PHONE MOCKUP ── */
.phone-frame {
    width: 200px;
    background: var(--dark);
    border-radius: 20px;
    padding: 6px;
    /* box-shadow:
        0 0 0 1px rgba(0, 52, 175, 0.12),
        0 10px 30px rgba(0, 29, 103, 0.35),
        inset 0 0 0 1px rgba(0, 3, 147, 0.07); */
    position: relative;
    animation: phoneFloat 5s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(12, 7, 33, 0.15);
}

@keyframes phoneFloat {

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

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

/* Dynamic island */
.phone-island {
    width: 80px;
    height: 26px;
    background: var(--ink);
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.island-cam {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, .1);
}

.island-cam::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: rgba(46, 54, 253, .3);
    border-radius: 50%;
    margin: 2px auto 0;
}

.island-speaker {
    width: 36px;
    height: 5px;
    background: #111;
    border-radius: 3px;
}

/* Phone screen */
.phone-screen {
    background: #f7f8fc;
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
}

/* Phone status bar */
.phone-status {
    background: var(--primary-dark);
    padding: 10px 16px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-time {
    font-size: 8px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.phone-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.phone-icons i {
    font-size: 10px;
    color: #fff;
}

/* Phone header bar */
.phone-header {
    background: var(--primary-dark);
    padding: 3px 14px 8px;
}

.phone-header-title {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2px;
}

.phone-header-sub {
    font-size: 9px;
    color: rgba(255, 255, 255, .65);
}

/* Phone content area */
.phone-content {
    background: #f7f8fc;
    padding: 8px 6px;
}

/* Metric row on phone */
.ph-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 6px;
}

.ph-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px;
}

.ph-stat-label {
    font-size: 6px;
    color: var(--ink30);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
}

.ph-stat-val {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}

.ph-stat-trend {
    font-size: 8.5px;
    margin-top: 2px;
}

/* Phone service rows */
.ph-svc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 8px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ph-svc-ico {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.ph-svc-name {
    font-size: 8px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    text-align: start;
}

.ph-svc-sub {
    font-size: 4px;
    color: var(--ink30);
    margin-top: 1px;
    text-align: start;
}

.ph-svc-bar {
    height: 3px;
    background: #e9eaf0;
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
}

.ph-svc-fill {
    height: 100%;
    border-radius: 2px;
}

.ph-pill {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 6px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-xxl);
}

/* AI notification inside phone */
.ph-ai-notif {
    background: linear-gradient(135deg, rgba(46, 54, 253, .08), rgba(91, 99, 255, .05));
    border: 1px solid rgba(46, 54, 253, .15);
    border-radius: 6px;
    padding: 6px 8px;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 6px;
    text-align: start;
}

.ph-ai-notif i {
    color: var(--primary);
    font-size: 12px;
    margin-top: 1px;
    flex-shrink: 0;
}

.ph-ai-text {
    font-size: 8px;
    color: var(--ink60);
    line-height: 1.5;
}

.ph-ai-text strong {
    color: var(--ink);
    display: block;
    font-size: 8px;
}

/* Bottom nav bar */
.phone-bottom-nav {
    background: #fff;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 6px 0px 4px;
}

.pbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 6px;
    color: var(--ink30);
    font-weight: 500;
}

.pbn-item.active {
    color: var(--primary);
}

.pbn-item i {
    font-size: 11px;
}

/* Phone badge label */
.phone-badge-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--S);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-xxl);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(241, 137, 17, .4);
}

/* Responsive: hide phone on small screens */
@media(max-width:767px) {
    .hero-phone-col {
        display: none;
    }

    .hero-dual {
        display: block;
    }

    .hero-section {
        padding: 82px 0 0;
    }
}

/* ── LOGO STRIP ── */
.logo-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    overflow: hidden;
}

.logo-strip-inner {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-strip-label {
    font-size: 12px;
    color: var(--ink60);
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 28px;
    font-weight: 500;
    /* letter-spacing: .3px; */
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 44px;
    /* animation: logoScroll 22s linear infinite; */
    flex-shrink: 0;
}

.logos-track-2 {
    animation-delay: -11s;
}

/* .logo-item {
    width: 100%;
    max-height: 50px;
    object-fit: contain;
} */

.logo-item {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    display: block;
    text-align: center;
    padding: 0 8px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    /* gap: 3px; */
    flex-shrink: 0;
    transition: color .2s;
    margin: 0;
    justify-content: center;
}

/* .logo-item i {
    font-size: 16px;
} */

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%)
    }
}

/* ── SECTION SHARED ── */
/* section {
    padding: 96px 0;
} */

.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(46, 54, 253, .06);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: var(--radius-xxl);
    border: 1px solid rgba(46, 54, 253, .15);
    margin-bottom: 18px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.sec-h {
    font-family: 'Poppins', sans-serif;
    /* font-size: clamp(30px, 4.5vw, 52px); */
    font-size: clamp(2rem, 3.6vw, 2.6rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 16px;
}

.sec-sub {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.55;
    max-width: 620px;
}

.sec-sub.centered {
    margin: 0 auto;
    text-align: center;
}

/* ── FEATURE PILLS STRIP ── */
.pills-section {
    background: var(--dark2);
    padding: 56px 0;
    overflow: hidden;
}

.pills-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: -.5px;
}

.pills-heading span {
    color: var(--secondary);
}

.pills-track-wrap {
    overflow: hidden;
    position: relative;
    -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%);
}

/* .pills-track-wrap::before,
.pills-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.pills-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--dark2), transparent);
} */

.pills-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--dark2), transparent);
}

.pills-track {
    display: flex;
    gap: 10px;
    animation: pillScroll 28s linear infinite;
    width: max-content;
    margin-bottom: 10px;
}

.pills-track.rev {
    animation-direction: reverse;
    animation-duration: 24s;
}

.pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    flex-shrink: 0;
}

.pill-tag i {
    color: var(--secondary);
    font-size: 14px;
}

@keyframes pillScroll {
    0% {
        transform: translateX(0);
    }

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

/* ── SERVICES GRID ── */
.services-section {
    background: #f7f8fc;
}

.svc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    width: 100%;
    height: 100%;
    transition: all .25s;
    position: relative;
    overflow: hidden;
    display: block;
    border: 2px solid transparent;
}

/* .svc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: border-color .25s;
    pointer-events: none;
} */

.svc-card:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 12px 40px rgba(0, 0, 0, .08); */
    box-shadow: 0 8px 40px rgba(46, 54, 253, 0.1);
    border-color: var(--primary);
}

.svc-card:hover::after {
    border-color: var(--primary);
}

.svc-ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.svc-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.svc-card:hover .svc-name {
    color: var(--primary);
}

.svc-desc {
    font-size: 13.5px;
    color: var(--dark);
    line-height: 1.65;
    margin-bottom: 16px;
}

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

.svc-list li {
    font-size: 12.5px;
    color: var(--dark);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.svc-list li i {
    color: var(--primary);
    font-size: 11px;
    flex-shrink: 0;
}

.svc-footer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.svc-tag {
    font-size: 11px;
    color: var(--dark);
    font-weight: 500;
}

.svc-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 12px;
    transition: all .2s;
}

.svc-card:hover .svc-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ── HOW IT WORKS ── */
.hiw-section {
    background: #fff;
}

.hiw-timeline {
    position: relative;
}

.hiw-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 2px;
}

.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 42px;
    position: relative;
}

.hiw-step:last-child {
    margin-bottom: 0;
}

.hiw-num {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--ink);
    transition: all .3s;
}

.hiw-step:hover .hiw-num {
    background: var(--primary);
    box-shadow: 0 0 0 2px var(--primary), 0 0 20px rgba(46, 54, 253, .3);
}

.hiw-content {
    padding-top: 12px;
}

.hiw-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.hiw-desc {
    font-size: 13.5px;
    color: var(--dark);
    line-height: 1.45;
    margin-bottom: 14px;
}

.hiw-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.hiw-pill {
    font-size: 11px;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: var(--radius-xl);
    background: var(--ink10);
    color: var(--dark);
    border: 1px solid var(--border);
}

/* Right visual panel */
.hiw-visual {
    background: #f7f8fc;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.hv-panel {
    display: none;
    padding: 28px;
}

.hv-panel.active {
    display: block;
}

.hv-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hv-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 10px;
}

.hv-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hv-ico {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.hv-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.hv-sub {
    font-size: 11px;
    color: var(--dark);
}

.hv-bar {
    height: 4px;
    background: #e9eaf0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 2px;
}

.hv-fill {
    height: 100%;
    border-radius: 2px;
    transition: width .6s ease;
}

.hv-meta {
    display: flex;
    justify-content: space-between;
    font-size: 10.5px;
    color: var(--dark);
    margin-top: 5px;
}

.ai-chip {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(46, 54, 253, .08), rgba(91, 99, 255, .05));
    border: 1px solid rgba(46, 54, 253, .15);
    border-radius: var(--radius);
    padding: 10px 14px;
    margin-top: 12px;
    width: 100%;
}

.ai-chip i {
    color: var(--primary);
    font-size: 16px;
}

.ai-chip-text {
    font-size: 12px;
    color: var(--dark);
    line-height: 1.5;
}

.ai-chip-text strong {
    color: var(--ink);
    display: block;
    font-size: 12.5px;
    margin-bottom: 1px;
}

/* ── PROOF / SOCIAL PROOF ── */
.proof-section {
    background: var(--ink);
}

.proof-section .sec-h {
    color: #fff;
}

.proof-section .sec-sub {
    color: rgba(255, 255, 255, .5);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media(max-width:991px) {
    .proof-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:575px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
}

.proof-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}

.proof-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .15);
}

.proof-quote {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}

.proof-quote::before {
    content: '"';
    font-size: 28px;
    color: var(--secondary);
    line-height: 0;
    vertical-align: -10px;
    margin-right: 3px;
}

.proof-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pa-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.pa-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
}

.pa-role {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 32px;
    margin-top: 32px;
    gap: 20px;
}

.ps-item {
    text-align: center;
}

.ps-num {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    display: block;
}

.ps-num span {
    color: var(--secondary);
}

.ps-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    margin-top: 5px;
    display: block;
}

/* ── PLATFORM FEATURES ── */
.platform-section {
    background: #fff;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

@media(max-width:767px) {
    .feat-grid {
        grid-template-columns: 1fr;
    }
}

.feat-item {
    padding: 36px 32px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background .2s;
    position: relative;
    overflow: hidden;
}

.feat-item:nth-child(3n) {
    border-right: none;
}

.feat-item:nth-last-child(-n+2) {
    border-bottom: none;
}

@media(max-width:767px) {
    .feat-item {
        border-right: none;
    }
}

.feat-item:hover {
    background: #f7f8fc;
}

.feat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.feat-item:hover::before {
    transform: scaleX(1);
}

.fi-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(46, 54, 253, .07);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
    border: 1px solid rgba(46, 54, 253, .12);
}

.fi-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.fi-desc {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.7;
}

/* ── WHY US ── */
/* .why-section {
    background: #f7f8fc;
} */

.why-left {
    padding-right: 40px;
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* 
.why-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all .25s;
}

.why-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(46, 54, 253, .08);
} */

.wi-bullet {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    background: rgba(46, 54, 253, .07);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 2px;
}

.wi-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.wi-desc {
    font-size: 13.5px;
    color: var(--dark);
    line-height: 1.65;
}

/* Visual card */
.why-visual-card {
    background: var(--dark2);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.why-visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(241, 137, 17, .2) 0%, transparent 50%),
        radial-gradient(circle at 10% 100%, rgba(46, 54, 253, .25) 0%, transparent 50%);
}

.wvc-inner {
    position: relative;
    z-index: 1;
}

.wvc-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.wvc-logo-mark {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wvc-logo-mark i {
    color: #fff;
    font-size: 13px;
}

.wvc-logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.wvc-logo-name span {
    color: rgba(255, 255, 255, .4);
}

.wvc-metric {
    margin-bottom: 20px;
}

.wvc-metric-val {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.wvc-metric-val span {
    color: var(--secondary);
}

.wvc-metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    margin-top: 4px;
}

.wvc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 11px 14px;
    margin-bottom: 8px;
}

.wvc-row:last-child {
    margin-bottom: 0;
}

.wvc-row-ico {
    font-size: 16px;
    flex-shrink: 0;
}

.wvc-row-text {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    flex: 1;
}

.wvc-row-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-xl);
    background: rgba(22, 163, 74, .15);
    color: #4ade80;
}

/* ── INTEGRATIONS ── */
.integrations-section {
    background: #fff;
    text-align: center;
}

.int-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 860px;
    margin: 40px auto 0;
}

@media(max-width:767px) {
    .int-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:480px) {
    .int-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.int-item {
    background: #f7f8fc;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--dark);
    transition: all .2s;
}

.int-item:hover {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 54, 253, .1);
}

.int-item i {
    font-size: 22px;
}

.int-more {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(46, 54, 253, .06);
    border: 1px solid rgba(46, 54, 253, .15);
    border-radius: var(--radius-md);
    padding: 16px 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.int-more:hover {
    background: var(--primary);
    color: #fff;
}

/* ── CTA ── */
.cta-section {
    background: #1e1b4b;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 0%, rgba(46, 54, 253, .3) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(241, 137, 17, .15) 0%, transparent 50%);
    pointer-events: none;
}

/* grid lines */
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-h {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.cta-h span {
    color: var(--secondary);
}

.cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .55);
    max-width: 440px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cta-p {
    height: 52px;
    padding: 0 32px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: var(--primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all .22s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

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

.btn-cta-o {
    height: 52px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: rgba(255, 255, 255, .75);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: all .22s;
}

.btn-cta-o:hover {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.cta-note {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .4);
    margin-top: 18px;
}

/* Onboarding steps */
.cta-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 52px;
    flex-wrap: wrap;
}

.cta-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-right: none;
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    font-weight: 500;
}

.cta-step:first-child {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.cta-step:last-child {
    border-right: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.cta-step i {
    color: var(--secondary);
    font-size: 16px;
    flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-main {
    padding: 64px 0 10px;
}

.f-brand {
    margin-bottom: 16px;
}

.f-brandmark {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.f-ico {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-ico i {
    color: #fff;
    font-size: 14px;
}

.f-bname {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.f-bname span {
    color: var(--primary);
}

.f-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.7;
    max-width: 260px;
    margin: 10px 0 20px;
}

.f-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .4);
    font-size: 14px;
    text-decoration: none;
    margin-right: 6px;
    transition: all .2s;
}

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

.f-col-head {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.f-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.f-links li {
    margin-bottom: 9px;
}

.f-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s;
}

.f-links a:hover {
    color: rgba(255, 255, 255, .9);
}

.f-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.f-copy {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .25);
}

.f-bottom-links a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .25);
    text-decoration: none;
    margin-left: 20px;
    transition: color .2s;
}

.f-bottom-links a:hover {
    color: rgba(255, 255, 255, .6);
}

/* ── REVEAL ANIMATIONS ── */
.count-up {
    display: inline;
}

/* ── RESPONSIVE ── */
@media(max-width:991px) {
    .hiw-visual {
        position: static;
    }

    .why-left {
        padding-right: 0;
        margin-bottom: 32px;
    }
}

@media(max-width:767px) {
    .hero-h1 {
        letter-spacing: -1px;
    }

    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-sidebar {
        display: none;
    }

    section {
        padding: 72px 0;
    }

    .feat-item:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

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

    .cta-step {
        font-size: 12px;
        padding: 12px 14px;
    }
}

@media(max-width:575px) {
    .cta-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-step {
        border-right: 1px solid rgba(255, 255, 255, .08);
        border-bottom: none;
    }

    .cta-step:first-child {
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .cta-step:last-child {
        border-radius: 0 0 var(--radius) var(--radius);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }
}


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

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


/* extra */
.bg-purple-gradient {
    /* background: linear-gradient(120deg, #230b83, #2027c8) !important; */
    background: linear-gradient(135deg, #0b1026, #1e1b4b, #312e81) !important;
}

.bg-purple-gradient-glow {
    background: linear-gradient(120deg, #2d1b69, #2563eb, #4f46e5) !important;
}

.sec {
    padding: 76px 0;
    overflow: hidden;
}

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

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


/* ── 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;
    margin-top: 0;
    transition: all .2s;
}

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

.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: .82rem;
    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,
.nav-item.dropdown.show .nav-link.dropdown-toggle {
    /* color: var(--secondary) !important; */
    color: var(--ink);
    background: var(--ink10);
}

.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 {
    color: var(--ink);
    background: var(--ink10);
}

/* Mega menu */
.mega-menu {
    min-width: 760px !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);
    text-decoration: none;
    transition: all .2s;
}

.mega-item:hover {
    /* background: var(--ink10); */
    background: #fff4d4;
}

.mega-item:hover .mega-item-name {
    color: var(--secondary-dark);
}

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

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

.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;
}


/* 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;
}

/* nav end */

/* 
.btn-lg {
    height: 50px;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all .22s;
    font-family: 'Inter', sans-serif;
}

.btn-lp {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 1px var(--primary);
}

.btn-lp:hover {
    background: #1e26e0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(46, 54, 253, .25);
}

.btn-lo {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-lo:hover {
    border-color: var(--ink30);
    box-shadow: var(--shadow-md);
    color: var(--ink);
} */


/* inside hero */
/* ──sub page HERO ── */
.svc-hero {
    padding: 132px 0 80px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 90% at 105% 50%, rgba(46, 54, 253, .05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 10.5px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(46, 54, 253, .15);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.svc-hero h1 {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -1.5px;
    color: var(--dark);
    margin-bottom: 20px;
}

.grad {
    background: linear-gradient(90deg, var(--primary), #6b74ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orange {
    background: linear-gradient(90deg, var(--secondary), #f5a94a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc-hero .hero-sub {
    font-size: 16px;
    line-height: 1.78;
    margin-bottom: 32px;
    margin-left: 0;
}


.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.hbadge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-xxl);
    padding: 7px 16px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink60);
}

.hbadge i {
    color: var(--primary);
    font-size: 13px;
}

/* Hero right visual — timeline tracker */
.hero-tracker {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.tracker-header {
    background: var(--dark);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.th-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.th-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    font-family: 'Inter', sans-serif;
}

.tracker-body {
    padding: 18px;
}

.tracker-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tracker-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    background: rgba(22, 163, 74, .1);
    color: #16a34a;
}

.track-step {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.track-step:last-child {
    margin-bottom: 0;
}

.ts-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.ts-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 5;
}

.ts-connector {
    width: 2px;
    flex: 1;
    margin: 3px 0;
    border-radius: 2px;
    z-index: 3;
    position: absolute;
}

.ts-dot-done {
    background: var(--primary);
    color: #fff;
}

.ts-dot-active {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(241, 137, 17, .2);
}

.ts-dot-todo {
    background: var(--gray-100);
    color: var(--ink30);
    border: 1px solid var(--border);
}

.ts-conn-done {
    background: var(--primary);
}

.ts-conn-todo {
    background: var(--gray-100);
}

.ts-info {
    flex: 1;
    padding-top: 3px;
}

.ts-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
}

.ts-sub {
    font-size: 11px;
    color: var(--ink60);
    margin-top: 1px;
}

.ts-dur {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-xl);
    background: var(--gray-100);
    color: var(--ink30);
}


/* AI nudge card */
.ai-nudge {
    background: linear-gradient(135deg, rgba(46, 54, 253, .06), rgba(91, 99, 255, .03));
    border: 1px solid rgba(46, 54, 253, .12);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-top: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ai-nudge i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ai-nudge-text strong {
    font-size: 12.5px;
    color: var(--ink);
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
}

.ai-nudge-text span {
    font-size: 11.5px;
    color: var(--ink60);
    display: inline-block;
    line-height: 1.4;
}


/* ── STRUCTURE TYPES ── */
.struct-section {
    background: var(--gray-50);
}

.struct-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.struct-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-md);
}

.struct-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #6b74ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.struct-card.featured::before {
    transform: scaleX(1);
}

.struct-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.struct-card:hover::before {
    transform: scaleX(1);
}

.sc-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    background: var(--primary-light);
    color: var(--primary);
}

.sc-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
}

.sc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.sc-sub {
    font-size: 13px;
    color: var(--ink60);
    margin-bottom: 14px;
    font-style: italic;
}

.sc-list li {
    font-size: 13.5px;
    color: var(--ink60);
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.sc-list li i {
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 4px;
}



/* ── INCLUDES ── */
.inc-section {
    background: #fff;
}

.inc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.inc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #6b74ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.inc-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(46, 54, 253, .15);
}

.inc-card:hover::before {
    transform: scaleX(1);
}

.inc-ico {
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
}

.inc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}

.inc-list li {
    font-size: 13.5px;
    color: var(--ink60);
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.5;
}

.inc-list li i {
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ── TIMELINE ── */
.tl-section {
    background: var(--gray-50);
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 2px;
}

.tl-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

.tl-step:last-child {
    margin-bottom: 0;
}

.tl-num {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 1;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--ink);
    transition: all .3s;
}

.tl-step:hover .tl-num {
    background: var(--primary);
    box-shadow: 0 0 0 2px var(--primary), 0 0 20px rgba(46, 54, 253, .2);
}

.tl-body {
    padding-top: 10px;
}

.tl-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 5px;
}

.tl-desc {
    font-size: 13.5px;
    color: var(--ink60);
    line-height: 1.7;
    margin-bottom: 10px;
}

.tl-dur {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 12px;
    border-radius: var(--radius-xl);
}

/* Timeline right: docs checklist */
.docs-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.docs-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.docs-card-title i {
    color: var(--primary);
}

.doc-group {
    margin-bottom: 16px;
}

.doc-group-label {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--ink30);
    margin-bottom: 8px;
}

.doc-row {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}

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

.doc-row-ico {
    width: 28px;
    height: 28px;
    border-radius: var(--radius);
    background: var(--gray-50);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.doc-name {
    font-size: 12.5px;
    color: var(--ink);
    font-weight: 500;
    flex: 1;
}

.doc-check {
    font-size: 14px;
}

/* ── WHY US ── */
.why-section {
    background: #fff;
}

.why-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all .25s;
    margin-bottom: 12px;
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(46, 54, 253, .08);
}

.wi-ico {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* .wi-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.wi-desc {
    font-size: 13.5px;
    color: var(--ink60);
    line-height: 1.65;
} */

/* Why visual */
.why-vc {
    background: var(--dark2);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.why-vc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(241, 137, 17, .2) 0%, transparent 50%), radial-gradient(circle at 10% 100%, rgba(46, 54, 253, .25) 0%, transparent 50%);
}

.wvc-z {
    position: relative;
    z-index: 1;
}

.wvc-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.wvc-lm {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wvc-lm i {
    color: #fff;
    font-size: 13px;
}

.wvc-ln {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.wvc-big {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.wvc-big span {
    color: var(--secondary);
}

.wvc-lbl {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 22px;
}

.wvc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 10px 14px;
    margin-bottom: 8px;
}

.wvc-row:last-child {
    margin-bottom: 0;
}

.wvc-row-ico {
    font-size: 15px;
    flex-shrink: 0;
}

.wvc-row-txt {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    flex: 1;
}

.wvc-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-xl);
    background: rgba(22, 163, 74, .15);
    color: #4ade80;
    white-space: nowrap;
}

/* ── PLATFORM FEATURES ── */
.plat-section {
    background: var(--gray-50);
}

.plat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

@media(max-width:991px) {
    .plat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:575px) {
    .plat-grid {
        grid-template-columns: 1fr;
    }
}

.plat-item {
    padding: 30px 26px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff;
    transition: background .2s;
    position: relative;
    overflow: hidden;
}

.plat-item:nth-child(3n) {
    border-right: none;
}

.plat-item:nth-last-child(-n+3) {
    border-bottom: none;
}

@media(max-width:991px) {
    .plat-item:nth-child(3n) {
        border-right: 1px solid var(--border);
    }

    .plat-item:nth-child(2n) {
        border-right: none;
    }

    .plat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

.plat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.plat-item:hover::before {
    transform: scaleX(1);
}

.pi-ico {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.pi-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pi-desc {
    font-size: 13.5px;
    color: var(--ink60);
    line-height: 1.7;
}

/* ── FAQ ── */
.faq-section {
    background: #fff;
}

.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--ink);
    background: #fff;
    padding: 20px 24px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button::after {
    filter: none;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(30%) sepia(100%) saturate(600%) hue-rotate(210deg);
}

.accordion-body {
    padding: 10px 24px 20px;
    /* font-size: 14px; */
    color: var(--ink60);
    line-height: 1.75;
}

/* ── CROSS-SELL ── */
.cross-section {
    background: var(--gray-50);
}

.cross-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all .25s;
}

.cross-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(46, 54, 253, .15);
}

.cross-ico {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    border: 1px solid var(--border);
}

.cross-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.cross-desc {
    font-size: 13px;
    color: var(--ink60);
    line-height: 1.6;
    flex: 1;
}

.cross-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    transition: gap .2s;
}

.cross-link:hover {
    gap: 10px;
}


@media(max-width:991px) {

    .svc-hero {
        padding: 56px 0 64px;
    }
}

@media(max-width:767px) {
    .svc-hero h1 {
        letter-spacing: -.5px;
    }

    .nav-dd {
        width: 320px;
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════
   HERO SECTION — AURORA GLASS
═══════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    background-color: #fbfbfd;

    background-image:
        linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px);

    background-size: 58px 58px;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .25;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

/* Floating Glow */
.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);

    background:
        radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.22) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.18) 0%, transparent 28%),
        radial-gradient(circle at 65% 75%, rgba(168, 85, 247, 0.16) 0%, transparent 35%);
}

/* Extra Light Layer */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.15));
}

/* end hero gradient */


/* HERO DASHBOARD MOCKUP */
.reg-dash {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r20);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.rd-head {
    background: var(--D);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.rd-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.rd-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

.rd-body {
    padding: 18px;
}

.rd-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.reg-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--r12);
    margin-bottom: 10px;
    background: #fff;
    transition: box-shadow .2s;
}

.reg-row:hover {
    box-shadow: var(--sh-sm);
}

.rr-ico {
    width: 36px;
    height: 36px;
    border-radius: var(--r8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.rr-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    display: block;
}

.rr-sub {
    font-size: 11px;
    color: var(--ink30);
}

.rr-bar {
    flex: 1;
    max-width: 120px;
}

.rr-bar-bg {
    height: 4px;
    background: #e9eaf0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 3px;
}

.rr-bar-fill {
    height: 100%;
    border-radius: 2px;
}

.rr-pct {
    font-size: 10px;
    color: var(--ink30);
}

.rr-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius);
}

.reg-dash .pg {
    background: rgba(22, 163, 74, .1);
    color: #16a34a;
}

.reg-dash .pa {
    background: rgba(241, 137, 17, .1);
    color: #b45309;
}

.reg-dash .pb {
    background: rgba(46, 54, 253, .1);
    color: var(--P);
}

.reg-dash .pq {
    background: var(--ink10);
    color: var(--ink30);
}

.ai-n {
    background: linear-gradient(135deg, rgba(46, 54, 253, .06), rgba(91, 99, 255, .03));
    border: 1px solid rgba(46, 54, 253, .12);
    border-radius: var(--r12);
    padding: 11px 14px;
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ai-n i {
    color: var(--P);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ai-n strong {
    font-size: 12.5px;
    color: var(--ink);
    display: block;
    margin-bottom: 2px;
}

.ai-n span {
    font-size: 11.5px;
    color: var(--ink60);
    line-height: 1.4;
    display: inline-block;
}

/* REG CATEGORIES */
.rc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r16);
    padding: 28px;
    height: 100%;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.rc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--P), #6b74ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.rc-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: rgba(46, 54, 253, .15);
}

.rc-card:hover::before {
    transform: scaleX(1);
}

.rc-ico {
    width: 48px;
    height: 48px;
    border-radius: var(--r12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
}

.rc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.rc-sub {
    margin-bottom: 6px;
}

.rc-list li {
    font-size: 13.5px;
    color: var(--ink60);
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}

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

.rc-list li i {
    color: var(--P);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.rc-list li span {
    font-weight: 600;
    color: var(--ink);
    display: block;
    font-size: 13px;
}

.rc-list li small {
    font-size: 11.5px;
    color: var(--ink60);
    display: block;
}


/* DIFF TABLE */
.diff {
    background: var(--g50);
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--r20);
    overflow: hidden;
}

@media(max-width:767px) {
    .diff-grid {
        grid-template-columns: 1fr;
    }
}

.diff-col {
    padding: 32px;
}

.diff-col:first-child {
    border-right: 1px solid var(--border);
    background: #fff;
}

.diff-col:last-child {
    background: var(--PL);
}

.dc-head {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.dc-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

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

.dc-row i {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Calendar visual */
.cal-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r20);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.cal-head {
    background: var(--D);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ch-d {
    display: flex;
    gap: 5px;
}

.ch-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.ch-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

.cal-body {
    padding: 18px;
}

.cal-month {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cal-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius);
    background: rgba(241, 137, 17, .1);
    color: var(--S);
}

.cal-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--r12);
    margin-bottom: 10px;
    transition: box-shadow .2s;
}

.cal-item:hover {
    box-shadow: var(--shadow-md);
}

.ci-date {
    width: 44px;
    text-align: center;
    flex-shrink: 0;
}

.ci-day {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.ci-month {
    font-size: 10px;
    color: var(--ink30);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ci-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

.ci-info {
    flex: 1;
}

.ci-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.ci-sub {
    font-size: 11.5px;
    color: var(--ink30);
    margin-top: 2px;
}

.ci-pill {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: var(--radius);
}

.cp-red {
    background: rgba(220, 38, 38, .1);
    color: #dc2626;
}

.cp-amber {
    background: rgba(241, 137, 17, .1);
    color: #b45309;
}

.cp-blue {
    background: rgba(46, 54, 253, .1);
    color: var(--P);
}

.cp-green {
    background: rgba(22, 163, 74, .1);
    color: #16a34a;
}

/* Hero doc workspace mockup */
.doc-dash {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r20);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.dd-head {
    background: var(--D);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.ddh-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.ddh-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

.dd-body {
    padding: 18px;
}

.dd-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
}

.doc-dash .doc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: #fff;
    transition: box-shadow .2s;
}

.doc-dash .doc-row:hover {
    box-shadow: var(--shadow-md);
}

.dr-ico {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.dr-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    display: block;
}

.dr-sub {
    font-size: 11px;
    color: var(--ink30);
}

.dr-status {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: var(--radius);
    white-space: nowrap;
}

.ds-done {
    background: rgba(22, 163, 74, .1);
    color: #16a34a;
}

.ds-rev {
    background: rgba(46, 54, 253, .1);
    color: var(--P);
}

.ds-draft {
    background: rgba(241, 137, 17, .1);
    color: #b45309;
}

.ds-pending {
    background: var(--ink10);
    color: var(--ink60);
}

.dr-sign {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.sign-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    margin-left: -6px;
}

.sign-avatar:first-child {
    margin-left: 0;
}

/* Sample doc preview */
.doc-preview {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
}

.dp-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.dp-ico {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(220, 38, 38, .07);
    border: 1px solid rgba(220, 38, 38, .12);
}

.dp-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.dp-sub {
    font-size: 11.5px;
    color: var(--ink30);
}

.dp-clause {
    background: var(--g50);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 10px;
}

.dp-clause-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--ink30);
    margin-bottom: 5px;
}

.dp-clause-text {
    font-size: 12.5px;
    color: var(--ink60);
    line-height: 1.6;
}

.dp-clause-text strong {
    color: var(--ink);
}

.dp-sign-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.dp-signer {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    text-align: center;
}

.dp-signer-label {
    font-size: 10px;
    color: var(--ink30);
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 6px;
}

.dp-sig {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    border-top: 1px solid var(--ink30);
    padding-top: 6px;
    margin-top: 4px;
}

.dp-date {
    font-size: 10px;
    color: var(--ink30);
    margin-top: 3px;
}

/* HERO FINANCIAL DASHBOARD MOCKUP */
.fin-dash {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.fd-head {
    background: var(--D);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.fd-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.fd-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

.fd-body {
    padding: 18px;
}

/* Mini chart bars */
.fd-chart-wrap {
    margin-bottom: 16px;
}

.fd-chart-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fd-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: var(--radius-md);
}

.fd-bars {
    display: flex;
    align-items: baseline;
    gap: 6px;
    height: 80px;
}

.fd-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.fd-bar {
    border-radius: 4px 4px 0 0;
    width: 100%;
    transition: opacity .2s;
}

.fd-bar-label {
    font-size: 9px;
    color: var(--ink30);
}

/* Metric row */
.fd-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.fd-metric {
    background: var(--g50);
    border-radius: var(--radius);
    padding: 12px;
    border: 1px solid var(--border);
}

.fd-m-label {
    font-size: 9.5px;
    color: var(--ink30);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 3px;
}

.fd-m-val {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}

.fd-m-trend {
    font-size: 9px;
    margin-top: 3px;
}

/* Recent entries */
.fd-entry {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.fd-entry:last-child {
    border-bottom: none;
}

.fd-e-ico {
    width: 28px;
    height: 28px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.fd-e-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    flex: 1;
}

.fd-e-cat {
    font-size: 10px;
    color: var(--ink30);
}

.fd-e-amt {
    font-size: 12px;
    font-weight: 700;
}

.fd-e-amt.cr {
    color: #16a34a;
}

.fd-e-amt.dr {
    color: #dc2626;
}

/* IDEAL FOR */


.ideal-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 26px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all .25s;
    height: 100%;
}

.ideal-card:hover {
    border-color: var(--P);
    box-shadow: 0 4px 20px rgba(46, 54, 253, .08);
}

.ideal-ico {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--PL);
    color: var(--P);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ideal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.ideal-desc {
    font-size: 13.5px;
    color: var(--ink60);
    line-height: 1.65;
}


/* ERP BANNER */
.erp-sec {
    background: linear-gradient(135deg, var(--dark2) 0%, #1a2450 100%);
    position: relative;
    overflow: hidden;
}

.erp-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(46, 54, 253, .25) 0%, transparent 55%), radial-gradient(circle at 10% 80%, rgba(241, 137, 17, .15) 0%, transparent 50%);
}

.erp-sec::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 36px 36px;
}

.erp-inner {
    position: relative;
    z-index: 1;
}

.erp-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-xxl);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 20px;
}

.erp-h {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}

.erp-h span {
    color: var(--S);
}

.erp-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 32px;
}

.erp-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.erp-mod {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.erp-mod i {
    color: var(--S);
    font-size: 14px;
}

/* ERP mockup screen */
.erp-screen {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-xl);
    padding: 20px;
    backdrop-filter: blur(10px);
}

.es-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r12);
    margin-bottom: 8px;
}

.es-row:last-child {
    margin-bottom: 0;
}

.es-ico {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.es-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    flex: 1;
}

.es-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: var(--radius-xl);
}

.ep-g {
    background: rgba(22, 163, 74, .15);
    color: #4ade80;
}

.ep-b {
    background: rgba(46, 54, 253, .2);
    color: #a5b4fc;
}

.ep-a {
    background: rgba(241, 137, 17, .15);
    color: #fbbf24;
}

.es-bar {
    flex: 1;
    max-width: 80px;
}

.es-bar-bg {
    height: 3px;
    background: rgba(255, 255, 255, .1);
    border-radius: 2px;
    overflow: hidden;
}

.es-bar-fill {
    height: 100%;
    border-radius: 2px;
}

/* Right: MIS report preview */
.mis-card {
    background: var(--g50);
    border: 1px solid var(--border);
    border-radius: var(--r20);
    padding: 24px;
}

.mis-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mis-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: var(--radius);
    background: rgba(22, 163, 74, .1);
    color: #16a34a;
}

.mis-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

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


.mis-label {
    font-size: 13px;
    color: var(--ink60);
}

.mis-val {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.mis-trend {
    font-size: 11px;
    margin-left: 8px;
}

.mis-up {
    color: #16a34a;
}

.mis-dn {
    color: #dc2626;
}

.mis-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

/* Hero stats bar */
.stats-bar {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--r16);
    overflow: hidden;
    margin-top: 44px;
    background: #fff;
    box-shadow: var(--shadow);
}

.stat-item {
    flex: 1;
    padding: 20px 24px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    display: block;
}

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

.stat-lbl {
    font-size: 11.5px;
    color: var(--ink30);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 4px;
    display: block;
}

/* MISSION & STORY */
.mission-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.mc-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.mc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.mc-text {
    font-size: 13.5px;
    color: var(--ink60);
    line-height: 1.8;
}

/* PILLARS */
.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all .25s;
}

.pillar-item:hover {
    border-color: var(--P);
    box-shadow: 0 4px 20px rgba(46, 54, 253, .08);
}

.pl-ico {
    width: 44px;
    height: 44px;
    border-radius: var(--r12);
    background: var(--PL);
    color: var(--P);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pl-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}

.pl-desc {
    font-size: 13.5px;
    color: var(--ink60);
    line-height: 1.65;
}

/* about us */

/* TEAM SECTION */
.team-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: block;
}

/*
/* person card */
.person-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    height: 100%;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.person-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.person-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.person-card:hover::before {
    transform: scaleX(1);
}

.pc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.pc-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px;
}

.pc-role {
    font-size: 12.5px;
    color: var(--ink60);
    margin-bottom: 12px;
}

.pc-links {
    display: flex;
    gap: 6px;
}

.pc-link {
    width: 28px;
    height: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink30);
    font-size: 13px;
    transition: all .2s;
}

.pc-link:hover {
    background: var(--P);
    border-color: var(--P);
    color: #fff;
}

/* INVESTORS */
.inv-sec {
    background: #fff;
}

.inv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media(max-width:991px) {
    .inv-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:575px) {
    .inv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inv-card {
    background: var(--g50);
    border: 1px solid var(--border);
    border-radius: var(--r16);
    padding: 20px;
    text-align: center;
    transition: all .25s;
}

.inv-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: rgba(46, 54, 253, .15);
}

.inv-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.inv-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.inv-role {
    font-size: 11.5px;
    color: var(--ink30);
    margin-bottom: 10px;
}

.inv-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--P);
    transition: gap .2s;
}

.inv-link:hover {
    gap: 9px;
}


/* APP DOWNLOAD */
.app-sec {
    background: var(--dark2);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.app-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(46, 54, 253, .3) 0%, transparent 60%);
    pointer-events: none;
}

.app-sec::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.app-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.app-h {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.app-h span {
    color: var(--S);
}

.app-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .55);
    max-width: 440px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.app-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--r12);
    padding: 12px 22px;
    transition: all .25s;
    color: #fff;
    text-align: start;
}

.app-btn:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
}

.app-btn i {
    font-size: 22px;
}

.app-btn small {
    font-size: 10px;
    opacity: .6;
    display: block;
}

.app-btn strong {
    font-size: 14px;
    font-weight: 700;
}

/* app btn light */
.app-sec-light {
    background: #fff;
    border-radius: var(--r12);
    padding: 28px;
    border: 1px solid var(--border);
}


.app-sec-light .app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--r12);
    padding: 12px 22px;
    transition: all .25s;
    color: var(--dark);
    text-align: start;
}

.app-sec-light .app-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(43, 0, 255, 0.3);
    color: var(--dark);
}


/* CTA */
.cta-light {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(49, 46, 253, 0.1) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 80% 80%, rgba(241, 137, 17, .15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-light::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.cta-light .ci {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-light .ch {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-light .ch span {
    color: var(--S);
}

.cta-light .csub {
    font-size: 17px;
    color: rgba(0, 0, 0, 0.55);
    max-width: 440px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-light .ctb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}


.cta-light .cn2 {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.3);
    margin-top: 16px;
}

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

.logos-track .owl-item {
    justify-content: center;
}

/* about Hero right card */
.hero-card {
    background: var(--white);
    border-radius: var(--r20);
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(241, 137, 17, .2) 0%, transparent 50%), radial-gradient(circle at 10% 100%, rgba(46, 54, 253, .25) 0%, transparent 55%);
}

.hcz {
    position: relative;
    z-index: 1;
}

.hc-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hc-lm {
    width: 32px;
    height: 32px;
    background: var(--P);
    border-radius: var(--r8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-lm i {
    color: var(--white);
    font-size: 15px;
}

.hc-ln {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.hc-tagline {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.hc-tagline span {
    color: var(--S);
}

.hc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--r8);
    padding: 10px 14px;
    margin-bottom: 8px;
}

.hc-row:last-child {
    margin-bottom: 0;
}

.hc-ico {
    font-size: 16px;
    flex-shrink: 0;
}

.hc-txt {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.75);
    flex: 1;
}

.hc-pill {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: var(--radius);
    background: rgba(22, 163, 74, .15);
    color: #169946;
    white-space: nowrap;
}

/* ── Service page  WHAT WE DO (4 PILLARS) ── */
.pillars-sec {
    background: #fff;
}

.pillar-card {
    background: var(--g50);
    border: 1px solid var(--border);
    border-radius: var(--r16);
    padding: 28px;
    height: 100%;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.pillar-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pc-ico {
    width: 48px;
    height: 48px;
    border-radius: var(--r12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
}

.pc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}

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

.pc-list li {
    font-size: 13.5px;
    color: var(--ink60);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    border-bottom: 1px solid var(--border);
}

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

.pc-list li i {
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 4px;
}

/* ── HOW DIFFERENT ── */
.diff-sec {
    background: var(--dark2);
    position: relative;
    overflow: hidden;
}

.diff-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(46, 54, 253, .25) 0%, transparent 55%), radial-gradient(circle at 10% 80%, rgba(241, 137, 17, .15) 0%, transparent 50%);
}

.diff-sec::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 36px 36px;
}

.diff-inner {
    position: relative;
    z-index: 1;
}

.diff-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r16);
    padding: 24px;
    height: 100%;
    transition: all .25s;
}

.diff-card:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .18);
}

.dc-ico {
    font-size: 28px;
    margin-bottom: 14px;
}

.dc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.dc-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
}


/* ── WHO WE WORK WITH ── */
.who-sec {
    background: var(--g50);
}

.who-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r16);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    transition: all .25s;
}

.who-card:hover {
    border-color: var(--P);
    box-shadow: 0 4px 20px rgba(46, 54, 253, .08);
}

.who-ico {
    width: 48px;
    height: 48px;
    border-radius: var(--r12);
    background: var(--PL);
    color: var(--P);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.who-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.who-desc {
    font-size: 13.5px;
    color: var(--ink60);
    line-height: 1.65;
}



/* CTA onboarding steps */
.cta-steps {
    display: flex;
    align-items: stretch;
    margin-top: 44px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.cta-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-right: none;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
}

.cta-step:first-child {
    border-radius: var(--r8) 0 0 var(--r8);
}

.cta-step:last-child {
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-radius: 0 var(--r8) var(--r8) 0;
}

.cta-step i {
    color: var(--S);
    font-size: 18px;
    flex-shrink: 0;
}

@media(max-width:767px) {
    .cta-steps {
        flex-direction: column;
        max-width: 320px;
        margin: 44px auto 0;
    }

    .cta-step {
        border-right: 1px solid rgba(255, 255, 255, .1);
        border-bottom: none;
    }

    .cta-step:first-child {
        border-radius: var(--r8) var(--r8) 0 0;
    }

    .cta-step:last-child {
        border-radius: 0 0 var(--r8) var(--r8);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }
}

/* Services overview mockup */
.svc-overview {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r20);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.so-head {
    background: var(--D);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.so-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.so-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

.so-body {
    padding: 18px;
}

.so-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.so-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--g50);
    border: 1px solid var(--border);
    border-radius: var(--r8);
    padding: 10px 12px;
    transition: all .2s;
}

.so-item:hover {
    border-color: rgba(46, 54, 253, .2);
    background: var(--PL);
}

.so-item-ico {
    width: 30px;
    height: 30px;
    border-radius: var(--r8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.so-item-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}

.so-check {
    font-size: 14px;
    margin-left: auto;
    flex-shrink: 0;
}

.so-platform {
    margin-top: 12px;
    background: linear-gradient(135deg, rgba(46, 54, 253, .06), rgba(91, 99, 255, .03));
    border: 1px solid rgba(46, 54, 253, .12);
    border-radius: var(--r12);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.so-platform i {
    color: var(--P);
    font-size: 18px;
    flex-shrink: 0;
}

.so-platform strong {
    font-size: 12.5px;
    color: var(--ink);
    display: block;
    margin-bottom: 1px;
}

.so-platform span {
    font-size: 11.5px;
    color: var(--ink60);
}

/* ── TICKER STRIP ── */
.ticker-wrap {
    background: var(--P);
    padding: 12px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    animation: tickScroll 22s linear infinite;
    white-space: nowrap;
}

.tick-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 0 28px;
    flex-shrink: 0;
}

.tick-dot {
    color: rgba(255, 255, 255, .4);
    font-size: 16px;
}

@keyframes tickScroll {
    0% {
        transform: translateX(0);
    }

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

/* ── RESULTS BENTO ── */
.results-sec {
    background: #fff;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

@media(max-width:991px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:575px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

.res-card {
    background: var(--g50);
    border: 1px solid var(--border);
    border-radius: var(--r16);
    padding: 28px;
    transition: all .25s;
}

.res-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: rgba(46, 54, 253, .15);
}

.res-card.featured {
    background: var(--D);
    border-color: transparent;
}

.res-card.featured .res-num {
    color: #fff;
}

.res-card.featured .res-num span {
    color: var(--S);
}

.res-card.featured .res-label {
    color: rgba(255, 255, 255, .5);
}

.res-card.featured .res-desc {
    color: rgba(255, 255, 255, .55);
}

.res-num {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
}

.res-num span {
    color: var(--S);
}

.res-label {
    font-family: 'Poppins', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.res-desc {
    font-size: 13.5px;
    color: var(--ink60);
    line-height: 1.65;
}

.appdown-keys {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.appdown-keys span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}

.appdown-keys i {
    color: var(--S);
}

.appdown-keys .divider {
    color: rgba(255, 255, 255, 0.2);
    display: block;
}

/* ════════════════════════════════════════
   NAVBAR SHELL
════════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border-bottom: 1px solid var(--border); */
    border-bottom: none;
    width: 100%;
}

.nav-wrap {
    display: flex;
    align-items: center;
    height: 64px;
}


/* ── Nav links ── */
.nav-links {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    border-radius: var(--r8);
    cursor: pointer;
    transition: all .18s;
    white-space: nowrap;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark);
    background: var(--ink10);
}

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

.nav-link .chevron {
    font-size: 11px;
    transition: transform .25s;
    color: var(--ink60);
}

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

/* ── Action buttons ── */
.btn-primary-nav {
    height: 36px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    background: var(--P);
    color: #fff;
    border-radius: var(--r8);
    border: none;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
}

.btn-primary-nav:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ════════════════════════════════════════
    MEGA DROPDOWN  ← THE KEY COMPONENT
  ════════════════════════════════════════ */
.nav-item {
    position: relative;
}

/* Trigger area for hover */
.nav-item:hover .mega-dd,
.nav-item.open .mega-dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.mega-dd {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    transform: translateX(-50%) translateY(10px);
    width: 760px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s cubic-bezier(.16, 1, .3, 1), transform .22s cubic-bezier(.16, 1, .3, 1), visibility .22s;
    overflow: hidden;
    pointer-events: none;
    /* Nudge so it doesn't clip on left edge */
    margin-left: 0;
}

/* Arrow pointer */
.mega-dd::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 60px;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: translateX(-50%) rotate(45deg);
    border-radius: 2px;
    z-index: 1;
}

/* ── Header strip inside dropdown ── */
.dd-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #031153 100%);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.dd-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(241, 137, 17, .18) 0%, transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(46, 54, 253, .2) 0%, transparent 50%);
    pointer-events: none;
}

.dd-header-inner {
    position: relative;
    z-index: 1;
}

.dd-header-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.dd-header-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.dd-header-title span {
    color: var(--S);
}

.dd-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-xxl);
    padding: 5px 12px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    position: relative;
    z-index: 1;
}

.dd-header-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--S);
    animation: ddPulse 1.8s ease-in-out infinite;
}

@keyframes ddPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

/* ── Services grid ── */
.dd-body {
    padding: 12px;
}

.dd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

/* ── Each service item ── */
.dd-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--r12);
    transition: background .15s, transform .15s;
    cursor: pointer;
    position: relative;
}

.dd-item:hover {
    background: var(--g50);
}

.dd-item:hover .dd-name {
    color: var(--secondary);
}

.dd-item.active-page {
    background: var(--SL);
}

.dd-item.active-page .dd-name {
    color: var(--S);
}

.dd-item.active-page .dd-icon-wrap {
    background: var(--S);
    color: #fff !important;
}

.dd-item.active-page .dd-icon-wrap i {
    color: #fff !important;
}

/* Icon box — the key visual diff vs old design */
.dd-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: var(--SL);
    /* orange-tint — matches v2 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    transition: transform .2s;
}

.dd-item:hover .dd-icon-wrap {
    transform: scale(1.08);
}

/* Text */
.dd-text-wrap {
    flex: 1;
    min-width: 0;
    align-items: center;
}

.dd-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    display: block;
    margin-bottom: 3px;
    line-height: 1.3;
}

.dd-sub {
    font-size: 11.5px;
    color: var(--ink60);
    line-height: 1.45;
    display: block;
}

/* Arrow on hover */
.dd-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--ink30);
    opacity: 0;
    transition: opacity .2s, background .2s;
    flex-shrink: 0;
    margin-top: 2px;
    align-self: center;
}

.dd-item:hover .dd-arrow {
    opacity: 1;
    background: var(--PL);
    color: var(--P);
}

/* ── Footer strip ── */
.dd-footer {
    border-top: 1px solid var(--border);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--g50);
    border-radius: 0 0 var(--r20) var(--r20);
}

.dd-footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--dark);
}

.dd-footer-left i {
    color: var(--S);
    font-size: 14px;
}

.dd-footer-right {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--P);
    padding: 5px 14px;
    border-radius: var(--radius-xxl);
    border: 1px solid rgba(46, 54, 253, .2);
    background: var(--PL);
    transition: all .2s;
}

.dd-footer-right:hover {
    background: var(--P);
    color: #fff;
    border-color: var(--P);
}

/* Mobile toggle */
.nav-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--ink60);
    font-size: 22px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .nav-links {
        display: none !important;
    }

    .nav-divider {
        display: none !important;
    }

    .nav-mobile-toggle {
        display: flex;
        margin-left: auto;
        align-items: center;
    }

    .btn-primary-nav span {
        display: none;
    }
}

@media (max-width: 575px) {
    .mega-dd {
        width: calc(100vw - 24px);
        left: 12px;
        transform: none;
        top: calc(100% + 8px);
    }

    .mega-dd::before {
        display: none;
    }

    .dd-grid {
        grid-template-columns: 1fr;
    }
}

/* new gl */
.mobv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

.mobdrawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(13, 17, 23, .55);
    backdrop-filter: blur(4px);
}

.mobv-body {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 100vw);
    height: 100%;
    background: #fff;
    box-shadow: -12px 0 40px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.drwclose {
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--ink60);
    cursor: pointer;
    padding: 4px;
}

.moblink-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--r12);
    font-size: 14px;
    color: var(--ink);
    transition: background .15s;
}

.moblink-item:hover,
.mobv-home:hover,
.mobv-link:hover {
    background: var(--g50);
}

.mobv-link {
    display: flex;
    align-items: center;
    padding: 13px 14px;
    border-radius: var(--r12);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    transition: background .15s;
}

.mobv-link i {
    color: var(--P);
    font-size: 18px;
}

.mob-sec-header {
    margin: 8px 0 4px;
    padding: 10px 14px 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink30);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mbl-ico {
    width: 32px;
    height: 32px;
    background: var(--SL);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.mbl-name {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.mbl-sub {
    font-size: 11px;
    color: var(--ink30);
}

.btn-mbo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--r12);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink60);
    transition: all .2s;
}

.btn-mbo:hover {
    background: var(--g50);
}

.btn-mbp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    background: var(--P);
    border-radius: var(--r12);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    font-family: 'Inter', sans-serif;
    transition: all .2s;
}

.mbcta-btns {
    padding: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#navCommon.scrolled {
    box-shadow: 0 4px 30px rgba(92, 59, 255, 0.10);
    margin-top: 0;
}

/* end nav */



/* 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);
}

.header-line-limit-2 {
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    padding-bottom: 4px;
}

@media (max-width: 767px) {
    .posts-list .list-item {
        width: 100%;
    }
}

/* blog end */

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 26px;
    border-radius: var(--r8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111;
    transition: background 0.15s;
    height: 36px;
}

.btn-outline:hover {
    background: #f3f4f6;
}

.site-nav .btn-ghost {
    border-radius: var(--radius-xxl);
    padding: 0 14px;
}

.btn-ghost i {
    margin-right: 6px;
}

.btn-ghost.pl {
    background: var(--primary-light);
    color: var(--primary);
    border: none;
}

.btn-ghost.pl:hover {
    background: var(--primary-hover);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(46, 54, 253, .25);
}

.btn-ghost.sl {
    background: var(--secondary-light);
    border: none;
    margin-right: 6px;
    color: var(--secondary-dark);
}

.btn-ghost.sl:hover {
    background: var(--secondary);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 129, 19, 0.25);
}

/* blog */