:root {
    --ink: #073d5d;
    --muted: #5a7284;
    --line: #dbeaf0;
    --paper: #ffffff;
    --soft: #f2f8fb;
    --navy: #003f63;
    --navy-deep: #062d47;
    --teal: #0a8fbd;
    --teal-dark: #006d99;
    --amber: #f6a91a;
    --amber-dark: #df8d00;
    --coral: #f28b1f;
    --green: #1d8a5f;
    --logo-sky: #dff1f8;
    --shadow: 0 20px 55px rgba(0, 63, 99, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 900px;
    font-size: clamp(2.5rem, 6vw, 5.8rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 760;
}

h3 {
    font-size: 1.25rem;
}

svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(880px, calc(100% - 40px));
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 1000;
    padding: 0.7rem 1rem;
    background: var(--ink);
    color: #fff;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(219, 234, 240, 0.9);
    backdrop-filter: blur(18px);
}

.site-header::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--amber));
    content: "";
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 76px;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: #fff;
    font-weight: 800;
}

.brand-logo-frame {
    display: grid;
    width: 72px;
    height: 44px;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(10, 143, 189, 0.22);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 63, 99, 0.08);
}

.brand-logo {
    width: 64px;
    height: 38px;
    object-fit: contain;
}

.brand-text {
    display: grid;
    gap: 0.1rem;
}

.brand-text strong {
    max-width: 220px;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-text small {
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.main-nav {
    justify-self: end;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 0.5rem;
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 650;
}

.menu a:hover,
.menu .current-menu-item > a {
    background: var(--logo-sky);
    color: var(--ink);
}

.header-cta {
    display: flex;
    justify-content: flex-end;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.78rem 1.05rem;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-weight: 760;
    gap: 0.55rem;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    color: #fff;
    box-shadow: 0 12px 24px rgba(246, 169, 26, 0.3);
}

.button-primary:hover {
    background: linear-gradient(135deg, #ffb932, var(--amber-dark));
}

.button-secondary {
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
}

.button-light {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 14px 28px rgba(18, 32, 51, 0.14);
}

.button-compact {
    min-height: 42px;
    padding-inline: 0.85rem;
    background: var(--navy);
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    display: grid;
    min-height: 760px;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media video,
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media video + img {
    display: none;
}

.hero-overlay {
    background:
        radial-gradient(circle at 74% 18%, rgba(10, 143, 189, 0.26), transparent 28%),
        radial-gradient(circle at 72% 72%, rgba(246, 169, 26, 0.22), transparent 24%),
        linear-gradient(90deg, rgba(0, 63, 99, 0.94) 0%, rgba(0, 63, 99, 0.82) 38%, rgba(0, 63, 99, 0.42) 72%, rgba(0, 63, 99, 0.28) 100%),
        linear-gradient(180deg, rgba(0, 63, 99, 0) 76%, rgba(0, 63, 99, 0.96) 100%);
}

.hero::after {
    position: absolute;
    right: -10%;
    bottom: 7%;
    width: 58%;
    height: 110px;
    border-top: 3px solid rgba(255, 255, 255, 0.72);
    border-radius: 52% 48% 0 0;
    box-shadow: 0 -18px 0 -15px rgba(10, 143, 189, 0.82), 0 -34px 0 -31px rgba(246, 169, 26, 0.78);
    content: "";
    opacity: 0.55;
    pointer-events: none;
    transform: rotate(-5deg);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 760px);
    align-content: center;
    padding: 7.5rem 0 6rem;
}

.hero-copy p {
    max-width: 720px;
    margin-top: 1.35rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.18rem;
}

.hero .eyebrow,
.hero h1,
.hero-copy > p:not(.eyebrow),
.hero-actions,
.hero-proof {
    animation: hero-slide-in 780ms ease both;
}

.hero .eyebrow {
    animation-delay: 80ms;
}

.hero h1 {
    animation-delay: 180ms;
}

.hero-copy > p:not(.eyebrow) {
    animation-delay: 420ms;
}

.hero-actions {
    animation-delay: 620ms;
}

.hero-proof {
    animation-delay: 820ms;
}

@keyframes hero-slide-in {
    from {
        opacity: 0;
        transform: translateX(-34px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 1rem;
    color: var(--teal-dark);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
    color: var(--amber);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(780px, 100%);
    margin-top: 4.2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-proof div {
    padding: 1.15rem;
    background: rgba(0, 63, 99, 0.5);
}

.hero-proof strong {
    display: block;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
}

.hero-proof span {
    display: block;
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.section {
    padding: 6.5rem 0;
}

.intro-band,
.process-section,
.form-section {
    background:
        linear-gradient(135deg, rgba(223, 241, 248, 0.7), rgba(255, 255, 255, 0.72)),
        var(--soft);
}

.intro-band .split {
    align-items: center;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.content {
    color: var(--muted);
    font-size: 1.08rem;
}

.section-copy {
    max-width: 680px;
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.content h2 {
    margin-bottom: 1rem;
    color: var(--ink);
}

.section-heading {
    width: min(780px, 100%);
    margin-bottom: 2.2rem;
}

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

.partner-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(246, 169, 26, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(223, 241, 248, 0.8), rgba(255, 255, 255, 0.92));
}

.partner-panel {
    display: grid;
    gap: 1rem;
}

.partner-logo-row,
.partner-panel div {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 63, 99, 0.06);
}

.partner-logo-row {
    grid-template-columns: 1fr;
    min-height: 118px;
    place-items: center;
    background: #fff;
}

.partner-logo-row img {
    width: min(280px, 90%);
    max-height: 86px;
    object-fit: contain;
}

.partner-panel strong {
    color: var(--teal-dark);
    font-size: 2.35rem;
    line-height: 1;
}

.partner-panel span {
    color: var(--ink);
    font-weight: 750;
}

.partner-single-card {
    display: grid;
    gap: 1rem;
}

.partner-logo-card.compact {
    min-height: 210px;
}

.partner-logo-card.compact img {
    width: min(420px, 92%);
    max-height: 120px;
}

.partner-info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.partner-info-list span {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-weight: 750;
    box-shadow: 0 8px 24px rgba(0, 63, 99, 0.05);
}

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

.reference-card {
    min-height: 250px;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 63, 99, 0.06);
}

.reference-card span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--amber-dark);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.reference-card h3 {
    margin-bottom: 0.8rem;
}

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

.partner-feature {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
}

.partner-logo-card {
    display: grid;
    min-height: 260px;
    place-items: center;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 63, 99, 0.06);
}

.partner-logo-card img {
    width: min(420px, 100%);
    max-height: 150px;
    object-fit: contain;
}

.section-action {
    display: flex;
    margin-top: 1.4rem;
}

.logo-marquee {
    position: relative;
    overflow: hidden;
    margin-top: 1.4rem;
    padding: 0.4rem 0;
}

.logo-marquee::before,
.logo-marquee::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 72px;
    content: "";
    pointer-events: none;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 1.2rem;
    animation: logo-scroll 30s linear infinite;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    display: grid;
    width: 300px;
    height: 160px;
    place-items: center;
    flex: 0 0 auto;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 63, 99, 0.05);
}

.logo-item img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.testimonial-section {
    background:
        linear-gradient(135deg, rgba(223, 241, 248, 0.78), rgba(255, 255, 255, 0.92)),
        var(--soft);
}

.testimonial-marquee {
    position: relative;
    overflow: hidden;
    padding: 0.4rem 0;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 76px;
    content: "";
    pointer-events: none;
}

.testimonial-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(242, 248, 251, 1), rgba(242, 248, 251, 0));
}

