:root {
    --navy: #0F2A5E;
    --blue: #2563EB;
    --white: #FFFFFF;
    --lightblue: #EFF6FF;
    --sky: #DBEAFE;
    --green: #059669;
    --gold: #D97706;
    --charcoal: #1E293B;
    --grey: #64748B;
    --lightgrey: #F8FAFC;
    --footer: #0D1526;
    --display: 'Plus Jakarta Sans', sans-serif;
    --body: 'Inter', sans-serif;
    --label: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body);
    color: var(--charcoal);
    background: var(--white);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden
}

img {
    max-width: 100%
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

/* ---------- shared atoms ---------- */
.tag {
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 14px
}

.tag.green {
    color: var(--green)
}

h2.sec {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(30px, 4.2vw, 46px);
    line-height: 1.12;
    color: var(--navy);
    letter-spacing: -.01em
}

.sec-sub {
    font-size: 18px;
    color: var(--grey);
    max-width: 620px;
    margin: 14px auto 0
}

.center {
    text-align: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 28px;
    border-radius: 10px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .25s ease
}

.btn-blue {
    background-color: #E4BD65;
    color: #2d2d2d;
    font-weight: 800;
}

.numbbtn {
    background-color: #9c0000;
    color: #fff
}

.rv-l .fc-pill {
    margin-bottom: 26px;
}

.btn-blue:hover {
    background: #2563EB;
    box-shadow: 0 0 20px rgba(37, 99, 235, .35);
    transform: translateY(-2px);
    color: white;
}

.btn-green {
    background: #059669;
    color: white !important;
    font-weight: 800;
    text-transform: capitalize !important;
}

.btn-green:hover {
    background: #047857;
    box-shadow: 0 0 20px rgba(5, 150, 105, .35);
    transform: translateY(-2px)
}

.glass-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(37, 99, 235, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex: 0 0 auto
}

.glass-icon svg {
    width: 24px;
    height: 24px
}

/* ---------- reveal on scroll ---------- */
.rv {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease
}

.rv.in {
    opacity: 1;
    transform: none
}

.rv-l {
    opacity: 0;
    transform: translateX(-26px);
    transition: opacity .7s ease, transform .7s ease
}

.rv-l.in {
    opacity: 1;
    transform: none
}

/* ---------- nav ---------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(37, 99, 235, .1)
}

.nav-in {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.logo {
    font-family: var(--display);
    font-weight: 800;
    font-size: 21px;
    color: var(--navy)
}

.logo span {
    color: var(--blue)
}

.nav-links {
    display: flex;
    gap: 28px
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--charcoal);
    transition: color .2s
}

.nav-links a:hover {
    color: var(--blue)
}

.nav-cta {
    height: 42px;
    padding: 0 20px;
    font-size: 13px
}

.nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy)
}

/* ---------- hero ---------- */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 130px 0 70px;
    color: #fff
}

.bp-grid {
    position: absolute;
    inset: -120px;
    background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 64px 64px;
    animation: drift 30s linear infinite;
    pointer-events: none
}

@keyframes drift {
    from {
        transform: translate(0, 0)
    }

    to {
        transform: translate(64px, 64px)
    }
}

.hero-glow {
    position: absolute;
    width: 780px;
    height: 780px;
    left: -180px;
    top: 8%;
    background: radial-gradient(circle, rgba(37, 99, 235, .38), transparent 65%);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none
}

@keyframes pulse {

    0%,
    100% {
        opacity: .7
    }

    50% {
        opacity: 1
    }
}

.ghost-iq {
    position: absolute;
    right: -30px;
    top: 46%;
    transform: translateY(-50%);
    font-family: var(--display);
    font-weight: 300;
    font-size: 280px;
    color: rgba(255, 255, 255, .03);
    letter-spacing: -.04em;
    pointer-events: none;
    line-height: 1;
    user-select: none
}

