/* Entries ERP component styles and light product-page theme. */
:root {
    --text-dark: #0f0f1a;
    --text-muted: #64748b;
    --white: #ffffff;
    --bg-soft: #f8f7ff;
}


/* ── HERO ── */
.hero-dark {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    /* padding: 130px 20px 90px; */
    padding: 70px 0 60px;
    overflow: hidden;
    background: #050318;
    /* Deep purple-blue gradient matching entries.ai/startups */
    /* background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(60, 20, 180, .55) 0%, transparent 60%),
        radial-gradient(ellipse 70% 60% at 80% 40%, rgba(100, 10, 120, .45) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 50% 100%, rgba(74, 36, 232, .3) 0%, transparent 60%),
        linear-gradient(140deg, #0a0630 0%, #120855 20%, #1e0c72 38%, #2a1080 50%, #1e0c6e 62%, #300878 75%, #180540 100%); */
}

/* Vertical grid lines overlay */
.hero-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, .028) 0px,
            rgba(255, 255, 255, .028) 1px,
            transparent 1px,
            transparent 68px);
    pointer-events: none;
}

/* Ambient noise texture */
.hero-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: .5;
    pointer-events: none;
}

.hero-features::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 36, 232, .25) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 66px 66px;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 60% at 15% 40%, rgba(46, 54, 253, .22) 0%, transparent 65%), radial-gradient(ellipse 50% 50% at 85% 20%, rgba(241, 137, 17, .12) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 70% 80%, rgba(46, 54, 253, .10) 0%, transparent 60%);
}

.hero-visual::before {
    display: none;
}

.hero-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 12px 24px;
    margin-bottom: 22px;
    box-shadow: 0 4px 20px rgba(74, 36, 232, 0.1);
}

.hero-price-pill .price {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-price-pill .per {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.hero-price-pill .per strong {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.86rem;
}

.hero-price-pill .divider-v {
    width: 1px;
    height: 38px;
    background: var(--border);
    flex-shrink: 0;
}

/* hero visual */
/* ── HERO DASHBOARD VISUAL ── */
.hero-dashboard {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(74, 36, 232, 0.15);
    padding: 22px;
    border: 1px solid rgba(74, 36, 232, 0.1);
    position: relative;
}

/* Top bar */
.hd-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.hd-topbar .hd-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.hd-topbar .hd-brand span {
    color: var(--secondary);
}

.hd-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ecfdf5;
    color: #16a34a;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #bbf7d0;
}

.hd-live-dot {
    width: 6px;
    height: 6px;
    background: #16a34a;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

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

.hd-kpi {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hd-kpi::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    opacity: 0.4;
}

.hd-kpi.orange::after {
    background: var(--secondary);
}

.hd-kpi.green::after {
    background: #22c55e;
}

.hd-kpi-label {
    font-size: 0.55rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}

.hd-kpi-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.hd-kpi-trend {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #16a34a;
}

.hd-kpi-trend.orange {
    color: var(--secondary);
}

/* Middle row — 2 metric cards */
.hd-mid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.hd-metric {
    background: var(--primary-light);
    border-radius: 14px;
    padding: 12px 16px;
    /* color: #fff; */
    position: relative;
    overflow: hidden;
}

.hd-metric.orange-bg {
    background: var(--secondary-light);
    /* background: linear-gradient(135deg, var(--secondary-light) 0%, #ffc375 100%); */
}

.hd-metric::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(161, 161, 161, 0.08);
    border-radius: 50%;
}

.hd-metric-icon {
    width: 30px;
    height: 30px;
    background: rgba(167, 148, 148, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.hd-metric-val {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.hd-metric-name {
    font-size: 0.7rem;
    opacity: 0.85;
    font-weight: 500;
    margin-bottom: 0;
}

.hd-metric-sub {
    font-size: 0.63rem;
    opacity: 0.7;
}

/* Payroll row */
.hd-payroll-row {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    margin-bottom: 14px;
}

.hd-payroll-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.hd-payroll-header span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hd-payroll-header .hd-badge {
    font-size: 0.62rem;
    font-weight: 700;
    background: var(--primary-light);
    color: var(--primary);
    padding: 3px 9px;
    border-radius: 20px;
}

.hd-progress-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.hd-progress-item:last-child {
    margin: 0;
}

.hd-progress-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 500;
    width: 80px;
    flex-shrink: 0;
}

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

.hd-progress-bar {
    height: 100%;
    border-radius: 4px;
    background: var(--primary);
}

.hd-progress-bar.orange {
    background: var(--secondary);
}

.hd-progress-bar.green {
    background: #22c55e;
}

.hd-progress-val {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-dark);
    width: 28px;
    text-align: right;
    flex-shrink: 0;
}

/* Compliance modules strip */
.hd-modules-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.hd-module-chip {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    transition: all 0.2s;
    cursor: default;
}

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

.hd-module-chip i {
    font-size: 1rem;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.hd-module-chip.orange i {
    color: var(--secondary);
}

.hd-module-chip:hover.orange {
    border-color: var(--secondary);
    background: var(--secondary-light);
}

.hd-module-chip span {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    display: block;
}




/* ── TRUST BAR ── */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
}

.trust-bar .trust-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* ── SECTION HEADERS ── */
/* .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
} */

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
}

/* ── PROBLEM SECTION ── */

.problem-vs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
}

.vs-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 50%;
    align-self: center;
}

.problem-card,
.solution-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
}

.problem-card {
    border-top: 3px solid #ef4444;
}

.solution-card {
    border-top: 3px solid #22c55e;
}

.problem-card h5,
.solution-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.problem-card h5 {
    color: #ef4444;
}

.solution-card h5 {
    color: #22c55e;
}

.check-list,
.cross-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li,
.cross-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--text-muted);
}

.check-list li:last-child,
.cross-list li:last-child {
    border: none;
}

.check-list li i {
    color: #22c55e;
    margin-top: 0;
    flex-shrink: 0;
}

.cross-list li i {
    color: #ef4444;
    margin-top: 0;
    flex-shrink: 0;
}

/* ── FEATURES SECTION ── */
.features-section {
    background: var(--bg-soft);
}

.module-card-full {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 28px 28px 24px;
    height: 100%;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.module-card-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.25s;
}

.module-card-full:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 36px rgba(74, 36, 232, 0.10);
    transform: translateY(-4px);
}

.module-card-full:hover::before {
    opacity: 1;
}

.module-card-full.orange-accent::before {
    background: var(--secondary);
}

.module-card-full:hover.orange-accent {
    border-color: var(--secondary);
    box-shadow: 0 10px 36px rgba(241, 137, 17, 0.10);
}

.mcf-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.22rem;
    margin-bottom: 18px;
    background: var(--primary-light);
    color: var(--primary);
    flex-shrink: 0;
}

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

.module-card-full h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.module-card-full .mcf-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 18px;
    line-height: 1.6;
}

.mcf-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.mcf-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.8rem;
    padding: 4px 0;
    color: var(--text-dark);
}

.mcf-list li i {
    color: var(--primary);
    font-size: 0.75rem;
    margin-top: 0;
    flex-shrink: 0;
}

.mcf-list li.orange-li i {
    color: var(--secondary);
}

.mcf-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

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

.mcf-link.orange {
    color: var(--secondary);
}

.mcf-link.orange:hover {
    color: #d97a0d;
}

/* ── MODULES OVERVIEW ── */
.modules-section {
    background: var(--bg-soft);
    padding: 90px 0;
}

