*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #08112A;
    --navy-2: #0D1C3F;
    --navy-3: #162347;
    --blue: #2563EB;
    --blue-2: #3B82F6;
    --blue-3: #60A5FA;
    --teal: #0EA5E9;
    --green: #10B981;
    --gold: #F59E0B;
    --white: #FFFFFF;
    --off-white: #F0F4FF;
    --gray-1: #E2E8F0;
    --gray-2: #94A3B8;
    --gray-3: #64748B;
    --card-bg: #0F1E40;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--navy);
    /* color: var(--white); */
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── UTILITY ─────────────────────────────────── */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: var(--blue-3);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: inherit;
    padding: 6px 16px;
    border-radius: 100px;
}

.tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--Theme-Blue-800, #182878);
    border-radius: 50%;
    display: inline-block;
}

/* Light tag variant for sections with SVG icons */
.tag-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EEF2FF;
    border: 1px solid #BFDBFE;
    color: #04092A;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
}

/* ─── HERO ────────────────────────────────────── */
.hero {
    display: flex;
    align-items: center;
    padding-block: 72px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37, 99, 235, 0.18) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 10% 85%, rgba(14, 165, 233, 0.18) 0%, transparent 60%);
    display: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    display: none;
}

.hero-content {
    position: relative;
    max-width: inherit;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    margin-bottom: 28px;
}

