:root {
    --blue-950: #071a33;
    --blue-900: #0b2f5b;
    --blue-800: #0b3f78;
    --blue-700: #0f5aa6;
    --blue-600: #146fc1;
    --blue-100: #e8f2fb;
    --orange-600: #d95f0d;
    --orange-500: #f47721;
    --orange-100: #fff0e5;
    --green-600: #16875c;
    --ink: #142133;
    --muted: #5b6878;
    --line: #d8e1ea;
    --surface: #f4f7fa;
    --white: #ffffff;
    --shadow-sm: 0 8px 24px rgba(7, 26, 51, 0.08);
    --shadow-md: 0 18px 48px rgba(7, 26, 51, 0.14);
    --radius: 8px;
    --header-offset: 108px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

svg {
    width: 1.15em;
    height: 1.15em;
    stroke-width: 2;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
blockquote,
figure {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--blue-950);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: 0;
}

h1 {
    margin-bottom: 24px;
    font-size: 56px;
}

h2 {
    margin-bottom: 20px;
    font-size: 42px;
}

h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

p {
    margin-bottom: 20px;
}

:focus-visible {
    outline: 3px solid var(--orange-500);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--white);
    background: var(--blue-950);
    border-radius: 4px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.site-head {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(7, 26, 51, 0.1);
}

.trust-bar {
    color: #dce8f4;
    background: var(--blue-950);
    font-size: 12px;
}

.trust-bar__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.trust-bar p,
.trust-bar span {
    margin: 0;
}

.trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--white);
    font-weight: 650;
}

.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 164px;
    height: auto;
}

.nav {
    margin-left: auto;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__list a {
    position: relative;
    color: #273448;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.nav__list a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--orange-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nav__list a:hover::after,
.nav__list a:focus-visible::after {
    transform: scaleX(1);
}

.nav__toggle.icon-button {
    display: none;
}

.icon-button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    color: var(--blue-950);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 6px;
    cursor: pointer;
}

.button {
    min-height: 50px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--white);
    background: var(--orange-600);
    border: 2px solid var(--orange-600);
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(217, 95, 13, 0.18);
    font-weight: 750;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    color: var(--white);
    background: #bf5008;
    border-color: #bf5008;
    box-shadow: 0 10px 24px rgba(191, 80, 8, 0.24);
    transform: translateY(-2px);
}

.button--small {
    min-height: 42px;
    padding: 9px 15px;
    font-size: 14px;
}

.button--secondary {
    color: var(--blue-800);
    background: var(--white);
    border-color: #b8cadb;
    box-shadow: none;
}

.button--secondary:hover {
    color: var(--blue-950);
    background: var(--blue-100);
    border-color: var(--blue-700);
    box-shadow: none;
}

.button--light {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

.button--light:hover {
    color: var(--blue-950);
    background: var(--white);
    border-color: var(--white);
    box-shadow: none;
}

.button--full {
    width: 100%;
}

.button:disabled,
.button:disabled:hover {
    color: var(--white);
    background: var(--orange-600);
    border-color: var(--orange-600);
    box-shadow: none;
    cursor: wait;
    opacity: 0.86;
    transform: none;
}

.button__spinner {
    width: 18px;
    height: 18px;
    display: none;
    flex: 0 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: button-spin 700ms linear infinite;
}

.button.is-loading .button__spinner {
    display: block;
}

.button.is-loading > svg {
    display: none;
}

@keyframes button-spin {
    to {
        transform: rotate(360deg);
    }
}

.hero {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    border-bottom: 1px solid var(--line);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 38%;
    background: var(--blue-100);
    border-left: 1px solid #d9e8f5;
}

.hero__grid {
    position: relative;
    z-index: 1;
    min-height: 680px;
    padding-block: 76px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 64px;
}

.eyebrow {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-700);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    flex: 0 0 auto;
    background: var(--orange-500);
}

.eyebrow--light {
    color: #a9cce9;
}

.hero__lead {
    max-width: 690px;
    color: #47566a;
    font-size: 19px;
    line-height: 1.65;
}