.module-big-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.25s;
}

.module-big-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(74, 36, 232, 0.1);
    transform: translateY(-3px);
}

.module-big-card .mod-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    background: var(--primary-light);
    color: var(--primary);
}

.module-big-card .mod-icon.orange {
    background: var(--secondary-light);
    color: var(--secondary);
}

.module-big-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.module-big-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.mod-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mod-tag {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

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

/* ── MANAGED SERVICES ── */

.managed-card {
    background: linear-gradient(135deg, var(--primary) 0%, #6c47f5 100%);
    border-radius: 24px;
    padding: 56px 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.managed-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.managed-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 40%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}


.managed-card p {
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.7;
}

.manage-card-sec {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mcs-header {
    font-size: 0.75rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.managed-price-box {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.managed-price-box .price {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.managed-price-box .per {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

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

.managed-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    padding: 6px 0;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.managed-feature-list li:last-child {
    border: none;
}

.managed-feature-list li i {
    color: #a0f0c0;
    font-size: 0.9rem;
}

.btn-managed {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(241, 137, 17, 0.35);
}

.btn-managed:hover {
    background: #d97a0d;
    color: #fff;
    transform: translateY(-2px);
}

/* ── PRICING ── */
/* .pricing-section {
    background: var(--bg-soft);
    padding: 90px 0;
} */

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--border);
    padding: 36px 32px;
    height: 100%;
    transition: all 0.25s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 12px 48px rgba(74, 36, 232, 0.15);
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 48px rgba(74, 36, 232, 0.12);
    transform: translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card .plan-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--primary);
    margin-bottom: 16px;
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.pricing-card .billing {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-divider {
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.pricing-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    padding: 7px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-feature-list li:last-child {
    border: none;
}

.pricing-feature-list li i.bi-check-circle-fill {
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-feature-list li i.bi-plus-circle-fill {
    color: var(--secondary);
    flex-shrink: 0;
}

.btn-pricing-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
    box-shadow: 0 4px 16px rgba(74, 36, 232, 0.25);
}

.btn-pricing-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-pricing-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 11px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-pricing-outline:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.pricing-note {
    background: var(--secondary-light);
    border: 1px solid rgba(241, 137, 17, 0.2);
    border-radius: 12px;
    padding: 14px 14px;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-top: 32px;
}

.pricing-note i {
    color: var(--secondary);
}

.pricing-note strong {
    font-weight: 600;
}

.pricing-employee-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--primary);
}

.pricing-employee-banner i {
    font-size: 0.9rem;
}

/* ── WHY SECTION ── */
.why-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 28px;
    height: 100%;
    transition: all 0.2s;
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 24px rgba(74, 36, 232, 0.08);
}

.why-card .why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.why-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── CTA SECTION ── */
.cta-section {
    padding: 90px 0;
    background: var(--bg-soft);
}

.cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 56px 0 32px;
}

.footer .logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer .footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 280px;
}

.footer h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.87rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    margin-top: 40px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

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

/* ── UTILITY ── */
.section-spacer {
    padding: 90px 0;
}

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

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

.bg-primary-light {
    background: var(--primary-light) !important;
}

.scrolled-badge {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .problem-vs {
        grid-template-columns: 1fr;
    }

    .vs-badge {
        display: none;
    }

    .managed-card {
        padding: 32px 24px;
    }

    .hero-stats {
        gap: 20px;
    }
    .hpc-amount {
        font-size: 2rem !important;
    }
}



/* Block cards */
.why-block-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px 24px;
    height: 100%;
}

.why-block-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 14px;
}

.why-block-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 13px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.why-block-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 3px;
}

.why-block-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.why-block-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 22px;
}

/* Replace grid */
.why-replace-grid {
    display: grid;
    grid-template-columns: 1fr 32px 1fr;
    gap: 10px;
    align-items: start;
}

.why-replace-heading {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
    display: flex;
}

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

.why-cross-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}

.why-cross-list li:last-child {
    border: none;
}

.why-cross-list li i {
    color: #ef4444;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.why-arrow-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 51px;
}

.why-arrow-wrap {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
}

.why-one-platform-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

.why-one-platform-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.why-one-platform-pill div div:first-child {
    color: #fff !important;
}

.why-one-platform-pill div div:last-child {
    color: rgba(255, 255, 255, 0.75) !important;
}

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

.why-one-tags span {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.62rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid rgba(74, 36, 232, 0.12);
}

/* Scale list */
.why-scale-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-scale-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.why-scale-list li:last-child {
    border: none;
}

.wsl-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1rem;
    margin-top: 1px;
}

.wsl-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.wsl-text strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.wsl-text span {
    font-size: 0.77rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Stat bar */
.why-stat-bar {
    background: var(--primary);
    border-radius: 16px;
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.why-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.why-stat-item i {
    font-size: 1.1rem;
    opacity: 0.85;
}

.why-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .why-replace-grid {
        grid-template-columns: 1fr;
    }

    .why-arrow-col {
        display: none;
    }

    .why-stat-divider {
        display: none;
    }

    .why-stat-bar {
        justify-content: flex-start;
    }
}



/* ── FAQ SECTION ── */
.faq-section {
    background: var(--gray-50);
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.open {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(74, 36, 232, 0.08);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    text-align: left;
}

.faq-btn span {
    /* font-family: 'Poppins', sans-serif; */
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-item.open .faq-btn span {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    transition: transform 0.25s, background 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 22px;
}

.faq-body.open {
    max-height: 320px;
    padding: 0 22px 18px;
}

.faq-body p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.faq-bottom-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 32px;
    margin-top: 40px;
}

.hero-features .badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 128, 0, .2);
    color: rgba(255, 255, 255, .9);
    padding: .45rem .9rem;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 128, 0, .3)
}

.hero-features .badge.hfeat {
    border: 1px solid rgba(74, 36, 232, .4) !important;
    background: rgba(74, 36, 232, .3);
}

/* price hero card */
.hero-price-pill.dark {
    /* background: rgba(255, 255, 255, 0.03); */
    /* border: 1px solid rgba(255, 255, 255, 0.07); */
    /* background: linear-gradient(132deg, rgba(26, 26, 88, .2), rgba(1, 10, 34, .3)); */
    background: linear-gradient(132deg, rgba(26, 26, 88, .2), rgba(1, 10, 34, .3));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 -10px 50px rgba(179, 61, 0, 0.25);
}

.hero-price-pill.dark .divider-v {
    background: rgba(255, 255, 255, 0.3) !important;
}

.hero-price-pill.dark .per strong {
    color: rgba(255, 255, 255, 0.7) !important;
}


.dotsgap span {
    position: relative;
}

.dotsgap span i.dot1 {
    content: '';
    position: absolute;
    top: 9px;
    left: 51px;
    right: 0;
    height: 3px;
    width: 3px;
    border-radius: 4px;
    background: var(--white);
    transition: opacity 0.25s;
}

/*  */
/* price card */
.hero-price-pill-dark {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(255, 255, 255, .22);
    border-radius: 16px;
    padding: 16px 28px;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    position: relative;
    z-index: 2;
}

.hero-price-pill-dark .price {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    flex-shrink: 0;
}

.hero-price-pill-dark .divider-v {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .25);
    flex-shrink: 0;
}

.hero-price-pill-dark .per {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.5;
    text-align: left;
}