.hero h1 {
    margin-bottom: 16px;
    color: var(--Text-Grey-900, #101828);
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -.96px;
}

.hero h1 .gradient {
    background-clip: text;
    color: var(--Theme-Blue-500, #3A58EF);
}

.hero-sub {
    font-size: 18px;
    color: var(--gray-2);
    line-height: 1.7;
    max-width: inherit;
    margin: 0 auto 44px;
    margin-bottom: 24px;
    padding-inline: 100px;
    color: var(--Text-Grey-600, #475467);
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    justify-content: center;
}

.btn-primary {
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    border-radius: 4px;
    background: var(--Theme-Blue-500, #3A58EF);
    box-shadow: 0 1px 2px 0 rgb(16 24 40 / .05);
    padding: 12px 20px;
    color: var(--White, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    border-radius: 4px;
    background: var(--Theme-Blue-800, #182878);
    box-shadow: 0 1px 2px 0 rgb(16 24 40 / .05);
}

.btn-ghost {
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    border-radius: 4px;
    border: 1px solid var(--Theme-Blue-500, #3A58EF);
    background: #fff0;
    color: var(--Theme-Blue-500, #3A58EF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 12px 40px;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    background: var(--Theme-Blue-500, #3A58EF);
    box-shadow: 0 1px 2px 0 rgb(16 24 40 / .05);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 36px;
    padding-top: 36px;
    /* border-top: 1px solid #EAECF0; */
    flex-wrap: wrap;
}

.hero-stat .number {
    letter-spacing: -1px;
    padding-top: 10px;
    padding-bottom: 5px;
    display: inline-block;
    width: 100%;
    color: var(--Text-Grey-900, #101828);
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.hero-stat .label {
    font-size: 14px;
    color: var(--gray-2);
    margin-top: 4px;
    color: var(--Text-Grey-700, #344054);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.hero-stat .number span {
    color: var(--Theme-Blue-500, #3A58EF);
}

/* ─── EXCLUSIVE BANNER ────────────────────────── */
.exclusive-bar {
    padding: 18px 0;
    background: var(--Text-Grey-50, #F9FAFB);
    padding-block: 35px;
    background-image: url(https://assets.my-cpe.com/entigrity-assets/custom/soc_2_type_2/How_we_Bg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-color: #12327B;
    padding: 32px 0 32px;
}

.exclusive-bar .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: var(--white);
    margin-bottom: 0;
    padding: 0;
    flex-direction: column;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.exclusive-bar .badge {
    background: transparent;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.72px;
    margin-bottom: 24px;
    color: var(--white);
}

/* ─── SECTION SHARED ──────────────────────────── */
section {
    padding: 72px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 0;
}

.section-header h2 {
    margin-top: 16px;
    color: var(--Theme-Dark-Blue-800, #26244A);
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -.72px;
    padding-bottom: 16px;
}

.section-header p {
    max-width: inherit;
    margin: 16px auto 0;
    color: var(--Text-Grey-600, #475467);
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 48px;
    padding: 0;
}

/* ─── WHY ─────────────────────────────────────── */
.why {
    padding: 72px 0;
    background: #fff;
    margin-top: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-4px);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.why-icon.blue {
    border-radius: 8px;
    background: var(--Theme-Blue-50, #EBEEFD);
    padding: 10px;
    margin-bottom: 24px;
}

.why-icon.teal {
    background: rgba(14, 165, 233, 0.15);
}

.why-icon.green {
    background: rgba(16, 185, 129, 0.15);
}

.why-icon.gold {
    background: rgba(245, 158, 11, 0.15);
}

.why-card h3 {
    color: var(--Text-Grey-700, #344054);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--Text-Grey-600, #475467);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 0;
}

/* ─── SERVICES ────────────────────────────────── */
#services {
    background: var(--Text-Grey-50, #F9FAFB);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}

.service-card.s1::before {
    background: linear-gradient(90deg, var(--blue), var(--blue-3));
    display: none;
}

.service-card.s2::before {
    background: linear-gradient(90deg, var(--teal), var(--green));
    display: none;
}

.service-card.s3::before {
    background: linear-gradient(90deg, var(--gold), #FB923C);
    display: none;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow);
}

.service-number {
    letter-spacing: 0.1em;
    text-transform: inherit;
    margin-bottom: 20px;
    color: var(--Text-Grey-700, #344054);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.service-card h3 {
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--Text-Grey-700, #344054);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.service-card>p {
    color: var(--Text-Grey-600, #475467);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
    text-align: left;
    margin-top: 8px;
}

.service-features {
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--Text-Grey-600, #475467);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    position: relative;
    padding-left: 0;
    list-style: none;
    margin-bottom: 5px;
}

.service-features li::before {
    content: '•';
    color: #475467;
    font-weight: 700;
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* ─── PROCESS ─────────────────────────────────── */
.process {
    background: var(--White, #FFF);
    padding-block: 72px;
}

.process-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 56px;
    align-items: center;
}

.process-content .section-header {
    text-align: left;
}

.process-content .section-header h2 {
    color: var(--Theme-Dark-Blue-800, #26244A);
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -.72px;
    padding: 0;
    margin-bottom: 8px;
}

.process-content .section-header p {
    color: var(--Text-Grey-600, #475467);
    text-align: start;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    padding: 0;
}

.process-steps-row {
    display: flex;
    align-items: flex-start;
    margin: 32px 0 36px;
    gap: 0;
}

.process-step-card {
    flex: 1;
    text-align: center;
}

.step-box {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.step-box h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.step-connector {
    flex-shrink: 0;
    padding-top: 26px;
    display: flex;
    align-items: flex-start;
}

.process-step-card h4 {
    color: var(--Text-Grey-700, #344054);
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 8px;
}

.process-step-card p {
    color: var(--Text-Grey-700, #344054);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 8px;
    padding: 0;
}

.process-img-wrap {
    /* background: #EEF2FF;
    border-radius: 24px;
    border: 1px solid #DBEAFE; */
    background: #ebeefd;
    border-radius: 24px;
    border: 1px solid #000000;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    overflow: hidden;
    min-height: 420px;
}

.process-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ─── AUTOMATIONS ─────────────────────────────── */
#automations {
    background: var(--Text-Grey-50, #F9FAFB);
}

.automations-layout {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 40px;
    align-items: start;
}

.automations-left {
    position: sticky;
    top: 90px;
}

.automations-left .section-header {
    text-align: left;
    margin-bottom: 28px;
}

.automations-aside {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
}

.automations-aside h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 12px;
}

.automations-aside p {
    margin-bottom: 24px;
    color: var(--Text-Grey-700, #344054);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: inherit;
    margin-block: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 24px;
    min-height: 84px;
}

.automations-aside .btn-primary {
    font-size: 14px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.automations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.automations-left .section-header p {
    margin: 0px;
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #475467;
    padding: 0;
    margin-top: 8px;
}

.auto-item {
    border-radius: 16px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    /* box-shadow: 5px 5px 0px var(--navy); */
}

.automations-grid .auto-item {
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border 0.2s;
}

.automations-grid .auto-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 4px 4px 0 0 #000;
}

.auto-icon-box {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
    border-radius: 8px;
    background: var(--Theme-Blue-50, #EBEEFD);
    padding: 10px;
    margin-bottom: 24px;
}

.auto-icon-box svg {
    transition: filter 0.25s;
}

.auto-item:hover .auto-icon-box svg {
    filter: brightness(0) invert(1);
}

.automations-grid .auto-item:nth-child(1):hover .auto-icon-box {
    border-radius: 8px;
    background: #3a58ef;
}

.automations-grid .auto-item:nth-child(2):hover .auto-icon-box {
    border-radius: 8px;
    background: #3a58ef;
}

.automations-grid .auto-item:nth-child(3):hover .auto-icon-box {
    border-radius: 8px;
    background: #3a58ef;
}

.automations-grid .auto-item:nth-child(4):hover .auto-icon-box {
    border-radius: 8px;
    background: #3a58ef;
}

.automations-grid .auto-item:nth-child(5):hover .auto-icon-box {
    border-radius: 8px;
    background: #3a58ef;
}

.automations-grid .auto-item:nth-child(6):hover .auto-icon-box {
    border-radius: 8px;
    background: #3a58ef;
}

.automations-grid .auto-item:nth-child(7):hover .auto-icon-box {
    border-radius: 8px;
    background: #3a58ef;
}

.automations-grid .auto-item:nth-child(8):hover .auto-icon-box {
    border-radius: 8px;
    background: #3a58ef;
}

.auto-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1E1B4B;
    margin-bottom: 4px;
}

.auto-item p {
    font-size: 16px;
    color: #374151;
    line-height: 1.55;
}

/* ─── CTA ─────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-2) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(37, 99, 235, 0.1), transparent);
}

.cta-section h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin: 16px 0 20px;
}

.cta-section p {
    font-size: 18px;
    color: var(--gray-2);
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-note {
    font-size: 13px;
    color: var(--gray-3);
    margin-top: 16px;
}


span.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--Theme-Blue-800, #182878);
    color: var(--Theme-Blue-800, #182878);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
}

.fade-up.visible:hover {
    border-radius: 16px;
    border: 1px solid var(--Text-Grey-500, #5D667B);
    background: var(--White, #FFF);
    box-shadow: 4px 4px 0 0 #000;
}

.fade-up.visible:hover .why-icon.blue {
    border-radius: 8px;
    background: #3a58ef;
}

.fade-up.visible:hover .why-icon.blue svg path {
    stroke: #fff;
}


.process-step-card.fade-up.visible {
    padding: 0;
    border: 0;
    background: transparent;
}

.process-step-card.fade-up.visible:hover {
    background: transparent;
    box-shadow: none;
}

.step-connector svg {
    width: 130px;
    height: 33px;
}

/* Support Section Styles */
.support_your_firm {
    background: url('https://assets.my-cpe.com/entigrity-assets/custom/mos/images/Interested_learning_banner.png');
    background-size: cover;
    background-position: center right;
    padding: 72px 0;
}

.support_your_firm h2 {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.72px;
    margin-bottom: 24px;
}

.support_your_firm p {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 16px;
}

.support_your_firm a {
    border-radius: 4px;
    border: 1px solid var(--White, #FFF);
    padding: 12px 20px;
    color: var(--White, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: inline-block;
    gap: 8px;
    max-width: inherit;
    background: none;
}

.support_your_firm a:hover {
    background: #fff;
    color: #3A58EF;
}

.support_your_firm a:hover svg path {
    stroke: #3A58EF;
}

/* End Support Section Styles */

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .automations-layout {
        grid-template-columns: 1fr;
    }

    .automations-left {
        position: static;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-img-wrap {
        display: none;
    }

    .process-steps-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .automations-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 28px;
    }
}

/* ─── MOBILE NAV ──────────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--navy);
    padding: 100px 24px 40px;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--gray-1);
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-nav .mobile-cta {
    margin-top: 16px;
    background: var(--blue);
    color: var(--white);
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border: none;
}

/* ─── SCROLL ANIMATIONS ───────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
    border-radius: 12px;
    border: 1px solid var(--Text-Grey-200, #EAECF0);
    background: var(--White, #FFF);
    padding: 24px;
    margin-top: 0;
    margin-block: 0;
    min-height: 228px;
}

.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.3s;
}

/* ─── LETS BUILD SECTION ──────────────────────── */
section.Lets_Build {
    padding: 72px 0;
    background: #fff;
}

section.Lets_Build .Sec_Title h2 {
    color: #26244A;
    font-family: Inter;
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -.72px;
    text-align: center;
    padding-bottom: 36px;
}

section.Lets_Build .Sec_Title h2 span {
    color: #3A58EF;
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -.72px;
}

.hero-stat {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--Text-Grey-300, #D0D5DD);
    background: #FFF;
}

/* Inline style replacements */
.ai-ts-section-header-no-margin {
    margin-bottom: 0;
}

.ai-ts-theme-blue-500 {
    color: var(--Theme-Blue-500, #3A58EF);
}

.ai-ts-btn-inline-flex {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ai-ts-mix-blend-multiply {
    mix-blend-mode: multiply;
}

.ai-ts-display-none {
    display: none;
}

section.bg-light-blue {
    background: var(--Theme-Blue-50, #EBEEFD);
}