@font-face {
    font-family: Manrope;
    src: url('../fonts/manrope-latin.woff2') format('woff2');
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
}
:root {
    --ink: #142f49;
    --navy: #0b2846;
    --blue: #174f90;
    --muted: #566574;
    --cream: #f6f4ef;
    --line: #dcdfe1;
    --gold: #d3bd8d;
    --white: #fff;
    --radius: 8px;
    --container: 1184px;
    --font: Manrope, Arial, sans-serif;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}
body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font: 400 15px/1.7 var(--font);
    -webkit-font-smoothing: antialiased;
}
body,
h1,
h2,
h3,
p,
figure {
    margin: 0;
}
h1,
h2,
h3 {
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.2;
    text-wrap: balance;
}
h1 {
    font-size: clamp(34px, 3.7vw, 50px);
    line-height: 1.16;
}
h2 {
    font-size: clamp(29px, 2.8vw, 38px);
}
h3 {
    font-size: 21px;
    letter-spacing: -0.025em;
}
p {
    color: var(--muted);
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
select,
textarea {
    font: inherit;
}
button,
a,
input,
select,
summary {
    touch-action: manipulation;
}
button {
    cursor: pointer;
}
button:disabled {
    cursor: wait;
    opacity: 0.65;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid #3984cd;
    outline-offset: 5px;
}
[hidden] {
    display: none !important;
}
.container {
    width: min(var(--container), calc(100% - 80px));
    margin-inline: auto;
}
.section {
    padding: 96px 0;
}
.eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 17px;
    line-height: 1.7;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 25px;
    background: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 5px;
    color: white;
    line-height: 1.35;
    font-size: 13px;
    font-weight: 700;
    min-height: 52px;
    transition:
        background 0.2s,
        transform 0.2s;
}
.button:hover {
    background: #103c70;
    transform: translateY(-2px);
}
.button span {
    font-size: 21px;
    font-family: Arial, sans-serif;
    font-weight: 400;
}
.button-small {
    font-size: 12px;
    padding: 13px 20px;
    min-height: 45px;
    gap: 20px;
}
.button-light {
    background: #fff;
    border-color: #fff;
    color: var(--navy);
}
.button-light:hover {
    background: #e9eff5;
}
.button-outline {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}
.button-outline:hover {
    color: #fff;
    background: #103c70;
    border-color: #103c70;
}
.fine-print {
    font-size: 11px;
    line-height: 1.65;
}
.skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    padding: 14px 24px;
    background: #fff;
    color: var(--navy);
    z-index: 100;
}
.skip-link:focus {
    top: 12px;
}
.relationship-bar {
    background: #fff;
    color: var(--navy);
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.04em;
    padding: 7px 0;
}
.relationship-bar span {
    padding: 0 9px;
    color: #9a7839;
}
.site-header {
    background: rgba(16, 43, 67, 0.98);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.header-inner {
    height: 89px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand img {
    width: auto;
    height: 58px;
    max-width: 150px;
    object-fit: contain;
}
.desktop-nav {
    display: flex;
    gap: 25px;
    font-size: 11px;
    font-weight: 600;
}
.desktop-nav a {
    padding-block: 14px;
}
.desktop-nav a:hover {
    color: var(--gold);
}
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 11px;
    color: #fff;
    cursor: pointer;
}
.menu-toggle-icon {
    width: 24px;
    display: grid;
    gap: 5px;
}
.menu-toggle-icon span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}
.mobile-nav,
.mobile-nav-backdrop {
    display: none;
}
.hero {
    position: relative;
    overflow: hidden;
    background: var(--navy);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 25, 43, 0.94) 0%,
            rgba(5, 25, 43, 0.84) 38%,
            rgba(5, 25, 43, 0.4) 68%,
            rgba(5, 25, 43, 0.15) 100%
        ),
        linear-gradient(0deg, rgba(5, 25, 43, 0.52) 0%, transparent 46%);
    pointer-events: none;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 650px;
}
.hero-copy {
    width: min(590px, 57%);
    padding: 68px 0;
}
.hero-copy .eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e3d3b0;
}
.small-line {
    width: 25px;
    height: 1px;
    background: #e3d3b0;
}
.hero h1 {
    color: #fff;
}
.hero h1 span {
    color: #a8cdf7;
}
.hero-description {
    margin-top: 23px;
    font-size: 15px;
    line-height: 1.85;
    max-width: 505px;
    color: #e4eaf0;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.hero-actions .button:first-child {
    color: var(--navy);
    background: #fff;
    border-color: #fff;
}
.hero-actions .button:first-child:hover {
    background: #eaf0f5;
    border-color: #eaf0f5;
}
.hero-actions .button-outline {
    color: #fff;
    background: #155995;
    border-color: #155995;
}
.hero-actions .button-outline:hover {
    color: #fff;
    background: #0e426f;
    border-color: #0e426f;
}
.hero-disclaimer {
    font-size: 10px;
    margin-top: 22px;
    max-width: 460px;
    color: #c5d0d9;
}
.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #172f42;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    object-position: 57% center;
}
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 37px;
}
.section-heading > p {
    font-size: 13px;
    max-width: 380px;
    padding-bottom: 4px;
}
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.objective-card {
    background: #fff;
    border: 1px solid #dfe3e6;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s,
        box-shadow 0.25s,
        border-color 0.25s;
}
.objective-card:hover {
    transform: translateY(-4px);
    border-color: #c9d3dc;
    box-shadow: 0 18px 38px rgba(20, 47, 73, 0.09);
}
.objective-card-link {
    color: inherit;
    cursor: pointer;
    display: flex;
    flex: 1;
    flex-direction: column;
}
.objective-card-link:focus-visible {
    outline-offset: -4px;
}
.objective-card:hover .button {
    background: #103c70;
    border-color: #103c70;
}
.card-image {
    height: 216px;
    position: relative;
    overflow: hidden;
    background: #e8e7e3;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.objective-card:hover .card-image img {
    transform: scale(1.03);
}
.card-image > span {
    position: absolute;
    bottom: 16px;
    left: 20px;
    background: #e6d4ad;
    color: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 5px 10px;
    font-size: 9px;
    letter-spacing: 0.1em;
    font-weight: 700;
    border-radius: 2px;
}
.card-content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-content h3 {
    font-size: 20px;
}
.card-content p {
    font-size: 12px;
    margin-top: 13px;
    line-height: 1.85;
    flex: 1;
}
.card-content .button {
    margin-top: 21px;
    align-self: stretch;
    padding: 13px 16px;
    min-height: 48px;
}
.canopus-section {
    background: var(--navy);
    color: #fff;
    position: relative;
}
.canopus-grid {
    display: grid;
    grid-template-columns: 1fr 1.22fr;
    gap: 100px;
    align-items: center;
}
.canopus-light {
    width: 230px;
    height: auto;
    max-height: 76px;
    object-fit: contain;
    object-position: left;
    margin-bottom: 33px;
}
.canopus-intro .eyebrow {
    color: #d9c8a7;
    font-size: 9px;
}
.canopus-intro > p:not(.eyebrow) {
    color: #c4cfd9;
    margin: 21px 0 27px;
    font-size: 13px;
    max-width: 350px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 36px;
}
.benefits-grid article {
    padding: 26px 0 28px;
    border-bottom: 1px solid #365067;
}
.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    color: #e0cfaa;
    border: 1px solid #536b7f;
    border-radius: 50%;
    margin-bottom: 18px;
}
.benefit-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.benefits-grid h3 {
    font-size: 19px;
}
.benefits-grid p {
    font-size: 12px;
    color: #c1cdda;
    margin-top: 13px;
}
.canopus-note {
    font-size: 10px;
    color: #bfcbd7;
    border-top: 1px solid #365067;
    padding-top: 23px;
    margin-top: 47px;
    max-width: 100%;
}
.partnership-prelude {
    padding-block: 76px;
    background: #f8f6f0;
    border-bottom: 1px solid #e1ddd3;
}
.partnership-prelude .section-heading {
    margin-bottom: 0;
}
.partnership-prelude .eyebrow {
    color: #83662f;
}
.partnership-prelude h2 {
    color: var(--ink);
}
.partnership-prelude .section-heading > p {
    color: var(--muted);
}
.partnership-section {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    display: flex;
    align-items: center;
    background: #071d2f;
    color: #fff;
}
.partnership-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 25, 43, 0.99) 0%,
            rgba(5, 25, 43, 0.94) 38%,
            rgba(5, 25, 43, 0.65) 63%,
            rgba(5, 25, 43, 0.18) 100%
        ),
        linear-gradient(0deg, rgba(5, 25, 43, 0.72) 0%, transparent 42%);
    pointer-events: none;
}
.partnership-background {
    position: absolute;
    inset: 0;
}
.partnership-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.partnership-inner {
    position: relative;
    z-index: 2;
}
.partnership-lockup {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 45px;
}
.partnership-lockup img {
    width: 176px;
    height: auto;
}
.partnership-lockup span {
    max-width: 170px;
    padding-left: 20px;
    border-left: 1px solid rgba(213, 192, 146, 0.52);
    font-size: 8px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: #e2c889;
}
.partnership-copy {
    width: min(625px, 58%);
}
.partnership-copy > .eyebrow {
    font-size: 9px;
    color: #e2c889;
}
.partnership-copy h2 {
    color: #fff;
    margin-top: 13px;
}
.partnership-intro {
    max-width: 560px;
    margin-top: 20px;
    color: #d5e0e8;
    font-size: 14px;
}
.consulting-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 28px;
    display: grid;
    gap: 17px;
    max-width: 570px;
}
.consulting-list li {
    position: relative;
    padding: 0 0 0 23px;
}
.consulting-list li + li {
    padding-left: 23px;
}
.consulting-list li::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 1px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ddc17f;
    box-shadow: 0 0 0 4px rgba(221, 193, 127, 0.12);
}
.consulting-list strong {
    color: #fff;
    font-size: 13px;
    display: block;
    margin-bottom: 3px;
}
.consulting-list span {
    display: block;
    font-size: 11px;
    line-height: 1.65;
    color: #bfcdd8;
}
.partnership-copy .role-note {
    font-size: 10px !important;
    max-width: 590px;
    color: #c7d3dc;
    padding-left: 17px;
    border-left: 2px solid #d8bd7b;
}
.process-section {
    background: var(--cream);
}
.process-list {
    list-style: none;
    padding: 0;
    margin: 42px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.process-list li {
    border-top: 1px solid #c5cbd0;
    padding-top: 22px;
}
.process-list li > span {
    font-size: 24px;
    letter-spacing: -0.04em;
    color: #688098;
    display: block;
    margin-bottom: 20px;
}
.process-list h3 {
    font-size: 17px;
}
.process-list p {
    font-size: 12px;
    line-height: 1.85;
    margin-top: 12px;
}
.transparency-note {
    background: #ecece7;
    border-left: 2px solid #91a1aa;
    padding: 20px 26px;
    margin-top: 42px;
    display: flex;
    gap: 36px;
    align-items: center;
}
.transparency-note strong {
    font-size: 12px;
    flex: 0 0 280px;
}
.transparency-note p {
    font-size: 11px;
}
.simulation-section {
    background: #eef3f7;
}
.simulation-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 86px;
    align-items: start;
}
.simulation-copy {
    padding-top: 22px;
}
.simulation-copy > p:not(.eyebrow) {
    margin-top: 23px;
    max-width: 385px;
    font-size: 14px;
}
.simulation-details {
    margin-top: 35px;
    border-top: 1px solid #cbd5de;
    max-width: 345px;
}
.simulation-details p {
    padding: 16px 0;
    border-bottom: 1px solid #cbd5de;
}
.simulation-details strong {
    font-size: 12px;
    color: var(--ink);
    display: block;
}
.simulation-details span {
    font-size: 11px;
}
.simulation-copy > .fine-print {
    font-size: 11px !important;
}
.simulation-copy > img {
    margin-top: 35px;
    width: 170px;
    max-height: 70px;
    object-fit: contain;
    object-position: left;
}
.simulation-form {
    padding: 34px;
    background: #fff;
    border: 1px solid #e0e5eb;
    border-radius: 8px;
    box-shadow: 0 16px 45px rgba(14, 43, 69, 0.045);
}
.form-heading {
    margin-bottom: 23px;
    border-bottom: 1px solid #e3e8ed;
    padding-bottom: 20px;
}
.form-heading .eyebrow {
    font-size: 9px;
}
.step-status {
    font-size: 18px;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-top: 5px;
    font-weight: 600;
}
.step-progress {
    display: none;
    gap: 5px;
    margin: 14px 0 0;
}
.is-enhanced .step-progress {
    display: flex;
}
.step-progress span {
    height: 3px;
    background: #e1e6eb;
    flex: 1;
}
.step-progress .active {
    background: var(--blue);
}
.lead-fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 24px;
    min-width: 0;
}
.lead-fieldset legend {
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    margin-bottom: 19px;
}
.is-enhanced .lead-fieldset legend {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px 16px;
}
.field {
    min-width: 0;
}
.field.full {
    grid-column: 1/-1;
}
.field label,
.field-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #2f455a;
    margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #c7d1db;
    background: #fff;
    border-radius: 4px;
    font-size: 12px;
    min-height: 45px;
    color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 0 !important;
    border-color: #73889a;
    box-shadow: none !important;
}
.simulation-form .wpcf7-form-control:focus,
.simulation-form .wpcf7-form-control:focus-visible,
.simulation-form .wpcf7-not-valid:focus {
    outline: 0 !important;
    box-shadow: none !important;
}
.hero-description strong,
.canopus-intro > p strong,
.canopus-note strong,
.partnership-intro strong,
.partnership-copy .role-note strong {
    color: #fff;
    font-weight: 700;
}
.section-heading > p strong,
.card-content p strong,
.simulation-copy > p strong,
.faq-grid > div > p strong {
    color: var(--ink);
    font-weight: 700;
}
.field input::placeholder {
    color: #74818b;
    opacity: 1;
}
.field input.currency-input,
.field input[type='tel'] {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
}
.field select {
    appearance: auto;
    padding-right: 8px;
}
.field small {
    font-size: 10px;
    color: #637381;
    display: block;
    margin-top: 5px;
}
.field input[aria-invalid='true'],
.field select[aria-invalid='true'] {
    border-color: #ab2d32;
}
.wpcf7-not-valid-tip {
    color: #9e2c31;
    display: block;
    font-size: 11px;
    margin-top: 5px;
}
.form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 25px;
}
.form-actions .button {
    flex: 1;
    font-size: 12px;
    cursor: pointer;
}
.form-next {
    display: none;
}
.is-enhanced .form-next {
    display: inline-flex;
}
.form-privacy {
    font-size: 10px;
    line-height: 1.7;
    margin-top: 17px;
}
.form-privacy a {
    text-decoration: underline;
}
.consent-label {
    display: block;
    font-size: 10px;
    line-height: 1.65;
    color: #596978;
    margin-top: 18px;
}
.consent-label input {
    vertical-align: middle;
    accent-color: var(--blue);
    margin: 0 7px 0 0;
    width: 16px;
    height: 16px;
}
.consent-label input:focus-visible {
    outline: 2px solid rgba(23, 79, 144, 0.55);
    outline-offset: 2px;
}
.consent-label a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.wpcf7-list-item {
    margin: 0;
}
.wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 15px;
    font-size: 12px;
    border: 1px solid #bdc7d0;
    border-radius: 4px;
}
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output {
    display: none;
}
.wpcf7-spinner {
    display: none;
}
.submitting .wpcf7-submit {
    opacity: 0.6;
    cursor: wait;
}
.honeypot {
    position: absolute !important;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.screen-reader-response {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}
.lead-success {
    padding: 28px 0;
}
.lead-success h3 {
    font-size: 28px;
}
.lead-success p {
    font-size: 13px;
    margin: 16px 0;
}
.lead-success .button {
    margin-top: 14px;
}
.noscript-warning {
    font-size: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: #f3f5f7;
}
.field-error-summary {
    color: #9e2c31;
    font-size: 12px;
    margin-top: 12px;
}
.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 95px;
}
.faq-grid > div:first-child {
    position: sticky;
    top: 140px;
    align-self: start;
}
.faq-grid > div > p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 22px;
}
.faq-grid .button {
    margin-top: 18px;
}
.faq-list details {
    border-bottom: 1px solid #dfe4e8;
}
.faq-list details:first-child {
    border-top: 1px solid #dfe4e8;
}
.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    cursor: pointer;
    padding: 21px 0;
    font-size: 12px;
    font-weight: 600;
    list-style: none;
}
.faq-list summary::-webkit-details-marker {
    display: none;
}
.faq-list summary > span {
    flex: 0 0 12px;
    height: 12px;
    position: relative;
}
.faq-list summary > span:before,
.faq-list summary > span:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 1px;
    background: #536b80;
    top: 5px;
    left: 0;
}
.faq-list summary > span:after {
    transform: rotate(90deg);
}
.faq-list details[open] summary > span:after {
    transform: rotate(0);
}
.faq-list details p {
    padding: 0 30px 23px 0;
    font-size: 12px;
    line-height: 1.9;
}
.site-footer {
    background: #102b43;
    color: #fff;
    padding: 56px 0 25px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 0.9fr 1.1fr;
    gap: 45px;
    align-items: start;
}
.footer-brand > img {
    width: 145px;
    max-height: 70px;
    object-fit: contain;
    object-position: left;
}
.footer-company {
    font-size: 11px;
    color: #c6d0d8;
    margin-top: 19px;
}
.footer-company strong,
.footer-company span {
    display: block;
}
.footer-company strong {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}
.footer-company span {
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: 0.04em;
    color: #aebdca;
}
.footer-top .eyebrow {
    color: #c9b894;
    font-size: 8px;
    margin: 0 0 20px;
    display: block;
}
.footer-top > div > img {
    max-height: 64px;
    object-fit: contain;
    object-position: left;
}
.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: #d7e0e8;
}
.footer-contact a.footer-contact-row {
    margin-bottom: 9px;
}
.footer-contact address {
    max-width: 300px;
    margin: 0;
    font-style: normal;
    line-height: 1.65;
}
.footer-contact-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    color: #d6bd82;
}
.footer-contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.footer-legal {
    margin-top: 38px;
    border-top: 1px solid #3a5064;
    padding-top: 24px;
}
.footer-legal p {
    font-size: 10px;
    color: #c4ced7;
    margin-bottom: 11px;
    line-height: 1.85;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 9px;
    color: #c2ccd5;
    border-top: 1px solid #3a5064;
    margin-top: 25px;
    padding-top: 20px;
}
.footer-bottom > div {
    display: flex;
    gap: 23px;
    align-items: center;
}
.footer-bottom a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
}
.footer-bottom button {
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    font-size: inherit;
    min-height: 24px;
}
.footer-bottom a:hover,
.footer-bottom button:hover {
    text-decoration: underline;
}
.legal-page {
    padding-block: 80px;
    max-width: 800px;
}
.legal-page h1 {
    font-size: 36px;
    margin-bottom: 25px;
}
.legal-page h2 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
}
.legal-page p {
    margin-bottom: 17px;
}
.legal-page a {
    text-decoration: underline;
}
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 35;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 30px rgba(10, 40, 28, 0.28);
    transition:
        transform 0.2s,
        background 0.2s;
}
.whatsapp-float:hover {
    background: #1fb85a;
    transform: translateY(-3px);
}
.whatsapp-float svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
}
.whatsapp-float > span {
    position: absolute;
    right: calc(100% + 11px);
    width: max-content;
    padding: 8px 11px;
    border-radius: 4px;
    background: var(--navy);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateX(5px);
    transition:
        opacity 0.2s,
        transform 0.2s;
}
.whatsapp-float:hover > span,
.whatsapp-float:focus-visible > span {
    opacity: 1;
    transform: translateX(0);
}
.cookie-banner {
    position: fixed;
    z-index: 40;
    left: 24px;
    right: 24px;
    bottom: 20px;
    max-width: 1184px;
    margin: auto;
    background: #fff;
    border: 1px solid #d8e0e7;
    border-radius: 7px;
    box-shadow: 0 7px 35px #071e3830;
    padding: 18px 23px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: nowrap;
}
.cookie-banner > div:first-child {
    flex: 1;
    min-width: 250px;
}
.cookie-banner strong {
    font-size: 12px;
    color: var(--ink);
}
.cookie-banner p {
    font-size: 10px;
    line-height: 1.7;
    max-width: none;
    margin-top: 3px;
    white-space: nowrap;
}
.cookie-banner p a {
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 8px;
}
.cookie-actions button {
    padding: 10px 13px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid #bdc9d3;
    background: #fff;
    color: var(--ink);
    border-radius: 3px;
    min-height: 40px;
}
.cookie-actions .accept-cookies {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.canopus-light {
    max-height: none;
}
.footer-canopus {
    width: 190px;
    height: auto;
}
.form-next {
    width: 100%;
    margin-top: 24px;
}
.wpcf7 .hidden-fields-container {
    display: none;
}
.hero-disclaimer {
    font-size: 11px;
}
.canopus-note,
.footer-legal p {
    font-size: 11px;
}
@media (min-width: 1450px) {
    .hero-grid {
        min-height: 700px;
    }
    .hero-copy {
        padding-block: 82px;
    }
}
@media (max-width: 1100px) {
    .container {
        width: calc(100% - 56px);
    }
    .desktop-nav {
        gap: 16px;
    }
    .hero-grid {
        min-height: 620px;
    }
    .hero-actions {
        gap: 15px;
    }
    .canopus-grid {
        gap: 55px;
    }
    .simulation-grid,
    .faq-grid {
        gap: 45px;
    }
    .benefits-grid {
        gap: 0 24px;
    }
    .card-content {
        padding: 22px;
    }
    .transparency-note {
        gap: 24px;
    }
    .section {
        padding: 78px 0;
    }
    .hero h1 {
        font-size: 42px;
    }
    .header-inner .button {
        font-size: 11px;
        gap: 12px;
    }
}
@media (max-width: 900px) {
    .cookie-banner {
        flex-wrap: wrap;
    }
    .cookie-banner p {
        white-space: normal;
    }
    .desktop-nav {
        display: none;
    }
    .header-inner {
        height: 77px;
    }
    .header-inner > .button {
        margin-left: auto;
    }
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        display: block;
        z-index: 30;
        background: rgba(5, 25, 43, 0.62);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }
    .mobile-nav {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 31;
        display: flex;
        width: min(84vw, 350px);
        padding: 24px;
        flex-direction: column;
        background: var(--navy);
        box-shadow: 18px 0 50px rgba(5, 25, 43, 0.22);
        transform: translateX(-102%);
        visibility: hidden;
        transition:
            transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0.34s ease;
    }
    .mobile-nav-header {
        display: flex;
        min-height: 54px;
        margin-bottom: 20px;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        color: var(--gold);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }
    .mobile-nav-close {
        width: 42px;
        height: 42px;
        border: 0;
        background: transparent;
        color: #fff;
        cursor: pointer;
        font:
            300 32px/1 Arial,
            sans-serif;
    }
    .mobile-nav a {
        display: block;
        padding: 17px 2px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
    }
    .mobile-nav a:last-child {
        margin-top: 24px;
        padding: 15px 18px;
        border: 0;
        border-radius: var(--radius-small);
        background: var(--gold);
        color: var(--navy);
        text-align: center;
    }
    body.menu-open {
        overflow: hidden;
    }
    body.menu-open .mobile-nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    body.menu-open .mobile-nav {
        transform: translateX(0);
        visibility: visible;
    }
    .hero-grid {
        min-height: 630px;
    }
    .hero h1 {
        font-size: 40px;
    }
    .hero-description {
        font-size: 13px;
    }
    .hero-copy {
        width: min(590px, 68%);
    }
    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }
    .objectives-grid {
        gap: 16px;
    }
    .card-content {
        padding: 20px;
    }
    .card-content h3 {
        font-size: 18px;
    }
    .card-image {
        height: 175px;
    }
    .section-heading {
        gap: 22px;
    }
    .section-heading > p {
        max-width: 270px;
    }
    .canopus-grid {
        gap: 35px;
    }
    .benefits-grid h3 {
        font-size: 16px;
    }
    .partnership-copy .eyebrow {
        font-size: 8px;
    }
    .simulation-grid {
        gap: 35px;
    }
    .simulation-form {
        padding: 26px;
    }
    .field-grid {
        gap: 17px 12px;
    }
    .process-list {
        gap: 22px;
    }
    .process-list h3 {
        font-size: 15px;
    }
    .footer-contact a {
        font-size: 10px;
    }
}
@media (max-width: 760px) {
    html {
        scroll-padding-top: 86px;
    }
    .container {
        width: calc(100% - 40px);
    }
    .section {
        padding: 61px 0;
    }
    .relationship-bar {
        font-size: 8px;
        padding: 6px 0;
    }
    .relationship-bar span {
        padding: 0 4px;
    }
    .header-inner {
        height: 70px;
        gap: 12px;
    }
    .brand img {
        width: auto;
        height: 48px;
        max-width: 126px;
    }
    .header-inner > .button {
        display: none;
    }
    .menu-toggle {
        margin-left: auto;
    }
    .hero-grid {
        min-height: 700px;
    }
    .hero-copy {
        width: 100%;
        max-width: 560px;
        padding: 54px 0 58px;
    }
    .hero::after {
        background:
            linear-gradient(
                90deg,
                rgba(5, 25, 43, 0.94) 0%,
                rgba(5, 25, 43, 0.82) 68%,
                rgba(5, 25, 43, 0.5) 100%
            ),
            linear-gradient(0deg, rgba(5, 25, 43, 0.64) 0%, transparent 55%);
    }
    .hero h1 {
        font-size: clamp(32px, 7.3vw, 46px);
        line-height: 1.2;
    }
    .eyebrow {
        font-size: 9px;
        margin-bottom: 15px;
    }
    .hero-description {
        font-size: 14px;
        max-width: 490px;
        margin-top: 19px;
    }
    .hero-actions {
        display: flex;
        gap: 16px;
        margin-top: 23px;
    }
    .hero-actions .button {
        padding: 14px 19px;
        font-size: 12px;
        gap: 19px;
    }
    .hero-disclaimer {
        margin-top: 17px;
        font-size: 9px;
        max-width: 470px;
    }
    .hero-image {
        object-position: 61% center;
    }
    .section-heading {
        display: block;
        margin-bottom: 28px;
    }
    .section-heading > p {
        margin-top: 18px;
        max-width: 440px;
        font-size: 12px;
    }
    .section-heading > p br {
        display: none;
    }
    h2 {
        font-size: 30px;
    }
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .card-image {
        height: 230px;
    }
    .card-content {
        padding: 25px;
    }
    .card-content h3 {
        font-size: 22px;
    }
    .card-content p {
        font-size: 13px;
    }
    .canopus-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .canopus-light {
        width: 210px;
        margin-bottom: 30px;
    }
    .canopus-intro > p:not(.eyebrow) {
        max-width: 450px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .benefits-grid article {
        padding-block: 20px;
    }
    .benefit-icon {
        margin-bottom: 12px;
    }
    .benefits-grid h3 {
        font-size: 18px;
    }
    .benefits-grid p {
        font-size: 11px;
    }
    .canopus-note {
        margin-top: 30px;
        font-size: 9px;
    }
    .partnership-section {
        min-height: 0;
    }
    .partnership-section::before {
        background:
            linear-gradient(
                90deg,
                rgba(5, 25, 43, 0.97) 0%,
                rgba(5, 25, 43, 0.91) 62%,
                rgba(5, 25, 43, 0.58) 100%
            ),
            linear-gradient(0deg, rgba(5, 25, 43, 0.86) 0%, transparent 58%);
    }
    .partnership-background img {
        object-position: 64% center;
    }
    .partnership-copy {
        width: 100%;
    }
    .partnership-lockup {
        margin-bottom: 35px;
    }
    .partnership-lockup img {
        width: 155px;
    }
    .partnership-copy .eyebrow {
        font-size: 9px;
    }
    .partnership-intro {
        max-width: 520px;
    }
    .consulting-list {
        max-width: 520px;
        gap: 18px;
    }
    .process-list {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 30px;
    }
    .process-list li > span {
        margin-bottom: 13px;
        font-size: 24px;
    }
    .process-list h3 {
        font-size: 17px;
    }
    .process-list p {
        font-size: 12px;
    }
    .transparency-note {
        display: block;
        padding: 19px;
        margin-top: 32px;
    }
    .transparency-note p {
        margin-top: 7px;
    }
    .simulation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .simulation-copy {
        padding: 0;
    }
    .simulation-copy > p:not(.eyebrow) {
        max-width: none;
        font-size: 13px;
    }
    .simulation-details {
        display: grid;
        grid-template-columns: 1fr;
        max-width: none;
        margin-top: 24px;
        gap: 14px;
    }
    .simulation-details p {
        width: 100%;
    }
    .simulation-copy > img {
        margin-top: 22px;
        width: 151px;
    }
    .simulation-form {
        padding: 26px 22px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .faq-grid > div:first-child {
        position: static;
    }
    .faq-list summary {
        font-size: 12px;
        padding: 20px 0;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .footer-contact {
        grid-column: auto;
    }
    .footer-brand > img,
    .footer-top > div > img {
        margin-inline: auto;
        object-position: center;
    }
    .footer-contact-row {
        justify-content: center;
    }
    .footer-contact a {
        font-size: 12px;
    }
    .footer-contact address {
        margin-inline: 0;
        font-size: 11px;
        text-align: center;
    }
    .footer-top > div > img {
        max-width: 150px;
    }
    .footer-bottom {
        display: block;
        text-align: center;
    }
    .footer-bottom > div {
        margin-top: 12px;
        justify-content: center;
    }
    .footer-legal {
        text-align: center;
    }
    .footer-legal p {
        font-size: 9px;
    }
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 17px;
        gap: 14px;
        flex-wrap: wrap;
    }
    .whatsapp-float {
        right: 17px;
        bottom: 17px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-float > span {
        display: none;
    }
    .cookie-banner > div:first-child {
        min-width: 0;
        flex-basis: 100%;
    }
    .cookie-banner p {
        white-space: normal;
    }
    .hero-actions .button-outline {
        display: none;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-actions button {
        flex: 1;
        padding: 9px 7px;
        font-size: 9px;
        min-height: 40px;
    }
    .legal-page {
        padding-block: 50px;
    }
    .legal-page h1 {
        font-size: 29px;
    }
}
@media (max-width: 380px) {
    .container {
        width: calc(100% - 32px);
    }
    .hero-actions {
        align-items: start;
        flex-direction: column;
        gap: 13px;
    }
    .hero h1 {
        font-size: 31px;
    }
    .field-grid {
        grid-template-columns: 1fr;
    }
    .field.full {
        grid-column: auto;
    }
    .simulation-form {
        padding: 23px 18px;
    }
    .hero-grid {
        min-height: 720px;
    }
    .benefits-grid {
        gap: 0;
    }
    .benefits-grid h3 {
        font-size: 16px;
    }
    .process-list {
        gap: 27px;
    }
    .process-list h3 {
        font-size: 16px;
    }
    .footer-top > div > img {
        max-width: 130px;
    }
    .relationship-bar {
        font-size: 7px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
