:root {
    --blue: #2563eb;
    --blue-mid: #3b82f6;
    --blue-light: #60a5fa;
    --blue-faint: #eff6ff;
    --blue-faint2: #dbeafe;
    --dark: #0f172a;
    --dark2: #1e293b;
    --mid: #475569;
    --muted: #64748b;
    --muted2: #94a3b8;
    --border: #e2e8f0;
    --border2: #cbd5e1;
    --bg: #f8faff;
    --bg2: #f1f5f9;
    --white: #ffffff;
    --green: #10b981;
    --grid: #94a3b8;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg2);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-mid);
    border-radius: 3px;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(15, 23, 42, .09);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37, 99, 235, .35);
}

.nav-logo-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-logo-text {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--dark);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 8px;
    transition: all .2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--dark);
    background: var(--bg2);
}

.nav-demo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    background: var(--dark);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    transition: all .2s;
    white-space: nowrap;
}

.nav-demo:hover {
    background: var(--dark2);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(15, 23, 42, .25);
}

.nav-demo::after {
    content: '↗';
    font-size: 13px;
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 6% 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #e8f0fe 0%, #f0f7ff 30%, #f9fbff 55%, #eef5ff 80%, #e2eeff 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(148, 163, 184, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, .16) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 60% 40%, black 40%, transparent 80%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.hg1 {
    width: 700px;
    height: 500px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(37, 99, 235, .13), transparent 70%);
}

.hg2 {
    width: 400px;
    height: 400px;
    bottom: 0;
    left: -80px;
    background: radial-gradient(circle, rgba(96, 165, 250, .1), transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px 5px 10px;
    margin-bottom: 36px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--border2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .3px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, .08);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 6px rgba(37, 99, 235, .5);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.35)
    }
}

.hero-h1 {
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -2.5px;
    color: var(--dark);
    margin-bottom: 28px;
}

.hero-h1 .blue-line {
    color: var(--blue);
    border-bottom: 4px solid var(--blue);
    display: inline;
    padding-bottom: 2px;
}

.hero-sub {
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    background: var(--dark);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .2);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .28);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    background: rgba(255, 255, 255, .85);
    color: var(--dark);
    border: 1.5px solid var(--border2);
    cursor: pointer;
    border-radius: 100px;
    transition: all .2s;
}

.btn-outline:hover {
    border-color: var(--blue-mid);
    color: var(--blue);
    background: #fff;
}

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
}

.t-check {
    color: var(--blue);
    font-size: 14px;
}

/* DIVIDER */
.sdiv {
    height: 1px;
    background: var(--border);
}

/* SECTION BASE */
section {
    padding: 100px 6%;
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--blue);
    border-radius: 1px;
}

.s-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 18px;
}

.s-sub {
    font-size: 17px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
    max-width: 520px;
}

/* AUTOMATION */
#automation {
    background: var(--bg);
}

.auto-head {
    text-align: center;
    margin-bottom: 64px;
}

.auto-head .eyebrow {
    justify-content: center;
}

.auto-head .s-sub {
    margin: 0 auto;
    text-align: center;
    max-width: 540px;
}

.t-wrap {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(15, 23, 42, .07);
}

.t-bar {
    display: grid;
    grid-template-columns: 1fr 140px 1fr;
    border-bottom: 1px solid var(--border);
}