.testimonial-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(242, 248, 251, 1), rgba(242, 248, 251, 0));
}

.testimonial-track {
    display: flex;
    width: max-content;
    gap: 1rem;
    animation: testimonial-scroll 38s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 360px;
    min-height: 190px;
    flex: 0 0 auto;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-top: 4px solid var(--amber);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 63, 99, 0.06);
}

.testimonial-card p {
    margin-bottom: 1rem;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 680;
    line-height: 1.45;
}

.testimonial-person {
    margin-top: 1rem;
}

.testimonial-person span {
    display: grid;
    gap: 0.08rem;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
}

.testimonial-person strong {
    color: var(--ink);
    font-size: 0.94rem;
}

@keyframes testimonial-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

@keyframes logo-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

.service-card,
.info-panel,
.request-checklist,
.form-card,
.faq-grid article,
.mini-proof {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(18, 32, 51, 0.06);
}

.service-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: 1.35rem;
    border-top: 4px solid var(--teal);
}

.service-card:nth-child(even) {
    border-top-color: var(--amber);
}

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

.service-columns article {
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-top: 4px solid var(--teal);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 63, 99, 0.06);
}

.service-columns article:nth-child(2) {
    border-top-color: var(--amber);
}

.service-columns article:nth-child(3) {
    border-top-color: var(--teal);
}

.service-columns h2 {
    margin-bottom: 1rem;
    color: var(--ink);
    font-size: 1.2rem;
    line-height: 1.15;
    text-transform: none;
}

