*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--para-font-family);
    background: var(--bg-main);
    color: var(--text-primary);
    overflow-x: inherit;
    line-height: 1.6
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: #f1f1f1
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px
}

section {
    padding: var(--space-85) 0;
}


.section-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-family: var(--para-font-family);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    color: var(--primary-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-eyebrow .dash {
    width: 18px;
    height: 2px;
    background: var(--primary-color);
    border-radius: var(--radius-6);
    display: inline-block;
}


/* ━━ HERO  ━━ */
.hero-sec {
    padding: var(--space-64) 0;
    background: linear-gradient(135deg, var(--bg-main) 50%, #c2dcff 100%);
}

.hero {
    /* min-height: 80vh; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* padding-top: 30px; */
    position: relative;
    overflow: hidden;
    gap: var(--space-32);
}

.hero-left {
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-right {
    background: url(../images/inner-pages/ledger-hero-bg-remove1.png)no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 80px 48px; */
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
}

.hero-right-content {
    position: relative;
    z-index: 1;
    width: 100%
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-grey);
    font-weight: 500;
    margin-bottom: 28px
}

.hero-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none
}

.hero-breadcrumb span {
    opacity: 0.5
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 101, 242, 0.06);
    border: 1px solid rgba(0, 101, 242, 0.14);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 32px;
    letter-spacing: .8px;
    text-transform: uppercase
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: livepulse 2s infinite
}

@keyframes livepulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(1.4)
    }
}

.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 2.9rem);
    font-family: var(--heading-bold-font-family);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;

}

.hero h1 .accent {
    color: var(--primary-color)
}

.hero-desc {
    font-size: var(--p-size-18);
    color: var(--text-primary);
    font-family: var(--para-font-family);
    margin-bottom: 44px;
    line-height: var(--leading-relaxed);
    font-weight: 400;
    max-width: 550px
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 5px
}

/* stat cards on right side */
.hero-stat-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%
}

.hstat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: background .2s
}

.hstat:hover {
    background: rgba(255, 255, 255, 0.1)
}

.hstat-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 101, 242, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.hstat-ico svg {
    width: 22px;
    height: 22px;
    fill: #60A5FA
}

.hstat-n {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1
}

.hstat-l {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    font-weight: 500;
    margin-top: 3px
}

/* vertical line decoration */
/* .hero-left::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0, 101, 242, 0.2), transparent);
} */



/* Problem and Solution */

.ps-section {
    padding: var(--space-85) 0;
}

/* HEADER */
.ps-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-12);
    margin-bottom: var(--space-64);
}

.ps-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    color: var(--primary-color);
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--color-active-bg);
    border: 1px solid #c5d8fc;
    border-radius: var(--radius-9999);
    padding: 6px 16px;
}

