/* ==========================================================================
   Ascendemy design system
   Premium blue-and-white B2B technology + consulting interface.
   ========================================================================== */

:root {
    --ink: #101114;
    --muted: #5f6368;
    --muted-2: #7d8289;
    --line: #e6e8eb;
    --line-strong: #d8dbe0;
    --surface: #ffffff;
    --surface-soft: #f7f8fa;
    --surface-blue: #f3f7ff;
    --blue: #1769e0;
    --blue-dark: #0f56be;
    --navy: #0c1626;
    --green: #18875d;
    --red: #b42318;
    --amber: #b7791f;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --shadow-sm: 0 1px 2px rgba(16, 24, 40, .04), 0 8px 24px rgba(16, 24, 40, .05);
    --shadow-md: 0 18px 55px rgba(18, 31, 53, .10);
    --page: 1180px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--surface);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--surface);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: -.008em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

button, input, select, textarea {
    font: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

img, svg {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4, p {
    margin: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

::selection {
    color: #071426;
    background: rgba(23, 105, 224, .18);
}

/* Accessible focus + skip link ------------------------------------------- */

:focus-visible {
    outline: 3px solid rgba(23, 105, 224, .55);
    outline-offset: 2px;
    border-radius: 6px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 100;
    padding: 10px 16px;
    color: #fff;
    background: var(--ink);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 560;
    transition: top .18s ease;
}

    .skip-link:focus {
        top: 12px;
    }

.container {
    width: min(calc(100% - 40px), var(--page));
    margin-inline: auto;
}

/* Header + navigation ---------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 66px;
    background: rgba(255, 255, 255, .86);
    border-bottom: 1px solid rgba(226, 229, 234, .8);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 620;
    letter-spacing: -.025em;
    white-space: nowrap;
}

.brand-mark {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(145deg, #2d7df0, #1155c0);
    border-radius: 9px;
    box-shadow: 0 8px 18px rgba(23, 105, 224, .20);
}

    .brand-mark svg {
        width: 17px;
        height: 17px;
    }

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

    .desktop-nav a {
        color: #4f545b;
        font-size: 14px;
        font-weight: 500;
        transition: color .18s ease;
    }

        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: var(--ink);
        }

.nav-cta, .button-primary, .button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 17px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 580;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.nav-cta, .button-primary {
    color: #fff;
    background: var(--ink);
    box-shadow: 0 7px 20px rgba(16, 17, 20, .12);
}

    .nav-cta:hover, .button-primary:hover {
        transform: translateY(-1px);
        background: #26282c;
        box-shadow: 0 10px 24px rgba(16, 17, 20, .16);
    }

    .button-primary.blue {
        background: var(--blue);
    }

        .button-primary.blue:hover {
            background: var(--blue-dark);
        }

.button-secondary {
    color: #2f3338;
    background: #fff;
    border-color: var(--line-strong);
}

    .button-secondary:hover {
        transform: translateY(-1px);
        border-color: #bfc4cb;
        box-shadow: var(--shadow-sm);
    }

.button-ghost {
    background: transparent;
    box-shadow: none;
    color: #2f3338;
    border-color: transparent;
}

    .button-ghost:hover {
        background: var(--surface-soft);
    }

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
}

    .menu-button svg {
        width: 20px;
        height: 20px;
    }

.mobile-nav {
    display: none;
    position: fixed;
    inset: 66px 0 auto 0;
    z-index: 45;
    padding: 12px 20px 20px;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 35px rgba(16, 24, 40, .08);
}

    .mobile-nav.open {
        display: grid;
        gap: 4px;
    }

    .mobile-nav a {
        padding: 12px 10px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 520;
    }

        .mobile-nav a:hover {
            background: var(--surface-soft);
        }

    .mobile-nav .mobile-cta {
        margin-top: 8px;
    }

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 66px 0 0 0;
    z-index: 44;
    background: rgba(12, 22, 38, .28);
}

    .nav-backdrop.open {
        display: block;
    }

body.nav-open {
    overflow: hidden;
}

/* Hero ------------------------------------------------------------------- */

.hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0 40px;
}

    .hero::before {
        content: "";
        position: absolute;
        width: 620px;
        height: 620px;
        top: -340px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 50%;
        background: radial-gradient(circle, rgba(88, 151, 246, .16), rgba(88, 151, 246, 0) 68%);
        pointer-events: none;
    }

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .93fr) minmax(440px, 1.07fr);
    align-items: center;
    gap: 62px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #315b98;
    background: #f4f7fc;
    border: 1px solid #e1e8f3;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 560;
    letter-spacing: .01em;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(23, 105, 224, .09);
}