.hero__actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.microcopy {
    margin-top: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.microcopy svg {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex: 0 0 auto;
    color: var(--green-600);
}

.hero__proof {
    margin: 34px 0 0;
    padding: 24px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    border-top: 1px solid var(--line);
    list-style: none;
}

.hero__proof li {
    min-width: 0;
}

.hero__proof strong,
.hero__proof span {
    display: block;
}

.hero__proof strong {
    color: var(--blue-950);
    font-size: 14px;
}

.hero__proof span {
    color: var(--muted);
    font-size: 12px;
}

.diagnostic {
    position: relative;
    width: 100%;
    max-width: 520px;
    justify-self: end;
    overflow: hidden;
    color: var(--white);
    background: var(--blue-950);
    border: 1px solid #284766;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.diagnostic::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
}

.diagnostic__top,
.diagnostic__body {
    position: relative;
    z-index: 1;
}

.diagnostic__top {
    min-height: 52px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: #c6d5e3;
    font-size: 12px;
    font-weight: 700;
}

.diagnostic__dots {
    display: flex;
    gap: 6px;
}

.diagnostic__dots b {
    width: 8px;
    height: 8px;
    display: block;
    background: #7e91a4;
    border-radius: 50%;
}

.diagnostic__dots b:first-child {
    background: var(--orange-500);
}

.status-pill {
    justify-self: end;
    padding: 3px 8px;
    color: #f5c6a5;
    background: rgba(244, 119, 33, 0.12);
    border: 1px solid rgba(244, 119, 33, 0.35);
    border-radius: 999px;
    font-size: 10px;
    text-transform: uppercase;
}

.diagnostic__body {
    padding: 30px;
}

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

.diagnostic__title small,
.diagnostic__title strong {
    display: block;
}

.diagnostic__title small {
    margin-bottom: 4px;
    color: #7fb5e3;
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
}

.diagnostic__title strong {
    color: var(--white);
    font-size: 19px;
}

.diagnostic__title > svg {
    width: 38px;
    height: 38px;
    color: var(--orange-500);
}

.diagnostic__url {
    margin-top: 20px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b7c8d9;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    font-size: 12px;
}

.diagnostic__metrics {
    margin-top: 22px;
}

.metric-row {
    padding: 14px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
}

.metric-row > span:first-child {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #dbe6ef;
    font-size: 13px;
}

.metric-row b {
    color: #8fc3ed;
    font-size: 11px;
}

.metric-row--priority b {
    color: #ffad70;
}

.meter {
    grid-column: 1 / -1;
    height: 4px;
    overflow: hidden;
    background: rgba(255,255,255,0.09);
    border-radius: 999px;
}

.meter i {
    height: 100%;
    display: block;
    background: var(--blue-600);
    border-radius: inherit;
}

.metric-row--priority .meter i {
    background: var(--orange-500);
}

.diagnostic__result {
    margin-top: 22px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(20, 111, 193, 0.14);
    border: 1px solid rgba(91, 166, 224, 0.28);
    border-radius: 6px;
}

.diagnostic__result > svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: #62ace5;
}

.diagnostic__result p {
    margin: 0;
}

.diagnostic__result strong,
.diagnostic__result span {
    display: block;
}

.diagnostic__result strong {
    color: var(--white);
    font-size: 13px;
}

.diagnostic__result span {
    margin-top: 2px;
    color: #aebfd0;
    font-size: 11px;
}

.proof-band {
    color: var(--white);
    background: var(--blue-800);
}

.proof-band__grid {
    min-height: 118px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.proof-band__grid div {
    min-height: 54px;
    padding-inline: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.17);
}

.proof-band__grid div:first-child {
    padding-left: 0;
}

.proof-band__grid div:last-child {
    padding-right: 0;
    border-right: 0;
}

.proof-band strong {
    font-size: 20px;
}

.proof-band span {
    color: #bfd2e4;
    font-size: 12px;
}

.section {
    padding-block: 96px;
}

