:root {
    --cop-bg: #ffffff;
    --cop-off: #f5f7fb;
    --cop-off-2: #eef3f9;
    --cop-text: #0f172a;
    --cop-muted: #516074;
    --cop-muted-2: #6c7a8f;
    --cop-border: rgba(15, 23, 42, 0.08);
    --cop-line: rgba(13, 43, 85, 0.14);
    --cop-navy: #0d2b55;
    --cop-navy-dark: #071a34;
    --cop-navy-soft: #143e77;
    --cop-charcoal: #0b1322;
    --cop-white: #ffffff;
    --cop-shadow: 0 28px 90px rgba(7, 23, 45, 0.12);
    --cop-shadow-soft: 0 18px 52px rgba(7, 23, 45, 0.08);
    --cop-shadow-card: 0 12px 30px rgba(10, 24, 46, 0.06);
    --cop-radius: 26px;
    --cop-radius-sm: 18px;
    --cop-radius-xs: 14px;
    --cop-max: 1240px;
    --cop-narrow: 860px;
    --cop-font: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--cop-font);
    color: var(--cop-text);
    background: var(--cop-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1rem; color: var(--cop-muted); }
h1, h2, h3, h4 {
    margin: 0 0 1rem;
    color: var(--cop-text);
    line-height: 1.04;
    letter-spacing: -0.04em;
}
h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.35rem); }
h3 { font-size: clamp(1.22rem, 2vw, 1.55rem); }
h4 { font-size: 1rem; }
ul, ol { margin: 0; padding-left: 1.2rem; color: var(--cop-muted); }
strong { color: var(--cop-text); }

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1; }
.container {
    width: min(calc(100% - 36px), var(--cop-max));
    margin: 0 auto;
}
.container.narrow,
.narrow { width: min(calc(100% - 36px), var(--cop-narrow)); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(22px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(13,43,85,0), rgba(13,43,85,0.18), rgba(13,43,85,0));
    pointer-events: none;
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 44px rgba(9, 25, 50, 0.08);
}
.site-header.is-scrolled .site-header__inner {
    min-height: 78px;
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
    .admin-bar .site-header { top: 46px; }
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 88px;
    transition: min-height 0.22s ease;
}
.site-header__branding { flex: 0 1 auto; }
.site-brand {
    display: inline-flex;
    flex-direction: column;
    gap: 0.22rem;
}
.site-brand__name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--cop-text);
    letter-spacing: -0.03em;
}
.site-brand__tag {
    font-size: 0.77rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(15, 23, 42, 0.48);
}
.custom-logo-link img { max-height: 50px; width: auto; }

.site-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.menu,
.primary-menu,
.footer-menu,
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.primary-menu {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}
.primary-menu a,
.primary-menu li > a {
    position: relative;
    display: inline-flex;
    font-size: 0.96rem;
    font-weight: 500;
    color: var(--cop-muted);
    padding: 0.5rem 0.1rem;
    transition: color 0.25s ease;
}
.primary-menu a::after,
.primary-menu li > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.2rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cop-navy), rgba(13, 43, 85, 0.28));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.24s ease;
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
    color: var(--cop-text);
}
.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after { transform: scaleX(1); }

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.98rem 1.45rem;
    font-weight: 700;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}
.header-cta,
.button--primary {
    background: linear-gradient(135deg, var(--cop-navy), #173f79);
    color: var(--cop-white);
    box-shadow: 0 16px 40px rgba(13, 43, 85, 0.2);
}
.header-cta:hover,
.button--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 44px rgba(13, 43, 85, 0.26);
}
.button--secondary {
    border: 1px solid var(--cop-border);
    background: rgba(255, 255, 255, 0.94);
    color: var(--cop-text);
    box-shadow: var(--cop-shadow-card);
}
.button--secondary:hover {
    background: var(--cop-off);
    transform: translateY(-1px);
}
.button--light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cop-white);
}
.button--light:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}
.button--full { width: 100%; }
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-top: 1.9rem;
}
.button-row--center { justify-content: center; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cop-text);
    border-radius: 999px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.4rem, 8vw, 7.4rem) 0 clamp(3.4rem, 7vw, 6.2rem);
    background:
        radial-gradient(circle at 100% 0%, rgba(13, 43, 85, 0.1), transparent 24%),
        radial-gradient(circle at 0% 20%, rgba(13, 43, 85, 0.06), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 62%, #f2f7ff 100%);
}
.hero::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(13, 43, 85, 0.08), transparent 70%);
    pointer-events: none;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2.15rem;
    align-items: stretch;
}
.hero-copy,
.hero-panel,
.feature-card,
.vertical-card,
.vertical-row,
.contact-form-wrap,
.contact-card,
.archive-grid .feature-card,
.page-intro-card,
.signature-card,
.footer-stat,
.footer-trust-card,
.legal-note,
.page-highlight {
    background: var(--cop-white);
    border: 1px solid var(--cop-border);
    box-shadow: var(--cop-shadow-soft);
}
.hero-copy {
    padding: clamp(1.2rem, 1vw + 1rem, 2rem) 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cop-navy);
}
.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: rgba(13, 43, 85, 0.36);
}
.eyebrow--light { color: rgba(255, 255, 255, 0.82); }
.eyebrow--light::before { background: rgba(255, 255, 255, 0.35); }
.hero-lead,
.page-intro {
    font-size: clamp(1.08rem, 1vw + 0.86rem, 1.26rem);
    max-width: 54rem;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.hero-badges--center { justify-content: center; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.72rem 0.92rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(13, 43, 85, 0.08);
    box-shadow: var(--cop-shadow-card);
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--cop-text);
}
.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cop-navy), #3f72ba);
}
.hero-panel {
    position: relative;
    border-radius: var(--cop-radius);
    padding: 1.35rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 255, 1)),
        url('../images/network-lines.svg') center/cover no-repeat;
}
.hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45));
    pointer-events: none;
}
.hero-panel > * { position: relative; z-index: 1; }
.hero-panel__note {
    margin-top: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.45rem;
}
.hero-panel__note strong {
    font-size: 0.95rem;
    letter-spacing: -0.02em;
}
.hero-panel__note span {
    color: var(--cop-muted);
    font-size: 0.93rem;
}
.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}
.metric-card {
    padding: 1.15rem;
    border-radius: 18px;
    background: rgba(13, 43, 85, 0.03);
    border: 1px solid rgba(13, 43, 85, 0.08);
}
.metric-card--large {
    margin-bottom: 0.9rem;
    background: linear-gradient(135deg, var(--cop-navy), var(--cop-navy-dark));
    color: var(--cop-white);
    box-shadow: 0 20px 48px rgba(13, 43, 85, 0.25);
}
.metric-card__value {
    display: block;
    font-size: clamp(1.45rem, 3vw, 2.5rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 0.55rem;
}
.metric-card__label {
    display: block;
    font-size: 0.94rem;
    line-height: 1.45;
    color: inherit;
    opacity: 0.94;
}

.section {
    position: relative;
    padding: clamp(4.2rem, 8vw, 6.8rem) 0;
}
.section--compact { padding: clamp(3rem, 6vw, 4.4rem) 0; }
.section--tight-top { padding-top: 1.4rem; }
.section--dark {
    background: linear-gradient(135deg, var(--cop-charcoal), #16233e);
    color: var(--cop-white);
    padding: 1.7rem 0;
}
.section--offwhite { background: linear-gradient(180deg, var(--cop-off) 0%, #f9fbfe 100%); }
.section--page-header {
    padding: clamp(4.2rem, 8vw, 6rem) 0 2rem;
    background:
        radial-gradient(circle at top left, rgba(13, 43, 85, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.section--cta {
    background: linear-gradient(135deg, var(--cop-navy), var(--cop-navy-dark));
    color: var(--cop-white);
}
.section-head {
    max-width: 780px;
    margin-bottom: 2.4rem;
}
.section-head h2 { max-width: 17ch; }
.section-head p { max-width: 50rem; }

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.stat {
    padding: 1.1rem 0;
    text-align: center;
}
.stat strong {
    display: block;
    font-size: clamp(1.45rem, 2.1vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.15rem;
    color: inherit;
}
.stat span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.74);
}
.stats-strip--light .stat {
    border-radius: var(--cop-radius-sm);
    padding: 1.2rem 1rem;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--cop-shadow-card);
}
.stats-strip--light .stat span { color: var(--cop-muted); }

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}
.two-column--balanced { align-items: stretch; }
.page-grid--asymmetric { grid-template-columns: 1.05fr 0.95fr; }
.stack { display: grid; gap: 1rem; }
.card-grid {
    display: grid;
    gap: 1rem;
}
.card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.feature-card,
.vertical-card,
.vertical-row,
.contact-form-wrap,
.archive-grid .feature-card,
.page-intro-card,
.signature-card,
.footer-stat,
.footer-trust-card,
.legal-note,
.page-highlight {
    border-radius: var(--cop-radius);
    padding: 1.55rem;
}
.feature-card--full { grid-column: 1 / -1; }
.feature-card:hover,
.vertical-card:hover,
.signature-card:hover,
.page-highlight:hover {
    transform: translateY(-2px);
    box-shadow: var(--cop-shadow);
}
.feature-card,
.vertical-card,
.signature-card,
.page-highlight {
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.feature-card h3,
.vertical-card h3,
.signature-card h3,
.page-highlight h3 { margin-bottom: 0.7rem; }
.feature-card p:last-child,
.vertical-card p:last-child,
.signature-card p:last-child,
.page-highlight p:last-child { margin-bottom: 0; }

.page-intro-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
}
.page-intro-card__kicker {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cop-navy);
    font-weight: 800;
    margin-bottom: 0.55rem;
}
.page-intro-card__list {
    display: grid;
    gap: 0.6rem;
    margin-top: 1rem;
}
.page-intro-card__list span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--cop-muted);
    font-weight: 600;
}
.page-intro-card__list span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cop-navy), #4f7dbe);
}

