:root {
    --navy-900: #0a3972;
    --navy-850: #0d4d90;
    --navy-800: #1562a6;
    --blue-700: #1877bd;
    --blue-600: #258fd5;
    --blue-500: #36a4eb;
    --orange-500: #e57100;
    --orange-400: #f08a17;
    --orange-300: #f6a544;
    --white: #ffffff;
    --neutral-100: #fcfdff;
    --ink-900: #112338;
    --ink-700: #35506e;
    --ink-500: #587189;
    --ink-400: #7c91a5;
    --surface: #f3f7fb;
    --surface-strong: #e8f0f8;
    --line: rgba(17, 35, 56, 0.08);
    --line-strong: rgba(8, 54, 110, 0.12);
    --shadow-lg: 0 36px 90px rgba(8, 54, 110, 0.18);
    --shadow-md: 0 22px 52px rgba(9, 49, 95, 0.12);
    --shadow-sm: 0 12px 28px rgba(9, 49, 95, 0.08);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 16px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Aptos, "Segoe UI", "Trebuchet MS", sans-serif;
    color: var(--ink-900);
    background:
        radial-gradient(circle at top left, rgba(37, 143, 213, 0.17), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(240, 138, 23, 0.1), transparent 22%),
        linear-gradient(180deg, #fbfdff 0%, #f1f7fc 38%, #ffffff 100%);
}

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

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

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(20px);
    background: rgba(251, 253, 255, 0.78);
    border-bottom: 1px solid rgba(8, 54, 110, 0.06);
    box-shadow: 0 10px 30px rgba(9, 49, 95, 0.04);
}

.header-inner {
    display: grid;
    gap: 1.5rem;
    padding: 1rem 0;
}

.header-brand-row,
.header-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
}

.brand-mark-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem 0.2rem 0.1rem 0;
}

.brand img {
    width: 84px;
}

.brand-copy {
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-900);
}

.brand-copy span {
    color: var(--orange-500);
    font-size: 0.92rem;
    font-weight: 700;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    color: var(--ink-700);
    font-weight: 600;
    font-size: 0.96rem;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(10, 57, 114, 0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 252, 0.9));
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.nav-toggle-icon {
    position: relative;
    display: block;
    width: 20px;
    height: 16px;
}

.nav-toggle-line {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy-900);
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.nav-toggle-line:nth-child(1) {
    top: 0;
}

.nav-toggle-line:nth-child(2) {
    top: 7px;
}

.nav-toggle-line:nth-child(3) {
    top: 14px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

.header-phone {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 54px;
    padding: 0.75rem 1.2rem;
    border-radius: 22px;
    color: var(--navy-900);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 252, 0.9));
    border: 1px solid rgba(10, 57, 114, 0.08);
    box-shadow: var(--shadow-sm);
    margin-left: auto;
}

.header-phone-label {
    color: var(--ink-500);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.header-phone-number {
    color: var(--navy-900);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.site-nav a {
    position: relative;
    padding-bottom: 0.2rem;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--orange-500), var(--blue-500));
    transition: transform 180ms ease;
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 6.5rem 0 5.5rem;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-section::before {
    width: 38rem;
    height: 38rem;
    top: -12rem;
    right: -10rem;
    background: radial-gradient(circle, rgba(31, 130, 207, 0.24), rgba(31, 130, 207, 0));
}

.hero-section::after {
    width: 28rem;
    height: 28rem;
    bottom: -10rem;
    left: -12rem;
    background: radial-gradient(circle, rgba(228, 110, 0, 0.12), rgba(228, 110, 0, 0));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.25rem;
    align-items: center;
}

.hero-brand-lockup {
    margin-bottom: 1rem;
}

.hero-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.6rem 1rem 0.6rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(10, 57, 114, 0.08);
    box-shadow: var(--shadow-sm);
}

.hero-brand-chip img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.hero-brand-chip span {
    color: var(--navy-900);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.84rem;
}

.eyebrow,
.section-label,
.card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-800);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}

.eyebrow::before,
.section-label::before {
    content: "";
    width: 2.75rem;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-500), var(--blue-500));
}

.hero-copy h1,
.section-intro h2,
.section-heading h2,
.impact-copy h2,
.cta-panel h2 {
    margin: 1rem 0 1rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 6vw, 5.3rem);
}

.hero-copy p,
.section-heading p,
.section-copy p,
.impact-copy p,
.cta-panel p,
.site-footer p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink-700);
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2.25rem 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 56px;
    padding: 1rem 1.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.button::after {
    content: "\2192";
    font-size: 1rem;
    transition: transform 220ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-3px);
}

.button:hover::after,
.button:focus-visible::after {
    transform: translateX(3px);
}

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, #d45d00 0%, var(--orange-500) 42%, var(--orange-300) 100%);
    box-shadow: 0 20px 36px rgba(228, 110, 0, 0.24);
}

.button-secondary {
    color: var(--navy-900);
    border-color: rgba(8, 54, 110, 0.1);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 34px rgba(9, 49, 95, 0.08);
}