/* includes line */
.hero-includes {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.hero-includes .dot-sep {
    color: rgba(255, 255, 255, .35);
    margin: 0 8px;
}

.hero-employees {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.hero-badge2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .9);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;
}

.hero-badge2 i {
    color: var(--primary-light);
    font-size: 0.85rem;
}


/* badge */
.badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    padding: 6px 16px 6px 8px;
    background: rgba(108, 99, 255, .08);
    border: 1px solid rgba(108, 99, 255, .2);
    margin-bottom: 24px;
    animation: fadeUp .6s .1s both;
}

.badge-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: #fff;
    flex-shrink: 0;
}

.badge-wrap span {
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    /* letter-spacing: .4px */
}

/* price block */
.price-box-sm {
    background: rgba(255, 255, 255, .05);
    border: 1.5px solid rgba(154, 145, 255, 0.2);
    border-radius: 16px;
    padding: 16px 28px;
    max-width: 610px;
    margin: auto;
    box-shadow: 0 0 30px rgba(92, 106, 255, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.price-box-sm::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(74, 36, 232, .0), rgba(74, 36, 232, .6), rgba(241, 137, 17, .4), rgba(74, 36, 232, .0));
    background-size: 300% 300%;
    animation: shimmer 4s linear infinite;
    z-index: -1;
    mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#2b00ff 0 0);
    mask-composite: exclude;
    padding: 1px;
    -webkit-mask-composite: destination-out;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.pricing-hero-card {
    max-width: 670px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(154, 145, 255, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(92, 106, 255, 0.45);
}

.price-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    animation: fadeUp .7s .3s both;
    justify-content: center;
}

.price-main {
    /* font-family: 'Poppins', sans-serif; */
    font-size: 2.3rem;
    font-weight: 700;
    /* color: var(--secondary); */
    line-height: 1;
    letter-spacing: -.5px;
}

.price-meta {
    border-left: 1px solid rgba(255, 255, 255, .15);
    padding-left: 16px
}

.price-meta p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.3;
    margin: 0;
    text-align: start;
}

.price-meta strong {
    color: rgba(255, 255, 255, .85);
    font-weight: 600
}

/* includes */
.includes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    font-size: .82rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 6px;
    animation: fadeUp .7s .38s both;
    justify-content: center;
    line-height: 2;
}

.includes .sep {
    color: rgba(255, 255, 255, .4);
    margin: 0 9px
}

.includes strong {
    color: rgba(255, 255, 255, .94)
}

.emp-line {
    font-size: .85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    /* margin-bottom: 32px; */
    animation: fadeUp .7s .42s both;
}

/* ═══ RESPONSIVE ════════════════════════════════ */
@media(max-width:1024px) {
    .price-block {
        justify-content: center
    }

    .includes {
        justify-content: center
    }

    .emp-line {
        text-align: center
    }

    .stats {
        justify-content: center
    }

    .stat .n {
        font-size: 1.3rem
    }
}

@media(max-width:640px) {
    .price-main {
        font-size: 1.9rem
    }

    .nl {
        display: none
    }

    .stats {
        flex-wrap: wrap;
        gap: 20px
    }

    .stat+.stat {
        border-left: none;
        padding-left: 0
    }
}


/* ── COMPARISON TABLE ── */
.comp-section {
    padding: 0 0 20px;
    background: var(--surface);
}

.comp-toggle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.comp-toggle-btn {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 20px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: .18s;
}

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

.comp-wrap {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(74, 36, 232, .06);
}

.comp-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    background: var(--white);
}

/* sticky header */
.comp-table thead th {
    padding: 16px 16px;
    /* font-family: 'Poppins', sans-serif; */
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .3px;
    text-align: center;
    white-space: nowrap;
    border-bottom: 2px solid var(--border);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 5;
}

.comp-table thead th.feat-col {
    text-align: left;
    min-width: 210px;
    font-size: .8rem;
    color: var(--text-dark);
}

.comp-table thead .pop-th {
    background: var(--primary);
    color: #fff;
}

.comp-table thead .pop-th .plan-lbl {
    color: rgba(255, 255, 255, .7);
}

.comp-table thead th .plan-lbl {
    display: block;
    font-size: .6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 2px;
}

.comp-table thead .pop-th .plan-price {
    color: #fff;
}

.comp-table thead th .plan-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -.5px;
}

.comp-table thead th .plan-billing {
    font-size: .62rem;
    font-weight: 500;
    color: var(--text-muted);
    display: block;
    margin-top: 1px;
}

.comp-table thead .pop-th .plan-billing {
    color: rgba(255, 255, 255, .65);
}

/* category group row */
.comp-table .cat-row td {
    padding: 9px 16px;
    background: var(--surface);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    border-top: 2px solid var(--border);
}

.comp-table .cat-row td .cat-icon {
    font-size: .8rem;
    color: var(--primary);
    margin-right: 6px;
}

/* feature rows */
.comp-table tbody tr:not(.cat-row) td {
    padding: 11px 16px;
    font-size: .83rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
    vertical-align: middle;
}

.comp-table tbody tr:not(.cat-row) td:first-child {
    text-align: left;
    color: var(--text-dark);
    font-weight: 500;
    background: var(--white) !important;
}

.comp-table tbody tr:not(.cat-row):hover td {
    background: #faf9ff;
}

.comp-table tbody tr:not(.cat-row):hover td:first-child {
    background: #faf9ff !important;
}

/* popular column tint */
.comp-table tbody tr:not(.cat-row) td.pop-col {
    background: rgba(74, 36, 232, .03);
}

.comp-table .cat-row td.pop-col {
    background: rgba(74, 36, 232, .06);
}

/* cell icons */
.ci-yes {
    color: var(--primary);
    font-size: 1rem;
}

.ci-no {
    color: #d1d5db;
    font-size: .85rem;
}

.ci-txt {
    font-size: .72rem;
    font-weight: 700;
    color: var(--secondary);
}

.ci-mng {
    font-size: .72rem;
    font-weight: 600;
    color: #16a34a;
}

.ci-lim {
    font-size: .72rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* addon row at bottom of table */
.comp-table .addon-row td {
    padding: 18px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #6c47f5 100%);
    color: #fff;
    border: none;
}

.comp-table .addon-row td:first-child {
    border-radius: 0 0 0 17px;
}

.comp-table .addon-row td:last-child {
    border-radius: 0 0 17px 0;
}

/* extra employee table */
.extra-emp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.extra-emp-table th {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    font-size: .78rem;
    font-weight: 700;
    text-align: left;
}

.extra-emp-table td {
    padding: 10px 20px;
    font-size: .83rem;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.extra-emp-table tr:last-child td {
    border: none;
}

.extra-emp-table td:last-child {
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    border-radius: 9px;
    padding: 10px 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(241, 137, 17, .35);
    transition: all .2s
}

.btn-secondary:hover {
    background: var(--secondary) !important;
    color: #fff;
    transform: translateY(-2px);
}

@keyframes cardFloat1 {

    0%,
    100% {
        transform: rotateY(-16deg) rotateX(6deg) translateZ(40px) translateY(0)
    }

    50% {
        transform: rotateY(-16deg) rotateX(6deg) translateZ(40px) translateY(-10px)
    }
}

/* new her0 */



/* ─── Aurora blobs ──────────────────────────────── */
.aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .55;
    animation: drift ease-in-out infinite;
}

.b1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #3a12d4 0%, transparent 70%);
    top: -15%;
    left: -10%;
    animation-duration: 18s
}