.service-columns ul {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-columns li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 620;
    line-height: 1.4;
}

.service-columns li::before {
    position: absolute;
    left: 0;
    top: 0.08rem;
    display: grid;
    width: 0.95rem;
    height: 0.95rem;
    place-items: center;
    border-radius: 50%;
    background: var(--logo-sky);
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 900;
    content: "✓";
}

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

.faq-grid article {
    padding: 1.4rem;
    border-top: 4px solid var(--logo-sky);
}

.faq-grid article:nth-child(even) {
    border-top-color: var(--amber);
}

.faq-grid h3 {
    margin-bottom: 0.75rem;
    color: var(--ink);
    font-size: 1.12rem;
    line-height: 1.25;
}

.faq-grid p {
    color: var(--muted);
    line-height: 1.65;
}

.service-card svg {
    width: 2.1rem;
    height: 2.1rem;
    margin-bottom: 1.2rem;
    color: var(--teal);
}

.service-card h3 {
    margin-bottom: 0.7rem;
}

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

.service-card a {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    color: var(--teal-dark);
    font-weight: 760;
}

.page-hero {
    padding-top: 8rem;
    background:
        radial-gradient(circle at 85% 20%, rgba(246, 169, 26, 0.24), transparent 26%),
        radial-gradient(circle at 12% 22%, rgba(10, 143, 189, 0.22), transparent 32%),
        linear-gradient(135deg, rgba(242, 248, 251, 0.98), rgba(255, 255, 255, 0.94));
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 1.3rem;
    color: var(--muted);
    font-size: 1.16rem;
}

.page-hero .button {
    margin-top: 1rem;
}

.feature-list {
    display: grid;
    gap: 0.8rem;
}

.feature-list div {
    display: grid;
    grid-template-columns: 1.5rem 1fr;
    align-items: start;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font-weight: 690;
}

.feature-list svg {
    color: var(--teal);
}

.info-panel {
    padding: clamp(1.5rem, 4vw, 2.4rem);
}

.info-panel h2 {
    margin-bottom: 1rem;
}

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

.process {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process li {
    min-height: 230px;
    padding: 1.35rem;
    border-left: 4px solid var(--teal);
    border-radius: 8px;
    background: #fff;
}

.process span {
    display: block;
    margin-bottom: 1.6rem;
    color: var(--amber-dark);
    font-weight: 800;
}

.process strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.cta-band {
    background:
        radial-gradient(circle at 92% 12%, rgba(246, 169, 26, 0.34), transparent 24%),
        linear-gradient(135deg, var(--navy-deep), var(--navy) 58%, #066f94);
    color: #fff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-inner p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
}

.request-hero .split {
    align-items: center;
}

.request-checklist {
    padding: 1.4rem;
}

.request-checklist h2 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.request-checklist ul {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.request-checklist li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
}

.request-checklist svg {
    color: var(--teal);
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: start;
}

.form-layout aside {
    position: sticky;
    top: 100px;
}

.mini-proof {
    margin-top: 1.5rem;
    padding: 1.2rem;
}

.mini-proof strong {
    display: block;
    color: var(--teal-dark);
    font-size: 2.3rem;
    line-height: 1;
}

.mini-proof span {
    display: block;
    margin-top: 0.5rem;
    color: var(--muted);
}

.form-card {
    padding: clamp(1rem, 3vw, 2rem);
}

.lead-form {
    display: grid;
    gap: 1.2rem;
}

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

.lead-form label,
.lead-form fieldset {
    display: grid;
    gap: 0.48rem;
    min-width: 0;
    margin: 0;
}

.lead-form span,
.lead-form legend {
    color: var(--ink);
    font-weight: 720;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    padding: 0.78rem 0.9rem;
}

.lead-form textarea {
    resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--teal);
    outline: 3px solid rgba(10, 143, 189, 0.18);
}

.lead-form fieldset {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1rem;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.choice-grid label,
.privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: var(--muted);
    font-weight: 600;
}

.choice-grid input,
.privacy input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 0.2rem;
}

