:root {
    --blue: #2563EB;
    --blue-dark: #1D4ED8;
    --navy: #0F172A;
    --sky: #60A5FA;
    --green: #22C55E;
    --orange: #F97316;
    --bg: #F8FAFC;
    --text: #111827;
    --border: #E5E7EB;
    --muted: #64748B;
    --white: #FFFFFF;
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.14);
    --container: 1240px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--blue);
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    padding: 7px 14px;
    border-radius: 100px;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .18);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 3.6vw, 38px);
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-top: 10px;
}

.section-sub {
    font-size: 15.5px;
    color: var(--muted);
    max-width: 520px;
    margin: 12px auto 0;
}

.section-head {
    margin-bottom: 44px;
}

.section-head.center {
    text-align: center;
}

section {
    padding: 88px 0;
}

@media(max-width:768px) {
    section {
        padding: 56px 0;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14.5px;
    padding: 13px 24px;
    border-radius: 100px;
    transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--blue-dark);
}

.btn-outline {
    background: #fff;
    color: var(--blue);
    border: 1.5px solid var(--blue);
}

.btn-outline:hover {
    background: #EFF6FF;
    transform: translateY(-2px);
}

.btn-orange {
    background: linear-gradient(135deg, var(--orange), #FB923C);
    color: #fff;
    box-shadow: 0 8px 20px rgba(249, 115, 22, .32);
}

.btn-orange:hover {
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--blue);
}

.btn-ghost {
    color: var(--blue);
    font-weight: 600;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-ghost svg {
    transition: transform .2s;
}

.btn-ghost:hover svg {
    transform: translateX(3px);
}

/* NAVBAR */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
}

.logo .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.logo span {
    color: var(--blue);
}

nav.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    padding: 6px 2px;
}

nav.main-nav a.active {
    color: var(--blue);
}

nav.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 2px;
    background: var(--blue);
}

nav.main-nav a .caret {
    width: 8px;
    height: 8px;
    border-right: 1.6px solid var(--muted);
    border-bottom: 1.6px solid var(--muted);
    transform: rotate(45deg);
    margin-top: -3px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    display: none;
}