.b2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #7b1fa2 0%, transparent 70%);
    top: 20%;
    right: -8%;
    animation-duration: 22s;
    animation-delay: -6s
}

.b3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(241, 137, 17, .35) 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation-duration: 16s;
    animation-delay: -4s
}

.b4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #1565c0 0%, transparent 70%);
    top: 50%;
    left: 45%;
    animation-duration: 24s;
    animation-delay: -10s;
    opacity: .35
}

@keyframes drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(40px, -30px) scale(1.08)
    }

    66% {
        transform: translate(-20px, 30px) scale(.95)
    }
}

/* grain overlay */
.grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    opacity: .6;
}

/* vertical lines */
.vlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0, rgba(255, 255, 255, .025) 1px, transparent 1px, transparent 72px);
}


.hero-price-card {
    position: relative;
    background: linear-gradient(145deg, rgba(74, 36, 232, .18) 0%, rgba(255, 255, 255, .05) 60%, rgba(241, 137, 17, .1) 100%);
    border-radius: 16px;
    padding: 18px 22px 10px;
    margin-bottom: 22px;
    width: 100%;
    max-width: 500px;
    backdrop-filter: blur(14px);
    overflow: hidden;
    margin-top: 20px;
}

/* .hero-price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(74, 36, 232, .9) 0%, rgba(241, 137, 17, .9) 45%, rgba(130, 80, 255, .9) 75%, rgba(74, 36, 232, .9) 100%);
    background-size: 300% 300%;
    animation: borderFlow 5s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
} */

.hero-price-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .05) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: sweep 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes sweep {

    0%,
    100% {
        background-position: -100% 0
    }

    50% {
        background-position: 200% 0
    }
}

.hpc-plan-tag {
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 10px;
}

.hpc-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.hpc-amount {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: -1.5px;
}

.hpc-per {
    display: flex;
    flex-direction: column;
    gap: 1px;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    padding-left: 12px;
}

.hpc-per span:first-child {
    font-size: .8rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
}

.hpc-per span:last-child {
    font-size: .72rem;
    color: rgba(0, 0, 0, 0.6);
}

.hpc-annual {
    font-size: .75rem;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 16px;
}

.hpc-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 14px 0
}

.hpc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.hpc-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    /* background:rgba(108, 99, 255, .05);
    border:1px solid rgba(108, 99, 255, .2);
    border-radius: 20px; */
    padding: 2px 0;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8); margin-right: 10px;
}

.hpc-chip i {
    color: var(--primary);
    font-size: .68rem
}

.hpc-emp {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
}

.hpc-emp i {
    color: var(--secondary)
}

.hero-includes {
    display: none;
}

/* merged into price card */
.hero-employees {
    display: none;
}


.hpc-save-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .25); */
    border-radius: 8px;
    /* padding: 5px 12px; */
    margin-top: 20px;
}

.hpc-save-row i {
    color: var(--primary);
    font-size: .78rem
}

.hpc-save-row span {
    font-size: .86rem;
    font-weight: 600;
    color: var(--text-dark);
}


/* ── DARK DASHBOARD CARD ── */
.h-erp-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 96%;
    z-index: 2;
    background: linear-gradient(145deg, #0c0928 0%, #110c38 55%, #0c0928 100%);
    border-radius: 20px;
    padding: 18px;
    border: 1px solid rgba(74, 36, 232, .35);
    box-shadow:
        0 0 0 1px rgba(74, 36, 232, .12),
        0 0 50px rgba(74, 36, 232, .3),
        0 0 100px rgba(74, 36, 232, .12),
        0 28px 80px rgba(0, 0, 0, .7);
    animation: floatA 5s ease-in-out infinite;
}

/* Dark dashboard internals */
.h-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.h-brand-row {
    display: flex;
    align-items: center;
    gap: 8px
}

.h-brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -.2px
}

.h-brand-text span {
    color: var(--secondary)
}

.h-plan-tag {
    font-size: .6rem;
    font-weight: 700;
    background: rgba(74, 36, 232, .35);
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(74, 36, 232, .45);
    border-radius: 20px;
    padding: 2px 8px;
    margin-left: 4px;
}

.h-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(34, 197, 94, .12);
    color: #4ade80;
    font-size: .6rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, .25);
}

.h-live::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
    box-shadow: 0 0 6px #4ade80;
}

.h-run-btn {
    font-size: .62rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, #6c47f5 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 5px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 0 12px rgba(74, 36, 232, .4);
}

/* KPI row dark */
.h-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    margin-bottom: 12px
}

.h-kpi {
    background: rgba(255, 255, 255, .04);
    border-radius: 10px;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.h-kpi::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 8px;
    background: var(--primary);
    filter: blur(8px);
    opacity: .45;
}

.h-kpi.o {
    border-bottom-color: var(--secondary)
}

.h-kpi.o::after {
    background: var(--secondary)
}

.h-kpi.g {
    border-bottom-color: #22c55e
}

.h-kpi.g::after {
    background: #22c55e
}

.h-kpi-l {
    font-size: .56rem;
    color: rgba(255, 255, 255, .38);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 3px
}

.h-kpi-v {
    /* font-family: 'Poppins', sans-serif; */
    font-size: .9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 2px
}

.h-kpi-t {
    font-size: .56rem;
    color: #4ade80;
    font-weight: 600
}

.h-kpi-t.or {
    color: var(--secondary)
}

/* Chart area dark */
.h-chart-area {
    background: rgba(255, 255, 255, .03);
    border-radius: 12px;
    padding: 8px 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.h-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px
}

.h-chart-title {
    font-size: .65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .75)
}

.h-chart-badge {
    font-size: .58rem;
    font-weight: 700;
    color: #4ade80;
    background: rgba(34, 197, 94, .12);
    border-radius: 20px;
    padding: 2px 7px;
    border: 1px solid rgba(34, 197, 94, .2);
}

.h-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 70px
}

.h-bar {
    /* flex: 1; */
    border-radius: 4px 4px 0 0
}