.vertical-card {
    position: relative;
    overflow: hidden;
}
.vertical-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cop-navy), rgba(13, 43, 85, 0.12));
}
.vertical-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: rgba(13, 43, 85, 0.06);
    color: var(--cop-navy);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.vertical-card__meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--cop-muted-2);
    font-size: 0.92rem;
    font-weight: 600;
}
.vertical-list {
    display: grid;
    gap: 1rem;
}
.vertical-row {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1rem;
    align-items: start;
}
.vertical-row__head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.vertical-row__body p:last-child { margin-bottom: 0; }

.check-list,
.process-list {
    display: grid;
    gap: 0.85rem;
    padding-left: 1.15rem;
}
.check-list li::marker,
.process-list li::marker { color: var(--cop-navy); }

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.8rem;
}
.cta-banner h2,
.section--cta h2,
.section--cta p { color: var(--cop-white); }
.cta-banner h2 { max-width: 13ch; }
.cta-banner p { max-width: 38rem; }

.signature-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.signature-grid--compact .signature-card { padding: 1.45rem; }
.signature-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,251,254,1));
}
.signature-card__meta {
    display: inline-flex;
    margin-top: 0.9rem;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cop-navy);
}

.page-highlight-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
}
.page-highlight {
    position: relative;
    overflow: hidden;
}
.page-highlight--dark {
    color: var(--cop-white);
    background: linear-gradient(135deg, var(--cop-navy), var(--cop-navy-dark));
    border-color: rgba(255,255,255,0.08);
}
.page-highlight--dark h3,
.page-highlight--dark p,
.page-highlight--dark strong { color: var(--cop-white); }
.page-highlight--dark .eyebrow,
.page-highlight--dark .page-intro-card__kicker { color: rgba(255,255,255,0.78); }
.page-highlight--dark .eyebrow::before { background: rgba(255,255,255,0.35); }

.contact-layout {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    gap: 1.2rem;
    align-items: start;
}
.contact-copy { display: grid; gap: 1rem; }
.contact-card,
.response-panel { margin-top: 0; }
.contact-form-wrap { padding: 1.5rem; }
.contact-form { display: grid; gap: 1rem; }
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.label-full { grid-column: 1 / -1; }
.contact-form label {
    display: grid;
    gap: 0.55rem;
    font-weight: 700;
    color: var(--cop-text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    padding: 0.95rem 1rem;
    font: inherit;
    color: var(--cop-text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(13, 43, 85, 0.38);
    box-shadow: 0 0 0 4px rgba(13, 43, 85, 0.08);
    transform: translateY(-1px);
}
.form-notice {
    margin-bottom: 1rem;
    border-radius: 16px;
    padding: 1rem 1.1rem;
    font-weight: 700;
}
.form-notice--success {
    background: rgba(13, 126, 78, 0.08);
    color: #0c6f47;
    border: 1px solid rgba(13, 126, 78, 0.15);
}
.form-notice--error {
    background: rgba(176, 38, 59, 0.08);
    color: #922438;
    border: 1px solid rgba(176, 38, 59, 0.12);
}
.form-privacy {
    font-size: 0.94rem;
    margin: 0;
}
.hp-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.legal-note {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    margin-top: 1.8rem;
}
.legal-note h3 { margin-bottom: 0.7rem; }

.prose-block > * + * { margin-top: 1rem; }
.prose-block h2 { margin-top: 2.4rem; }
.prose-block ul,
.prose-block ol { margin-top: 1rem; }

.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.archive-card__title a:hover { color: var(--cop-navy); }

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 0 0 1.5rem;
    background: linear-gradient(180deg, #0a1c36 0%, #08172e 100%);
    color: rgba(255,255,255,0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: -160px auto auto -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    pointer-events: none;
}
.footer-upper {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-upper__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.footer-stat {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.06);
    box-shadow: none;
    display: grid;
    gap: 0.25rem;
}
.footer-stat strong,
.footer-stat h3,
.footer-title,
.footer-heading,
.footer-bottom p,
.footer-links a,
.footer-menu a,
.footer-brand-mark,
.footer-copy,
.footer-links,
.footer-trust-card,
.footer-trust-card p,
.footer-trust-card h3,
.footer-legal-note { color: rgba(255,255,255,0.92); }
.footer-stat span,
.footer-copy,
.footer-links li,
.footer-menu li,
.footer-legal-note,
.footer-bottom p:last-child,
.footer-trust-card p { color: rgba(255,255,255,0.68); }
.footer-main {
    padding: 3.4rem 0 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}
.footer-grid--premium .footer-brand-block { padding-right: 1rem; }
.footer-brand-mark {
    display: inline-flex;
    margin-bottom: 1rem;
}
.footer-title {
    font-size: 1.42rem;
    margin-bottom: 0.8rem;
}
.footer-heading {
    font-size: 0.92rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.95rem;
}
.footer-copy { max-width: 32rem; }
.footer-links,
.footer-menu {
    display: grid;
    gap: 0.68rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links a,
.footer-menu a { transition: color 0.24s ease, transform 0.24s ease; }
.footer-links a:hover,
.footer-menu a:hover {
    color: #ffffff;
    transform: translateX(2px);
}
.footer-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.footer-trust-card {
    border-radius: var(--cop-radius-sm);
    padding: 1.2rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.footer-trust-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.02rem;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
    margin: 0;
    font-size: 0.92rem;
}
.footer-legal-note {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}
.screen-reader-text:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    background: #fff;
    z-index: 99999;
}

@media (max-width: 1180px) {
    .card-grid--five { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .card-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 1040px) {
    .hero-grid,
    .page-highlight-grid {
        grid-template-columns: 1fr;
    }
    .hero-copy { padding-bottom: 0; }
    .hero-panel { max-width: 760px; }
    .footer-upper__grid,
    .footer-trust-grid,
    .signature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .site-nav {
        position: absolute;
        inset: 88px 16px auto 16px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--cop-border);
        border-radius: 20px;
        padding: 1rem;
        box-shadow: var(--cop-shadow);
        display: none;
        justify-content: flex-start;
    }
    body.menu-open .site-nav { display: flex; }
    .primary-menu,
    .site-nav .menu {
        width: 100%;
        display: grid;
        gap: 0.25rem;
    }
    .primary-menu li,
    .site-nav .menu > li { width: 100%; }
    .primary-menu a,
    .site-nav .menu > li > a {
        display: block;
        width: 100%;
        padding: 0.78rem 0.25rem;
    }
    .primary-menu a::after,
    .primary-menu li > a::after { display: none; }
    .menu-toggle { display: inline-flex; }
    .header-cta { display: none; }
    .hero-grid,
    .two-column,
    .contact-layout,
    .vertical-row,
    .page-grid--asymmetric {
        grid-template-columns: 1fr;
    }
    .card-grid--three,
    .card-grid--two,
    .archive-grid,
    .signature-grid,
    .footer-grid,
    .footer-trust-grid { grid-template-columns: 1fr; }
    .card-grid--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .card-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stats-strip,
    .footer-upper__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cta-banner,
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .cta-banner h2 { max-width: none; }
}

@media (max-width: 640px) {
    .container,
    .container.narrow,
    .narrow { width: min(calc(100% - 22px), var(--cop-max)); }
    .site-header__inner { min-height: 76px; }
    .site-nav { inset: 76px 11px auto 11px; }
    .metric-grid,
    .form-grid,
    .stats-strip,
    .card-grid--five,
    .card-grid--four,
    .footer-grid,
    .footer-upper__grid,
    .footer-trust-grid,
    .signature-grid { grid-template-columns: 1fr; }
    .hero-panel,
    .feature-card,
    .vertical-card,
    .vertical-row,
    .contact-form-wrap,
    .archive-grid .feature-card,
    .page-intro-card,
    .signature-card,
    .footer-stat,
    .footer-trust-card,
    .legal-note,
    .page-highlight { padding: 1.15rem; }
    .section { padding: 3.5rem 0; }
    .button,
    .header-cta { width: 100%; }
    .button-row,
    .hero-badges { flex-direction: column; }
    .hero-badge { width: 100%; justify-content: flex-start; }
    .section-head h2,
    h1 { letter-spacing: -0.045em; }
    .contact-form textarea { min-height: 180px; }
}


/* Premium finish v1.3 */
.hero-credibility {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.5rem;
}
.hero-credibility__item {
    border: 1px solid rgba(13, 43, 85, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--cop-shadow-card);
    border-radius: 18px;
    padding: 0.95rem 1rem;
}
.hero-credibility__item span {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cop-muted-2);
    margin-bottom: 0.3rem;
    font-weight: 700;
}
.hero-credibility__item strong {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
}
.section--page-header .page-highlight,
.section--page-header .page-intro-card {
    align-self: stretch;
}
.section--page-header .page-highlight,
.section--page-header .page-intro-card,
.contact-form-wrap,
.contact-card,
.response-panel,
.vertical-row,
.signature-card,
.feature-card,
.vertical-card {
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--cop-shadow-card);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,251,254,1));
}
.vertical-row {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}
.page-highlight p:last-child,
.page-intro-card p:last-child {
    margin-bottom: 0;
}
.site-footer {
    padding-bottom: 1.65rem;
}
.footer-upper__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.footer-main {
    padding: 3rem 0 0.25rem;
}
.footer-stat {
    min-height: 128px;
}
.footer-stat strong {
    display: block;
    font-size: 1.7rem;
    line-height: 1;
    margin-bottom: 0.55rem;
}
.footer-brand-block,
.footer-links,
.footer-copy,
.footer-bottom p,
.contact-card a {
    overflow-wrap: anywhere;
}
.footer-brand-block {
    max-width: 34rem;
}
.footer-grid--premium {
    row-gap: 1.8rem;
}
.footer-trust-grid {
    margin-top: 2.25rem;
}
.footer-bottom--premium {
    margin-top: 1.8rem;
}
.footer-legal-note {
    max-width: 68rem;
}
.contact-layout--premium {
    align-items: stretch;
}
.form-notice {
    box-shadow: var(--cop-shadow-card);
}
@media (max-width: 1180px) {
    .hero-credibility {
        grid-template-columns: 1fr;
    }
    .footer-upper__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 960px) {
    .site-header {
        backdrop-filter: blur(16px);
    }
    .section--page-header {
        padding: 3.7rem 0 1.75rem;
    }
    .footer-upper__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .hero {
        padding-top: 3.7rem;
    }
    .hero-badge {
        border-radius: 18px;
    }
    .hero-credibility__item,
    .footer-stat,
    .footer-trust-card {
        min-height: 0;
    }
    .footer-upper__grid {
        grid-template-columns: 1fr;
    }
    .footer-title {
        font-size: 1.26rem;
    }
    .site-brand__tag {
        font-size: 0.69rem;
        letter-spacing: 0.12em;
    }
}