.hero h1 {
    max-width: 660px;
    margin-top: 21px;
    font-size: clamp(43px, 5.2vw, 68px);
    line-height: 1.01;
    letter-spacing: -.058em;
    font-weight: 640;
}

.gradient-word {
    color: #1f6ed9;
    background: linear-gradient(110deg, #115cc8, #3e82e6 58%, #635dd5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-copy {
    max-width: 600px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: -.012em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 31px;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 25px;
    margin-top: 30px;
    color: #656a72;
    font-size: 13px;
}

    .hero-note span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .hero-note svg {
        width: 15px;
        height: 15px;
        color: var(--green);
    }

/* Product window mockup -------------------------------------------------- */

.product-window {
    position: relative;
    border: 1px solid #dfe3e9;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 34px 90px rgba(19, 36, 66, .14), 0 6px 20px rgba(19, 36, 66, .06);
    overflow: hidden;
}

    .product-window::before {
        content: "";
        position: absolute;
        inset: -40px;
        z-index: -1;
        border-radius: 44px;
        background: linear-gradient(135deg, rgba(168, 205, 255, .30), rgba(222, 213, 255, .22));
        filter: blur(28px);
    }

.window-bar {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
    background: rgba(250, 251, 252, .95);
    border-bottom: 1px solid #e8eaed;
}

.window-dots {
    display: flex;
    gap: 7px;
}

    .window-dots i {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #cbd0d7;
    }

.window-label {
    color: #767c84;
    font-size: 11px;
    font-weight: 550;
}

.dashboard {
    display: grid;
    grid-template-columns: 72px 1fr;
    min-height: 430px;
    background: #f7f8fa;
}

.dashboard-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 12px;
    background: #101725;
}

.side-logo {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: 15px;
    color: #fff;
    background: var(--blue);
    border-radius: 10px;
}

    .side-logo svg {
        width: 16px;
        height: 16px;
    }

.side-item {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #6f7888;
    border-radius: 11px;
}

    .side-item.active {
        color: #8dbbff;
        background: rgba(255, 255, 255, .09);
    }

    .side-item svg {
        width: 16px;
        height: 16px;
    }

.dashboard-main {
    padding: 22px;
}

.dash-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.dash-overline {
    color: #8a9098;
    font-size: 9px;
    font-weight: 650;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.dash-title {
    margin-top: 5px;
    font-size: 17px;
    font-weight: 610;
    letter-spacing: -.025em;
}

.dash-filter {
    padding: 7px 10px;
    color: #6a7078;
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 9px;
    font-size: 9px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 17px;
}

.metric-card, .chart-card, .activity-card {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 14px;
}

.metric-card {
    padding: 14px;
}

.metric-label {
    color: #8d9299;
    font-size: 8px;
    font-weight: 650;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.metric-value {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 620;
    letter-spacing: -.035em;
}

.metric-change {
    margin-top: 4px;
    color: var(--green);
    font-size: 9px;
    font-weight: 600;
}

    .metric-change.blue {
        color: var(--blue);
    }

.chart-card {
    margin-top: 10px;
    padding: 15px;
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chart-title {
    font-size: 11px;
    font-weight: 600;
}

.chart-sub {
    margin-top: 2px;
    color: #959aa1;
    font-size: 8px;
}

.live-pill {
    padding: 4px 7px;
    color: #2762b0;
    background: #edf4ff;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 600;
}

.chart {
    position: relative;
    height: 132px;
    margin-top: 13px;
    overflow: hidden;
}

.chart-lines {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
}

    .chart-lines span {
        border-bottom: 1px solid #eff1f3;
    }

.chart svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.chart-line-animate {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: draw-line 2.4s ease forwards .25s;
}

@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

.activity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.activity-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px;
}

.activity-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    color: var(--green);
    background: #eef9f4;
    border-radius: 9px;
}

    .activity-icon.blue {
        color: var(--blue);
        background: #edf4ff;
    }

    .activity-icon svg {
        width: 14px;
        height: 14px;
    }

.activity-title {
    font-size: 9px;
    font-weight: 600;
}

.activity-sub {
    margin-top: 1px;
    color: #999ea5;
    font-size: 8px;
}

/* Platform strip --------------------------------------------------------- */

.platform-strip {
    padding: 19px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fbfbfc;
}

.platform-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.platform-label {
    color: #8a8f96;
    font-size: 12px;
}

.platform-name {
    color: #4b5057;
    font-size: 13px;
    font-weight: 560;
}

/* Sections --------------------------------------------------------------- */

.section {
    padding: 64px 0;
}

    .section.soft {
        background: var(--surface-soft);
        border-top: 1px solid #eff0f2;
        border-bottom: 1px solid #eff0f2;
    }

    .section.dark {
        color: #fff;
        background: var(--navy);
    }

    .section.tight {
        padding: 44px 0;
    }

.section-head {
    max-width: 720px;
}

    .section-head.center {
        margin-inline: auto;
        text-align: center;
    }

.section-kicker {
    color: var(--blue);
    font-size: 12px;
    font-weight: 620;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-title {
    margin-top: 13px;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -.045em;
    font-weight: 610;
}

.section-copy {
    max-width: 650px;
    margin-top: 17px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.68;
}

.section-head.center .section-copy {
    margin-inline: auto;
}

.dark .section-title {
    color: #fff;
}

.dark .section-copy {
    color: #afb8c7;
}

.dark .section-kicker {
    color: #86b8ff;
}

/* Service cards ---------------------------------------------------------- */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.service-card {
    min-height: 255px;
    padding: 25px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

    .service-card:hover {
        transform: translateY(-3px);
        border-color: #cbd5e3;
        box-shadow: var(--shadow-sm);
    }

.service-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: #eef5ff;
    border-radius: 12px;
}

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

.service-card h3 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 610;
    letter-spacing: -.026em;
}

.service-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.62;
}