.float-cert {
    position: absolute;
    top: 64px;
    right: -60px;
    width: 230px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    transform: rotate(14deg);
    opacity: .15;
    background: linear-gradient(rgba(255, 255, 255, .06), transparent);
    pointer-events: none
}

.float-cert::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: rgba(37, 99, 235, .6);
    border-radius: 12px 12px 0 0
}

.float-stamp {
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 240px;
    height: 240px;
    border: 2px dashed rgba(255, 255, 255, .35);
    border-radius: 50%;
    opacity: .1;
    pointer-events: none
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 48px;
    align-items: center;
    width: 100%
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, .15);
    border: 1px solid var(--blue);
    border-radius: 999px;
    padding: 7px 18px;
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9db9f5;
    margin-bottom: 26px
}

h1 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(38px, 5.4vw, 68px);
    line-height: 1.05;
    letter-spacing: -.015em;
    color: #fff
}

h1 .l2 {
    color: var(--blue);
    display: block;
    text-shadow: 0 0 32px rgba(37, 99, 235, .0);
    transition: text-shadow .6s
}

h1 .l2.lit {
    text-shadow: 0 0 32px rgba(37, 99, 235, .55)
}

h1 .w {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease
}

h1 .w.in {
    opacity: 1;
    transform: none
}

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .75);
    margin: 22px 0 28px;
    max-width: 560px
}

.tb-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 540px;
    margin-bottom: 30px
}

.tb {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity .5s ease, transform .5s ease
}

.tb.in {
    opacity: 1;
    transform: none
}

.tb svg {
    width: 17px;
    height: 17px;
    color: #34d399;
    flex: 0 0 auto
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

/* form card */
.form-wrap {
    position: relative
}

.lead-card {
    background: #fff;
    border-radius: 16px;
    border-top: 3px solid var(--blue);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .25);
    padding: 30px 28px;
    color: var(--charcoal);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease .6s, transform .7s ease .6s
}

.lead-card.in {
    opacity: 1;
    transform: none
}

.lead-card h3 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 20px;
    color: var(--navy)
}

.lead-card .fsub {
    font-size: 13px;
    color: var(--grey);
    margin: 4px 0 18px
}

.fld {
    margin-bottom: 13px
}

.fld input,
.fld select {
    width: 100%;
    height: 46px;
    border: 1.5px solid #E2E8F0;
    border-radius: 9px;
    padding: 0 14px;
    font-family: var(--body);
    font-size: 15px;
    color: var(--charcoal);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    appearance: none
}

.fld select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center
}

.fld input:focus,
.fld select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15)
}

.fld.err input {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12)
}

.fld .msg {
    display: none;
    font-size: 12px;
    color: var(--blue);
    margin-top: 4px;
    font-weight: 500
}

.fld.err .msg {
    display: block
}

.lead-card .btn {
    width: 100%;
    font-size: 15px
}

.secure {
    font-size: 12px;
    color: var(--grey);
    text-align: center;
    margin-top: 12px
}

.float-stat {
    position: absolute;
    top: -22px;
    right: -16px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    padding: 10px 16px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 13.5px;
    color: #fff;
    animation: floaty 4s ease-in-out infinite;
    white-space: nowrap
}

.float-ok {
    position: absolute;
    bottom: -18px;
    left: -14px;
    background: var(--green);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 10px 28px rgba(5, 150, 105, .4);
    animation: floaty 4s ease-in-out infinite 1.4s
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

/* ---------- section 2: bento ---------- */
.why {
    padding: 104px 0;
    background: var(--white)
}

.bento {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 18px;
    margin-top: 52px
}

.bcard {
    position: relative;
    background: var(--lightblue);
    border: 1px solid var(--sky);
    border-radius: 14px;
    padding: 30px 28px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease
}

.bcard::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blue);
    transform: scaleY(0);
    transition: transform .3s ease;
    transform-origin: top
}

.bcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(15, 42, 94, .1)
}