.privacy a {
    color: var(--teal-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.file-field small {
    color: var(--muted);
}

.notice {
    margin-bottom: 1.2rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 680;
}

.notice ul {
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
}

.notice.success {
    border: 1px solid rgba(29, 138, 95, 0.35);
    background: rgba(29, 138, 95, 0.1);
    color: #176f4d;
}

.notice.error {
    border: 1px solid rgba(231, 111, 81, 0.4);
    background: rgba(231, 111, 81, 0.1);
    color: #9b422c;
}

.site-footer {
    background:
        radial-gradient(circle at 88% 10%, rgba(246, 169, 26, 0.16), transparent 24%),
        #062d47;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 3rem;
    padding: 4rem 0;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid h2 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-grid .menu {
    display: grid;
    justify-content: start;
    gap: 0.2rem;
}

.footer-grid .menu a {
    min-height: auto;
    padding: 0.28rem 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid .menu a:hover,
.footer-grid .menu .current-menu-item > a {
    background: transparent;
    color: #fff;
}

.site-footer .button,
.site-footer .button-light {
    margin-top: 0.8rem;
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    color: #fff;
    box-shadow: 0 12px 24px rgba(246, 169, 26, 0.22);
}

.site-footer .button:hover,
.site-footer .button-light:hover {
    background: linear-gradient(135deg, #ffb932, var(--amber-dark));
}

.legal-menu {
    display: grid;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-menu a,
.legal-menu button {
    display: inline-flex;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.legal-menu a:hover,
.legal-menu button:hover {
    color: #fff;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-brand .brand-text strong,
.footer-brand .brand-text small {
    color: #fff;
}

.footer-brand .brand-logo-frame {
    border-color: rgba(255, 255, 255, 0.24);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
}

.legal-section {
    background: #fff;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 880px);
}

.legal-content {
    color: var(--muted);
    font-size: 1.03rem;
}

.legal-content h2 {
    margin: 2rem 0 0.75rem;
    color: var(--ink);
    font-size: 1.55rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content a {
    color: var(--teal-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.cookie-banner {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    width: min(420px, calc(100% - 36px));
    padding: 1rem;
    border: 1px solid rgba(10, 143, 189, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 60px rgba(0, 63, 99, 0.18);
}

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

.cookie-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.cookie-brand img {
    width: 64px;
    height: 38px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.cookie-brand strong {
    color: var(--ink);
}

.cookie-banner p {
    margin-bottom: 0.8rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.cookie-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    min-height: 38px;
    padding: 0.45rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 700;
}

.cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.cookie-actions .button {
    min-height: 42px;
    padding: 0.62rem 0.72rem;
    font-size: 0.9rem;
}

.cookie-link {
    display: inline-flex;
    margin-top: 0.75rem;
    color: var(--teal-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: auto auto auto;
    }

    .nav-toggle {
        display: inline-block;
        justify-self: end;
    }

    .main-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        justify-self: stretch;
        padding: 1rem 20px 1.4rem;
        border-bottom: 1px solid var(--line);
        background: #fff;
    }

    body.nav-open .main-nav {
        display: block;
    }

    .menu {
        display: grid;
        justify-content: stretch;
    }

    .menu a {
        justify-content: flex-start;
        min-height: 44px;
    }

    .header-cta {
        justify-self: end;
    }

    .hero {
        min-height: 700px;
    }

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

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

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

@media (max-width: 780px) {
    .container,
    .narrow {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 68px;
        gap: 0.75rem;
    }

    .brand-text strong {
        max-width: 138px;
    }

    .brand-logo-frame {
        width: 62px;
        height: 40px;
    }

    .brand-logo {
        width: 54px;
        height: 34px;
    }

    .header-cta {
        display: none;
    }

    .main-nav {
        top: 68px;
    }

    .section {
        padding: 4.2rem 0;
    }

    .hero {
        min-height: 720px;
    }

    .hero-overlay {
        background:
            radial-gradient(circle at 82% 24%, rgba(10, 143, 189, 0.22), transparent 32%),
            linear-gradient(180deg, rgba(0, 63, 99, 0.94), rgba(0, 63, 99, 0.76));
    }

    .hero-content {
        padding: 6.5rem 0 4rem;
    }

    h1 {
        font-size: clamp(2.35rem, 12vw, 4rem);
    }

    .hero-copy p,
    .page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .hero-proof,
    .process,
    .split,
    .two-column,
    .partner-feature,
    .form-layout,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-proof {
        margin-top: 2.5rem;
    }

    .card-grid,
    .faq-grid,
    .choice-grid {
        grid-template-columns: 1fr;
    }

    .partner-panel div {
        grid-template-columns: 1fr;
    }

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

    .cta-inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-layout aside {
        position: static;
    }

    .cookie-options,
    .cookie-actions {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-track,
    .testimonial-track {
        animation: none;
    }

    .hero .eyebrow,
    .hero h1,
    .hero-copy > p:not(.eyebrow),
    .hero-actions,
    .hero-proof {
        animation: none;
    }

}