.ps-eyebrow .e-dash {
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.ps-title {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(var(--h2-size-28), 3.5vw, var(--h2-size-40));
    font-weight: var(--font-800);
    color: var(--text-primary);
    line-height: var(--leading-tight);
    letter-spacing: -.022em;
    max-width: 660px;
}

.ps-desc {
    font-size: var(--p-size-18);
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
    max-width: 480px;
}


/*HORIZONTAL EXPANDING STRIPS*/
.strips-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.strip {
    display: flex;
    align-items: stretch;
    border-radius: var(--radius-16);
    overflow: hidden;
    min-height: 100px;
    /* border: 1px solid var(--color-border); */
    background: var(--bg-main);
    box-shadow: rgb(0 0 0 / 3%) 0px 2px 8px;
    transition: box-shadow .25s;
}

.strip:hover {
    box-shadow: var(--shadow-panel);
}

/* ── Step number sidebar ── */
.strip-num {
    width: 72px;
    flex-shrink: 0;
    background: var(--color-active-bg);
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: var(--space-20) 0;
}

.sn-label {
    display: none;
    font-size: 10px;
    font-weight: var(--font-600);
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: .08em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.sn-num {
    font-family: var(--heading-bold-font-family);
    font-size: var(--h2-size-32);
    font-weight: var(--font-800);
    color: var(--primary-color);
    line-height: 1;
}

/* ── Problem half ── */
.strip-problem {
    flex: 0 0 38%;
    padding: var(--space-24) var(--space-28, 28px);
    /* border-right: 1px solid var(--color-border); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-8);
    background: linear-gradient(45deg, var(--color-active-bg), transparent);
    position: relative;
    overflow: hidden;
}

/* Red top accent bar */
.strip-problem::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.sp-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: var(--p-size-12);
    font-weight: var(--font-700);
    color: var(--danger-color);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sp-tag::before {
    /* content: ''; */
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--danger-color);
    flex-shrink: 0;
}

.sp-title {
    font-family: var(--heading-font-family);
    font-size: var(--p-size-20);
    font-weight: var(--font-600);
    color: var(--text-nav);
    line-height: var(--leading-normal);
}

.sp-desc {
    font-size: var(--p-size-14);
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
    letter-spacing: 0.6px;
}

/* ── Divider arrow ── */
.strip-arrow {
    flex-shrink: 0;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-main);
    position: relative;
}

.sa-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 2px 10px rgba(0,101,242,.25); */
    flex-shrink: 0;
    transition: transform .2s, box-shadow .2s;
}

.strip:hover .sa-circle {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 101, 242, .35);
}

.sa-circle svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Solution half ── */
.strip-solution {
    flex: 1;
    padding: var(--space-24) var(--space-32);
    display: flex;
    align-items: center;
    gap: var(--space-24);
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

/* Green top accent */
.strip-solution::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--success-color);
}

/* Big faded label watermark */
/* .strip-solution::after {
  content: 'SOLUTION';
  position: absolute;
  right: var(--space-24);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--heading-bold-font-family);
  font-size: 52px;
  font-weight: var(--font-800);
  color: var(--color-border);
  letter-spacing: 2px;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  opacity: .6;
} */

/* Solution icon */
.ss-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-12);
    background: var(--color-active-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
    display: none;
}

.strip:hover .ss-icon {
    background: var(--primary-color);
}

.ss-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary-color);
    transition: fill .2s;
}

.strip:hover .ss-icon svg {
    fill: #fff;
}

.ss-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.ss-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: var(--p-size-12);
    font-weight: var(--font-700);
    color: var(--success-color);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ss-tag::before {
    /* content: '✓'; */
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gst-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--success-color);
    flex-shrink: 0;
}

.ss-title {
    font-family: var(--heading-font-family);
    font-size: var(--p-size-20);
    font-weight: var(--font-600);
    color: var(--text-nav);
    line-height: var(--leading-normal);
}

.ss-desc {
    font-size: var(--p-size-14);
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
    max-width: 495px;
    letter-spacing: 0.6px;
}

/* ── Strip hover── */
.strip:hover .strip-problem {
    background: var(--bg-main);
}

.strip:hover .strip-num {
    background: var(--primary-color);
}

.strip:hover .sn-label {
    color: rgba(255, 255, 255, .7);
}

.strip:hover .sn-num {
    color: #fff;
}


/* ══════════════════════════════════════════
   BOTTOM CTA ROW
══════════════════════════════════════════ */
.ps-cta-row {
    margin-top: var(--space-48);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-32);
    padding: var(--space-32) var(--space-48);
    background: var(--primary-color);
    border-radius: var(--radius-16);
    position: relative;
    overflow: hidden;
}

.ps-cta-row::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    pointer-events: none;
}

.pcr-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    position: relative;
}

.pcr-title {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: var(--font-800);
    color: #fff;
    line-height: var(--leading-tight);
    letter-spacing: -.02em;
}

.pcr-sub {
    font-size: var(--p-size-14);
    color: rgba(255, 255, 255, .6);
    line-height: var(--leading-relaxed);
}