@media(min-width:1024px) {
    .nav-cta {
        display: inline-flex;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger span {
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
}

@media(min-width:1024px) {
    .hamburger {
        display: none;
    }
}

@media(max-width:1023px) {
    nav.main-nav {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 1200;
    padding: 100px 28px 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
}

.mobile-close {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 26px;
}

.floating-cta {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    display: none;
    width: calc(100% - 40px);
    max-width: 320px;
}

@media(max-width:768px) {
    .floating-cta {
        display: block;
    }
}

.floating-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, var(--orange), #FB923C);
    color: #fff;
    padding: 15px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14.5px;
    box-shadow: 0 12px 30px rgba(249, 115, 22, .4);
}

/* HERO */
.hero {
    position: relative;
    padding: 150px 0 70px;
    overflow: hidden;
    background: radial-gradient(650px 420px at 8% -10%, rgba(96, 165, 250, .22), transparent 60%), var(--bg);
}

.hero .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media(max-width:960px) {
    .hero .wrap {
        grid-template-columns: 1fr;
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -.02em;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.12;
    color: var(--navy);
    margin-top: 18px;
}

.hero h1 .hl {
    color: var(--blue);
}

.hero p.lead {
    margin-top: 18px;
    font-size: 15.5px;
    color: var(--muted);
    max-width: 460px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.trust-row {
    display: flex;
    gap: 22px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.trust-row .ti {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--navy);
}

.trust-row .ti svg {
    color: var(--blue);
    flex-shrink: 0;
}

/* dashboard illustration */
.dash-scene {
    position: relative;
    height: 460px;
    z-index: 2;
}

.orbit-col {
    position: absolute;
    left: -6px;
    top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 3;
}

.orbit-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.dash-card {
    position: absolute;
    top: 0;
    left: 70px;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 22px;
}

.dash-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dash-head .t {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
}

.dash-head .range {
    font-size: 11.5px;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.dash-stat {
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
}

.dash-stat .l {
    font-size: 10.5px;
    color: var(--muted);
    font-family: var(--font-mono);
}

.dash-stat .v {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    margin-top: 4px;
}

.dash-stat .g {
    font-size: 10.5px;
    color: var(--green);
    font-weight: 600;
    margin-top: 2px;
}

.dash-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 12px;
}

.dash-chart-box {
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
}

.dash-chart-box .l {
    font-size: 10.5px;
    color: var(--muted);
    font-family: var(--font-mono);
    margin-bottom: 6px;
}

.dash-chart-box svg {
    width: 100%;
    height: 70px;
}

.dash-channels {
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.dash-channels .l {
    font-size: 10.5px;
    color: var(--muted);
    font-family: var(--font-mono);
    margin-bottom: 2px;
}

.chan-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
}

.chan-row .name {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-weight: 500;
}

.chan-row .dot {
    width: 7px;
    height: 7px;
    border-radius: 2px;
}

.chan-row .val {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--navy);
}

.float-badge {
    position: absolute;
    z-index: 4;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.product-float {
    bottom: 30px;
    left: 70px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-float .thumb {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg, #E2E8F0, #F1F5F9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.product-float .pn {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}

.product-float .pp {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--muted);
}

.sales-float {
    bottom: 44px;
    right: -6px;
    background: linear-gradient(135deg, var(--blue), #7C3AED);
    color: #fff;
    padding: 14px 18px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 16px 30px rgba(37, 99, 235, .35);
}

.sales-float .sv {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 16px;
}

.sales-float .sg {
    font-size: 10px;
    opacity: .85;
    margin-top: 2px;
}

.partner-badge {
    top: -8px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.dot-grid {
    position: absolute;
    top: -20px;
    right: -30px;
    width: 110px;
    height: 70px;
    opacity: .5;
    z-index: 1;
}

/* TRUSTED */
.trusted {
    padding: 44px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trusted .label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.marquee {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: scroll-left 26s linear infinite;
    align-items: center;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: #475569;
    white-space: nowrap;
}

.brand-lockup .ic {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media(max-width:960px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 26px 24px;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s, border-color .3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, .25);
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
}

.service-card p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.55;
}

.service-card .btn-ghost {
    margin-top: 16px;
}

/* PROCESS */
.process-track {
    position: relative;
    padding-top: 10px;
}

.process-line {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 14px);
    z-index: 0;
}

.process-line-fill {
    position: absolute;
    top: 32px;
    left: 0;
    height: 2px;
    background: var(--blue);
    z-index: 1;
    width: 0%;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    position: relative;
    z-index: 2;
}

@media(max-width:900px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-line, .process-line-fill {
        display: none;
    }
}

@media(max-width:520px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

.process-step {
    text-align: center;
}

.process-dot {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, .3);
    transition: transform .3s;
}

.process-step:hover .process-dot {
    transform: scale(1.08);
}

.process-step h4 {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
}

.process-step p {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 5px;
    line-height: 1.5;
}

/* METRICS bar */
.metrics-bar {
    background: var(--navy);
    padding: 34px 0;
}

.metrics-bar .wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.mb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    flex: 1;
    min-width: 140px;
}

.mb-item .ic {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.mb-item .v {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 19px;
}

.mb-item .l {
    font-size: 11px;
    color: #94A3B8;
    margin-top: 2px;
}

/* CASE STUDIES */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media(max-width:960px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

.case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: transform .3s, box-shadow .3s;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.case-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.case-top .cname {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16.5px;
    color: var(--navy);
}

.case-top .ctag {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 2px;
}

.case-top .cico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.case-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.case-stats .cs {}

.case-stats .cs .k {
    font-size: 10.5px;
    color: var(--muted);
}

.case-stats .cs .v {
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 2px;
}

.case-chart {
    margin: 10px 0;
}

.case-chart svg {
    width: 100%;
    height: 56px;
}

.case-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.case-badge {
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 100px;
}

/* TESTIMONIALS */
.testi-wrap {
    position: relative;
}

.testi-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media(max-width:900px) {
    .testi-track {
        grid-template-columns: 1fr;
    }
}

.testi-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testi-card .quote-mark {
    font-family: var(--font-display);
    font-size: 44px;
    color: #DBEAFE;
    line-height: 1;
    position: absolute;
    top: 14px;
    right: 20px;
}

.stars {
    color: var(--orange);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testi-card p {
    font-size: 13.5px;
    color: var(--text);
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 20px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-mono);
    font-size: 13px;
    flex-shrink: 0;
}

.testi-person .pname {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
}

.testi-person .pco {
    font-size: 12px;
    color: var(--muted);
}

.testi-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.testi-arrows button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all .2s;
}

.testi-arrows button:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
}

@media(max-width:900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    transition: transform .3s;
}

.price-card:hover {
    transform: translateY(-4px);
}

.price-card.highlight {
    background: var(--navy);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: scale(1.03);
}

.badge-pop {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    font-family: var(--font-mono);
}

.price-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
}

.price-card .desc {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
}

.price-card.highlight .desc {
    color: #94A3B8;
}

.price-feats {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.price-feats li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 13.5px;
}

.price-feats li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--green);
}

.price-card .btn {
    width: 100%;
    margin-top: 26px;
}

/* FAQ */
.faq-list {
    max-width: 740px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 4px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

.faq-q .plus {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
}

.faq-q .plus::before, .faq-q .plus::after {
    content: "";
    position: absolute;
    background: var(--blue);
    border-radius: 2px;
}

.faq-q .plus::before {
    width: 13px;
    height: 2px;
    top: 9px;
    left: 3.5px;
}

.faq-q .plus::after {
    width: 2px;
    height: 13px;
    top: 3.5px;
    left: 9px;
    transition: transform .3s;
}

.faq-item.open .plus::after {
    transform: rotate(90deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-a p {
    font-size: 13.5px;
    color: var(--muted);
    padding: 0 4px 20px;
}

/* LEAD GEN */
.leadgen-card {
    background: linear-gradient(120deg, var(--blue), #4F46E5);
    border-radius: 32px;
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.leadgen-card::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    background: #fff;
    opacity: .08;
    border-radius: 50%;
    bottom: -160px;
    left: -100px;
}

.leadgen-card .grid2 {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
    position: relative;
    z-index: 2;
}

@media(max-width:960px) {
    .leadgen-card .grid2 {
        grid-template-columns: 1fr;
    }

    .leadgen-card {
        padding: 34px 24px;
    }
}

.leadgen-card h2 {
    color: #fff;
}

.leadgen-card .section-sub {
    color: #DBEAFE;
    margin-left: 0;
}

.lead-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}

.lead-benefits li {
    display: flex;
    gap: 9px;
    align-items: center;
    font-size: 13.5px;
    font-weight: 500;
}

.lead-benefits li svg {
    color: #BBF7D0;
    flex-shrink: 0;
}

.cart-illustration {
    margin-top: 34px;
    opacity: .9;
}

.form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    color: var(--text);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media(max-width:520px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}

.field input, .field select, .field textarea {
    border: 1.5px solid var(--border);
    border-radius: 9px;
    padding: 11px 13px;
    font-size: 13.5px;
    color: var(--text);
    transition: border-color .2s;
    background: #fff;
}

.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--blue);
}

.field.full {
    grid-column: 1/-1;
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}

.check-opt {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--text);
}

.check-opt input {
    accent-color: var(--blue);
    width: 15px;
    height: 15px;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    font-size: 11.5px;
    color: var(--muted);
}

.consent input {
    margin-top: 3px;
    accent-color: var(--blue);
}

.form-card .btn {
    width: 100%;
    margin-top: 18px;
}

.form-note {
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    margin-top: 10px;
}

.success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-overlay.show {
    display: flex;
}

.success-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    max-width: 370px;
    text-align: center;
    animation: pop .35s cubic-bezier(.2, .8, .2, 1);
}

@keyframes pop {
    from {
        transform: scale(.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-box .check-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(34, 197, 94, .12);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.success-box h3 {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--navy);
}

.success-box p {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 8px;
}

.success-box .btn {
    margin-top: 20px;
}

/* FINAL CTA */
.final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark) 60%, var(--navy));
    color: #fff;
    text-align: center;
}