.bcard:hover::before {
    transform: scaleY(1)
}

.bnum {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--label);
    font-weight: 600;
    font-size: 32px;
    color: var(--navy);
    opacity: .15
}

.bcard h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    margin: 18px 0 8px
}

.bcard p {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.65
}

.b1 {
    grid-column: span 6;
    padding: 38px 34px
}

.b1 .glass-icon {
    width: 62px;
    height: 62px
}

.b2 {
    grid-column: span 4
}

.b3,
.b4,
.b5 {
    grid-column: span 10
}

@media(min-width:781px) {

    .b3,
    .b4,
    .b5 {
        grid-column: span 1
    }

    .b3 {
        grid-column: 1/span 4
    }

    .b4 {
        grid-column: 5/span 3
    }

    .b5 {
        grid-column: 8/span 3
    }
}

.b6 {
    grid-column: 1/-1;
    background: var(--blue);
    border-color: var(--blue);
    padding: 38px 34px;
    display: flex;
    align-items: center;
    gap: 26px
}

.b6 .glass-icon {
    width: 62px;
    height: 62px;
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .3);
    color: #fff
}

.b6 h4,
.b6 .bnum {
    color: #fff;
    margin-top: 0
}

.b6 p {
    color: rgba(255, 255, 255, .85)
}

.b6:hover {
    box-shadow: 0 18px 46px rgba(37, 99, 235, .35)
}

.fast-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217, 119, 6, .12);
    border: 1px solid rgba(217, 119, 6, .35);
    color: var(--gold);
    border-radius: 999px;
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 12px;
    margin-left: 10px;
    vertical-align: middle
}

/* ---------- section 3: services ---------- */
.services {
    padding: 104px 0;
    background: var(--lightblue)
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
    align-items: stretch
}

.svc {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 30px 26px;
    box-shadow: 0 6px 22px rgba(15, 42, 94, .06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .25s ease, box-shadow .25s ease;
    border-bottom: 3px solid transparent
}

.svc:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(15, 42, 94, .13);
    border-bottom-color: var(--blue)
}

.svc h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 17px;
    color: var(--navy)
}

.svc p {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.65;
    flex: 1
}

.svc-cta {
    color: var(--blue);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s
}

.svc-cta:hover {
    gap: 11px
}

.svc.pop {
    transform: scale(1.03);
    box-shadow: 0 16px 44px rgba(15, 42, 94, .14)
}

.svc.pop:hover {
    transform: scale(1.03) translateY(-6px)
}

.pop-badge {
    position: absolute;
    top: -13px;
    right: 18px;
    background: var(--gold);
    color: #fff;
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 999px;
    padding: 5px 14px;
    box-shadow: 0 8px 20px rgba(217, 119, 6, .4)
}

/* ---------- section 4: timeline ---------- */
.process {
    padding: 104px 0 120px;
    background: var(--white)
}

.tl {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 64px;
    height: 540px
}

.tl::before {
    content: "";
    position: absolute;
    left: 3%;
    right: 3%;
    top: 50%;
    border-top: 2px dashed var(--blue);
    opacity: .55
}

.step {
    position: relative
}

.step .dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-family: var(--display);
    font-weight: 800;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px var(--white), 0 8px 24px rgba(37, 99, 235, .35);
    z-index: 2
}

.scard {
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    border-top: 3px solid var(--blue);
    box-shadow: 0 10px 32px rgba(15, 42, 94, .1);
    padding: 22px 18px;
    z-index: 1
}

.step.below .scard {
    top: calc(50% + 46px)
}

.step.above .scard {
    bottom: calc(50% + 46px)
}

.ghostn {
    position: absolute;
    font-family: var(--display);
    font-weight: 300;
    font-size: 100px;
    color: var(--navy);
    opacity: .05;
    line-height: 1;
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%)
}

.step.below .ghostn {
    top: calc(50% + 16px)
}