.site-brand--image {
    gap: 0.35rem;
}
.site-brand__image {
    display: block;
    width: auto;
    height: 58px;
    max-width: 430px;
    object-fit: contain;
}
.site-brand__name--light { color: #fff; }
.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}
.footer-brand-logo img {
    display: block;
    height: 52px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
}
.client-logo-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}
.client-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 104px;
    padding: 1.25rem;
    background: rgba(255,255,255,0.88);
    border: 1px solid var(--cop-border);
    border-radius: 20px;
    box-shadow: var(--cop-shadow-card);
}
.client-logo-card img {
    max-width: 100%;
    max-height: 34px;
    width: auto;
    opacity: 0.78;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.client-logo-card:hover img {
    opacity: 1;
    transform: translateY(-1px);
}
.metric-animated-value {
    display: inline-block;
}
.section-head--tight {
    max-width: 860px;
    margin-bottom: 1.6rem;
}
.cop-card-style-outline .hero-panel,
.cop-card-style-outline .feature-card,
.cop-card-style-outline .vertical-card,
.cop-card-style-outline .vertical-row,
.cop-card-style-outline .contact-form-wrap,
.cop-card-style-outline .contact-card,
.cop-card-style-outline .archive-grid .feature-card,
.cop-card-style-outline .page-intro-card,
.cop-card-style-outline .signature-card,
.cop-card-style-outline .footer-stat,
.cop-card-style-outline .footer-trust-card,
.cop-card-style-outline .legal-note,
.cop-card-style-outline .page-highlight,
.cop-card-style-outline .metric-card,
.cop-card-style-outline .client-logo-card {
    box-shadow: none;
    border-color: rgba(13, 43, 85, 0.18);
}
.cop-card-style-glass .hero-panel,
.cop-card-style-glass .feature-card,
.cop-card-style-glass .vertical-card,
.cop-card-style-glass .vertical-row,
.cop-card-style-glass .contact-form-wrap,
.cop-card-style-glass .contact-card,
.cop-card-style-glass .archive-grid .feature-card,
.cop-card-style-glass .page-intro-card,
.cop-card-style-glass .signature-card,
.cop-card-style-glass .footer-stat,
.cop-card-style-glass .footer-trust-card,
.cop-card-style-glass .legal-note,
.cop-card-style-glass .page-highlight,
.cop-card-style-glass .metric-card,
.cop-card-style-glass .client-logo-card {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(16px);
    border-color: rgba(255,255,255,0.58);
    box-shadow: 0 18px 44px rgba(10,24,46,0.09);
}
.cop-reveal-disabled .reveal {
    opacity: 1 !important;
    transform: none !important;
}
@media (max-width: 1080px) {
    .client-logo-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 720px) {
    .site-brand__image {
        height: 46px;
        max-width: 320px;
    }
    .footer-brand-logo img {
        height: 42px;
    }
    .client-logo-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }
    .client-logo-card {
        min-height: 88px;
        padding: 1rem;
    }
    .client-logo-card img {
        max-height: 28px;
    }
}


.hero-copy {
    position: relative;
}
.hero-copy::after {
    content: "";
    position: absolute;
    inset: auto auto -28px -18px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(13,43,85,0.08), transparent 72%);
    pointer-events: none;
}
.hero-panel {
    overflow: hidden;
}
.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,43,85,0.03), transparent 26%);
    pointer-events: none;
}
.client-logo-card {
    position: relative;
    overflow: hidden;
}
.client-logo-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(13,43,85,0.9), rgba(13,43,85,0.28));
    opacity: 0;
    transition: opacity 0.22s ease;
}
.client-logo-card:hover::before { opacity: 1; }
.section--page-header {
    background:
        radial-gradient(circle at 100% 0%, rgba(13, 43, 85, 0.08), transparent 22%),
        linear-gradient(180deg, #fbfdff 0%, #f5f8fd 100%);
}
.page-highlight--dark {
    background: linear-gradient(135deg, #0b1e3f, #123462);
}
.footer-upper {
    position: relative;
}
.footer-upper::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.22), rgba(255,255,255,0));
}
.footer-main {
    position: relative;
}
.footer-main::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.14), rgba(255,255,255,0));
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    background: linear-gradient(180deg, #ffffff, #fbfdff);
}
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: rgba(13, 43, 85, 0.2);
}
.button:focus-visible,
.header-cta:focus-visible,
.menu-toggle:focus-visible,
.primary-menu a:focus-visible {
    outline: 3px solid rgba(13,43,85,0.18);
    outline-offset: 3px;
}

@media (max-width: 560px) {
    .site-header__inner {
        gap: 0.7rem;
        min-height: 80px;
    }
    .site-brand__image {
        height: 40px;
        max-width: 270px;
    }
    .site-header.is-scrolled .site-header__inner {
        min-height: 74px;
    }
    .site-nav {
        inset: 82px 12px auto 12px;
    }
    .hero-copy::after {
        width: 120px;
        height: 120px;
    }
}

/* v1.8 strategic completeness */
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    color: var(--cop-navy);
}
.text-link::after {
    content: '→';
    transition: transform 0.2s ease;
}
.text-link:hover::after { transform: translateX(2px); }

.eyebrow--small {
    font-size: 0.74rem;
    letter-spacing: 0.15em;
}

.cop-breadcrumbs {
    margin-bottom: 1rem;
}
.cop-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.cop-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(15, 23, 42, 0.56);
    font-size: 0.9rem;
}
.cop-breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: rgba(15, 23, 42, 0.28);
}
.cop-breadcrumbs a:hover { color: var(--cop-text); }

.feature-card--linkable {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}
.insight-card {
    padding: 1.55rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--cop-border);
    box-shadow: var(--cop-shadow-card);
}
.insight-card h3,
.insight-card .archive-card__title {
    margin-bottom: 0.7rem;
}
.insight-card h3 a,
.insight-card .archive-card__title a {
    color: var(--cop-text);
}
.insight-meta,
.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 0 0 0.95rem;
    color: var(--cop-muted-2);
    font-size: 0.92rem;
}
.article-meta-row span,
.insight-meta span {
    position: relative;
}
.article-meta-row span:not(:last-child)::after,
.insight-meta span:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.47rem;
    top: 50%;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-radius: 999px;
    background: rgba(13, 43, 85, 0.22);
}

.archive-grid--insights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.methodology-steps {
    display: grid;
    gap: 1rem;
}
.method-step {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    background: #fff;
    border: 1px solid var(--cop-border);
    border-radius: 24px;
    box-shadow: var(--cop-shadow-card);
}
.method-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--cop-navy), #174581);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.prose-block--article {
    font-size: 1.08rem;
}
.prose-block--article h2 {
    margin-top: 2.2rem;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
}
.prose-block--article p {
    margin-bottom: 1.2rem;
}