.final-cta::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    background: var(--sky);
    opacity: .22;
    filter: blur(90px);
    border-radius: 50%;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -.02em;
    position: relative;
    z-index: 1;
}

.final-cta p {
    margin-top: 12px;
    font-size: 16px;
    color: #DBEAFE;
    position: relative;
    z-index: 1;
}

.final-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-outline-white {
    border: 1.5px solid rgba(255, 255, 255, .5);
    color: #fff;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .12);
}

/* FOOTER */
footer {
    background: var(--navy);
    color: #94A3B8;
    padding: 60px 0 26px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

@media(max-width:900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(max-width:600px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-top .logo {
    color: #fff;
}

.footer-top p.desc {
    font-size: 12.5px;
    margin-top: 12px;
    max-width: 230px;
    line-height: 1.6;
}

.footer-col h5 {
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col a {
    font-size: 12.5px;
    transition: color .2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col .contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
}

.footer-col .contact-row svg {
    color: var(--sky);
    flex-shrink: 0;
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-row a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .2s;
    font-size: 13px;
}

.social-row a:hover {
    background: var(--blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

#loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    display: flex;
    gap: 6px;
}

.loader-mark span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    animation: bounce 1s infinite ease-in-out;
}

.loader-mark span:nth-child(2) {
    background: var(--sky);
    animation-delay: .15s;
}

.loader-mark span:nth-child(3) {
    background: var(--orange);
    animation-delay: .3s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: .5;
    }

    40% {
        transform: translateY(-12px);
        opacity: 1;
    }
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.service-icon i {
    line-height: 1;
}

.process-dot {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #EEF4FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.process-dot i {
    line-height: 1;
}

:root {
    --blue: #2563EB;
    --navy: #0F172A;
    --sky: #60A5FA;
    --green: #22C55E;
    --bg: #F8FAFC;
    --text: #111827;
    --border: #E5E7EB;
    --muted: #64748B;
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-lg: 22px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
}

.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .18);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 3.6vw, 38px);
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-top: 10px;
}

.section-sub {
    font-size: 15.5px;
    color: var(--muted);
    max-width: 520px;
    margin: 12px auto 0;
}

.section-head {
    margin-bottom: 44px;
}

.section-head.center {
    text-align: center;
}

section {
    padding: 88px 0;
}

@media(max-width:768px) {
    section {
        padding: 56px 0;
    }
}

/* WHY CHOOSE US - interactive */
.why-interactive {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 44px;
    align-items: stretch;
}

@media(max-width:900px) {
    .why-interactive {
        grid-template-columns: 1fr;
    }
}

.why-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-tab {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    width: 100%;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1.5px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: all .25s cubic-bezier(.2, .8, .2, 1);
    font-family: inherit;
}

.why-tab:hover {
    border-color: #BFDBFE;
    background: #F8FBFF;
}

.why-tab.active {
    border-color: var(--blue);
    background: linear-gradient(135deg, #EFF6FF, #F8FBFF);
    box-shadow: 0 10px 26px rgba(37, 99, 235, .14);
}

.why-tab .wt-num {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .25s;
}

.why-tab.active .wt-num {
    background: var(--blue);
    color: #fff;
}

.why-tab .wt-body h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.why-tab .wt-body p {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .3s;
}

.why-tab.active .wt-body p {
    max-height: 60px;
    opacity: 1;
    margin-top: 5px;
}

.why-tab .wt-arrow {
    margin-left: auto;
    color: var(--blue);
    opacity: 0;
    transform: translateX(-6px);
    transition: all .25s;
    flex-shrink: 0;
}

.why-tab.active .wt-arrow {
    opacity: 1;
    transform: translateX(0);
}

.why-panel {
    position: relative;
    background: #1d4ed8;
    border-radius: var(--radius-lg);
    padding: 38px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    min-height: 420px;
}

.why-panel::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--blue);
    opacity: .28;
    filter: blur(90px);
    border-radius: 50%;
    top: -120px;
    right: -100px;
}