.h-bar.active {
    background: linear-gradient(180deg, #7c5cf5 0%, var(--primary) 100%);
    box-shadow: 0 0 12px rgba(74, 36, 232, .6), 0 -4px 16px rgba(74, 36, 232, .3);
}

.h-bar-label {
    font-size: .56rem;
    color: rgba(255, 255, 255, .35);
    text-align: center;
    margin-top: 3px
}

.h-bar-label.active {
    color: rgba(255, 255, 255, .8);
    font-weight: 700
}

.h-bars-wrap {
    display: flex;
    flex-direction: column
}

/* Bottom 2-col dark */
.h-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.h-breakdown,
.h-payslips {
    background: rgba(255, 255, 255, .03);
    border-radius: 10px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.h-section-title {
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 7px
}

.h-brow {
    display: flex;
    justify-content: space-between;
    font-size: .68rem;
    padding: 3px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .4)
}

.h-brow:last-child {
    border: none
}

.h-brow strong {
    font-weight: 600;
    color: rgba(255, 255, 255, .85)
}

.h-prow {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .65rem;
    color: rgba(255, 255, 255, .4)
}

.h-prow:last-child {
    border: none
}

.h-av {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .5rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

/* Module strip dark */
.h-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 10px;
    padding-top: 9px;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.h-mod {
    font-size: .54rem;
    font-weight: 600;
    background: rgba(74, 36, 232, .22);
    color: rgba(255, 255, 255, .65);
    border-radius: 20px;
    padding: 1px 6px;
    border: 1px solid rgba(74, 36, 232, .3);
}

.h-mod.or {
    background: rgba(241, 137, 17, .18);
    color: rgba(255, 255, 255, .65);
    border: 1px solid rgba(241, 137, 17, .28);
}


/* Phone Mockup */
.h-phone-wrap {
    position: absolute;
    bottom: 18px;
    right: 0;
    width: 39%;
    z-index: 3;
    animation: floatB 6.2s ease-in-out .7s infinite;
    box-shadow: 0 0 0 1px rgba(74, 36, 232, .12), 0 0 50px rgba(74, 36, 232, .3), 0 0 100px rgba(74, 36, 232, .12), 0 28px 80px rgba(0, 0, 0, .7);
    border-radius: 26px;
}

@keyframes floatB {

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

    50% {
        transform: translateY(-14px)
    }
}

.h-phone-body {
    background: #0d0d1e;
    border-radius: 26px;
    padding: 7px 2px;
    /* box-shadow: 0 16px 50px rgba(0, 0, 0, .6), 0 4px 16px rgba(74, 36, 232, .25); */
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(92, 59, 255, 0.15);
}

.h-phone-notch {
    width: 20%;
    height: 5px;
    background: rgba(255, 255, 255, .08);
    border-radius: 10px;
    margin: 0 auto 6px;
}

.h-phone-screen {
    background: #f8f7ff;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
}

.h-phone-bar {
    background: var(--primary);
    padding: 8px 12px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.h-phone-bar .app-name {
    font-family: 'Poppins', sans-serif;
    font-size: .62rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -.2px;
}

.h-phone-bar .app-name span {
    color: var(--secondary)
}

.h-phone-bar .time {
    font-size: .58rem;
    color: rgba(255, 255, 255, .65)
}

.h-phone-content {
    padding: 10px 10px 8px
}

/* ── DARK PHONE SCREEN ── */
.h-phone-screen {
    background: #0c0928;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px
}

.h-phone-bar {
    background: #080620;
    padding: 8px 12px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(74, 36, 232, .25);
}

.h-phone-bar .app-name {
    font-family: 'Poppins', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.2px
}

.h-phone-bar .app-name span {
    color: var(--secondary)
}

.h-phone-bar .time {
    font-size: .58rem;
    color: rgba(255, 255, 255, .45)
}

.h-phone-content {
    padding: 10px 10px 8px
}

.ess-greeting {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 2px
}

.ess-subtext {
    font-size: .6rem;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 8px
}

.ess-pay-card {
    background: linear-gradient(135deg, rgba(74, 36, 232, .7) 0%, rgba(108, 71, 245, .8) 100%);
    border: 1px solid rgba(74, 36, 232, .5);
    border-radius: 12px;
    padding: 6px 10px;
    margin-bottom: 8px;
    box-shadow: 0 0 20px rgba(74, 36, 232, .35), 0 4px 16px rgba(0, 0, 0, .4);
}

.ess-pay-label {
    font-size: .6rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 2px
}

.ess-pay-amount {
    /* font-family: 'Poppins', sans-serif; */
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 1px
}

.ess-pay-date {
    font-size: .58rem;
    color: rgba(255, 255, 255, .55)
}

.ess-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-bottom: 8px
}

.ess-stat-item {
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.ess-stat-label {
    font-size: .56rem;
    color: rgba(255, 255, 255, .38);
    margin-bottom: 0
}

.ess-stat-val {
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    color: #fff
}

.ess-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px
}

.ess-action-btn {
    background: rgba(74, 36, 232, .22);
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(74, 36, 232, .3);
    border-radius: 8px;
    padding: 4px 8px;
    font-size: .58rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: .18s;
    display: flex;
    gap: 5px;
}

.ess-action-btn:hover {
    background: rgba(74, 36, 232, .4);
    color: #fff
}

.ess-action-btn.or {
    background: rgba(241, 137, 17, .18);
    border-color: rgba(241, 137, 17, .28);
}

.ess-action-btn.or:hover {
    background: rgba(241, 137, 17, .35);
    color: #fff
}

/* end dark visuals */


/* form */
.multi-select-wrapper {
    width: 100%;
}

.selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.selected-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef4ff;
    color: #0d6efd;
    border: 1px solid #cfe2ff;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
}

.selected-tag button {
    border: none;
    background: transparent;
    color: #dc3545;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
    padding: 0;
}

/* new jul 1 */
.col-outer {
    border-radius: 20px;
    padding: 6px;
  }
  .col-outer.left {
    background: #eef1f5;
  }
  .col-outer.right {
    /* background: linear-gradient(90deg, #ffa166, #d94f8a, #643dff); */
    background: #7fcd9b;
  }
  .header-pill {
    text-align: center;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 14px 0;
    border-radius: 14px 14px 0 0;
  }
  .header-pill.left { color: #6b7280; }
  .header-pill.right {
    color: #fff;
    /* background: linear-gradient(90deg, #ffa166, #d94f8a, #643dff); */
   background: #7fcd9b;
    border-radius: 16px 16px 0 0;
    /* margin: -6px -6px 0 -6px; */
  }
  .inner-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.2rem 2rem 1.75rem;
  }
  .item-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f2f6;
  }
  .item-row:last-child { border-bottom: none; }
  .item-title { font-weight: 600; font-size: .82rem; margin: 0; }
  .item-sub { font-size: 0.74rem; color: #6b7280; margin: 2px 0 0; }
  .icon-badge {
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 3px;
    line-height: 1;
  }
  .icon-badge.no {
    background: #e5e7eb;
    color: #9ca3af;
  }
  .icon-badge.yes {
    background: #d9f7e6;
    color: #16a34a;
  }

  .footer-banner {
    background: #eef0ff;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #4338ca;
  }

.vs-badge2 {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #4f46e5;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35); */
        border: 6px solid #fff;
}


/* new Jul2 */
  :root{
          --ink:#a2a8d6; --ink-soft:#7e819b; --bg:#0B0D1F; --card:#12142B; --indigo:#7C7AF0; --indigo-deep:#5453D6; --mint:#2FE0A8; --amber:#F7A93B;
          --line:#1d267a; --radius:18px;
        }
       .hero-banner{position:relative;background:radial-gradient(circle at 80% 20%,#5522fa26 0%,transparent 40%),radial-gradient(circle at 10% 80%,#f270101a 0%,transparent 40%),linear-gradient(135deg,#160a3a 0%,#0c0522 100%);padding:80px 0;overflow:hidden}
        .hero-banner::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background-image:linear-gradient(#ffffff08 1px,transparent 1px),linear-gradient(90deg,#ffffff08 1px,transparent 1px);background-size:40px 40px;pointer-events:none}
        .hero-banner h1{font-size:clamp(34px,5.2vw,52px);font-weight:600;line-height:1.08;letter-spacing:-1.5px;color:var(--white);animation:fadeUp .7s .1s ease both}
        #hero-canvas{position:absolute;inset:0;z-index:1;margin-top:70px}
        .form-card{padding:2rem}
        .price-badge{backdrop-filter:blur(10px);padding:8px 16px;display:inline-flex;align-items:center;gap:8px;font-size:.9rem;color:#f8f6ff;border:1px solid #363655;border-radius:100px;background-color:#111116;background-image:linear-gradient(180deg,#7e56da47,#7e56da1f);box-shadow:inset 0 0 0 1px #ffffff0a,0 0 25px #7e56da59}
        .price-badge .pulse-icon{color:#a382ff;animation:pulse 2s infinite}
        .price-highlight{color:#ff914d;font-weight:700}
        .price-cont{padding-top:1px;background-image:linear-gradient(90deg,#29292d 15%,#5c3e94,#29292d 85%);display:inline-block;overflow:hidden;border-radius:100px}
        .hero-title{font-size:3.5rem;font-weight:800;line-height:1.2;color:#fff;letter-spacing:-1px}
        .text-gradient-orange{background:linear-gradient(135deg,#ff914d 0%,#f27010 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
        ::placeholder{color:#dfdede!important}
        .f-select:invalid{color:#ababab}
        .f-select option{color:#333}
        .feature-badge-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:12px;margin-top:25px;margin-bottom:35px}
        .feature-tag{background:transparent;border-radius:8px;color:#f0ecff;font-size:.82rem;font-weight:500;display:flex;align-items:center;gap:10px;margin-bottom:4px;transition:all .2s ease;text-transform:capitalize;letter-spacing:inherit}
        .feature-tag:hover{transform:translateY(-2px);border-color:#ff88004d;box-shadow:0 4px 12px #faa0220f}
        .feature-tag i{color:#aa96ff;font-size:1rem}
        .feature-tag.highlight-tag{background:#5522fa26;border-color:#5522fa66;width:200px}
        .feature-tag.highlight-tag i{color:#a382ff}
        .btn-hero-primary{background:linear-gradient(135deg,#5522fa 0%,#4111dd 100%);color:#fff;border:none;padding:14px 28px;font-weight:600;font-size:14px;border-radius:10px;box-shadow:0 4px 15px #5522fa66;transition:all .3s ease}
        .btn-hero-primary:hover{transform:translateY(-2px);box-shadow:0 0 30px #3300ff9d;color:#fff}
        .btn-hero-outline{background:transparent;color:#fff;border:1px solid #ffffff73;padding:14px 28px;font-size:14px;font-weight:600;border-radius:10px;transition:all .3s ease}
        .btn-hero-outline:hover{background:#ffffff12;border-color:#ffffff80;color:#fff;border-color:#F59E0B;border-radius:8px;transform:perspective(20px) rotateX(2deg) scale(1.02) !important;background:linear-gradient(135deg,#905c29,#f69c5cd9);box-shadow:0 0 15px #da8b56e6,0 0 25px #da7e567a,inset 2px 2px 4px #ffffff40,inset -2px -2px 4px #daa75674}
        .automation-btn{outline:none;background:linear-gradient(135deg,#5c3e94,#8b5cf6);color:#fff;padding:12px 34px;border-radius:10px;box-shadow:0 0 25px #7e56da99,0 0 40px #7e56da66,inset 2px 2px 6px #ffffff26,inset -2px -2px 6px #0006;transition:transform .35s ease,box-shadow .35s ease,background .35s ease,border-radius .35s ease}
        .automation-btn:hover{transform:perspective(20px) rotateX(2deg) scale(1.02);border-radius:8px;background:linear-gradient(135deg,#5c3e94,#8b5cf6d9);box-shadow:0 0 15px #7e56dae6,0 0 25px #7e56dab3,inset 2px 2px 4px #ffffff40,inset -2px -2px 8px #7e56da99}
        @media (max-width: 768px) {
            .form-card{padding:1.5rem 1.2rem}
            .step-label {line-height: 1.2;}
        }

          .dash-wrap{position:relative; z-index: 99;    box-shadow: 0 0 30px rgba(92, 106, 255, 0.45);border-radius:var(--radius); }
          .dash-card{ background:var(--card); border:1px solid #0012a0;  border-radius:var(--radius); position: relative;
            box-shadow:0 24px 70px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(124,122,240,.08); overflow:hidden; z-index: 9;
          }
          .dash-top{
            background:linear-gradient(120deg,#1B1D3D,#2A2860 80%); color:#fff;padding:1.15rem 1.35rem;
            display:flex;justify-content:space-between;align-items:center; border-bottom:1px solid var(--line);
          }
          .dash-top .status{font-size:.72rem;background:rgba(255,255,255,.1);padding:.25rem .6rem;border-radius:999px;display:flex;align-items:center;gap:.4rem;}
          .dash-top .status .dot{width:6px;height:6px;border-radius:50%;background:var(--mint);animation:pulse 1.8s infinite;}
          @keyframes pulse{0%,100%{opacity:1;}50%{opacity:.35;}}
          .dash-body{padding:1.35rem;}
          .kpi-grid{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;margin-bottom:1rem;}
          .kpi{
            background:#181A38;border:1px solid var(--line);
            border-radius:12px;padding:.85rem .95rem;
          }
          .kpi .label{font-size:.62rem;color:var(--ink-soft);font-weight:600;text-transform:uppercase;letter-spacing:.03em;}
          .kpi .val{font-size:1.3rem;font-weight:700;margin-top:.15rem;color:var(--ink);}
          .kpi .val.up{color:var(--mint);}
          .kpi .sub{font-size:.72rem;color:var(--ink-soft);margin-top:.1rem;}

          .module-strip{ display:flex;gap:.5rem;overflow:hidden;margin-bottom:1rem;flex-wrap:wrap; }
          .mod-chip{
            background:#181A38;border:1px solid var(--line);
            border-radius:10px;padding:.5rem .7rem;
            font-size:.75rem;font-weight:600;color:var(--ink);
            display:flex;align-items:center;gap:.4rem;
          }
          .mod-chip i{color:var(--indigo);font-size:.85rem;}
          .compliance-box{
            border:1px solid var(--line);border-radius:12px;padding:.9rem 1rem;background:#181A38;
          }
          .compliance-box .head{display:flex;justify-content:space-between;align-items:center;margin-bottom:.6rem;}
          .compliance-box .head span{font-size:.78rem;font-weight:600;color:var(--ink);}
          .compliance-box .head small{font-size:.7rem;color:var(--mint);font-weight:600;}
          .task-row{display:flex;justify-content:space-between;align-items:center;padding:.45rem 0;border-top:1px dashed var(--line);font-size:.78rem;color:var(--ink);}
          .task-row:first-of-type{border-top:none;}
          .badge-done{background:rgba(47,224,168,.15);color:var(--mint);font-weight:600;font-size:.68rem;padding:.2rem .55rem;border-radius:999px;}
          .badge-progress{background:rgba(247,169,59,.15);color:var(--amber);font-weight:600;font-size:.68rem;padding:.2rem .55rem;border-radius:999px;}

          .float-card{
            position:absolute;background:#010857;border:1px solid #27247b;
            border-radius:14px;box-shadow:0 16px 40px -14px rgba(0,0,0,.6);
            padding:.75rem .95rem;font-size:.75rem;font-weight:600;color:var(--ink);
            display:flex;align-items:center;gap:.55rem; z-index:12;animation: floatBob 4s ease-in-out infinite;
          }
          .float-card.f1{ top:-18px; right:-6px; }
          .float-card.f2{ bottom:-20px; left:-22px; }
          .float-card .ic{
            width:32px;height:32px;border-radius:9px;display:flex;align-items:center;justify-content:center;
            background:rgba(124,122,240,.15);color:var(--indigo);
          }
          .float-card.f2 .ic{background:rgba(47,224,168,.15);color:var(--mint);}

          @media (max-width: 991px){
            .float-card{display:none;}
          }

      .kpi {padding: .35rem .95rem;}
      .kpi .val {font-size: .96rem; font-weight: 600;}
      .dash-top {padding: 1rem 1.35rem;}
      .mod-chip {padding: .3rem .5rem;font-size: .67rem;}
      .mod-chip i {font-size: .72rem;}
      .compliance-box .head {margin-bottom: .3rem;}
      .badge-progress {padding: .1rem .75rem;}
      .float-card.f1 {top: -28px;}
  

/* ===== Entries ERP: light theme, matching the Cap Table product page ===== */
body.erp-page {
 --primary:#5141ea;--primary-dark:#3930b5;--primary-light:#f0edff;
 --secondary:#a66b26;--secondary-light:#fff5e8;--surface:#f7f9fc;
 --white:#fff;--gray-50:#f7f9fc;--ink:#171a32;--ink-soft:#637087;
 --text-dark:#171a32;--text-muted:#637087;--border:#e4e3f1;--line:#e4e3f1;
 --card:#fff;--mint:#22805d;--amber:#98651e;--indigo:#5141ea;
 background:#fff;color:var(--text-dark);font-family:Inter,sans-serif;
}
.erp-page h1,.erp-page h2,.erp-page h3,.erp-page h4,.erp-page h5 {font-family:Poppins,sans-serif;}
.erp-page .hero-banner {
 padding:100px 0 54px;background:radial-gradient(ellipse at 75% 25%,#eeebff 0%,transparent 45%),linear-gradient(180deg,#f7f9fc 0%,#f5f7fa 100%);overflow:hidden;
}
.erp-page .hero-banner::before,.erp-page .hero-banner::after {display:none;}
.erp-hero-copy {max-width:840px;text-align:center;margin-inline:auto;}
.erp-eyebrow {font-size:.76rem;font-weight:600;letter-spacing:.14em;color:#6b6889;margin:0 0 22px;text-transform:uppercase;}
.erp-page .hero-banner h1 {max-width:840px;margin-inline:auto;font-size:clamp(2rem,3.5vw,3.5rem) !important;font-weight:600;line-height:1.18;letter-spacing:-.045em;color:#171a32;animation:none;}
.erp-page .text-gradient-orange {background:none;color:var(--primary);-webkit-text-fill-color:var(--primary);}
.erp-hero-description {max-width:760px;margin:0 auto 28px;color:#637087;font-size:1.08rem;line-height:1.8;}
.erp-page .feature-badge-grid {display:flex;justify-content:center;flex-wrap:wrap;gap:12px 20px;margin:26px auto 30px;max-width:760px;}
.erp-page .feature-tag {color:#41495d;margin:0;gap:8px;font-size:.8rem;}
.erp-page .feature-tag i {display:inline-flex;justify-content:center;align-items:center;width:30px;height:30px;border:1px solid #e1dcff;border-radius:9px;background:linear-gradient(#fff,#eeeaff);color:var(--primary);font-size:.9rem;}
.erp-page .automation-btn,.erp-page .btn-hero-primary,.erp-page .btn-managed,.erp-page .btn-cta-white {display:inline-flex;justify-content:center;align-items:center;gap:8px;text-decoration:none;background:linear-gradient(180deg,#7568f1,#5141ea 60%,#4334c8);border:1px solid #4838cc;color:#fff;border-radius:11px;font:600 .94rem/1.5 Inter,sans-serif;padding:13px 25px;box-shadow:inset 0 1px 0 #ffffff55,0 12px 24px -12px #5141ea80;transition:transform .2s,box-shadow .2s;}
.erp-page .automation-btn:hover,.erp-page .btn-hero-primary:hover,.erp-page .btn-managed:hover,.erp-page .btn-cta-white:hover {transform:translateY(-2px);color:#fff;background:linear-gradient(180deg,#6558df,#4334c8);box-shadow:0 15px 28px -12px #5141ea80;}
.erp-page .btn-hero-outline,.erp-page .btn-cta-outline {display:inline-flex;align-items:center;justify-content:center;gap:8px;background:linear-gradient(#fff,#f6f4ff);border:1px solid #cdc6f4;border-radius:11px;color:#4334b7;padding:13px 25px;text-decoration:none;font:600 .94rem/1.5 Inter,sans-serif;box-shadow:0 6px 16px -12px #5141ea55;}
.erp-page .btn-hero-outline:hover,.erp-page .btn-cta-outline:hover {background:#eeebff;color:#3930b5;border-color:#8c80e9;transform:translateY(-2px)!important;box-shadow:none;}
.erp-page a:focus-visible,.erp-page button:focus-visible {outline:3px solid #9a8def;outline-offset:4px;}
.erp-dashboard-column {max-width:1000px;margin-inline:auto;}
.erp-page .dash-wrap {max-width:760px;margin:16px auto 10px;position:relative;}
.erp-page .dash-card {background:#fff;border:1px solid #dfdfee;border-radius:22px;overflow:hidden;box-shadow:0 24px 65px -30px #1c21454d;}
.erp-page .dash-top {background:linear-gradient(100deg,#f2f0ff,#f8fafc);border-bottom:1px solid #e3dff1;color:var(--ink);padding:16px 26px;}
.erp-page .dash-top .status {background:#fff;color:#697089;border:1px solid #e4e3ee;font-size:.65rem;}
.erp-page .dash-body {padding:25px;}
.erp-page .kpi-grid {display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.erp-page .kpi {padding:14px;background:#f8f9fc;border:1px solid #e7e7f1;border-radius:13px;display: flex;flex-direction: column;gap: 4px;align-items: center;}
.erp-page .kpi .val {font-size:1.3rem;color:#171a32;}
.erp-page .kpi .val.up {color:#22805d;}
.erp-page .kpi .label {color:#637087;font-size:.72rem;}
.erp-page .kpi .sub {color:#637087;}
.erp-page .module-strip {display:flex;flex-wrap:wrap;gap:10px;margin:20px 0;}
.erp-page .mod-chip {background:#f4f1ff;color:#453890;border:1px solid #e4ddff;font-size:.75rem;padding:7px 12px;}
.erp-page .compliance-box {background:#fff;border-color:#e3e4ed;padding:18px 20px;}
.erp-page .compliance-box .head {margin-bottom:12px;}
.erp-page .task-row {padding:12px 0;color:#475069;border-color:#e1e4ed;}
.erp-page .badge-done {background:#e9f6ee;color:#246a4d;}
.erp-page .badge-progress {background:#fff3df;color:#936121;}
.erp-page .float-card {background:linear-gradient(135deg,#fff,#f6f7fb);border:1px solid #dedfea;border-radius:15px;color:#30384a;box-shadow:0 16px 35px -20px #202b4555;animation:none;padding:18px;z-index:22;}
.erp-page .float-card.f1 {top:70px;left:-115px;}
.erp-page .float-card.f2 {bottom:45px;right:-110px;}
.erp-page .float-card .ic {background:#eeebff;color:#5746cf;}
.erp-page .float-card.f2 .ic {background:#e9f6ee;color:#246a4d;}
.erp-page .trust-bar {position:relative;max-width:1500px;margin:0 auto;padding:30px 20px;background:#fff!important;border:1px solid #ededf3;border-radius:18px;box-shadow:0 16px 40px -25px #262e4544;}
.erp-page .trust-item {color:#626b7d;font-size:.78rem;}
.erp-page .trust-item i {color:#7364d6;}
.erp-page .sec {padding-top:60px;padding-bottom:60px;}
.erp-page .section-h2 {color:#171a32;font-size:clamp(1.8rem,3.1vw,3rem);line-height:1.25;letter-spacing:-.03em;}
.erp-page .section-h2 em {font-style:normal;color:var(--primary);}
.erp-page .section-label {color:#6b6889;letter-spacing:.1em;font-size:.75rem;}
.erp-page .section-desc {color:#637087;max-width:780px;line-height:1.8;}
.erp-page .col-outer {border:1px solid #e5e3ee;border-radius:16px;overflow:hidden;padding:0;background:#fff;}
.erp-page .header-pill.left {background:#f4f5f8;color:#596174;}
.erp-page .header-pill.right {background:#eeebff;color:#4536b4;}
.erp-page .inner-card {background:#fff;}
.erp-page .item-title {color:#272e42;}
.erp-page .item-sub {color:#637087;}
.erp-page .vs-badge2 {background:#fff;color:#6657c6;border:1px solid #dfdaf3;}
.erp-page .module-card-full {background:#fff;border:1px solid #e6e3f2;border-radius:20px;box-shadow:0 8px 24px -22px #28234744;height:100%;}
.erp-page .module-card-full h5 {color:#20253b;font-size:1.1rem;}
.erp-page .module-card-full .mcf-desc,.erp-page .mcf-list li {color:#637087;}
.erp-page .module-card-full:hover {border-color:#c9c1f1;box-shadow:0 18px 35px -25px #5141ea44;transform:translateY(-3px);}
.erp-page .module-card-full::before {background:linear-gradient(90deg,#bcb1f0,#eee9ff);}
.erp-page .mcf-list li i {color:#6b58cb;}
.erp-page .managed-card {background:linear-gradient(135deg,#f4f1ff,#f8fafc);border:1px solid #e0daf4;color:#242a40;padding:clamp(24px,4vw,52px);}
.erp-page .managed-card p,.erp-page .managed-feature-list li {color:#5f6a80;opacity:1;}
.erp-page .managed-card .hero-badge {background:#fff;border:1px solid #dcd6f2;color:#6553bd;}
.erp-page .manage-card-sec,.erp-page .managed-price-box {background:#fff;border:1px solid #e3deef;}
.erp-page .mcs-header {color:#333b50;}
.erp-page .managed-price-box .price {color:#5141ea;}
.erp-page .managed-price-box .per {color:#637087;opacity:1;}
.erp-page .managed-feature-list li {border-color:#eceaf3;}
.erp-page .managed-feature-list li i {color:#6b58cb;}
.erp-growth-section {padding:95px 24px;background:linear-gradient(180deg,#fff,#fbfaff);}
.erp-section-heading {text-align:center;max-width:820px;margin:0 auto 42px;}
.erp-section-heading h2 {font-size:clamp(2rem,3.4vw,3.3rem);font-weight:600;letter-spacing:-.035em;line-height:1.23;color:#171a32;margin-bottom:22px;}
.erp-section-heading h2 span {color:#5141ea;}
.erp-section-heading > p:last-child {font-size:1.05rem;line-height:1.8;color:#637087;}
.erp-growth-grid {display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px;max-width:1440px;margin:0 auto;}
.erp-growth-card {padding: 24px;border:1px solid #e3def6;border-radius:24px;background:linear-gradient(155deg,#fff 50%,#f1eeff);display:flex;flex-direction:column;}
.erp-growth-card:nth-child(2) {background:linear-gradient(155deg,#fff 50%,#fff7eb);}
.erp-growth-card:nth-child(3) {background:linear-gradient(155deg,#fff 50%,#eef3fb);}
.erp-growth-card:nth-child(4) {background:linear-gradient(155deg,#fff 50%,#eef8f3);}
.erp-growth-top {display:flex;justify-content:space-between;align-items:center;margin-bottom:16px;}
.erp-growth-icon {width:52px;height:52px;display:grid;place-items:center;border:1px solid #e1dafa;border-radius:16px;background:#f0ecff;color:#6652d4;font-size:1.45rem;}
.erp-growth-number {color:#9a95b3;font-size:.85rem;font-weight:500;}
.erp-growth-card h3 {font-size:1.1rem;line-height:1.5;font-weight:600;color:#242a40;}
.erp-growth-card p {font-size:.9rem;color:#637087;line-height:1.8;margin:10px 0 25px;}
.erp-growth-tag {margin-top:auto;font-size:.72rem;font-weight:500;color:#6e6792;padding-top:16px;border-top:1px solid #e5e1f0;}
.erp-growth-callout {display:flex;justify-content:center;gap:18px;align-items:center;flex-wrap:wrap;width:fit-content;max-width:100%;margin:38px auto 0;padding:20px 28px;background:#f5f3ff;border:1px solid #e4ddff;border-radius:16px;color:#716b8c;font-size:.9rem;}
.erp-growth-callout a {color:#4434b2;text-decoration:none;font-weight:600;}
.erp-growth-callout a i {margin-left:12px;}
.erp-page .faq-section {background:#fff;}
.erp-page .faq-body.open {max-height:none;}
.erp-page .erp-final-cta {background:radial-gradient(ellipse at 50% 100%,#ebe6ff,transparent 75%),#f7f8fc;color:#171a32;border-top:1px solid #e7e3f3;}
.erp-page .cta-h2 {color:#171a32;font-size:clamp(2rem,3.5vw,3rem);}
.erp-page .cta-h2 .c-secondary {color:#5141ea;}
.erp-page .cta-sub {color:#637087;line-height:1.8;}
.erp-page .erp-final-cta .c-secondary {color:#6a57cc;}
@media(max-width:1199px) {.erp-page .float-card.f1{left:-50px}.erp-page .float-card.f2{right:-45px}.erp-growth-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:991px) {.erp-page .hero-banner{padding-top:80px}.erp-page .float-card{position:static;width:fit-content;margin:16px auto}.erp-page .dash-wrap{max-width:680px}.erp-page .trust-bar{margin:0 16px}.erp-page .sec{padding:36px 0;}}
@media(max-width:575px) {.erp-page .hero-banner{padding-top:70px}.erp-eyebrow{font-size:.65rem;letter-spacing:.08em}.erp-hero-description{font-size:.95rem}.erp-page .feature-badge-grid{gap:10px 14px}.erp-page .feature-tag{font-size:.72rem}.erp-page .dash-body{padding:14px}.erp-page .dash-top{padding:18px 14px;gap:10px}.erp-page .kpi{padding:12px}.erp-page .kpi .val{font-size:1.4rem}.erp-page .task-row{font-size:.7rem}.erp-growth-grid{grid-template-columns:1fr}.erp-growth-section{padding:60px 16px}.erp-growth-card{padding:26px}.erp-page .hero-banner .g-5{--bs-gutter-x:1rem}.erp-page .managed-price-box{padding:20px}.erp-growth-callout{text-align:center}.erp-page .faq-btn{padding:16px}.erp-page .faq-body{padding-inline:16px;}}
@media(prefers-reduced-motion:reduce) {.erp-page *, .erp-page *::before,.erp-page *::after{animation:none!important;transition:none!important;scroll-behavior:auto!important;}.erp-page .reveal{opacity:1!important;transform:none!important;}}
/* Reset legacy floating-card anchors and neon frame shadow. */
.erp-page .dash-wrap {box-shadow:none;border-radius:22px;}
.erp-page .float-card.f1 {right:auto;}
.erp-page .float-card.f2 {left:auto;}
@media(max-width:991px) {.erp-page .float-card{display:flex;}}