.button-secondary-light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-trust li {
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(8, 54, 110, 0.07);
    color: var(--ink-700);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

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

.hero-metric {
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(235, 244, 251, 0.94));
    border: 1px solid rgba(8, 54, 110, 0.08);
    box-shadow: var(--shadow-sm);
}

.hero-metric strong {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--navy-900);
    font-size: 1rem;
}

.hero-metric span {
    color: var(--ink-700);
    line-height: 1.7;
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    min-height: 39rem;
}

.hero-visual-orbit {
    position: absolute;
    inset: 2rem 1rem 2rem 1rem;
    border-radius: 50%;
    border: 1px solid rgba(37, 143, 213, 0.16);
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.6), transparent 28%),
        radial-gradient(circle at 70% 70%, rgba(240, 138, 23, 0.12), transparent 24%);
    filter: blur(0.2px);
}

.hero-swoosh {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
}

.hero-swoosh-orange {
    width: 23rem;
    height: 23rem;
    left: -1.5rem;
    top: 4.75rem;
    border-left: 12px solid rgba(229, 113, 0, 0.9);
    border-bottom: 12px solid rgba(229, 113, 0, 0.9);
    transform: rotate(-20deg);
    opacity: 0.9;
}

.hero-swoosh-blue {
    width: 21rem;
    height: 21rem;
    right: -1rem;
    bottom: 1rem;
    border-right: 14px solid rgba(37, 143, 213, 0.8);
    border-bottom: 14px solid rgba(37, 143, 213, 0.8);
    transform: rotate(22deg);
}

.hero-logo-card {
    position: relative;
    z-index: 1;
    margin: 3.2rem 2.5rem 0 4.5rem;
    padding: 1.6rem;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(233, 241, 250, 0.74)),
        linear-gradient(180deg, rgba(37, 143, 213, 0.09), rgba(10, 57, 114, 0.04));
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
}

.hero-logo-card img {
    width: min(100%, 27rem);
    margin: 0 auto;
}

.hero-logo-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(37, 143, 213, 0.34), rgba(229, 113, 0, 0.26));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.hero-logo-card::after {
    content: "";
    position: absolute;
    inset: 0.85rem;
    border-radius: calc(var(--radius-xl) - 12px);
    border: 1px solid rgba(10, 57, 114, 0.06);
    pointer-events: none;
}

.hero-floating-card {
    position: absolute;
    max-width: 16rem;
    z-index: 2;
    padding: 1.05rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(9, 41, 79, 0.9);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-floating-card span {
    display: block;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-floating-card-top {
    top: 1.4rem;
    right: 0;
}

.hero-floating-card-bottom {
    left: 0;
    bottom: 3.4rem;
    background: linear-gradient(145deg, var(--navy-900), var(--blue-600));
}

.hero-floating-badge {
    position: absolute;
    right: 1.5rem;
    bottom: 1rem;
    z-index: 2;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--orange-500);
    border: 1px solid rgba(228, 110, 0, 0.12);
    box-shadow: var(--shadow-sm);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.section {
    position: relative;
    padding: 6.5rem 0;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(8, 54, 110, 0.08), transparent);
}

.section-light {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(233, 242, 249, 0.82)),
        radial-gradient(circle at 20% 0%, rgba(37, 143, 213, 0.08), transparent 22%);
}

.section-dark {
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(37, 143, 213, 0.34), transparent 28%),
        radial-gradient(circle at 10% 90%, rgba(240, 138, 23, 0.16), transparent 20%),
        linear-gradient(135deg, #082f62 0%, #0d4d90 56%, #258fd5 100%);
}

.split-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 3.5rem;
    align-items: start;
}

.section-intro h2,
.section-heading h2,
.impact-copy h2,
.cta-panel h2 {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.section-heading {
    max-width: 46rem;
    margin-bottom: 2.8rem;
}

.section-heading-dark .section-label,
.section-heading-dark h2 {
    color: var(--white);
}

.section-heading-dark .section-label::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), var(--orange-400));
}

.section-heading-dark p,
.value-card p,
.cta-panel p {
    color: rgba(255, 255, 255, 0.82);
}

.card-grid,
.value-grid,
.stats-grid,
.footer-grid {
    display: grid;
    gap: 1.6rem;
}

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

.feature-card,
.value-card,
.stat-card,
.impact-panel,
.cta-panel {
    border-radius: var(--radius-lg);
}

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 2.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 252, 0.94));
    border: 1px solid rgba(8, 54, 110, 0.08);
    box-shadow: var(--shadow-md);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-900), var(--blue-600), var(--orange-400));
}

.feature-card:hover,
.feature-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(46, 151, 223, 0.22);
    box-shadow: 0 30px 56px rgba(9, 49, 95, 0.14);
}

.feature-card h3,
.value-card h3 {
    margin: 0.7rem 0 0.75rem;
    font-size: 1.4rem;
}

.feature-card p {
    margin: 0;
    color: var(--ink-700);
    line-height: 1.8;
}

.value-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.value-card {
    padding: 2rem 1.8rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.impact-panel {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.4rem;
    padding: 2.4rem;
    background:
        radial-gradient(circle at top right, rgba(240, 138, 23, 0.1), transparent 18%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 240, 248, 0.94));
    border: 1px solid rgba(8, 54, 110, 0.08);
    box-shadow: var(--shadow-lg);
}

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