.pcr-btns {
    display: flex;
    gap: var(--space-12);
    flex-shrink: 0;
    position: relative;
}

.btn-white {
    background: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-8);
    padding: 13px var(--space-24);
    font-size: var(--p-size-14);
    font-weight: var(--font-700);
    font-family: var(--para-font-family);
    cursor: pointer;
    transition: transform .18s, box-shadow .18s;
    white-space: nowrap;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, .85);
    border: 1.5px solid rgba(255, 255, 255, .35);
    border-radius: var(--radius-8);
    padding: 12px var(--space-24);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    font-family: var(--para-font-family);
    cursor: pointer;
    transition: border-color .18s, color .18s;
    white-space: nowrap;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .8);
    color: #fff;
}


/* ── RESPONSIVE ── */
@media (max-width: 860px) {
    .strip {
        flex-direction: column;
    }

    .strip-num {
        width: 100%;
        flex-direction: row;
        gap: var(--space-8);
        padding: var(--space-12) var(--space-20);
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .sa-circle svg {
        rotate: 90deg;
    }

    .sn-label {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .strip-problem {
        flex: none;
        border-right: none;
        background: linear-gradient(180deg, var(--color-active-bg), transparent);
    }

    .strip-arrow {
        width: 100%;
        height: 60px;
        border-top: 1px solid var(--color-border);
    }

    .strip-solution::after {
        display: none;
    }

    .ps-cta-row {
        flex-direction: column;
        padding: var(--space-32) var(--space-24);
    }

    .pcr-btns {
        width: 100%;
        flex-direction: column;
    }

    .btn-white,
    .btn-ghost {
        text-align: center;
    }
}

@media (max-width: 560px) {
    .strip-solution {
        flex-direction: column;
        align-items: flex-start;
    }
}




/* ━━ FEATURES — Horizontal Scroll Cards ━━ */
.features-sec {
    padding: var(--space-85) 0;
    background: var(--bg-light);
    overflow: hidden;
}

.section-header {
    /* padding: 0 80px; */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 56px;
    gap: var(--space-32);
}

.section-header-left {
    max-width: 550px
}



.section-title {
    font-size: clamp(28px, 3.2vw, 40px);
    font-family: var(--heading-bold-font-family);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -.5px;
}

.section-header-right .section-desc {
    max-width: 500px;
    font-size: var(--p-size-18)
}

.section-title span {
    color: var(--primary-color);
}

.feat-controls-row {
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-8);
    margin-bottom: var(--space-20);
    margin-top: -48px;
}

/* ── Arrow nav buttons ── */
.feat-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-9999);
    border: 1.5px solid var(--border-blue);
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.feat-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-main);
    transform: scale(1.06);
    box-shadow: var(--shadow-button);
}

.feat-nav-btn:active {
    transform: scale(0.97);
}

.feat-nav-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    transition: stroke 0.2s;
}

.feat-scroll-wrap {
    overflow-x: auto;
    padding: var(--space-8) 80px var(--space-32);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.feat-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.feat-scroll-track {
    display: flex;
    gap: var(--space-24);
    width: max-content;
}

.feat-card {
    width: 300px;
    flex-shrink: 0;
    background: var(--bg-main);
    border-radius: var(--radius-16);
    padding: var(--space-32);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
    scroll-snap-align: start;
}

.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-panel);
}