.sh {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sh.ml {
    background: #fff8f6;
    color: #b91c1c;
    border-right: 1px solid var(--border);
}

.sh.al {
    background: var(--blue-faint);
    color: var(--blue);
}

.sh .hdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.sh.ml .hdot {
    background: #ef4444;
}

.sh.al .hdot {
    background: var(--blue);
    box-shadow: 0 0 6px rgba(37, 99, 235, .4);
}

.ch {
    background: var(--bg2);
    padding: 20px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.t-body {
    display: grid;
    grid-template-columns: 1fr 140px 1fr;
}

.sb {
    padding: 12px 0;
}

.sb.mb {
    border-right: 1px solid var(--border);
    background: #fff;
    transition: opacity .8s, filter .8s;
}

.sb.mb.fading {
    opacity: .2;
    filter: grayscale(.6);
}

.sb.ab {
    background: #fff;
}

.wr {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    border-bottom: 1px solid var(--border);
    transition: background .2s;
}

.wr:last-child {
    border-bottom: none;
}

.wr:hover {
    background: var(--bg);
}

.wi {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.mb .wi {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.ab .wi {
    background: var(--blue-faint);
    border: 1px solid var(--blue-faint2);
}

.wt {
    flex: 1;
}

.wn {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.wd {
    font-size: 12px;
    color: var(--muted2);
}

.wb {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
    font-family: 'JetBrains Mono', monospace;
}

.br {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.bb {
    background: var(--blue-faint);
    color: var(--blue);
    border: 1px solid var(--blue-faint2);
    display: none;
}

.bb.show {
    display: inline-block;
}

.br.hide {
    display: none;
}

.cb {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    background: var(--bg2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 12px;
}

.tbtn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .25);
    transition: all .25s;
}

.tbtn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37, 99, 235, .35);
    background: var(--blue);
}

.tbtn.done {
    background: var(--green);
    box-shadow: 0 4px 16px rgba(16, 185, 129, .4);
}

.tbtn.running {
    animation: tPulse 1s ease infinite;
}

@keyframes tPulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(37, 99, 235, .3)
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 99, 235, .7)
    }
}

.tlbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    line-height: 1.4;
}

.tpw {
    width: 52px;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    display: none;
}

.tpw.show {
    display: block;
}

.tp {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    border-radius: 2px;
    transition: width 3s linear;
}

.ab .wr {
    opacity: .18;
    transition: opacity .5s, transform .5s;
}

.ab .wr.on {
    opacity: 1;
}

.mstrip {
    display: none;
    padding: 20px 32px;
    background: linear-gradient(90deg, var(--blue-faint), rgba(239, 246, 255, 0));
    border-top: 1px solid var(--blue-faint2);
}

.mstrip.show {
    display: flex;
    gap: 40px;
    animation: fadeSlide .4s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.msv {
    font-size: 24px;
    font-weight: 800;
    color: var(--blue);
}

.msl {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* SERVICES */
#services {
    background: var(--white);
}

.svc-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}

.svc-copy {
    position: sticky;
    top: 100px;
}

.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sc {
    padding: 28px 24px;
    border-radius: 16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.sc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.sc:hover {
    border-color: var(--blue-faint2);
    box-shadow: 0 8px 28px rgba(37, 99, 235, .1);
    transform: translateY(-2px);
}

.sc:hover::before {
    transform: scaleX(1);
}

.sc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blue-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
    border: 1px solid var(--blue-faint2);
}

.sc-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.sc-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

.sc-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-faint);
    border: 1px solid var(--blue-faint2);
    padding: 3px 10px;
    border-radius: 100px;
}

/* DASHBOARD */
#dashboard {
    background: var(--bg);
}

.db-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.db-mock {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(15, 23, 42, .1), 0 2px 8px rgba(15, 23, 42, .04);
}

