:root {
    --primary: #4a24e8;
    --primary-light: #ede9fd;
    --primary-dark: #3518c4;
    --secondary: #f18911;
    --secondary-light: #fff3e6;
    --text-dark: #0f0f1a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --white: #ffffff;
    --bg-soft: #f8f7ff;
}

/* ── HERO ── */
.hero {
    /* background: linear-gradient(135deg, #f8f7ff 0%, #ede9fd 40%, #fff3e6 100%); */
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    /* background: radial-gradient(circle, rgba(74, 36, 232, 0.08) 0%, transparent 70%); */
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(241, 137, 17, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.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);
    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: 1px;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 800;
    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: 16px 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-top: 32px;
}

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

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

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



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