.pagination,
.nav-links {
    display: flex;
    gap: 0.65rem;
    justify-content: center;
    margin-top: 2rem;
}
.nav-links .page-numbers {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--cop-border);
    background: #fff;
    box-shadow: var(--cop-shadow-card);
    font-weight: 700;
}
.nav-links .current {
    background: linear-gradient(135deg, var(--cop-navy), #173f79);
    color: #fff;
    border-color: transparent;
}

@media (max-width: 1320px) {
    .primary-menu {
        gap: 1rem;
    }
    .primary-menu a,
    .primary-menu li > a {
        font-size: 0.92rem;
    }
    .site-brand__image {
        height: 52px;
        max-width: 360px;
    }
}

@media (max-width: 1120px) {
    .site-header__inner {
        gap: 0.85rem;
    }
    .primary-menu {
        gap: 0.78rem;
    }
    .primary-menu a,
    .primary-menu li > a {
        font-size: 0.88rem;
    }
    .header-cta,
    .button {
        padding: 0.9rem 1.2rem;
    }
    .insight-grid,
    .archive-grid--insights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .insight-grid,
    .archive-grid--insights {
        grid-template-columns: 1fr;
    }
    .method-step {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cop-breadcrumbs li {
        font-size: 0.82rem;
    }
    .insight-card {
        padding: 1.25rem;
    }
    .method-step__number {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }
}

/* v1.8.1 premium UX refinement */
:root {
    --cop-max: 1320px;
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(0.75rem, 1vw, 1.25rem);
    min-height: 84px;
}
.site-header__branding,
.site-nav {
    min-width: 0;
}
.site-brand__image {
    height: 48px;
    max-width: 300px;
}
.primary-menu {
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(0.45rem, 0.85vw, 0.9rem);
    min-width: max-content;
}
.primary-menu > li {
    flex: 0 0 auto;
}
.primary-menu a,
.primary-menu li > a {
    white-space: nowrap;
    font-size: clamp(0.83rem, 0.14vw + 0.78rem, 0.92rem);
    line-height: 1.1;
    padding: 0.45rem 0.02rem;
}
.header-cta {
    white-space: nowrap;
    font-size: 0.93rem;
    padding: 0.85rem 1.16rem;
}

.hero-grid {
    gap: 2.4rem;
}
.hero-copy h1 {
    max-width: 11ch;
}
.hero-panel {
    padding: 1.5rem;
}
.metric-card,
.feature-card,
.vertical-card,
.vertical-row,
.contact-form-wrap,
.contact-card,
.archive-grid .feature-card,
.page-intro-card,
.signature-card,
.footer-stat,
.footer-trust-card,
.legal-note,
.page-highlight,
.insight-card,
.method-step {
    border-radius: 28px;
}
.metric-card {
    padding: 1.25rem 1.2rem;
}
.metric-card__value {
    font-size: clamp(1.85rem, 2.8vw, 3rem);
    margin-bottom: 0.6rem;
}
.metric-card__label {
    font-size: 1rem;
    line-height: 1.46;
}
.metric-card--large .metric-card__label {
    color: rgba(255,255,255,0.86);
}
.hero-summary {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}
.hero-signal {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(13, 43, 85, 0.04);
    border: 1px solid rgba(13, 43, 85, 0.08);
}
.hero-signal strong {
    display: block;
    margin-bottom: 0.25rem;
}
.hero-signal span {
    color: var(--cop-muted);
    font-size: 0.97rem;
    line-height: 1.5;
}
.hero-credibility {
    gap: 0.85rem;
    margin-top: 1.6rem;
}
.hero-credibility__item {
    min-width: 160px;
    padding: 0.9rem 1rem;
    border-radius: 18px;
}

.section-head {
    max-width: 920px;
    display: grid;
    gap: 0.75rem;
}
.section-head h2 {
    max-width: 20ch;
}
.section-head p,
.page-intro,
.hero-lead {
    max-width: 58rem;
}
.feature-card,
.vertical-row,
.signature-card,
.page-highlight,
.insight-card,
.page-intro-card,
.contact-card,
.contact-form-wrap,
.method-step {
    padding: 1.75rem;
}
.feature-card h3,
.vertical-card h3,
.vertical-row h2,
.vertical-row h3,
.signature-card h3,
.page-highlight h3,
.insight-card h3,
.page-intro-card h3,
.contact-card h3,
.method-step h3 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.32rem, 1.25vw, 1.72rem);
}
.feature-card p,
.vertical-card p,
.vertical-row p,
.signature-card p,
.page-highlight p,
.insight-card p,
.page-intro-card p,
.contact-card p,
.contact-form-wrap p,
.method-step p,
.page-intro-card__list span {
    font-size: 1.02rem;
    line-height: 1.72;
}

.section--dark .stats-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.section--dark .stat {
    padding: 1.15rem 1.2rem;
    text-align: left;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.section--dark .stat strong {
    font-size: clamp(1.9rem, 2.2vw, 2.5rem);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.section--dark .stat span {
    display: block;
    font-size: 1rem;
    line-height: 1.46;
    color: rgba(255,255,255,0.78);
}

.client-proof-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 2rem;
    align-items: start;
}
.client-proof-copy h2 {
    max-width: 11ch;
}
.client-fit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.1rem;
}
.client-fit-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    background: rgba(13, 43, 85, 0.06);
    border: 1px solid rgba(13, 43, 85, 0.1);
    color: var(--cop-text);
    font-size: 0.9rem;
    font-weight: 700;
}
.client-proof-wall {
    display: grid;
    gap: 1rem;
}
.client-logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.client-logo-card {
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 116px;
    padding: 1.3rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,255,0.96));
}
.client-logo-card img {
    max-height: 42px;
    opacity: 0.94;
}
.client-proof-note {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(13, 43, 85, 0.04);
    border: 1px solid rgba(13, 43, 85, 0.08);
}
.client-proof-note strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}
.client-proof-note span {
    color: var(--cop-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.insight-grid {
    gap: 1.5rem;
}
.insight-card {
    padding: 1.7rem;
}
.insight-grid + .button-row--center {
    margin-top: 1.4rem;
}

.page-highlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 1.5rem;
    align-items: stretch;
}
.page-intro-card__list {
    gap: 0.75rem;
}
.page-intro-card__list span {
    display: block;
}

.cta-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
}
.cta-banner h2 {
    max-width: 14ch;
}
.section--cta .button--light {
    min-width: 220px;
}

.footer-upper__grid {
    gap: 1rem;
}
.footer-stat {
    padding: 1.35rem 1.25rem;
}
.footer-stat strong {
    font-size: clamp(1.85rem, 2.2vw, 2.4rem);
    line-height: 1;
}
.footer-stat span {
    font-size: 1rem;
    line-height: 1.5;
}
.footer-grid--premium {
    grid-template-columns: 1.15fr 0.8fr 0.9fr 0.8fr 0.8fr;
    gap: 1.35rem;
}
.footer-links,
.footer-menu {
    gap: 0.72rem;
}
.footer-links a,
.footer-menu a,
.footer-links li,
.footer-menu li {
    font-size: 1rem;
    line-height: 1.65;
}
.footer-copy {
    font-size: 1.04rem;
}
.footer-trust-grid {
    gap: 1rem;
}
.footer-trust-card p {
    font-size: 0.98rem;
    line-height: 1.62;
}

@media (max-width: 1260px) {
    .site-nav {
        position: absolute;
        inset: 84px 16px auto 16px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--cop-border);
        border-radius: 20px;
        padding: 1rem;
        box-shadow: var(--cop-shadow);
        display: none;
        justify-content: flex-start;
    }
    body.menu-open .site-nav { display: flex; }
    .primary-menu,
    .site-nav .menu {
        width: 100%;
        display: grid;
        gap: 0.25rem;
        min-width: 0;
    }
    .primary-menu li,
    .site-nav .menu > li { width: 100%; }
    .primary-menu a,
    .site-nav .menu > li > a {
        display: block;
        width: 100%;
        white-space: normal;
        padding: 0.78rem 0.25rem;
        font-size: 0.96rem;
    }
    .primary-menu a::after,
    .primary-menu li > a::after { display: none; }
    .menu-toggle { display: inline-flex; }
    .header-cta { display: none; }
}

@media (max-width: 1180px) {
    .client-proof-layout,
    .page-highlight-grid,
    .footer-grid--premium,
    .cta-banner,
    .section--dark .stats-strip {
        grid-template-columns: 1fr;
    }
    .cta-banner {
        align-items: flex-start;
    }
}

@media (max-width: 920px) {
    .client-logo-strip,
    .stats-strip,
    .footer-upper__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .site-brand__image {
        height: 42px;
        max-width: 260px;
    }
    .section-head h2,
    .client-proof-copy h2,
    .cta-banner h2 {
        max-width: none;
    }
    .client-logo-strip,
    .stats-strip,
    .footer-upper__grid,
    .card-grid--four,
    .card-grid--five {
        grid-template-columns: 1fr;
    }
    .client-logo-card {
        min-height: 94px;
    }
    .metric-card__label,
    .section--dark .stat span,
    .footer-stat span {
        font-size: 0.95rem;
    }
}