.step.above .ghostn {
    bottom: calc(50% + 16px)
}

.slabel {
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600
}

.scard h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    margin: 6px 0
}

.scard p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.6
}

.step {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.step.in {
    opacity: 1;
    transform: none
}

.process .center {
    margin-top: 8px
}

/* ---------- section 5: about + stats ---------- */
.about-top {
    padding: 104px 0;
    background: var(--lightblue)
}

.about-grid {
    display: grid;
    grid-template-columns: 55% 41%;
    gap: 4%;
    align-items: center
}

.about-grid h2 {
    margin-bottom: 22px
}

.about-grid p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 16px
}

.about-link {
    color: var(--blue);
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 6px
}

.about-link:hover {
    gap: 13px
}

.about-art {
    position: relative;
    height: 380px
}

.art-doc {
    position: absolute;
    top: 24px;
    left: 8%;
    width: 64%;
    height: 300px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 22px 54px rgba(15, 42, 94, .14);
    transform: rotate(-4deg)
}

.art-doc::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 46px;
    background: var(--blue);
    border-radius: 14px 14px 0 0
}

.art-doc i {
    position: absolute;
    left: 10%;
    right: 10%;
    height: 9px;
    border-radius: 5px;
    background: #E6EDF7
}

.art-doc i:nth-child(1) {
    top: 74px
}

.art-doc i:nth-child(2) {
    top: 100px;
    right: 26%
}

.art-doc i:nth-child(3) {
    top: 126px
}

.art-doc i:nth-child(4) {
    top: 152px;
    right: 38%
}

.art-doc i:nth-child(5) {
    top: 178px
}

.art-doc2 {
    position: absolute;
    top: 60px;
    left: 24%;
    width: 64%;
    height: 300px;
    background: #fff;
    border: 1px solid var(--sky);
    border-radius: 14px;
    transform: rotate(5deg);
    z-index: -1;
    opacity: .8
}

.art-stamp {
    position: absolute;
    bottom: 8px;
    right: 6%;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--label);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    box-shadow: 0 16px 38px rgba(5, 150, 105, .4);
    border: 5px double rgba(255, 255, 255, .6);
    transform: rotate(-10deg)
}

.art-shield {
    position: absolute;
    top: -6px;
    right: 14%;
    color: var(--blue);
    opacity: .9
}

.stats-band {
    background: var(--navy);
    padding: 64px 0
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat {
    position: relative;
    text-align: center;
    padding: 10px 14px
}

.stat+.stat {
    border-left: 1px solid rgba(255, 255, 255, .12)
}

.stat::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, .3), transparent 70%);
    pointer-events: none
}

.stat .num {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(44px, 5.6vw, 72px);
    color: var(--blue);
    line-height: 1;
    position: relative
}

.stat .num small {
    font-size: .42em;
    font-weight: 700;
    color: #fff;
    margin-left: 6px
}

.stat .lbl {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    position: relative
}

/* ---------- section 6: testimonials ---------- */
.testi {
    padding: 104px 0;
    background: var(--white)
}

.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px
}

.tcard {
    position: relative;
    background: var(--lightblue);
    border-radius: 14px;
    padding: 34px 28px 26px;
    box-shadow: 0 8px 26px rgba(15, 42, 94, .06)
}

.tcard .qm {
    position: absolute;
    top: 14px;
    left: 20px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 64px;
    color: var(--blue);
    opacity: .12;
    line-height: 1
}

.stars {
    color: var(--gold);
    font-size: 17px;
    letter-spacing: 3px;
    margin-bottom: 14px
}

.tcard blockquote {
    font-size: 16px;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.7
}

.tcard hr {
    border: none;
    border-top: 1px solid var(--sky);
    margin: 20px 0 14px
}

.tname {
    font-family: var(--display);
    font-weight: 700;
    color: var(--navy)
}

.trole {
    font-size: 14px;
    color: var(--grey)
}