/* Featured card */
.feat-card.featured {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.feat-card.featured h4,
.feat-card.featured p {
    color: var(--bg-main);
}

.feat-card.featured p {
    opacity: .72;
}

.feat-card.featured .f-tag {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.feat-card.featured .f-icon {
    background: rgba(255, 255, 255, 0.15);
}

.feat-card.featured .f-icon svg {
    fill: var(--bg-main);
}

/* Large faded step number */
.feat-num {
    position: absolute;
    top: var(--space-20);
    right: var(--space-24);
    font-size: 64px;
    font-weight: var(--font-600);
    color: var(--color-border);
    line-height: 1;
    letter-spacing: -3px;
    user-select: none;
    pointer-events: none;
}

.feat-card.featured .feat-num {
    color: rgba(255, 255, 255, 0.1);
}

/* Icon box */
.f-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-12);
    margin-bottom: var(--space-20);
    background: var(--bg-icon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.feat-card h4 {
    font-family: var(--para-font-family);
    font-size: var(--p-size-20);
    font-weight: var(--font-600);
    margin-bottom: var(--space-8);
    line-height: var(--leading-normal);
    color: var(--text-primary);
}

.feat-card p {
    font-size: var(--p-size-14);
    font-weight: var(--font-400);
    color: var(--text-grey);
    line-height: var(--leading-relaxed);
}

.f-tag {
    display: inline-block;
    margin-top: var(--space-20);
    font-size: var(--p-size-12);
    font-weight: var(--font-500);
    padding: 5px var(--space-16);
    border-radius: var(--radius-9999);
    background: var(--color-active-bg);
    color: var(--primary-color);
    letter-spacing: .5px;
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {

    .features-head,
    .feat-controls-row,
    .feat-scroll-wrap {
        padding-left: var(--space-24);
        padding-right: var(--space-24);
    }

    .features-head {
        flex-direction: column;
        gap: var(--space-20);
        align-items: flex-start;
    }
}

@media (max-width: 540px) {
    .feat-card {
        width: 260px;
        padding: var(--space-24);
    }
}

@media (max-width: 860px) {
    .section-header {
        flex-direction: column;
        gap: var(--space-16);
    }

    .get-start-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-20);
    }
}

/* 640px — section-header, faq summary/body */
@media (max-width: 640px) {
    .section-header {
        flex-direction: column;
        gap: var(--space-16);
    }
}




/* ━━ HOW — Timeline Style ━━ */
.how {
    padding: 120px 0px;
    background: var(--bg-main);
}

.how-inner {
    /* max-width: 1100px; */
    margin: 0 auto
}

.how-head {
    margin-bottom: 80px
}

.how-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start
}

.how-sticky {
    position: sticky;
    top: 120px
}

.how-sticky .section-desc {
    margin-top: 20px;
    font-size: var(--p-size-18);
    color: var(--text-primary);
}

.how-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative
}

.how-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), rgba(0, 101, 242, 0.08))
}

.how-step {
    display: flex;
    gap: 32px;
    padding: 0 0 48px 0;
    position: relative;
}

.how-step:last-child {
    padding-bottom: 0
}

.step-node {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid rgba(0, 101, 242, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background .3s, border-color .3s, box-shadow .3s;
}

.how-step:hover .step-node {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 101, 242, 0.3)
}

.step-body {
    padding-top: 12px
}

.step-body h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -.2px
}

.step-body p {
    font-size: var(--p-size-14);
    color: var(--text-primary);
    line-height: 1.8
}

.step-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(0, 101, 242, 0.08);
    color: var(--primary-color);
    letter-spacing: .5px;
    text-transform: uppercase
}

/* ━━ OUTCOMES — Bento Grid ━━ */
.outcomes {
    background: var(--bg-light);
}


.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

.bento-card {
    background: #fff;
    border-radius: var(--radius-16);
    padding: 36px;
    border: 1px solid rgba(0, 101, 242, 0.07);
    transition: transform .22s, box-shadow .22s;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm)
}

.bento-1 {
    grid-column: span 7
}

.bento-2 {
    grid-column: span 5
}

.bento-3 {
    grid-column: span 4
}

.bento-4 {
    grid-column: span 4
}

.bento-5 {
    grid-column: span 4
}

.bento-6 {
    grid-column: span 5
}

.bento-7 {
    grid-column: span 7
}

.bento-card.dark {
    background: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.06)
}