/* v1.8.2 visual micro-polish */
.site-header__inner {
    gap: 0.85rem;
}
.site-header__branding {
    flex: 0 0 auto;
}
.site-nav {
    min-width: 0;
}
.site-brand__image {
    height: 47px;
    max-width: 238px;
}
.primary-menu {
    flex-wrap: nowrap;
    gap: 0.8rem;
}
.primary-menu li {
    flex: 0 0 auto;
}
.primary-menu a,
.primary-menu li > a {
    white-space: nowrap;
    line-height: 1.18;
    font-size: 0.84rem;
    letter-spacing: -0.01em;
    padding: 0.55rem 0.05rem;
}
.header-cta {
    flex: 0 0 auto;
    white-space: nowrap;
    min-width: 166px;
    padding: 0.9rem 1.28rem;
    font-size: 0.96rem;
}
.hero {
    padding: clamp(4rem, 7vw, 6.8rem) 0 clamp(3rem, 6vw, 5.2rem);
}
.hero-grid {
    gap: 2.4rem;
    align-items: start;
}
.hero-copy {
    padding-top: 0.55rem;
}
.hero-lead,
.page-intro {
    font-size: clamp(1.12rem, 1vw + 0.9rem, 1.34rem);
    line-height: 1.72;
}
.metric-grid {
    gap: 1rem;
}
.metric-card {
    min-height: 148px;
    padding: 1.28rem 1.35rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.metric-card--large {
    min-height: auto;
    padding: 1.42rem 1.4rem;
}
.metric-card__value {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    margin-bottom: 0.65rem;
}
.metric-card__label {
    font-size: 1.05rem;
    line-height: 1.45;
    max-width: 18ch;
}
.metric-card--large .metric-card__label {
    font-size: 1.08rem;
    max-width: 28ch;
}
.hero-summary {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}
.hero-signal {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(13, 43, 85, 0.04);
    border: 1px solid rgba(13, 43, 85, 0.08);
}
.hero-signal strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.hero-signal span {
    color: var(--cop-muted);
    font-size: 0.96rem;
    line-height: 1.56;
}
.section {
    padding: clamp(4rem, 7vw, 6rem) 0;
}
.section-head {
    margin-bottom: 2.7rem;
}
.section-head h2 {
    max-width: 18ch;
}
.feature-card,
.vertical-card,
.vertical-row,
.signature-card,
.page-highlight,
.insight-card,
.page-intro-card,
.contact-card,
.contact-form-wrap,
.method-step,
.footer-stat,
.footer-trust-card {
    border-radius: 24px;
}
.feature-card,
.vertical-card,
.signature-card,
.page-highlight,
.insight-card,
.page-intro-card,
.method-step {
    display: flex;
    flex-direction: column;
}
.feature-card p:last-of-type,
.vertical-card p:last-of-type,
.signature-card p:last-of-type,
.page-highlight p:last-of-type,
.insight-card p:last-of-type,
.page-intro-card p:last-of-type,
.method-step p:last-of-type {
    margin-bottom: 0;
}
.text-link {
    margin-top: auto;
    padding-top: 1rem;
}
.section--dark {
    padding: 2rem 0;
}
.section--dark .stats-strip {
    gap: 1.15rem;
}
.section--dark .stat {
    min-height: 132px;
    padding: 1.32rem 1.3rem;
    border-radius: 24px;
}
.section--dark .stat strong {
    font-size: clamp(2.15rem, 2.7vw, 3rem);
    margin-bottom: 0.45rem;
}
.section--dark .stat span {
    font-size: 1.08rem;
    line-height: 1.42;
    max-width: 16ch;
}
.client-proof-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2.35rem;
    align-items: start;
}
.client-proof-copy {
    display: grid;
    gap: 1rem;
}
.client-proof-copy h2 {
    max-width: 10ch;
}
.client-proof-copy > p {
    max-width: 56ch;
}
.client-fit-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 0.25rem;
}
.client-fit-point {
    padding: 1rem 1rem 1.02rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(13, 43, 85, 0.08);
    box-shadow: var(--cop-shadow-card);
}
.client-fit-point strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.98rem;
}
.client-fit-point span {
    display: block;
    color: var(--cop-muted);
    font-size: 0.94rem;
    line-height: 1.52;
}
.client-proof-wall {
    gap: 1.1rem;
}
.client-logo-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.client-logo-card {
    min-height: 124px;
    border-radius: 22px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1.1rem;
    border: 1px solid rgba(13, 43, 85, 0.08);
    box-shadow: 0 14px 34px rgba(7, 23, 45, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.client-logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(7, 23, 45, 0.08);
    border-color: rgba(13, 43, 85, 0.16);
}
.client-logo-card img {
    max-width: 140px;
    max-height: 38px;
    width: auto;
    height: auto;
    opacity: 0.9;
    filter: saturate(0.78);
}
.client-proof-note {
    padding: 1.12rem 1.18rem;
    border-radius: 22px;
}
.client-proof-note strong {
    font-size: 1.02rem;
}
.client-proof-note span {
    font-size: 0.97rem;
}
.insight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.insight-card {
    min-height: 100%;
}
.insight-card h3 {
    font-size: clamp(1.38rem, 1.2vw, 1.8rem);
}
.cta-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 2rem;
}
.cta-banner h2 {
    max-width: 12ch;
}
.cta-banner p {
    max-width: 44rem;
}
.site-footer {
    padding-bottom: 1.85rem;
}
.footer-upper {
    padding: 1.4rem 0;
}
.footer-upper__grid {
    gap: 1.1rem;
}
.footer-stat {
    min-height: 138px;
    padding: 1.3rem 1.25rem;
    border-radius: 24px;
}
.footer-stat strong {
    font-size: 2rem;
    margin-bottom: 0.45rem;
}
.footer-stat span {
    font-size: 1.02rem;
    line-height: 1.5;
}
.footer-main {
    padding-top: 3.2rem;
}
.footer-grid {
    gap: 1.6rem;
}
.footer-title {
    font-size: 1.5rem;
}
.footer-copy,
.footer-links li,
.footer-menu li,
.footer-bottom p,
.footer-trust-card p,
.footer-legal-note {
    font-size: 1rem;
    line-height: 1.7;
}
.footer-trust-card h3 {
    font-size: 1.08rem;
}
.footer-bottom {
    align-items: center;
}
.site-brand__image,
.footer-brand-logo img,
.client-logo-card img {
    vertical-align: middle;
}

@media (min-width: 1500px) {
    .site-brand__image {
        height: 50px;
        max-width: 252px;
    }
    .primary-menu {
        gap: 0.92rem;
    }
    .primary-menu a,
    .primary-menu li > a {
        font-size: 0.87rem;
    }
}

@media (max-width: 1200px) {
    .site-brand__image {
        height: 44px;
        max-width: 220px;
    }
    .primary-menu {
        gap: 0.68rem;
    }
    .primary-menu a,
    .primary-menu li > a {
        font-size: 0.8rem;
    }
    .header-cta {
        min-width: 150px;
        padding: 0.82rem 1.08rem;
        font-size: 0.92rem;
    }
    .client-fit-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .site-nav {
        position: absolute;
        inset: 88px 16px auto 16px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--cop-border);
        border-radius: 20px;
        padding: 1rem;
        box-shadow: var(--cop-shadow);
        display: none;
        justify-content: flex-start;
    }
    body.menu-open .site-nav { display: flex; }
    .primary-menu,
    .site-nav .menu {
        width: 100%;
        display: grid;
        gap: 0.25rem;
    }
    .primary-menu li,
    .site-nav .menu > li { width: 100%; }
    .primary-menu a,
    .site-nav .menu > li > a {
        display: block;
        width: 100%;
        padding: 0.8rem 0.25rem;
        white-space: normal;
        font-size: 0.95rem;
    }
    .primary-menu a::after,
    .primary-menu li > a::after { display: none; }
    .menu-toggle { display: inline-flex; }
    .header-cta { display: none; }
    .site-brand__image {
        height: 46px;
        max-width: 228px;
    }
}

@media (max-width: 960px) {
    .client-proof-layout,
    .cta-banner,
    .insight-grid {
        grid-template-columns: 1fr;
    }
    .client-logo-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .section--dark .stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cta-banner .button {
        width: auto;
    }
}

@media (max-width: 640px) {
    .site-brand__image {
        height: 42px;
        max-width: 206px;
    }
    .metric-card,
    .metric-card--large,
    .client-logo-card,
    .client-fit-point,
    .footer-stat,
    .footer-trust-card {
        min-height: 0;
    }
    .client-logo-strip,
    .section--dark .stats-strip,
    .insight-grid {
        grid-template-columns: 1fr;
    }
    .metric-card__label,
    .metric-card--large .metric-card__label,
    .section--dark .stat span,
    .footer-stat span {
        font-size: 1rem;
    }
}

/* v1.8.3 ultra-fine visual polish */
.site-header__inner {
    gap: 0.75rem;
    min-height: 82px;
}
.site-header__branding {
    flex: 0 0 auto;
    max-width: 220px;
}
.site-brand--image,
.site-brand--image img,
.custom-logo-link img {
    display: block;
}
.site-brand__image,
.custom-logo-link img {
    width: auto;
    height: 42px;
    max-width: 100%;
}
.site-nav {
    min-width: 0;
}
.primary-menu {
    gap: 0.82rem;
    flex-wrap: nowrap;
}
.primary-menu > li {
    min-width: 0;
}
.primary-menu a,
.primary-menu li > a {
    font-size: 0.89rem;
    font-weight: 600;
    letter-spacing: -0.012em;
    white-space: nowrap;
    line-height: 1.2;
    padding: 0.42rem 0.08rem;
}
.header-cta {
    flex: 0 0 auto;
    min-width: 160px;
    padding: 0.9rem 1.24rem;
    font-size: 0.94rem;
}

.hero-grid {
    gap: 1.9rem;
    align-items: start;
}
.hero-copy h1 {
    max-width: 10.1ch;
    letter-spacing: -0.052em;
}
.hero-lead {
    max-width: 51rem;
}
.hero-panel {
    border-radius: 30px;
}
.metric-card {
    min-height: 132px;
    border-radius: 22px;
}
.metric-card--large {
    min-height: 146px;
}
.metric-card__value {
    font-size: clamp(2.25rem, 4vw, 3.35rem);
    line-height: 0.95;
}
.metric-card__label {
    font-size: 1.03rem;
    line-height: 1.45;
}
.metric-card--large .metric-card__label {
    font-size: 1.07rem;
}
.hero-summary {
    gap: 0.9rem;
}
.hero-signal {
    font-size: 0.98rem;
}