.db-top {
    background: var(--bg2);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.dc {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dc.r {
    background: #ff5f57;
}

.dc.y {
    background: #ffbd2e;
}

.dc.g {
    background: #28c940;
}

.db-url {
    font-size: 11px;
    color: var(--muted2);
    font-family: 'JetBrains Mono', monospace;
    margin-left: 8px;
}

.db-in {
    padding: 20px;
}

.db-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.kpi {
    padding: 14px 12px;
    border-radius: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
}

.kv {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.kl {
    font-size: 10px;
    font-weight: 500;
    color: var(--muted2);
    margin-top: 3px;
}

.kc {
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    margin-top: 5px;
    font-family: 'JetBrains Mono', monospace;
}

.db-chart {
    height: 100px;
    background: var(--bg);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.dbar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    animation: barUp .9s ease backwards;
}

@keyframes barUp {
    from {
        height: 0 !important
    }
}

.dbar.b1 {
    background: linear-gradient(180deg, var(--blue-mid), #1d4ed8);
}

.dbar.b2 {
    background: linear-gradient(180deg, var(--blue-light), var(--blue-mid));
}

.dbar.b3 {
    background: linear-gradient(180deg, #93c5fd, var(--blue-light));
}

.db-ags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ag {
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.agdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--green);
    box-shadow: 0 0 6px rgba(16, 185, 129, .5);
    animation: agP 2s ease infinite;
}

@keyframes agP {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(16, 185, 129, .5)
    }

    50% {
        box-shadow: 0 0 10px rgba(16, 185, 129, .9)
    }
}

.ag-n {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
}

.ag-t {
    font-size: 11px;
    color: var(--muted2);
}

.ag-l {
    font-size: 11px;
    font-weight: 600;
    color: var(--blue);
    font-family: 'JetBrains Mono', monospace;
    margin-left: auto;
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
}

.fi {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.fck {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    background: var(--blue-faint);
    border: 1.5px solid var(--blue-faint2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--blue);
}

.ft {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.55;
}

.ft strong {
    color: var(--dark);
    font-weight: 600;
}

/* WHY */
#why {
    background: var(--white);
}

.why-head {
    text-align: center;
    margin-bottom: 64px;
}

.why-head .eyebrow {
    justify-content: center;
}

.why-head .s-sub {
    margin: 0 auto;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wc {
    padding: 36px 28px;
    border-radius: 16px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    transition: all .25s;
}

.wc:hover {
    border-color: var(--blue-faint2);
    box-shadow: 0 6px 24px rgba(37, 99, 235, .09);
    transform: translateY(-3px);
}

.wnum {
    font-size: 48px;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(135deg, var(--blue-mid), #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.wt {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.wd2 {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* RESULTS */
#results {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.res-glow {
    position: absolute;
    width: 600px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .2), transparent 70%);
    top: -100px;
    right: -100px;
    filter: blur(60px);
    pointer-events: none;
}

.res-head {
    text-align: center;
    margin-bottom: 64px;
}

.res-head .eyebrow {
    justify-content: center;
    color: var(--blue-light);
}

.res-head .eyebrow::before {
    background: var(--blue-light);
}

.res-head .s-title {
    color: #fff;
}

.res-head .s-sub {
    margin: 0 auto;
    text-align: center;
    color: #94a3b8;
}

.res-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.rc {
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.rc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
}

.rc:hover {
    border-color: rgba(96, 165, 250, .3);
    background: rgba(37, 99, 235, .07);
}

.rnum {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 6px;
}

.rnum span {
    color: var(--blue-light);
}

.rlbl {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.5;
}

.logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.lp {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    transition: all .25s;
}

.lp:hover {
    color: rgba(255, 255, 255, .65);
    border-color: rgba(255, 255, 255, .2);
}

/* CONTACT */
#contact {
    background: var(--bg);
}

.ct-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cf-box {
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid var(--border);
    padding: 44px 40px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, .07);
}

.cf-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -.5px;
}

.cf-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.finput,
.fta {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color .2s, background .2s;
    outline: none;
}

.finput::placeholder,
.fta::placeholder {
    color: var(--muted2);
}

.finput:focus,
.fta:focus {
    border-color: var(--blue-mid);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .1);
}

.fta {
    height: 120px;
    resize: none;
}

.fsub {
    width: 100%;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    background: var(--dark);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .2);
}

.fsub:hover {
    background: var(--blue);
    box-shadow: 0 6px 20px rgba(37, 99, 235, .35);
    transform: translateY(-1px);
}

.f-mail {
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}

.f-mail a {
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
}

.f-mail a:hover {
    text-decoration: underline;
}

.ci {
    padding-top: 8px;
}

.ci-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.ci-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 44px;
}

.ci-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blue-faint);
    border: 1px solid var(--blue-faint2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ci-lbl {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px;
}

.ci-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

/* FOOTER */
footer {
    background: var(--dark);
    padding: 40px 6%;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.fin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.flogo {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
}

.fnav {
    display: flex;
    gap: 28px;
}

.fnav a {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

.fnav a:hover {
    color: rgba(255, 255, 255, .65);
}

.fcopy {
    font-size: 12px;
    color: rgba(255, 255, 255, .22);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

/* RESPONSIVE */
@media(max-width:960px) {
    .svc-layout {
        grid-template-columns: 1fr;
    }

    .svc-copy {
        position: static;
    }

    .db-layout {
        grid-template-columns: 1fr;
    }

    .ct-inner {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .res-grid {
        grid-template-columns: 1fr 1fr;
    }

    .t-bar,
    .t-body {
        grid-template-columns: 1fr;
    }

    .ch,
    .cb {
        display: none;
    }
}

@media(max-width:640px) {
    section {
        padding: 72px 5%;
    }

    .hero-h1 {
        letter-spacing: -1.5px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .res-grid {
        grid-template-columns: 1fr;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .db-kpis {
        grid-template-columns: 1fr 1fr;
    }

    .f-row {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}