.section--soft {
    background: var(--surface);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading > p:last-child {
    color: var(--muted);
    font-size: 18px;
}

.section-heading--split {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: end;
    gap: 60px;
}

.section-heading--split > p {
    margin-bottom: 20px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.problem-item {
    min-height: 190px;
    padding: 26px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
}

.problem-item > svg {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    color: var(--orange-600);
}

.problem-item h3 {
    font-size: 17px;
}

.problem-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.section-bridge {
    margin-top: 36px;
    padding: 22px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid var(--line);
}

.section-bridge p {
    max-width: 660px;
    margin: 0;
    color: var(--blue-950);
    font-size: 18px;
    font-weight: 650;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.pillar {
    position: relative;
    min-height: 330px;
    padding: 30px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 4px solid var(--blue-700);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.pillar > span {
    position: absolute;
    top: 15px;
    right: 18px;
    color: #d5e0ea;
    font-size: 34px;
    font-weight: 800;
}

.pillar > svg {
    width: 36px;
    height: 36px;
    margin-bottom: 34px;
    color: var(--orange-600);
}

.pillar h3 {
    font-size: 21px;
}

.pillar p {
    color: var(--muted);
}

.audit {
    color: #dbe7f2;
    background: var(--blue-950);
}

.audit__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.7fr);
    align-items: start;
    gap: 80px;
}

.audit h2,
.audit h3 {
    color: var(--white);
}

.audit__content > p:not(.eyebrow) {
    color: #b8c7d7;
    font-size: 18px;
}

.steps {
    margin: 42px 0 34px;
    padding: 0;
    list-style: none;
}

.steps li {
    position: relative;
    padding: 0 0 28px 58px;
}

.steps li::before {
    content: "";
    position: absolute;
    top: 38px;
    bottom: 0;
    left: 19px;
    width: 1px;
    background: #385675;
}

.steps li:last-child {
    padding-bottom: 0;
}

.steps li:last-child::before {
    display: none;
}

.steps li > span {
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--blue-700);
    border: 1px solid #5b91c0;
    border-radius: 50%;
    font-weight: 800;
}

.steps h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.steps p {
    margin-bottom: 0;
    color: #9fb1c3;
    font-size: 14px;
}

.check-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
}

.check-list svg {
    margin-top: 3px;
    flex: 0 0 auto;
    color: var(--orange-500);
}

.audit-form-wrap {
    padding: 34px;
    color: var(--ink);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.form-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-700);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.form-heading h3 {
    margin: 12px 0 8px;
    color: var(--blue-950);
    font-size: 28px;
}

.form-heading p {
    color: var(--muted);
    font-size: 14px;
}

.audit-form {
    margin-top: 24px;
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    margin-bottom: 6px;
    display: block;
    color: #29374a;
    font-size: 13px;
    font-weight: 750;
}

.form-field input {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #b9c6d4;
    border-radius: 5px;
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-field input::placeholder {
    color: #7c8795;
}

.form-field input:focus {
    border-color: var(--blue-700);
    box-shadow: 0 0 0 3px rgba(15, 90, 166, 0.13);
}

.form-field input[aria-invalid="true"] {
    border-color: #b42318;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.field-error {
    min-height: 18px;
    margin-top: 4px;
    display: block;
    color: #a61b12;
    font-size: 12px;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
    cursor: pointer;
}

.consent input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex: 0 0 auto;
    accent-color: var(--blue-700);
}

.consent a {
    color: var(--blue-700);
}

.form-note {
    margin: 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--muted);
    font-size: 11px;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
}

.form-success {
    margin: 22px 0;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #eaf8f1;
    border: 1px solid #9bd2b8;
    border-radius: 6px;
}

.form-success[hidden] {
    display: none;
}

.form-success > svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    color: var(--green-600);
}

.form-success strong,
.form-success span {
    display: block;
}

.form-success span {
    color: #37604f;
    font-size: 12px;
}

.form-success a {
    margin-left: auto;
    color: var(--green-600);
    font-size: 12px;
    font-weight: 750;
}

.form-feedback {
    margin: 16px 0;
    padding: 13px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid #a9c6e5;
    border-radius: 6px;
    background: var(--blue-100);
}

.form-feedback[hidden],
.form-feedback a[hidden] {
    display: none;
}

.form-feedback strong,
.form-feedback span {
    display: block;
}

.form-feedback > div {
    min-width: 0;
    flex: 1 1 auto;
}