.section--dark .stats-strip,
.stats-strip,
.footer-upper__grid {
    gap: 1rem;
}
.stat strong {
    font-size: clamp(2rem, 2.8vw, 2.7rem);
    line-height: 1;
    letter-spacing: -0.03em;
}
.stat span {
    font-size: 1rem;
    line-height: 1.45;
}

.signature-grid {
    gap: 1.15rem;
}
.signature-card {
    border-radius: 24px;
    padding: 1.65rem 1.45rem;
}

.client-proof-layout {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.4rem;
    align-items: start;
}
.client-proof-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 4vw, 4rem);
    line-height: 1.02;
}
.client-proof-copy > p {
    max-width: 58rem;
    font-size: 1.05rem;
}
.client-fit-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.35rem;
}
.client-fit-point {
    min-height: 100%;
    border-radius: 20px;
    padding: 1rem 1rem 0.95rem;
}
.client-fit-point strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}
.client-proof-wall {
    border-radius: 28px;
    padding: 1.2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.95));
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 20px 48px rgba(12, 27, 49, 0.08);
}
.client-logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}
.client-logo-card {
    min-height: 98px;
    border-radius: 22px;
    padding: 1rem;
}
.client-logo-card img {
    max-height: 30px;
    width: auto;
}
.client-proof-note {
    border-radius: 20px;
    padding: 1rem 1.05rem;
    font-size: 0.98rem;
}
.client-proof-note strong {
    font-size: 1rem;
}

.section-head h2,
.two-column h2,
.cta-banner h2,
.page-hero h1,
.archive-hero h1 {
    max-width: 13ch;
}
.card-grid--four {
    gap: 1rem;
}
.feature-card,
.vertical-card,
.contact-card,
.contact-form-wrap,
.insight-card,
.archive-grid .feature-card,
.page-intro-card,
.footer-trust-card {
    border-radius: 24px;
}
.feature-card,
.vertical-card,
.contact-card,
.contact-form-wrap,
.insight-card,
.archive-grid .feature-card,
.page-intro-card,
.signature-card,
.footer-trust-card,
.footer-stat {
    padding: 1.4rem 1.3rem;
}
.feature-card h3,
.vertical-card h3,
.insight-card h3,
.footer-trust-card h3 {
    font-size: clamp(1.35rem, 1.8vw, 1.72rem);
    line-height: 1.08;
}
.text-link {
    font-weight: 700;
}

.section--cta {
    padding-top: clamp(3.8rem, 6vw, 5rem);
    padding-bottom: clamp(3.8rem, 6vw, 5rem);
}
.cta-banner {
    grid-template-columns: minmax(0, 1.05fr) auto;
    align-items: center;
    gap: 1.4rem;
    padding: clamp(2rem, 3.8vw, 3rem);
    border-radius: 32px;
}
.cta-banner h2 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 4vw, 4.15rem);
}
.cta-banner p {
    max-width: 50rem;
    font-size: 1.06rem;
}
.section--cta .button--light {
    min-width: 196px;
}

.footer-upper__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.footer-stat {
    min-height: 148px;
    border-radius: 22px;
    padding: 1.2rem 1.2rem 1.15rem;
}
.footer-stat strong {
    font-size: clamp(2rem, 2.8vw, 2.7rem);
    letter-spacing: -0.03em;
}
.footer-stat span {
    font-size: 1rem;
    line-height: 1.52;
}
.footer-grid--premium {
    gap: 1.4rem;
    grid-template-columns: 1.24fr 0.9fr 0.92fr 0.75fr 0.82fr;
}
.footer-title {
    font-size: 2rem;
}
.footer-copy,
.footer-links li,
.footer-menu li,
.footer-legal-note,
.footer-bottom p {
    font-size: 0.985rem;
    line-height: 1.7;
}
.footer-heading {
    font-size: 0.92rem;
    letter-spacing: 0.16em;
}
.footer-links,
.footer-menu {
    gap: 0.6rem;
}
.footer-trust-grid {
    gap: 1rem;
}
.footer-trust-card {
    min-height: 168px;
}
.footer-trust-card p {
    max-width: 40ch;
}

@media (max-width: 1380px) {
    .site-header__branding { max-width: 205px; }
    .site-brand__image,
    .custom-logo-link img { height: 39px; }
    .primary-menu { gap: 0.72rem; }
    .primary-menu a,
    .primary-menu li > a { font-size: 0.85rem; }
    .header-cta { min-width: 148px; padding-inline: 1.1rem; }
}

@media (max-width: 1240px) {
    .site-header__inner { gap: 0.65rem; }
    .site-header__branding { max-width: 190px; }
    .site-brand__image,
    .custom-logo-link img { height: 37px; }
    .primary-menu { gap: 0.58rem; }
    .primary-menu a,
    .primary-menu li > a { font-size: 0.81rem; }
    .header-cta { min-width: 138px; font-size: 0.9rem; padding: 0.84rem 1rem; }
    .client-fit-points { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
    .hero-grid,
    .client-proof-layout,
    .cta-banner,
    .footer-grid--premium { grid-template-columns: 1fr; }
    .site-brand__image,
    .custom-logo-link img { height: 36px; }
    .footer-grid--premium { gap: 1.2rem; }
    .client-logo-strip,
    .footer-upper__grid,
    .stats-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
    .client-logo-strip,
    .stats-strip,
    .footer-upper__grid,
    .card-grid--four { grid-template-columns: 1fr; }
    .client-proof-copy h2,
    .cta-banner h2,
    .section-head h2,
    .two-column h2,
    .page-hero h1,
    .archive-hero h1 { max-width: none; }
}

/* v1.8.4 definitive visual polish */
:root {
    --cop-max: 1280px;
}
.site-header {
    background: rgba(255, 255, 255, 0.94);
}
.site-header.is-scrolled {
    box-shadow: 0 14px 36px rgba(9, 25, 50, 0.07);
}
.site-header__inner {
    min-height: 82px;
    gap: 0.8rem;
}
.site-header__branding {
    max-width: 214px;
}
.site-brand__image {
    height: 44px;
    max-width: 214px;
}
.site-nav {
    padding-inline: 0.5rem;
}
.primary-menu {
    gap: 0.68rem;
}
.primary-menu a,
.primary-menu li > a {
    font-size: 0.82rem;
    font-weight: 550;
    letter-spacing: -0.012em;
    padding: 0.54rem 0.03rem;
}
.header-cta {
    min-width: 154px;
    padding: 0.86rem 1.14rem;
    font-size: 0.94rem;
}
.hero {
    padding: clamp(3.5rem, 6vw, 5.6rem) 0 clamp(3.1rem, 6vw, 4.8rem);
}
.hero-grid {
    gap: 2.1rem;
    align-items: stretch;
}
.hero-copy {
    padding-top: 0.2rem;
}
.hero-copy h1 {
    max-width: 8.4ch;
    font-size: clamp(3rem, 5.35vw, 5.25rem);
    line-height: 0.98;
    margin-bottom: 1.2rem;
}
.hero-lead {
    max-width: 45rem;
    font-size: clamp(1.08rem, 1vw + 0.84rem, 1.25rem);
    line-height: 1.74;
}
.hero-badges {
    gap: 0.65rem;
    margin-top: 1.35rem;
}
.hero-badge {
    padding: 0.68rem 0.86rem;
    font-size: 0.83rem;
}
.button-row {
    margin-top: 1.55rem;
}
.hero-credibility {
    margin-top: 1.35rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hero-credibility__item {
    min-width: 0;
    padding: 0.9rem 0.95rem;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(13,43,85,0.08);
    box-shadow: 0 10px 26px rgba(10,24,46,0.05);
}
.hero-credibility__item strong {
    font-size: 1rem;
}
.hero-panel {
    padding: 1.25rem;
    border-radius: 30px;
}
.metric-card {
    min-height: 140px;
    padding: 1.22rem 1.22rem;
}
.metric-card__value {
    font-size: clamp(2rem, 2.9vw, 3.05rem);
}
.metric-card__label {
    font-size: 1rem;
    line-height: 1.42;
    max-width: 17ch;
}
.metric-card--large .metric-card__label {
    max-width: 24ch;
}
.hero-summary {
    gap: 0.72rem;
}
.hero-signal {
    padding: 0.92rem 0.96rem;
}
.hero-signal strong {
    font-size: 0.98rem;
}
.hero-signal span {
    font-size: 0.93rem;
}
.section--dark {
    padding: 1.8rem 0;
}
.section--dark .stat {
    min-height: 124px;
    padding: 1.2rem 1.22rem;
    border-radius: 22px;
}
.section--dark .stat strong {
    font-size: clamp(2.2rem, 2.7vw, 3.2rem);
}
.section--dark .stat span {
    font-size: 0.98rem;
    line-height: 1.42;
    max-width: 17ch;
}
.client-proof-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
}
.client-proof-copy {
    align-content: start;
}
.client-proof-copy h2 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 4vw, 4.1rem);
}
.client-proof-copy > p {
    font-size: 1.04rem;
    line-height: 1.72;
}
.client-fit-points {
    grid-template-columns: 1fr;
    gap: 0.82rem;
}
.client-fit-point {
    position: relative;
    padding: 1rem 1rem 1rem 1.15rem;
    overflow: hidden;
}
.client-fit-point::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--cop-navy), rgba(13,43,85,0.18));
}
.client-fit-point strong {
    font-size: 1rem;
}
.client-fit-point span {
    font-size: 0.95rem;
}
.client-proof-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.2rem;
}
.client-fit-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.62rem 0.86rem;
    border-radius: 999px;
    background: rgba(13,43,85,0.05);
    border: 1px solid rgba(13,43,85,0.08);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--cop-text);
}
.client-proof-wall {
    gap: 0.9rem;
}
.client-logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.88rem;
}
.client-logo-card {
    min-height: 112px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,255,0.95));
}
.client-logo-card img {
    max-width: 132px;
    max-height: 34px;
}
.client-proof-note {
    background: linear-gradient(180deg, rgba(13,43,85,0.035), rgba(13,43,85,0.055));
}
.client-proof-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.82rem;
}
.client-proof-list > div {
    padding: 0.92rem 0.98rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(13,43,85,0.08);
    box-shadow: var(--cop-shadow-card);
}
.client-proof-list strong {
    display: block;
    margin-bottom: 0.22rem;
    font-size: 0.92rem;
    color: var(--cop-text);
}
.client-proof-list span {
    display: block;
    font-size: 0.88rem;
    line-height: 1.52;
    color: var(--cop-muted);
}
.section-head {
    margin-bottom: 2.35rem;
}
.insight-grid {
    gap: 1.1rem;
}
.insight-card {
    padding: 1.55rem;
}
.insight-card h3 {
    font-size: clamp(1.28rem, 1.08vw, 1.65rem);
    line-height: 1.08;
}
.cta-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem 2rem;
    align-items: center;
}
.cta-banner h2 {
    max-width: 10.2ch;
    font-size: clamp(2.4rem, 4.3vw, 4.7rem);
}
.cta-banner p {
    max-width: 42rem;
    color: rgba(255,255,255,0.84);
}
.section--cta .button--light {
    min-width: 196px;
}
.footer-upper {
    padding: 1.2rem 0 1.35rem;
}
.footer-upper__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}
.footer-stat {
    min-height: 126px;
    padding: 1.18rem 1.12rem;
}
.footer-stat strong {
    font-size: clamp(1.9rem, 2.3vw, 2.45rem);
}
.footer-stat span {
    font-size: 0.98rem;
    line-height: 1.45;
}
.footer-main {
    padding-top: 2.7rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid--premium {
    grid-template-columns: 1.25fr 0.85fr 0.92fr 0.7fr 0.85fr;
    gap: 1.2rem;
}
.footer-brand-block {
    max-width: 26rem;
}
.footer-copy {
    max-width: 24rem;
}
.footer-links li,
.footer-menu li {
    margin-bottom: 0.05rem;
}
.footer-contact-note {
    margin-top: 0.8rem;
    max-width: 20rem;
    font-size: 0.92rem;
    line-height: 1.58;
    color: rgba(255,255,255,0.66);
}
.footer-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}
.footer-trust-card {
    padding: 1.28rem 1.2rem;
}
.footer-legal-note {
    max-width: 56rem;
    color: rgba(255,255,255,0.62);
}
.footer-bottom--premium {
    padding-top: 1rem;
    margin-top: 1.2rem;
}