.t-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 150, 105, .1);
    border: 1px solid rgba(5, 150, 105, .3);
    color: var(--green);
    border-radius: 999px;
    padding: 9px 22px;
    font-weight: 600;
    font-size: 14.5px;
    margin-top: 44px
}

/* ---------- section 7: faq ---------- */
.faq {
    padding: 104px 0;
    background: var(--lightblue)
}

.faq-grid {
    display: grid;
    grid-template-columns: 38% 58%;
    gap: 4%
}

.faq-left {
    position: sticky;
    top: 100px;
    align-self: start
}

.faq-left .sub {
    font-size: 17px;
    color: var(--grey);
    margin: 14px 0 28px
}

.faq-cta {
    background: var(--navy);
    border-radius: 14px;
    padding: 28px 26px;
    color: #fff
}

.faq-cta h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 16px
}

.acc {
    border-bottom: 1px solid var(--sky)
}

.acc-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 22px 4px 22px 14px;
    cursor: pointer;
    font-family: var(--body);
    font-weight: 600;
    font-size: 17px;
    color: var(--navy);
    border-left: 3px solid transparent;
    transition: color .2s, border-color .2s
}

.acc-q .pl {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 500;
    transition: transform .3s ease;
    line-height: 1
}

.acc.open .acc-q {
    color: var(--blue);
    border-left-color: var(--blue)
}

.acc.open .pl {
    transform: rotate(45deg);
    background: var(--blue);
    color: #fff
}

.acc-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.acc-a p {
    padding: 0 44px 22px 17px;
    font-size: 16px;
    color: var(--grey);
    line-height: 1.7
}

/* ---------- section 8: final cta ---------- */
.final {
    position: relative;
    background: url('./img/BG-DWN.webp');
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
    color: #fff
}





.final h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(32px, 4.6vw, 52px);
    position: relative
}

.final p {
    position: relative;
    color: rgba(255, 255, 255, .75);
    font-size: 17px;
    max-width: 620px;
    margin: 18px auto 34px
}

.mini-pills {
    position: relative;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px
}

.mini-pills span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .1);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 14px;
    color: #fff
}

.mini-pills svg {
    width: 15px;
    height: 15px;
    color: #34d399
}

/* ---------- section 9: footer ---------- */
.foot-cta {
    background: var(--navy);
    padding: 90px 0;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.fc-grid {
    display: grid;
    grid-template-columns: 50% 46%;
    gap: 4%;
    align-items: center;
    color: #fff
}

.fc-grid h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(30px, 3.8vw, 44px);
    color: #fff;
    line-height: 1.15
}

.fc-pill {
    display: inline-block;
    background: rgba(37, 99, 235, .2);
    border: 1px solid var(--blue);
    color: #9db9f5;
    border-radius: 999px;
    padding: 7px 18px;
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 18px
}

.fc-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, .25), 0 26px 64px rgba(0, 0, 0, .35);
    color: var(--charcoal)
}

footer {
    background: var(--footer);
    color: #fff;
    padding: 70px 0 0
}

.f-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1.4fr;
    gap: 38px
}

.f-grid h5 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 18px;
    color: #fff
}

.f-grid a,
.f-grid p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .65);
    line-height: 2.1;
    display: block;
    transition: color .2s
}

.f-grid a:hover {
    color: var(--blue)
}

.f-logo {
    font-family: var(--display);
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 12px
}

.f-logo span {
    color: var(--blue)
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .2s
}

.socials a:hover {
    background: var(--blue)
}

.socials svg {
    width: 17px;
    height: 17px
}

.f-wa {
    margin-top: 14px;
    height: 30px;
    font-size: 13px;
    width: fit-content;
    padding: 0 12px;
}

.f-bottom {
    margin-top: 54px;
    border-top: 2px solid var(--blue);
    padding: 20px 0;
    text-align: center;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5)
}

/* ---------- whatsapp float ---------- */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 12px 32px rgba(37, 211, 102, .45);
    transition: transform .25s
}