.form-feedback span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.form-feedback a {
    min-height: 38px;
    padding: 8px 12px;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--white);
    background: var(--green-600);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.form-feedback a:hover {
    color: var(--white);
    background: #08733f;
}

.form-feedback.is-error {
    background: #fff1ef;
    border-color: #e6aaa4;
}

.form-feedback.is-error strong {
    color: #8f1911;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.solution-card {
    position: relative;
    min-height: 520px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.solution-card--attract {
    border-top: 4px solid var(--orange-500);
}

.solution-card--convert {
    border-top: 4px solid var(--blue-600);
}

.solution-card--protect {
    border-top: 4px solid var(--green-600);
}

.solution-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--blue-800);
    background: var(--blue-100);
    border-radius: 6px;
}

.solution-card__icon svg {
    width: 26px;
    height: 26px;
}

.solution-card__number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: #cbd6e0;
    font-weight: 800;
}

.solution-card h3 {
    margin-top: 28px;
    font-size: 30px;
}

.solution-card__result {
    min-height: 78px;
    color: var(--muted);
    font-size: 16px;
}

.solution-card ul {
    margin: 8px 0 30px;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.solution-card li {
    position: relative;
    padding: 5px 0 5px 20px;
    color: #3e4c5f;
    font-size: 14px;
}

.solution-card li::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--orange-500);
    border-radius: 50%;
}

.solution-card > a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-700);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.solution-card > small {
    margin-top: 16px;
    color: var(--muted);
}

.solution-card > small a {
    color: var(--blue-700);
}

.filters {
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-button {
    min-height: 40px;
    padding: 8px 14px;
    color: #3e4c5e;
    background: var(--white);
    border: 1px solid #bdc9d5;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
    color: var(--white);
    background: var(--blue-800);
    border-color: var(--blue-800);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.project-card {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.project-card[hidden] {
    display: none;
}

.project-card__image {
    position: relative;
    aspect-ratio: 3 / 2;
    display: block;
    overflow: hidden;
    background: var(--blue-950);
    border-bottom: 1px solid var(--line);
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}

.project-card__image:hover img {
    transform: scale(1.025);
}

.project-card__body {
    padding: 26px;
}

.project-card__body > span {
    color: var(--blue-700);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-card__body h3 {
    margin-top: 8px;
}

.project-card__body p {
    color: var(--muted);
    font-size: 14px;
}

.project-card__body > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue-700);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.audit-visual {
    min-height: 230px;
    padding: 36px;
    display: flex;
    align-items: flex-end;
    gap: 9px;
    color: var(--white);
    background: var(--blue-900);
}

.audit-visual > svg {
    width: 70px;
    height: 70px;
    margin-right: auto;
    align-self: center;
    color: #66a9df;
}

.audit-visual span {
    padding: 5px 9px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 4px;
    font-size: 11px;
}

.audit-visual--orange {
    background: #73350e;
}

.audit-visual--orange > svg {
    color: #ffae72;
}

.comparison {
    background: var(--white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.comparison-column {
    padding: 40px;
}

.comparison-column--common {
    color: #526071;
    background: var(--surface);
    border-right: 1px solid var(--line);
}

.comparison-column--sales {
    color: #d8e5f1;
    background: var(--blue-900);
}

.comparison-column__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-column__head svg {
    width: 27px;
    height: 27px;
    color: #788696;
}

.comparison-column--sales .comparison-column__head svg {
    color: #5fc193;
}

.comparison-column--sales h3 {
    color: var(--white);
}

.comparison-column ul {
    margin: 20px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(111, 130, 149, 0.25);
    list-style: none;
}

.comparison-column li {
    position: relative;
    padding: 8px 0 8px 25px;
}

.comparison-column li::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #98a5b2;
    border-radius: 50%;
}

.comparison-column--sales li::before {
    background: var(--orange-500);
}

.center-action {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue-700);
    font-weight: 800;
    text-decoration: none;
}

.authority {
    background: #f9fbfd;
}

.authority__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.55fr);
    align-items: start;
    gap: 70px;
}

.authority__content > p:not(.eyebrow) {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
}

.reason-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.reason-grid > div {
    min-height: 150px;
    padding: 24px;
    background: var(--white);
}

.reason-grid svg {
    width: 24px;
    height: 24px;
    margin-bottom: 18px;
    color: var(--orange-600);
}

.reason-grid strong,
.reason-grid span {
    display: block;
}

.reason-grid strong {
    color: var(--blue-950);
    font-size: 15px;
}

.reason-grid span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.company-note {
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 4px solid var(--orange-500);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.company-note img {
    width: 210px;
    height: auto;
    margin-bottom: 28px;
}

.company-note > p {
    color: var(--muted);
}

.company-note dl {
    margin: 28px 0;
}

.company-note dl > div {
    padding: 14px 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    border-top: 1px solid var(--line);
}

.company-note dt {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--blue-800);
    border-radius: 4px;
    font-weight: 800;
}

.company-note dd strong,
.company-note dd span {
    display: block;
}

.company-note dd span {
    color: var(--muted);
    font-size: 12px;
}

.company-note > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue-700);
    font-weight: 800;
    text-decoration: none;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.testimonial {
    min-height: 340px;
    margin-bottom: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.testimonial > svg {
    width: 30px;
    height: 30px;
    color: var(--orange-500);
}

.testimonial > p {
    margin: 30px 0;
    color: #38485b;
    font-size: 17px;
}

.testimonial footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial footer > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--white);
    background: var(--blue-800);
    border-radius: 50%;
    font-weight: 800;
}