@media (max-width: 1360px) {
    .primary-menu { gap: 0.56rem; }
    .primary-menu a,
    .primary-menu li > a { font-size: 0.79rem; }
    .site-header__branding { max-width: 204px; }
    .site-brand__image { max-width: 204px; }
    .header-cta { min-width: 146px; padding-inline: 1rem; }
}

@media (max-width: 1180px) {
    .hero-grid,
    .client-proof-layout,
    .cta-banner,
    .footer-grid--premium,
    .footer-trust-grid,
    .footer-upper__grid,
    .client-proof-list {
        grid-template-columns: 1fr;
    }
    .hero-credibility,
    .client-fit-points {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
    .cta-banner h2,
    .client-proof-copy h2,
    .section-head h2 {
        max-width: none;
    }
    .footer-brand-block,
    .footer-copy,
    .footer-contact-note { max-width: none; }
}

@media (max-width: 920px) {
    .hero-grid,
    .two-column,
    .page-highlight-grid,
    .card-grid--four,
    .card-grid--five,
    .insight-grid,
    .footer-trust-grid,
    .footer-upper__grid,
    .client-logo-strip,
    .client-proof-list,
    .hero-credibility {
        grid-template-columns: 1fr 1fr;
    }
    .hero-copy h1 { max-width: none; }
    .site-header__branding { max-width: 196px; }
    .site-brand__image { max-width: 196px; }
}

@media (max-width: 720px) {
    .hero,
    .section { padding-block: 3.4rem; }
    .hero-credibility,
    .client-fit-points,
    .client-logo-strip,
    .client-proof-list,
    .insight-grid,
    .footer-trust-grid,
    .footer-upper__grid,
    .card-grid--four,
    .card-grid--five,
    .two-column,
    .page-highlight-grid {
        grid-template-columns: 1fr;
    }
    .site-brand__image { height: 40px; max-width: 188px; }
    .hero-copy h1 {
        font-size: clamp(2.45rem, 11vw, 3.6rem);
    }
    .metric-card,
    .section--dark .stat,
    .footer-stat,
    .client-logo-card {
        min-height: 0;
    }
    .cta-banner { gap: 1rem; }
}


/* v1.8.5 mobile-first definitive polish */
.site-shell,
.site-main,
.hero,
.section,
.site-footer {
    overflow-x: clip;
}

.hero-copy h1,
.section-head h2,
.client-proof-copy h2,
.cta-banner h2,
.insight-card h3,
.page-highlight h3,
.feature-card h3 {
    text-wrap: balance;
}

.site-nav__cta {
    display: none;
}
.site-header__branding,
.menu-toggle {
    min-width: 0;
}


.footer-menu--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.9rem;
    row-gap: 0.68rem;
}