.bento-card.dark h4 {
    color: #fff
}

.bento-card.dark p {
    color: rgba(255, 255, 255, 0.796)
}

.bento-card.blue {
    background: var(--primary-color);
    border-color: var(--primary-color)
}

.bento-card.blue h4 {
    color: #fff
}

.bento-card.blue p {
    color: rgba(255, 255, 255, 0.838)
}

.bento-card.blue .out-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff
}

.bento-card.blue .out-icon.blue {
    background: rgba(255, 255, 255, 0.15)
}

.bento-card.blue .out-icon.blue svg {
    fill: #fff
}

.bento-bg-num {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 100px;
    font-weight: 500;
    color: rgba(0, 101, 242, 0.04);
    line-height: 1;
    letter-spacing: -5px;
    pointer-events: none
}

.bento-card.blue .bento-bg-num {
    color: rgba(255, 255, 255, 0.06)
}

.bento-card.dark .bento-bg-num {
    color: rgba(255, 255, 255, 0.03)
}

.out-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center
}

.out-icon.blue {
    background: rgba(0, 101, 242, 0.08)
}

.out-icon.green {
    background: rgba(49, 158, 61, 0.1)
}

.out-icon.amber {
    background: rgba(217, 119, 6, 0.1)
}

.out-icon svg {
    width: 24px;
    height: 24px
}

.out-icon.blue svg {
    fill: var(--primary-color)
}

.out-icon.green svg {
    fill: var(--success-color)
}

.out-icon.amber svg {
    fill: var(--danger-color)
}

.bento-card h4 {
    font-size: var(--p-size-20);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -.2px;
    line-height: 1.3
}

.bento-card p {
    font-size: var(--p-size-16);
    color: var(--text-primary);
    line-height: 1.75
}

.out-tag {
    display: inline-block;
    margin-top: 18px;
    font-size: var(--p-size-14);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .5px
}

.out-tag.blue {
    background: rgba(0, 101, 242, 0.08);
    color: var(--primary-color)
}

.out-tag.green {
    background: rgba(49, 158, 61, 0.1);
    color: var(--success-color)
}

.out-tag.amber {
    background: rgba(217, 119, 6, 0.1);
    color: var(--danger-color)
}


/* ━━ TESTIMONIALS SECTION ━━ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-main);
    overflow: hidden;
}

.testi-inner {
    margin: 0 auto;
    overflow: hidden;
}

.testi-head {
    /* padding: 0 80px; */
    margin-bottom: 56px;
}

/* ━━ TRACK WRAPPER — blur edges ━━ */
.testi-track-wrap {
    position: relative;
}

.testi-track-wrap::before,
.testi-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.testi-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main) 20%, transparent);
}

.testi-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main) 20%, transparent);
}


.testi-layout {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-cards 32s linear infinite;
    padding: 10px 20px 18px;
}

.testi-layout:hover {
    animation-play-state: paused;
}