.testimonial cite {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.testimonial cite strong {
    display: block;
    color: var(--blue-950);
    font-size: 14px;
}

.objections__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
    align-items: start;
    gap: 80px;
}

.objections__intro {
    position: sticky;
    top: 135px;
}

.objections__intro > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 17px;
}

.objection-list,
.faq__list {
    border-top: 1px solid var(--line);
}

.objection-list details,
.faq__list details {
    border-bottom: 1px solid var(--line);
}

.objection-list summary,
.faq__list summary {
    min-height: 66px;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--blue-950);
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

.objection-list summary::-webkit-details-marker,
.faq__list summary::-webkit-details-marker {
    display: none;
}

.objection-list summary svg,
.faq__list summary svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--blue-700);
    transition: transform 180ms ease;
}

.objection-list details[open] summary svg,
.faq__list details[open] summary svg {
    transform: rotate(45deg);
}

.objection-list details p,
.faq__list details p {
    margin: -4px 42px 20px 0;
    color: var(--muted);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.content-card {
    min-height: 300px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 4px solid var(--blue-700);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.content-card > span {
    color: var(--orange-600);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.content-card h3 {
    margin-top: 14px;
}

.content-card p {
    color: var(--muted);
    font-size: 14px;
}

.content-card a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue-700);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.faq__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
    align-items: start;
    gap: 80px;
}

.faq__intro {
    position: sticky;
    top: 135px;
}

.faq__intro > p:not(.eyebrow) {
    color: var(--muted);
}

.final-cta {
    padding-block: 90px;
    color: var(--white);
    background: var(--blue-800);
    border-top: 5px solid var(--orange-500);
}

.final-cta__inner {
    max-width: 940px;
    text-align: center;
}

.final-cta .eyebrow {
    justify-content: center;
}

.final-cta h2 {
    color: var(--white);
}

.final-cta__inner > p:not(.eyebrow):not(.final-cta__note) {
    max-width: 760px;
    margin-inline: auto;
    color: #c8d9e8;
    font-size: 18px;
}

.final-cta__actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.final-cta__note {
    margin: 18px 0 0;
    color: #a9c0d4;
    font-size: 13px;
}

.footer {
    padding: 58px 0 0;
    color: #aebdca;
    background: var(--blue-950);
}

.footer__grid {
    padding-bottom: 48px;
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 0.75fr);
    gap: 48px;
}

.footer__brand img {
    width: 170px;
    height: auto;
    padding: 8px;
    background: var(--white);
    border-radius: 4px;
}

.footer__brand p {
    max-width: 300px;
    margin: 20px 0 5px;
    color: #d5e1eb;
}

.footer__brand span {
    font-size: 12px;
}

.footer h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 14px;
}

.footer__grid a {
    margin-bottom: 10px;
    display: block;
    color: #aebdca;
    font-size: 13px;
    text-decoration: none;
}