.why-panel-inner {
    position: relative;
    z-index: 2;
}

.wp-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.why-panel h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin: 0;
}

.why-panel p.wp-desc {
    font-size: 14.5px;
    color: #CBD5E1;
    margin-top: 12px;
    max-width: 420px;
    line-height: 1.65;
}

.wp-visual {
    margin-top: 30px;
    display: none;
}

.wp-visual.active {
    display: block;
}

.wp-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wp-chip {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #E2E8F0;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 100px;
}

.wp-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 80px;
}

.wp-bars .bar {
    flex: 1;
    background: linear-gradient(180deg, var(--sky), var(--blue));
    border-radius: 6px 6px 0 0;
    position: relative;
}

.wp-bars .bar span {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: #94A3B8;
}

.wp-report {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wp-report .rr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
}

.wp-report .rr .rk {
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wp-report .rr .rk svg {
    color: var(--green);
}

.wp-report .rr .rv {
    font-family: var(--font-mono);
    font-weight: 700;
    color: #fff;
}

.wp-creatives {
    display: flex;
    gap: 12px;
}

.wp-cr {
    flex: 1;
    aspect-ratio: 3/4;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: transform .3s;
}

.wp-cr:hover {
    transform: translateY(-5px);
}

.wp-funnel {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wp-fstep {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12.5px;
    color: #E2E8F0;
}

.wp-fstep .fnum {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    flex-shrink: 0;
}

.wp-cycle {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wp-cycle .cy {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
    color: #E2E8F0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wp-cycle .cy .dotpulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .25);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}