@media (max-width: 920px) {
    body {
        overflow-x: hidden;
    }

    .site-header {
        z-index: 120;
    }

    .site-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 74px;
        gap: 0.7rem;
    }

    .site-header__branding {
        flex: 0 1 auto;
        max-width: 182px;
    }

    .site-brand__image,
    .custom-logo-link img {
        height: 34px;
        max-width: 176px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        margin-left: auto;
        padding: 0;
        border-radius: 14px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 10px 24px rgba(7, 23, 45, 0.08);
        flex: 0 0 auto;
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
    }

    .site-nav {
        position: fixed;
        top: calc(74px + env(safe-area-inset-top));
        left: 12px;
        right: 12px;
        inset-inline: 12px;
        max-height: calc(100vh - 92px);
        overflow: auto;
        padding: 0.95rem;
        border-radius: 24px;
        display: none;
        box-shadow: 0 28px 80px rgba(7, 23, 45, 0.18);
    }

    body.menu-open .site-nav {
        display: block;
    }

    .primary-menu,
    .site-nav .menu {
        display: grid;
        gap: 0.12rem;
    }

    .primary-menu a,
    .site-nav .menu > li > a {
        display: block;
        width: 100%;
        padding: 0.92rem 0.35rem;
        font-size: 1rem;
        font-weight: 700;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .primary-menu li:last-child > a,
    .site-nav .menu > li:last-child > a {
        border-bottom: 0;
    }

    .site-nav__cta {
        display: inline-flex;
        width: 100%;
        margin-top: 0.85rem;
        min-height: 54px;
    }

    .hero,
    .section {
        padding-block: 3.2rem;
    }

    .hero {
        padding-top: 1.15rem;
    }

    .hero-grid,
    .two-column,
    .page-highlight-grid,
    .contact-layout,
    .vertical-row,
    .page-grid--asymmetric,
    .client-proof-layout,
    .cta-banner,
    .signature-grid,
    .card-grid--four,
    .card-grid--five,
    .insight-grid,
    .footer-grid,
    .footer-grid--premium,
    .footer-trust-grid,
    .client-proof-list {
        grid-template-columns: 1fr !important;
    }

    .hero-grid {
        gap: 1rem;
        align-items: start;
    }

    .hero-copy {
        order: 1;
        padding: 0.25rem 0 0;
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 11vw, 3.45rem);
        max-width: 9.5ch;
        line-height: 0.97;
        margin-bottom: 0.95rem;
    }

    .hero-lead,
    .page-intro,
    .client-proof-copy > p,
    .section-head p,
    .cta-banner p {
        font-size: 1rem;
        line-height: 1.72;
    }

    .hero-badges,
    .button-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .button,
    .header-cta {
        width: 100%;
        min-height: 56px;
    }

    .hero-credibility {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hero-credibility__item {
        min-width: 0;
        padding: 0.9rem 0.95rem;
    }

    .hero-panel {
        order: 2;
        max-width: none;
        width: 100%;
        padding: 1rem;
        border-radius: 26px;
    }

    .metric-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }

    .metric-card,
    .metric-card--large {
        min-height: 0;
        padding: 1rem;
        margin-bottom: 0;
        border-radius: 20px;
    }

    .metric-card__value {
        font-size: clamp(1.8rem, 8vw, 2.45rem);
        margin-bottom: 0.45rem;
    }

    .metric-card__label,
    .metric-card--large .metric-card__label {
        max-width: none;
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .hero-summary {
        gap: 0.75rem;
        margin-top: 0.85rem;
    }

    .hero-signal {
        padding: 0.95rem 1rem;
        border-radius: 20px;
    }

    .section-head,
    .client-proof-copy,
    .cta-banner {
        margin-bottom: 0;
    }

    .section-head h2,
    .client-proof-copy h2,
    .cta-banner h2 {
        max-width: none;
    }

    .section--dark {
        padding: 1.4rem 0;
    }

    .stats-strip,
    .footer-upper__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem;
    }

    .section--dark .stat,
    .footer-stat {
        min-height: 0;
        padding: 1rem 0.95rem;
        border-radius: 20px;
        text-align: left;
    }

    .section--dark .stat strong,
    .footer-stat strong {
        font-size: clamp(1.7rem, 7vw, 2.35rem);
        margin-bottom: 0.28rem;
    }

    .section--dark .stat span,
    .footer-stat span {
        max-width: none;
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .signature-card,
    .feature-card,
    .vertical-card,
    .page-highlight,
    .contact-form-wrap,
    .archive-grid .feature-card,
    .page-intro-card,
    .legal-note,
    .client-fit-point,
    .client-proof-note,
    .client-proof-list > div,
    .insight-card,
    .footer-trust-card {
        padding: 1.15rem;
        border-radius: 22px;
    }

    .client-proof-layout {
        gap: 1.1rem;
    }

    .client-proof-copy h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .client-fit-points {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .client-proof-rail {
        gap: 0.5rem;
    }

    .client-fit-chip {
        padding: 0.62rem 0.8rem;
        font-size: 0.82rem;
    }

    .client-proof-wall {
        gap: 0.8rem;
    }

    .client-logo-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem;
    }

    .client-logo-card {
        min-height: 88px;
        padding: 0.8rem;
        border-radius: 18px;
    }

    .client-logo-card img {
        max-width: 118px;
        max-height: 30px;
    }

    .client-proof-list {
        gap: 0.75rem;
    }

    .insight-card h3 {
        font-size: clamp(1.22rem, 6vw, 1.65rem);
    }

    .insight-meta {
        flex-wrap: wrap;
        gap: 0.45rem 0.75rem;
    }

    .button-row--center {
        justify-content: stretch;
    }

    .section--cta .button--light {
        width: 100%;
        min-width: 0;
    }

    .footer-main {
        padding-top: 1.8rem;
    }

    .footer-grid--premium {
        gap: 1.25rem;
    }

    .footer-title {
        font-size: 1.34rem;
    }

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

    .footer-menu a,
    .footer-links a,
    .footer-links li,
    .footer-copy,
    .footer-contact-note,
    .footer-bottom p,
    .footer-legal-note {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .footer-bottom {
        display: grid;
        gap: 0.4rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container,
    .container.narrow,
    .narrow {
        width: min(calc(100% - 20px), var(--cop-max));
    }

    .site-header__inner {
        min-height: 70px;
    }

    .site-header__branding {
        max-width: 166px;
    }

    .site-brand__image,
    .custom-logo-link img {
        max-width: 160px;
        height: 31px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .site-nav {
        top: calc(70px + env(safe-area-inset-top));
        left: 10px;
        right: 10px;
        inset-inline: 10px;
        max-height: calc(100vh - 84px);
        padding: 0.85rem;
    }

    .hero,
    .section {
        padding-block: 2.85rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.1rem, 10.8vw, 3rem);
        max-width: 10ch;
    }

    .eyebrow {
        font-size: 0.74rem;
        letter-spacing: 0.14em;
        gap: 0.45rem;
    }

    .eyebrow::before {
        width: 24px;
    }

    .metric-card__value,
    .section--dark .stat strong,
    .footer-stat strong {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    .stats-strip,
    .footer-upper__grid,
    .client-logo-strip,
    .footer-menu--compact {
        grid-template-columns: 1fr !important;
    }

    .section--dark .stat,
    .footer-stat,
    .client-logo-card {
        padding: 0.95rem;
    }

    .client-fit-chip {
        width: 100%;
        justify-content: center;
    }

    .client-proof-note strong,
    .client-proof-list strong,
    .hero-signal strong,
    .feature-card h3,
    .insight-card h3 {
        text-wrap: pretty;
    }

    .footer-heading {
        margin-bottom: 0.7rem;
    }
}


/* v1.8.7 mobile-first definitive polish */
@media (max-width: 767px) {
    .site-header .container {
        width: 100%;
        max-width: none;
        padding-inline: 14px;
    }

    .site-header__inner {
        min-height: 72px;
        gap: 0.75rem;
        align-items: center;
    }

    .site-header__branding {
        flex: 1 1 auto;
        max-width: 210px;
    }

    .site-brand--image,
    .site-brand {
        width: auto;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
    }

    .site-brand__image,
    .custom-logo-link img {
        width: auto;
        max-width: 184px;
        height: 34px;
        object-fit: contain;
    }

    .menu-toggle {
        margin-left: auto;
        margin-right: 0;
        justify-self: end;
        flex: 0 0 auto;
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .site-nav {
        top: calc(72px + env(safe-area-inset-top));
        left: 12px;
        right: 12px;
        inset-inline: 12px;
        border-radius: 22px;
        padding: 0.95rem;
        max-height: calc(100vh - 90px);
    }

    .site-nav .menu > li > a,
    .primary-menu a {
        padding: 0.95rem 0.3rem;
        font-size: 1rem;
    }

    .site-nav__cta {
        min-height: 52px;
        margin-top: 0.9rem;
    }

    .hero {
        padding-top: 1rem;
    }

    .hero-grid {
        gap: 1.1rem;
    }

    .hero-copy {
        padding-top: 0.15rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.25rem, 11vw, 3.35rem);
        line-height: 0.96;
        letter-spacing: -0.055em;
        max-width: none;
        text-wrap: pretty;
    }

    .hero-lead {
        font-size: 1.01rem;
        line-height: 1.72;
    }

    .hero-badges,
    .hero-credibility,
    .button-row,
    .hero-summary,
    .metric-grid,
    .stats-strip,
    .footer-upper__grid,
    .client-logo-strip,
    .footer-menu--compact {
        grid-template-columns: 1fr !important;
    }

    .button,
    .header-cta,
    .site-nav__cta {
        width: 100%;
    }

    .hero-badge {
        min-height: 46px;
        padding: 0.82rem 0.95rem;
        font-size: 0.92rem;
        line-height: 1.35;
    }

    .hero-credibility__item,
    .hero-signal,
    .metric-card,
    .metric-card--large,
    .signature-card,
    .feature-card,
    .page-highlight,
    .page-intro-card,
    .insight-card,
    .contact-form-wrap,
    .client-fit-point,
    .client-proof-note,
    .client-proof-list > div,
    .footer-stat,
    .footer-trust-card {
        border-radius: 22px;
        padding: 1.05rem;
    }

    .hero-panel {
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .metric-card__value {
        font-size: clamp(1.85rem, 8vw, 2.45rem);
    }

    .metric-card__label,
    .metric-card--large .metric-card__label,
    .section--dark .stat span,
    .footer-stat span {
        font-size: 0.98rem;
        line-height: 1.48;
    }

    .section,
    .footer-main {
        padding-block: 2.85rem;
    }

    .section--dark {
        padding-block: 1.35rem;
    }

    .section-head h2,
    .client-proof-copy h2,
    .cta-banner h2,
    .page-intro h1,
    .archive-head h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 0.98;
        text-wrap: pretty;
    }

    .client-proof-layout {
        gap: 1rem;
    }

    .client-proof-copy > p,
    .section-head p,
    .cta-banner p,
    .client-proof-note span,
    .client-proof-list span,
    .footer-copy,
    .footer-links a,
    .footer-menu a,
    .footer-bottom p,
    .footer-legal-note {
        font-size: 0.97rem;
        line-height: 1.68;
    }

    .client-fit-chip {
        width: auto;
        min-height: 40px;
        padding: 0.65rem 0.88rem;
        font-size: 0.83rem;
    }

    .client-logo-card {
        min-height: 84px;
    }

    .client-logo-card img {
        max-width: 126px;
        max-height: 30px;
    }

    .cta-banner {
        gap: 1rem;
    }

    .cta-banner .button,
    .section--cta .button--light {
        min-height: 54px;
    }

    .footer-main {
        padding-top: 2rem;
    }

    .footer-grid,
    .footer-grid--premium,
    .footer-trust-grid,
    .footer-bottom {
        grid-template-columns: 1fr !important;
        display: grid;
        gap: 0.9rem;
    }

    .footer-brand-mark img,
    .footer-brand-logo img {
        max-width: 182px;
        height: auto;
    }
}

@media (max-width: 430px) {
    .site-header .container {
        padding-inline: 12px;
    }

    .site-header__inner {
        min-height: 70px;
    }

    .site-header__branding {
        max-width: 196px;
    }

    .site-brand__image,
    .custom-logo-link img {
        max-width: 176px;
        height: 32px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .site-nav {
        top: calc(70px + env(safe-area-inset-top));
        left: 10px;
        right: 10px;
        inset-inline: 10px;
    }

    .hero-copy h1 {
        font-size: clamp(2.15rem, 10.6vw, 3rem);
    }

    .metric-card__value {
        font-size: clamp(1.7rem, 7.8vw, 2.1rem);
    }

    .section-head h2,
    .client-proof-copy h2,
    .cta-banner h2,
    .page-intro h1,
    .archive-head h1 {
        font-size: clamp(1.9rem, 9.6vw, 2.45rem);
    }
}