.footer__grid a:hover {
    color: var(--white);
}

.footer__bottom {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 12px;
}

.footer__bottom a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--white);
    text-decoration: none;
}

.consent-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 140;
    max-width: 1120px;
    margin-inline: auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--orange-500);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.consent-banner[hidden] {
    display: none;
}

.consent-banner strong {
    color: var(--blue-950);
}

.consent-banner p {
    max-width: 680px;
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.consent-banner p a {
    color: var(--blue-700);
}

.consent-banner__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.mobile-actions {
    display: none;
}

.page-hero {
    padding-block: 88px;
    color: #dce8f3;
    background: var(--blue-900);
    border-bottom: 5px solid var(--orange-500);
}

.page-hero .eyebrow {
    color: #a9cce9;
}

.page-hero h1 {
    max-width: 900px;
    color: var(--white);
}

.page-hero p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 19px;
}

.article-shell {
    width: min(840px, calc(100% - 48px));
    margin-inline: auto;
}

.story-intro {
    color: var(--muted);
    font-size: 19px;
}

.story-values {
    margin-block: 46px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.story-values article {
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-top: 4px solid var(--blue-700);
    border-radius: var(--radius);
}

.story-values span {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--blue-800);
    border-radius: 4px;
    font-weight: 800;
}

.story-values p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.story-timeline {
    margin: 48px 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.story-timeline li {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    border-bottom: 1px solid var(--line);
}

.story-timeline strong {
    color: var(--orange-600);
}

.story-timeline p {
    margin: 0;
    color: var(--muted);
}

.legal-meta {
    margin-bottom: 42px;
    color: var(--muted);
    font-size: 13px;
}

.legal-sections section {
    padding-block: 28px;
    border-top: 1px solid var(--line);
}

.legal-sections h2 {
    font-size: 28px;
}

.legal-sections p,
.legal-sections li {
    color: var(--muted);
}

.legal-sections a {
    color: var(--blue-700);
}

.motion .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.motion .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 38px;
    }

    .header__cta {
        display: none;
    }

    .nav__list {
        gap: 18px;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
        gap: 40px;
    }

    .problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .problem-item {
        min-height: 150px;
    }

    .pillar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pillar {
        min-height: 280px;
    }

    .audit__grid {
        gap: 50px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-offset: 106px;
    }

    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 36px;
    }

    .nav__toggle.icon-button {
        display: inline-grid;
    }

    .nav__list {
        position: fixed;
        top: var(--header-offset);
        right: 0;
        left: 0;
        max-height: calc(100vh - var(--header-offset));
        padding: 18px 24px 28px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        background: var(--white);
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow-md);
    }

    .nav__list.is-open {
        display: flex;
    }

    .nav__list a {
        min-height: 48px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }

    .nav__list a::after {
        display: none;
    }

    .hero::before {
        display: none;
    }

    .hero__grid {
        min-height: 0;
        padding-block: 64px;
        grid-template-columns: 1fr;
    }

    .diagnostic {
        display: none;
    }

    .proof-band__grid {
        padding-block: 22px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 0;
    }

    .proof-band__grid div:nth-child(2) {
        border-right: 0;
    }

    .proof-band__grid div:nth-child(3) {
        padding-left: 0;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .audit__grid,
    .authority__grid,
    .objections__grid,
    .faq__grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .audit__content {
        max-width: 700px;
    }

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

    .solution-card {
        min-height: 0;
    }

    .solution-card__result {
        min-height: 0;
    }

    .solution-card > a {
        margin-top: 0;
    }

    .authority__grid,
    .faq__grid {
        gap: 44px;
    }

    .objections__intro,
    .faq__intro {
        position: static;
    }

    .testimonial-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .testimonial,
    .content-card {
        min-height: 0;
    }

    .footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    :root {
        --header-offset: 72px;
    }

    body {
        padding-bottom: 66px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 31px;
    }

    h3 {
        font-size: 19px;
    }

    .shell {
        width: min(100% - 32px, 1180px);
    }

    .trust-bar {
        display: none;
    }

    .header__inner {
        min-height: 72px;
    }

    .brand img {
        width: 142px;
    }

    .nav__list {
        top: 72px;
        max-height: calc(100vh - 72px);
    }

    .hero__grid {
        padding-block: 42px 46px;
        gap: 38px;
    }

    .hero__lead {
        font-size: 17px;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__proof {
        display: none;
    }

    .diagnostic__body {
        padding: 22px;
    }

    .diagnostic__top {
        padding-inline: 12px;
    }

    .diagnostic__title strong {
        font-size: 16px;
    }

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

    .metric-row b {
        grid-row: 2;
    }

    .meter {
        grid-row: 3;
    }

    .proof-band__grid {
        grid-template-columns: 1fr;
    }

    .proof-band__grid div,
    .proof-band__grid div:first-child,
    .proof-band__grid div:nth-child(3) {
        min-height: 0;
        padding: 0 0 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.14);
    }

    .proof-band__grid div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .section {
        padding-block: 70px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading > p:last-child {
        font-size: 16px;
    }

    .problem-grid,
    .pillar-grid,
    .portfolio-grid,
    .comparison-grid,
    .reason-grid {
        grid-template-columns: 1fr;
    }

    .problem-item {
        min-height: 0;
        padding: 22px;
    }

    .section-bridge {
        align-items: stretch;
        flex-direction: column;
    }

    .section-bridge .button {
        width: 100%;
    }

    .pillar {
        min-height: 0;
    }

    .audit__grid {
        gap: 42px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .audit-form-wrap {
        padding: 24px 20px;
    }

    .form-heading h3 {
        font-size: 25px;
    }

    .form-success {
        flex-wrap: wrap;
    }

    .form-success a {
        width: 100%;
        margin-left: 36px;
    }

    .form-feedback {
        flex-wrap: wrap;
    }

    .form-feedback a {
        width: 100%;
        margin-left: 0;
    }

    .solution-card {
        padding: 26px 22px;
    }

    .filters {
        flex-wrap: nowrap;
        margin-right: -16px;
        padding-right: 16px;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .filter-button {
        flex: 0 0 auto;
    }

    .audit-visual {
        min-height: 190px;
        padding: 24px;
    }

    .audit-visual > svg {
        width: 54px;
        height: 54px;
    }

    .comparison-column {
        padding: 26px 22px;
    }

    .comparison-column--common {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .reason-grid > div {
        min-height: 0;
    }

    .company-note {
        padding: 26px 22px;
    }

    .testimonial > p {
        font-size: 16px;
    }

    .final-cta {
        padding-block: 72px;
    }

    .final-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .final-cta__actions .button {
        width: 100%;
    }

    .footer {
        padding-top: 48px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__bottom {
        padding-block: 18px;
        align-items: flex-start;
        flex-direction: column;
    }

    .consent-banner {
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 16px;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .consent-banner__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .consent-banner__actions .button {
        width: 100%;
    }

    body.consent-open .mobile-actions {
        display: none;
    }

    .mobile-actions {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 120;
        height: 66px;
        padding: 6px max(8px, env(safe-area-inset-right)) max(6px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
        display: grid;
        grid-template-columns: 1fr 0.78fr;
        gap: 6px;
        background: var(--white);
        border-top: 1px solid var(--line);
        box-shadow: 0 -8px 20px rgba(7, 26, 51, 0.12);
    }

    .mobile-actions a {
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: var(--white);
        background: var(--orange-600);
        border-radius: 5px;
        font-size: 13px;
        font-weight: 800;
        line-height: 1.15;
        text-align: center;
        text-decoration: none;
    }

    .mobile-actions a:last-child {
        background: var(--green-600);
    }

    .mobile-actions svg {
        width: 18px;
        height: 18px;
        flex: 0 0 auto;
    }

    .page-hero {
        padding-block: 60px;
    }

    .page-hero p:last-child {
        font-size: 17px;
    }

    .article-shell {
        width: min(100% - 32px, 840px);
    }

    .story-values {
        grid-template-columns: 1fr;
    }

    .story-timeline li {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

@media (max-width: 390px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

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

    .diagnostic__title > svg {
        display: none;
    }

    .audit-visual {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .audit-visual > svg {
        width: 100%;
        margin-bottom: 20px;
    }

    .mobile-actions a {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

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