@keyframes scroll-cards {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ━━ CARDS ━━ */
.t-card {
    width: 320px;
    flex-shrink: 0;
    background: var(--bg-light);
    border-radius: var(--radius-16);
    padding: 32px;
    border: 1px solid rgba(0, 101, 242, 0.07);
    transition: box-shadow 0.2s, transform 0.2s;
}

.t-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.t-card.featured-t {
    background: var(--bg-dark);
    border-color: rgba(255, 255, 255, 0.06);
}

.t-card.featured-t .t-text {
    color: rgba(255, 255, 255, 0.75);
}

.t-card.featured-t .t-name {
    color: #fff;
}

.t-card.featured-t .t-biz {
    color: rgba(255, 255, 255, 0.45);
}

.t-card.featured-t .t-author {
    border-color: rgba(255, 255, 255, 0.07);
}

.t-card.blue-t {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.t-card.blue-t .t-text {
    color: rgba(255, 255, 255, 0.82);
}

.t-card.blue-t .t-name {
    color: #fff;
}

.t-card.blue-t .t-biz {
    color: rgba(255, 255, 255, 0.58);
}

.t-card.blue-t .t-author {
    border-color: rgba(255, 255, 255, 0.15);
}

.t-card.blue-t .t-stars {
    color: rgba(255, 255, 255, 0.75);
}

.t-card.blue-t .t-q {
    color: rgba(255, 255, 255, 0.08);
}

.t-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.t-stars {
    color: #F59E0B;
    font-size: 16px;
    letter-spacing: 2px;
}

.t-q {
    font-size: 52px;
    line-height: 0.8;
    color: rgba(0, 101, 242, 0.1);
    font-weight: 900;
}

.t-text {
    font-size: var(--p-size-14);
    color: var(--text-primary);
    line-height: 1.85;
    margin-bottom: 24px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: var(--font-500);
    color: #fff;
    flex-shrink: 0;
}

.t-name {
    font-size: var(--p-size-14);
    font-weight: var(--font-500);
    color: #fff;
    margin-bottom: 3px;
}

.t-biz {
    font-size: 12px;
    color: var(--text-grey);
}

.av-blue {
    background: #0065F2;
}

.av-navy {
    background: #002D78;
}

.av-white {
    background: rgba(255, 255, 255, 0.2);
}

.av-green {
    background: #319E3D;
}

.av-orange {
    background: #E3600E;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}




/* ━━ RESPONSIVE ━━ */
@media (max-width: 768px) {
    .testi-head {
        padding: 0 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .t-card {
        width: 270px;
        padding: 24px;
    }

    .testi-track-wrap::before,
    .testi-track-wrap::after {
        width: 60px;
    }
}



/* ── FAQ SECTION ── */
.faq-section {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--space-85) 0;
}


.faq-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-24);
    margin-bottom: var(--space-48);
    flex-wrap: wrap;
}

.faq-header__left {
    flex: 1;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.section-eyebrow__line {
    width: 24px;
    height: 1.5px;
    background: var(--primary-color);
}

.section-eyebrow__text {
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    color: var(--primary-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-heading {
    font-family: var(--heading-bold-font-family);
    font-size: var(--h2-size-40);
    font-weight: var(--font-800);
    color: var(--text-nav);
    line-height: var(--leading-tight);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-8);
}

/* .section-subheading {
      font-size: var(--p-size-14);
      color: var(--text-grey);
      line-height: var(--leading-relaxed);
    } */

/* ── COLLAPSE ALL BUTTON ── */

/* #master-toggle {
    display: none;
  } */

.collapse-all-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    cursor: pointer;
    color: var(--primary-color);
    font-family: var(--para-font-family);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    padding: 8px 14px;
    border-radius: var(--radius-9999);
    border: 1.5px solid var(--color-border);
    background: var(--bg-main);
    user-select: none;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
    margin-top: 6px;
}

.collapse-all-btn:hover {
    background: #eaf0ff;
}

.collapse-all-btn .btn-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: var(--font-700);
}

/* ── FAQ LIST ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

/* ── EACH FAQ ITEM ── */
/* Hidden checkbox drives open/close state */
.faq-item input[type="checkbox"] {
    display: none;
}

.faq-item {
    background: var(--bg-main);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-12);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 101, 242, 0.08);
}

/* Label = clickable question row */
.faq-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-24);
    padding: var(--space-20) var(--space-24);
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: var(--para-font-family);
    font-size: clamp(var(--p-size-18), 2.5vw, 22px);
    font-weight: var(--font-500);
    color: var(--text-primary);
    line-height: var(--leading-tight);
    letter-spacing: -0.38px;
}

/* Chevron icon */
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-grey);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s;
}

/* Answer panel — hidden by default */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 var(--space-24);
}

.faq-answer p {
    font-size: var(--p-size-16);
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
    padding-bottom: var(--space-20);
    max-width: 1000px;

}