.wa-float:hover {
    transform: scale(1.1)
}

.wa-float svg {
    width: 30px;
    height: 30px
}

/* ---------- toast ---------- */
.toast {
    position: fixed;
    bottom: 96px;
    left: 50%;
    transform: translate(-50%, 16px);
    background: var(--green);
    color: #fff;
    border-radius: 10px;
    padding: 13px 24px;
    font-weight: 600;
    font-size: 14.5px;
    box-shadow: 0 14px 38px rgba(5, 150, 105, .4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s, transform .35s;
    z-index: 200
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0)
}

/* ---------- responsive ---------- */
@media(max-width:1020px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 56px
    }

    .float-stat {
        right: 8px
    }

    .float-ok {
        left: 8px
    }

    .tl {
        grid-template-columns: 1fr;
        height: auto;
        gap: 0;
        padding-left: 34px
    }

    .tl::before {
        left: 25px;
        right: auto;
        top: 10px;
        bottom: 10px;
        border-top: none;
        border-left: 2px dashed var(--blue)
    }

    .step {
        margin-bottom: 26px
    }

    .step .dot {
        left: -9px;
        top: 24px;
        transform: none;
        width: 46px;
        height: 46px;
        font-size: 15px
    }

.scard,
    .step.below .scard,
    .step.above .scard {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        margin-left: 72px
    }

    .ghostn,
    .step.below .ghostn,
    .step.above .ghostn {
        top: -8px;
        bottom: auto;
        left: auto;
        right: 6px;
        transform: none;
        font-size: 76px
    }

    .about-grid,
    .fc-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .faq-left {
        position: static
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 0
    }

    .stat:nth-child(3) {
        border-left: none
    }

    .svc-grid,
    .t-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:780px) {
    .tl {
        padding-left: 10px
    }

    .scard,
    .step.below .scard,
    .step.above .scard {
        margin-left: 46px
    }

    .numbbtn {
        visibility: hidden !important;
    }

    .nav-links {
        display: none
    }

    .nav-cta {
        display: none
    }

    .nav-burger {
        display: block
    }

    nav.open .nav-links {
        display: flex;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, .98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(37, 99, 235, .1)
    }

    .hero {
        padding-top: 108px
    }

    .tb-grid {
        grid-template-columns: 1fr
    }

    .b1,
    .b2 {
        grid-column: 1/-1
    }

    .b6 {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .svc-grid,
    .t-grid {
        grid-template-columns: 1fr
    }

    .svc.pop {
        transform: none
    }

    .stats-row {
        grid-template-columns: 1fr 1fr
    }

    .ghost-iq {
        font-size: 170px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }

    .rv,
    .rv-l,
    .step,
    .tb,
    .lead-card,
    h1 .w {
        opacity: 1 !important;
        transform: none !important
    }

    html {
        scroll-behavior: auto
    }
}

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 2px
}

.logo img {
    width: 180px;
    margin-top: 10px;
}

.f-logo img {
    width: 180px;
}

.numbbtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-family: var(--body);
    font-weight: 700;
    border-radius: 50px;
}

.numbbtn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.newb {
    margin-top: 40px;
}

@media(max-width:780px) {
    .nav-cta {
        display: none !important
    }
}

@media(max-width:1020px) {
    .f-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media(max-width:560px) {
    .f-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .socials {
        justify-content: center;
    }
}

.f-bottom {
    margin-top: 54px;
    border-top: 2px solid var(--blue);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5)
}
@media(max-width:560px) {
    .f-bottom {
        flex-direction: column;
        text-align: center;
    }
    .logo{
        width:140px !important;
    }
    .eyebrow{
        font-size:0.6rem;
    }
}


.numbbtn:hover {
    background-color: #b30000 !important;
    color: #fff !important;
    box-shadow: 0 0 18px rgba(156, 0, 0, .35);
    transform: translateY(-2px);
}