.stat-card {
    position: relative;
    overflow: hidden;
    padding: 1.85rem;
    background: linear-gradient(180deg, rgba(10, 57, 114, 0.98), rgba(21, 98, 166, 0.98));
    box-shadow: 0 18px 36px rgba(8, 54, 110, 0.18);
    color: var(--white);
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: auto -2rem -2rem auto;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 138, 23, 0.3), rgba(240, 138, 23, 0));
}

.stat-card strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 2.25rem;
    letter-spacing: -0.04em;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.cta-section {
    padding-top: 1.5rem;
}

.cta-panel {
    display: grid;
    grid-template-columns: 1.1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2.7rem;
    background:
        radial-gradient(circle at top right, rgba(240, 138, 23, 0.28), transparent 24%),
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.08), transparent 18%),
        linear-gradient(135deg, #0a3972 0%, #0d4d90 55%, #258fd5 100%);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-panel .section-label,
.cta-panel h2 {
    color: var(--white);
}

.cta-panel .section-label::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), var(--orange-400));
}

.site-footer {
    margin-top: 5rem;
    padding: 3.5rem 0 2rem;
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(37, 143, 213, 0.18), transparent 18%),
        #082f62;
}

.footer-grid {
    grid-template-columns: 1.1fr 0.9fr 0.8fr 1fr;
    align-items: start;
}

.footer-brand-block {
    padding-right: 1rem;
}

.footer-logo {
    width: 132px;
    margin-bottom: 1rem;
}

.footer-card {
    padding: 1.4rem 1.35rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-contact-card {
    background:
        radial-gradient(circle at top right, rgba(240, 138, 23, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.site-footer h2 {
    margin: 0 0 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-card-label {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-phone-link {
    display: block;
    margin-bottom: 1rem;
    padding: 1rem 1.05rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-phone-link strong {
    color: var(--white);
    font-size: 1.35rem;
    letter-spacing: 0.04em;
}

.footer-contact-list p,
.footer-link-list p {
    margin: 0 0 0.9rem;
}

.footer-contact-list p:last-child,
.footer-link-list p:last-child {
    margin-bottom: 0;
}

.footer-link-list a {
    color: rgba(255, 255, 255, 0.84);
}

.company-statement {
    margin-bottom: 0.9rem;
    color: var(--white) !important;
    font-weight: 700;
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 900ms ease, transform 2200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
    transform: translate3d(-56px, 28px, 0);
}

.reveal-right {
    transform: translate3d(56px, 28px, 0);
}

.reveal-up {
    transform: translate3d(0, 52px, 0);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-layout,
    .impact-panel,
    .cta-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-brand-row,
    .header-nav-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-nav-row {
        width: 100%;
    }

    .footer-brand-block {
        padding-right: 0;
    }

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

    .hero-visual {
        min-height: auto;
        padding-bottom: 8rem;
    }

    .hero-logo-card {
        margin: 1rem 1rem 0;
    }

    .hero-floating-card-top {
        right: 1rem;
    }

    .hero-floating-card-bottom {
        left: 1rem;
        bottom: 0;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .header-inner,
    .hero-actions,
    .cta-actions,
    .hero-trust {
        align-items: flex-start;
    }

    .header-inner,
    .header-nav-row {
        flex-direction: column;
    }

    .header-inner {
        gap: 0.85rem;
        padding: 0.75rem 0;
    }

    .header-brand-row,
    .header-nav-row {
        width: 100%;
    }

    .header-brand-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.75rem;
    }

    .header-nav-row {
        align-items: stretch;
        gap: 0.5rem;
    }

    .brand {
        min-width: 0;
        gap: 0.65rem;
        grid-column: 1;
        grid-row: 1;
    }

    .brand-copy strong {
        font-size: 0.88rem;
    }

    .brand-copy span {
        font-size: 0.78rem;
    }

    .brand img {
        width: 60px;
    }

    .header-phone,
    .footer-meta {
        width: 100%;
    }

    .header-phone {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-left: 0;
        min-height: 0;
        padding: 0.65rem 0.95rem;
        border-radius: 16px;
    }

    .header-phone-label {
        font-size: 0.64rem;
    }

    .header-phone-number {
        font-size: 0.92rem;
    }

    .nav-toggle {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        justify-self: end;
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.65rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(10, 57, 114, 0.08);
        box-shadow: var(--shadow-sm);
        font-size: 0.95rem;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 0.9rem 0.95rem;
        border-radius: 14px;
        background: rgba(10, 57, 114, 0.03);
    }

    .site-nav a::after {
        display: none;
    }

    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-section,
    .section {
        padding: 4.5rem 0;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(2.6rem, 12vw, 4.2rem);
    }

    .card-grid,
    .value-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        padding-bottom: 0;
    }

    .hero-logo-card {
        margin: 0;
    }

    .hero-floating-card {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }

    .hero-floating-badge,
    .hero-visual-orbit,
    .hero-swoosh {
        display: none;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-up {
        opacity: 1;
        transform: none;
    }
}