/* ── OPEN STATE (individual checkbox checked) ── */
.faq-item input[type="checkbox"]:checked~.faq-label .faq-icon {
    transform: rotate(180deg);
}

.faq-item input[type="checkbox"]:checked~.faq-label .faq-icon svg {
    stroke: var(--primary-color);
}

.faq-item input[type="checkbox"]:checked~.faq-answer {
    max-height: 300px;
    padding-top: 0;
}

/* First item open by default */
#faq1:checked~.faq-label .faq-icon {
    transform: rotate(180deg);
}

#faq1:checked~.faq-answer {
    max-height: 300px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1023px) {
    .section-heading {
        font-size: var(--h2-size-32);
    }
}

@media (max-width: 767px) {

    .section-heading {
        font-size: var(--h2-size-28);
    }

    .faq-label {
        padding: var(--space-16);
        gap: var(--space-12);
    }

    .faq-answer {
        padding: 0 var(--space-16);
    }

    .faq-item input[type="checkbox"]:checked~.faq-answer {
        padding-top: 0;
    }
}

@media (max-width:480px) {
    .faq-question {
        letter-spacing: 0;
    }

    .faq-answer p {
        padding-right: 10px;
    }

    .collapse-all-btn {
        width: 100%;
        justify-content: center;
    }

}




/* ━━ FOOTER ━━ */
footer {
    background: var(--bg-dark);
    padding: 56px 80px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.ft-inner {
    max-width: 1200px;
    margin: 0 auto
}

.ft-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.ft-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.75;
    max-width: 220px;
    margin-top: 14px
}

.ft-col h5 {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.ft-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ft-col ul a {
    text-decoration: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    transition: color .2s
}

.ft-col ul a:hover {
    color: rgba(255, 255, 255, .75)
}

.ft-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px
}

.ft-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, .28)
}

.ft-badges {
    display: flex;
    gap: 10px
}

.ft-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, .38);
    border: 1px solid rgba(255, 255, 255, .07);
    letter-spacing: .5px
}

/* ━━ RESPONSIVE ━━ */
@media(max-width:1100px) {

    .how-layout {
        grid-template-columns: 1fr
    }

    .how-sticky {
        position: static;
        padding-bottom: 40px;
    }

    .bento-1,
    .bento-2,
    .bento-3,
    .bento-4,
    .bento-5,
    .bento-6,
    .bento-7 {
        grid-column: span 6
    }

    .impact-tiles {
        grid-template-columns: repeat(2, 1fr)
    }

    .testi-layout {
        grid-template-columns: repeat(2, 1fr)
    }

    .faq-top {
        grid-template-columns: 1fr
    }

    .cta-sec {
        grid-template-columns: 1fr
    }

    .cta-right {
        display: none
    }

    .ft-top {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        text-align: center;
        margin: 20px auto;

    }

    .hero-actions {
        justify-content: center;
    }

    .hero-right {
        display: none
    }
}

@media(max-width:768px) {
    nav {
        width: calc(100% - 32px);
        top: 12px
    }

    .nav-links,
    .nav-actions .btn-nav-ghost {
        display: none
    }


    .bento-1,
    .bento-2,
    .bento-3,
    .bento-4,
    .bento-5,
    .bento-6,
    .bento-7 {
        grid-column: span 12
    }

    .impact-tiles {
        grid-template-columns: 1fr
    }

    .testi-layout {
        grid-template-columns: 1fr
    }

    .cta-left {
        padding: 72px 24px
    }

    footer {
        padding: 48px 24px 32px
    }

    .ft-top {
        grid-template-columns: 1fr
    }

    .faq-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width:480px) {
    .hero-desc {
        font-size: var(--p-size-16);
    }

    .ps-desc {
        font-size: var(--p-size-16);
    }

    .section-header-right .section-desc {
        font-size: var(--p-size-16);
    }
}