.service-list {
    display: grid;
    gap: 7px;
    margin-top: 17px;
    color: #52575e;
    font-size: 13px;
}

    .service-list li {
        display: flex;
        gap: 8px;
        align-items: flex-start;
    }

    .service-list svg {
        width: 14px;
        height: 14px;
        margin-top: 3px;
        color: var(--blue);
        flex: 0 0 auto;
    }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 580;
}

    .card-link svg {
        width: 15px;
        height: 15px;
        transition: transform .18s ease;
    }

    .card-link:hover svg {
        transform: translateX(3px);
    }

/* Solutions -------------------------------------------------------------- */

.solution-layout {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 60px;
    align-items: start;
}

.solution-list {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.solution-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 21px;
    background: #fff;
    transition: background .18s ease;
}

    .solution-row:hover {
        background: var(--surface-blue);
    }

.solution-number {
    color: #9ca1a8;
    font-size: 12px;
    font-weight: 620;
}

.solution-row h3 {
    font-size: 16px;
    font-weight: 600;
}

.solution-row p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
}

.solution-arrow {
    color: #9ca1a8;
}

    .solution-arrow svg {
        width: 18px;
        height: 18px;
    }

.outcome-card {
    position: sticky;
    top: 94px;
    padding: 28px;
    color: #fff;
    background: linear-gradient(145deg, #132239, #0b1525);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

    .outcome-card::before {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        right: -120px;
        top: -120px;
        border-radius: 50%;
        background: rgba(53, 126, 236, .20);
        filter: blur(16px);
    }

.outcome-label {
    color: #8fbaff;
    font-size: 11px;
    font-weight: 620;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.outcome-card h3 {
    position: relative;
    margin-top: 13px;
    max-width: 390px;
    font-size: 27px;
    line-height: 1.16;
    font-weight: 580;
    letter-spacing: -.035em;
}

.outcome-list {
    position: relative;
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

    .outcome-list li {
        display: flex;
        align-items: flex-start;
        gap: 11px;
        color: #c9d1dc;
        font-size: 14px;
    }

    .outcome-list span {
        width: 24px;
        height: 24px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        color: #9bc1ff;
        background: rgba(70, 137, 235, .15);
        border-radius: 7px;
    }

    .outcome-list svg {
        width: 13px;
        height: 13px;
    }

/* Process ---------------------------------------------------------------- */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
    border-top: 1px solid var(--line);
}

.process-step {
    position: relative;
    padding: 25px 24px 0 0;
}

    .process-step::before {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        top: -4px;
        left: 0;
        border-radius: 50%;
        background: var(--blue);
        box-shadow: 0 0 0 5px #eaf2ff;
    }

.process-number {
    color: #959aa2;
    font-size: 12px;
    font-weight: 600;
}

.process-step h3 {
    margin-top: 21px;
    font-size: 17px;
    font-weight: 600;
}

.process-step p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.62;
}

/* Engagement cards ------------------------------------------------------- */

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.engagement-card {
    padding: 27px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

    .engagement-card.featured {
        border-color: #b8d2f7;
        box-shadow: 0 14px 35px rgba(23, 105, 224, .08);
    }

.engagement-tag {
    display: inline-flex;
    padding: 5px 8px;
    color: #3667a9;
    background: #edf4ff;
    border-radius: 7px;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.engagement-card h3 {
    margin-top: 18px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.03em;
}

.engagement-card > p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.62;
}

.engagement-list {
    display: grid;
    gap: 9px;
    margin-top: 20px;
    color: #4f555d;
    font-size: 13px;
}

    .engagement-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .engagement-list svg {
        width: 14px;
        height: 14px;
        margin-top: 3px;
        color: var(--green);
        flex: 0 0 auto;
    }

/* Why grid --------------------------------------------------------------- */

.why-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 52px;
    align-items: start;
}

.why-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 34px;
}

.why-point h3 {
    font-size: 16px;
    font-weight: 590;
}

.why-point p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* FAQ / accordion -------------------------------------------------------- */

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 52px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

details {
    border-bottom: 1px solid var(--line);
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 580;
}

    summary::-webkit-details-marker {
        display: none;
    }

    summary svg {
        width: 17px;
        height: 17px;
        color: #8a8f96;
        transition: transform .2s ease;
        flex: 0 0 auto;
    }

details[open] summary svg {
    transform: rotate(45deg);
}

details p {
    max-width: 680px;
    padding: 0 34px 20px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Contact / forms -------------------------------------------------------- */

.contact-shell {
    display: grid;
    grid-template-columns: .87fr 1.13fr;
    gap: 40px;
    padding: 36px;
    background: #0d1727;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(8, 18, 34, .16);
}

.contact-copy {
    padding: 12px 0;
}

    .contact-copy .section-title {
        max-width: 440px;
        color: #fff;
    }

    .contact-copy .section-copy {
        max-width: 430px;
        color: #aeb8c6;
        font-size: 16px;
    }

.contact-points {
    display: grid;
    gap: 13px;
    margin-top: 27px;
}

    .contact-points li {
        display: flex;
        gap: 10px;
        color: #c7d0dc;
        font-size: 14px;
    }

    .contact-points span {
        width: 23px;
        height: 23px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        color: #9dc3ff;
        background: rgba(67, 137, 238, .16);
        border-radius: 7px;
    }

    .contact-points svg {
        width: 13px;
        height: 13px;
    }

.contact-card {
    padding: 27px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 18px 55px rgba(4, 12, 25, .22);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: #353a40;
    font-size: 13px;
    font-weight: 560;
}

.field .field-hint {
    display: block;
    margin: -3px 0 7px;
    color: #8b9099;
    font-size: 12px;
    font-weight: 400;
}

.field input, .field select, .field textarea {
    width: 100%;
    color: #202328;
    background: #fff;
    border: 1px solid #dcdfe4;
    border-radius: 11px;
    outline: none;
    padding: 11px 12px;
    font-size: 14px;
    transition: border-color .17s ease, box-shadow .17s ease;
}

.field input, .field select {
    height: 45px;
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

    .field input::placeholder, .field textarea::placeholder {
        color: #a1a6ad;
    }

    .field input:focus, .field select:focus, .field textarea:focus {
        border-color: #6ba2eb;
        box-shadow: 0 0 0 4px rgba(23, 105, 224, .10);
    }

.field-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4b5058;
    font-size: 13px;
    line-height: 1.55;
}

    .field-check input {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        flex: 0 0 auto;
        accent-color: var(--blue);
    }

    .field-check label {
        margin: 0;
        font-weight: 450;
        color: #4b5058;
    }

.field-validation-error, .validation-message {
    display: block;
    margin-top: 5px;
    color: var(--red);
    font-size: 12px;
}

.input-validation-error {
    border-color: #e09891 !important;
}

.form-submit {
    width: 100%;
    margin-top: 19px;
    border: 0;
}

.form-note {
    margin-top: 11px;
    color: #969ba2;
    text-align: center;
    font-size: 11px;
}

.form-alert {
    margin-bottom: 18px;
    padding: 12px 13px;
    border-radius: 11px;
    font-size: 13px;
}

    .form-alert.success {
        color: #166647;
        background: #effaf5;
        border: 1px solid #c9eadb;
    }

    .form-alert.error {
        color: #9d2c23;
        background: #fff3f1;
        border: 1px solid #f1cec9;
    }

.form-alert ul {
    margin: 4px 0 0;
    padding-left: 18px;
    list-style: disc;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Button busy / loading state ------------------------------------------- */

.button-primary[aria-busy="true"],
.form-submit.is-loading {
    pointer-events: none;
    opacity: .8;
}

    .form-submit.is-loading .button-spinner {
        display: inline-block;
    }

.button-spinner {
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Footer ----------------------------------------------------------------- */

.site-footer {
    padding: 34px 0 20px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 22px;
}

.footer-intro {
    max-width: 300px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-brand .brand-mark {
        width: 30px;
        height: 30px;
    }

.footer-name {
    font-size: 14px;
    font-weight: 580;
}

.footer-sub {
    margin-top: 1px;
    color: #92979e;
    font-size: 11px;
}

.footer-statement {
    margin-top: 16px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.footer-col h4 {
    color: #33383e;
    font-size: 12px;
    font-weight: 640;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-col ul {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.footer-col a {
    color: #6c717a;
    font-size: 14px;
}

    .footer-col a:hover {
        color: var(--ink);
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: #82878f;
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

    .footer-bottom-links a:hover {
        color: var(--ink);
    }

/* Reveal animation ------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease, transform .55s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* ==========================================================================
   Interior page components
   ========================================================================== */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 50px 0 34px;
    background: linear-gradient(180deg, #f6f9ff, #ffffff);
    border-bottom: 1px solid #eef1f5;
}

    .page-hero::before {
        content: "";
        position: absolute;
        width: 560px;
        height: 560px;
        top: -320px;
        right: -140px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(88, 151, 246, .14), rgba(88, 151, 246, 0) 68%);
        pointer-events: none;
    }

.page-hero .container {
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #868b93;
    font-size: 13px;
}

    .breadcrumb a:hover {
        color: var(--ink);
    }

    .breadcrumb svg {
        width: 14px;
        height: 14px;
        opacity: .6;
    }

.page-hero h1 {
    max-width: 780px;
    margin-top: 18px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.03;
    letter-spacing: -.05em;
    font-weight: 640;
}

.page-hero .lead {
    max-width: 640px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.62;
}

.page-hero .hero-actions {
    margin-top: 28px;
}

/* Detailed service blocks ------------------------------------------------ */

.detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--line);
}

    .detail-block:last-child {
        border-bottom: 0;
    }

    .detail-block.reverse .detail-visual {
        order: -1;
    }

.detail-block h2 {
    margin-top: 14px;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.12;
    letter-spacing: -.035em;
    font-weight: 620;
}

.detail-block > div > p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.detail-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 26px;
}

.detail-columns h4 {
    color: #33383e;
    font-size: 12px;
    font-weight: 640;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.detail-columns ul {
    display: grid;
    gap: 9px;
    margin-top: 14px;
    color: #4f555d;
    font-size: 14px;
}

.detail-columns li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

    .detail-columns li svg {
        width: 14px;
        height: 14px;
        margin-top: 3px;
        color: var(--blue);
        flex: 0 0 auto;
    }

.detail-visual {
    padding: 30px;
    background: linear-gradient(160deg, #f4f8ff, #eef3fb);
    border: 1px solid #e2eaf5;
    border-radius: var(--radius-lg);
}

/* Comparison (before / after) -------------------------------------------- */

.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 22px;
    align-items: stretch;
    margin-top: 30px;
}

.compare-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #fff;
}

    .compare-card.before {
        background: #fbfbfc;
    }

    .compare-card.after {
        border-color: #bcd6f7;
        background: linear-gradient(165deg, #f4f9ff, #ffffff);
        box-shadow: 0 18px 45px rgba(23, 105, 224, .07);
    }

.compare-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #8a8f96;
}

.compare-card.after .compare-tag {
    color: var(--blue);
}

.compare-card h3 {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 610;
    letter-spacing: -.03em;
}

.compare-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
    color: #52575e;
    font-size: 14px;
}

    .compare-list li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

    .compare-list li svg {
        width: 16px;
        height: 16px;
        margin-top: 2px;
        flex: 0 0 auto;
    }

.compare-card.before .compare-list svg {
    color: #b9bec5;
}

.compare-card.after .compare-list svg {
    color: var(--green);
}

.compare-divider {
    display: grid;
    place-items: center;
    color: #b7c6dc;
}

    .compare-divider svg {
        width: 26px;
        height: 26px;
    }

/* Outcome / value grid --------------------------------------------------- */

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.value-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .value-card:hover {
        transform: translateY(-3px);
        border-color: #cbd5e3;
        box-shadow: var(--shadow-sm);
    }

.value-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: #eef5ff;
    border-radius: 11px;
}

    .value-icon svg {
        width: 19px;
        height: 19px;
    }

.value-card h3 {
    margin-top: 18px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.02em;
}

.value-card p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Solution feature cards ------------------------------------------------- */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.feature-card {
    padding: 27px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .feature-card:hover {
        transform: translateY(-3px);
        border-color: #cbd5e3;
        box-shadow: var(--shadow-sm);
    }

.feature-card h3 {
    font-size: 18px;
    font-weight: 610;
    letter-spacing: -.025em;
}

.feature-eyebrow {
    color: #8a8f96;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.feature-card .feature-block {
    margin-top: 16px;
}

    .feature-card .feature-block span {
        display: block;
        color: #9aa0a8;
        font-size: 11px;
        font-weight: 650;
        letter-spacing: .07em;
        text-transform: uppercase;
    }

    .feature-card .feature-block p {
        margin-top: 5px;
        color: #52575e;
        font-size: 14px;
        line-height: 1.55;
    }

/* Technology tags -------------------------------------------------------- */

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    color: #46617f;
    background: #eef3fa;
    border: 1px solid #e0e8f2;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 540;
}

/* Case-study / work cards ------------------------------------------------ */

.work-grid {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.work-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow .2s ease, border-color .2s ease;
}

    .work-card:hover {
        border-color: #cbd5e3;
        box-shadow: var(--shadow-md);
    }

.work-body {
    padding: 34px;
}

.work-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px;
    color: #3667a9;
    background: #edf4ff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 620;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.work-body h3 {
    margin-top: 16px;
    font-size: 23px;
    font-weight: 610;
    letter-spacing: -.03em;
}

.work-block {
    margin-top: 18px;
}

    .work-block h4 {
        color: #9aa0a8;
        font-size: 11px;
        font-weight: 650;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .work-block p {
        margin-top: 6px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.6;
    }

.work-visual {
    padding: 30px;
    background: linear-gradient(160deg, #101725, #0b1220);
    display: grid;
    align-content: center;
    gap: 12px;
}

/* Products preview / showcase ------------------------------------------- */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .product-card:hover {
        transform: translateY(-4px);
        border-color: #cbd5e3;
        box-shadow: var(--shadow-md);
    }

.product-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-emblem {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #2d7df0, #1155c0);
    border-radius: 13px;
    box-shadow: 0 10px 22px rgba(23, 105, 224, .22);
}

    .product-emblem svg {
        width: 22px;
        height: 22px;
    }

.status-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 620;
    letter-spacing: .03em;
    text-transform: uppercase;
}

    .status-label::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: currentColor;
    }

    .status-label.concept {
        color: #6b6f9a;
        background: #eef0fb;
    }

    .status-label.development {
        color: #2762b0;
        background: #eaf3ff;
    }

    .status-label.planned {
        color: #7a6320;
        background: #fbf4e2;
    }

    .status-label.early {
        color: #1a7a55;
        background: #e9f8f1;
    }

.product-category {
    margin-top: 20px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 620;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.product-card h3 {
    margin-top: 8px;
    font-size: 22px;
    font-weight: 620;
    letter-spacing: -.03em;
}

.product-card > p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.product-meta {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.product-meta div {
    display: flex;
    gap: 10px;
    font-size: 13px;
}

    .product-meta div span:first-child {
        color: #9aa0a8;
        min-width: 92px;
    }

    .product-meta div span:last-child {
        color: #4f555d;
    }

.product-card .card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
}

/* Product detail (Apple-style) ------------------------------------------ */

.product-showcase {
    padding: 60px 0 44px;
    text-align: center;
    background: linear-gradient(180deg, #f6f9ff, #ffffff);
    border-bottom: 1px solid #eef1f5;
    overflow: hidden;
}

.product-showcase .product-emblem {
    margin: 0 auto 22px;
    width: 58px;
    height: 58px;
}

    .product-showcase .product-emblem svg {
        width: 28px;
        height: 28px;
    }

.product-showcase h1 {
    max-width: 780px;
    margin: 16px auto 0;
    font-size: clamp(40px, 5.5vw, 66px);
    line-height: 1.02;
    letter-spacing: -.05em;
    font-weight: 660;
}

.product-showcase .tagline {
    max-width: 620px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
}

.product-showcase .hero-actions {
    justify-content: center;
    margin-top: 28px;
}

.product-canvas {
    max-width: 940px;
    margin: 50px auto 0;
}

.sticky-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sticky-visual {
    position: sticky;
    top: 96px;
}

.story-step {
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

    .story-step:last-child {
        border-bottom: 0;
    }

    .story-step h3 {
        font-size: clamp(24px, 3vw, 32px);
        line-height: 1.12;
        letter-spacing: -.035em;
        font-weight: 620;
    }

    .story-step p {
        margin-top: 14px;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.65;
    }

/* Multi-step consulting form -------------------------------------------- */

.form-shell {
    max-width: 100%;
    margin: 0 auto;
    padding: 36px 40px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.wizard-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.wizard-dot {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #9098a3;
    background: #f0f2f5;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 620;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.wizard-step.active .wizard-dot {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}

.wizard-step.complete .wizard-dot {
    color: #fff;
    background: var(--green);
    border-color: var(--green);
}

.wizard-label {
    font-size: 12px;
    font-weight: 560;
    color: #8b9099;
    white-space: nowrap;
}

.wizard-step.active .wizard-label {
    color: var(--ink);
}

.wizard-line {
    flex: 1;
    height: 2px;
    background: var(--line);
}

.wizard-step.complete .wizard-line {
    background: var(--green);
}

.wizard-panel {
    display: none;
}

    .wizard-panel.active {
        display: block;
        animation: panel-in .35s ease;
    }

@keyframes panel-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
}

.wizard-panel h2 {
    font-size: 22px;
    font-weight: 620;
    letter-spacing: -.03em;
}

.wizard-panel > p {
    margin-top: 8px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 15px;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
}

.review-list {
    display: grid;
    gap: 1px;
    margin-top: 8px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.review-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 13px 16px;
    background: #fff;
    font-size: 14px;
}

    .review-row span:first-child {
        color: #8b9099;
        font-weight: 540;
    }

    .review-row span:last-child {
        color: #33383e;
        word-break: break-word;
    }

/* Success confirmation --------------------------------------------------- */

.confirm-shell {
    max-width: 620px;
    margin: 0 auto;
    padding: 32px 28px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.confirm-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    color: var(--green);
    background: #e9f8f1;
    border-radius: 50%;
}

    .confirm-icon svg {
        width: 30px;
        height: 30px;
    }

.confirm-shell h1 {
    font-size: 30px;
    font-weight: 630;
    letter-spacing: -.035em;
}

.confirm-shell p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.confirm-next {
    display: grid;
    gap: 12px;
    margin: 26px auto 0;
    max-width: 440px;
    text-align: left;
}

    .confirm-next li {
        display: flex;
        gap: 11px;
        align-items: flex-start;
        color: #4f555d;
        font-size: 14px;
    }

    .confirm-next span {
        width: 24px;
        height: 24px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        color: var(--blue);
        background: #eef5ff;
        border-radius: 7px;
        font-size: 12px;
        font-weight: 620;
    }

.confirm-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 30px;
}

.confirm-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    padding: 8px 14px;
    color: var(--blue);
    background: var(--surface-blue);
    border: 1px solid #dbe8fb;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 580;
}

/* Prose (legal pages) ---------------------------------------------------- */

.prose {
    max-width: 760px;
    margin: 0 auto;
}

    .prose h2 {
        margin-top: 38px;
        font-size: 22px;
        font-weight: 620;
        letter-spacing: -.025em;
    }

    .prose h3 {
        margin-top: 24px;
        font-size: 17px;
        font-weight: 600;
    }

    .prose p {
        margin-top: 12px;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.7;
    }

    .prose ul {
        margin-top: 12px;
        padding-left: 22px;
        list-style: disc;
        color: var(--muted);
    }

    .prose li {
        margin-top: 8px;
        font-size: 16px;
        line-height: 1.65;
    }

    .prose a {
        color: var(--blue);
        text-decoration: underline;
    }

    .prose .prose-meta {
        color: #8b9099;
        font-size: 14px;
    }

/* Mockup helper elements ------------------------------------------------- */

.mini-panel {
    padding: 18px;
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 14px;
}

.mini-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f4;
    font-size: 13px;
    color: #52575e;
}

    .mini-row:last-child {
        border-bottom: 0;
    }

    .mini-row .mini-value {
        font-weight: 600;
        color: var(--ink);
    }

.flow-diagram {
    display: grid;
    gap: 12px;
}

.flow-node {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    color: #dbe3ee;
    font-size: 13px;
}

    .flow-node span {
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        color: #9dc3ff;
        background: rgba(70, 137, 235, .16);
        border-radius: 8px;
    }

    .flow-node svg {
        width: 15px;
        height: 15px;
    }

.disclaimer {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    padding: 6px 11px;
    color: #7a8088;
    background: #f4f5f7;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11px;
}

    .disclaimer svg {
        width: 13px;
        height: 13px;
        color: #9aa0a8;
    }

/* Two-column CTA band ---------------------------------------------------- */

.cta-band {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 40px;
    align-items: center;
    padding: 32px 36px;
    color: #fff;
    background: linear-gradient(150deg, #132239, #0b1525);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(8, 18, 34, .16);
}

    .cta-band h2 {
        max-width: 520px;
        font-size: clamp(26px, 3.2vw, 36px);
        line-height: 1.12;
        letter-spacing: -.035em;
        font-weight: 620;
    }

    .cta-band p {
        margin-top: 14px;
        max-width: 480px;
        color: #aeb8c6;
        font-size: 16px;
        line-height: 1.6;
    }

.cta-band-actions {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

    .cta-band-actions .button-secondary {
        background: rgba(255, 255, 255, .06);
        color: #fff;
        border-color: rgba(255, 255, 255, .18);
    }

        .cta-band-actions .button-secondary:hover {
            background: rgba(255, 255, 255, .12);
        }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
    .desktop-nav, .nav > .nav-cta {
        display: none;
    }

    .menu-button {
        display: grid;
    }

    .hero {
        padding-top: 68px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-copy-block {
        max-width: 760px;
    }

    .product-window {
        width: min(100%, 720px);
        margin-inline: auto;
    }

    .service-grid, .value-grid, .feature-grid, .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .solution-layout, .why-grid, .faq-layout, .detail-block, .sticky-story {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .detail-block.reverse .detail-visual {
        order: 0;
    }

    .sticky-visual {
        position: relative;
        top: auto;
    }

    .outcome-card {
        position: relative;
        top: auto;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 25px;
        border-top: 0;
    }

    .process-step {
        padding-top: 20px;
        border-top: 1px solid var(--line);
    }

        .process-step::before {
            top: -4px;
        }

    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .compare-divider {
        transform: rotate(90deg);
    }

    .work-card {
        grid-template-columns: 1fr;
    }

    .work-visual {
        order: -1;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-intro {
        grid-column: 1 / -1;
    }

    .contact-shell {
        grid-template-columns: 1fr;
        padding: 38px;
    }

    .cta-band {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--page));
    }

    .site-header {
        height: 62px;
    }

    .mobile-nav, .nav-backdrop {
        inset-block-start: 62px;
    }

    .mobile-nav {
        inset: 62px 0 auto 0;
    }

    .hero {
        padding: 38px 0 30px;
    }

        .hero h1 {
            font-size: clamp(39px, 12vw, 52px);
            line-height: 1.02;
        }

    .hero-copy {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.62;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-actions a {
            width: 100%;
        }

    .hero-note {
        display: grid;
        gap: 10px;
    }

    .dashboard {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .dashboard-side {
        display: none;
    }

    .dashboard-main {
        padding: 15px;
    }

    .metric-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metric-card:last-child {
        grid-column: 1 / -1;
    }

    .activity-grid {
        grid-template-columns: 1fr;
    }

    .platform-row {
        justify-content: flex-start;
    }

    .platform-label {
        width: 100%;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .section-copy {
        font-size: 16px;
    }

    .page-hero {
        padding: 40px 0 26px;
    }

    .service-grid, .value-grid, .feature-grid, .product-grid {
        grid-template-columns: 1fr;
        margin-top: 34px;
    }

    .service-card {
        min-height: 0;
    }

    .solution-row {
        grid-template-columns: 32px 1fr;
    }

    .solution-arrow {
        display: none;
    }

    .process-grid, .why-points, .detail-columns, .form-grid {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: auto;
    }

    .contact-shell {
        padding: 22px;
        border-radius: 22px;
    }

    .contact-card, .form-shell {
        padding: 22px 20px;
    }

    .review-row {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .wizard-label {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band {
        padding: 30px;
    }

    .product-showcase {
        padding: 48px 0 36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .chart-line-animate {
        stroke-dashoffset: 0;
    }
}
