:root {
    --navy: #071b2e;
    --navy-2: #0f2c4a;
    --text: #13233a;
    --muted: #4f6077;
    --line: #dbe4ee;
    --soft: #f6f8fb;
    --white: #ffffff;
    --green: #147a3d;
    --shadow: 0 16px 42px rgba(7, 27, 46, 0.10);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius: 16px;
    --max: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 100;
    background: var(--navy);
    color: white;
    padding: 10px 14px;
    border-radius: 999px;
}
.skip-link:focus { left: 12px; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(219, 228, 238, 0.9);
}
.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand img { width: 190px; height: auto; }
.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--navy);
    font-weight: 600;
}
.site-nav a {
    padding: 8px 2px;
    border-bottom: 2px solid transparent;
    transition: border-color 160ms ease, color 160ms ease;
}
.site-nav a.active,
.site-nav a:hover { border-color: var(--navy); }
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: var(--navy);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}
.menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}
main { overflow: hidden; }

.hero,
.section,
.profm-hero,
.footer-inner {
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
}

.hero {
    padding: 42px 24px 0;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 0;
    align-items: stretch;
    background: white;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.hero-copy {
    padding: 48px 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero h1 {
    color: var(--navy);
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
    margin-bottom: 22px;
}
.hero-lead {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 640px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}
.hero-image-wrap {
    min-height: 560px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc, #eef3f8);
    border-left: 1px solid var(--line);
    display: flex;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 12px;
    background: var(--navy);
    color: white;
    font-weight: 700;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button::after { content: "→"; }
.button:hover { transform: translateY(-1px); background: var(--navy-2); }
.button.secondary {
    background: transparent;
    color: var(--navy);
    border: 1px solid #9fb0c3;
}
.button.secondary:hover { background: #f3f6fa; }
.button.green { background: var(--green); }
.button.green:hover { background: #106334; }
.button.outline-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.55);
    color: white;
}
.button.outline-light:hover { background: rgba(255,255,255,0.08); }

.section {
    padding: 0 24px 0;
}
.section-soft {
    background: #f7f7f8;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.section-heading {
    padding: 30px 48px 18px;
}
.section-heading.centered { text-align: center; }
.section-heading.narrow { max-width: 820px; margin: 0 auto; }
.section-heading h2,
.contact-band h2,
.profm-main-card h1 {
    color: var(--navy);
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 0;
}
.cards {
    display: grid;
    gap: 18px;
    padding: 0 48px 40px;
}
.three-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
    background: white;
    border: 1px solid rgba(219,228,238,0.95);
    border-radius: var(--radius);
    box-shadow: 0 6px 24px rgba(7, 27, 46, 0.04);
    padding: 28px;
}
.service-card { min-height: 230px; }
.icon-circle {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: #f2f5f8;
    border-radius: 999px;
    color: var(--navy);
    margin-bottom: 20px;
}
.icon-circle svg { width: 28px; height: 28px; }
.card h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.card p { color: var(--muted); margin-bottom: 0; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 0 48px 36px;
}
.process-line { position: relative; }
.process-card {
    text-align: center;
    padding: 10px 6px 0;
}
.process-card span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--navy);
    color: white;
    font-weight: 700;
    margin-bottom: 14px;
}
.process-card h3 {
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.process-card p {
    color: var(--muted);
    max-width: 220px;
    margin: 0 auto;
}

.contact-band {
    margin: 0 0 52px;
    background: var(--navy);
    color: white;
    border-radius: 0 0 18px 18px;
    padding: 26px 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr) auto;
    align-items: center;
    gap: 24px;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.contact-band h2 {
    color: white;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 6px;
}
.contact-band p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.78);
}
.contact-meta {
    display: grid;
    gap: 8px;
}
.contact-item,
.contact-item a { color: white; }

.profm-hero {
    padding: 44px 24px 0;
}
.breadcrumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.95rem;
    color: #68768b;
    margin-bottom: 22px;
}
.breadcrumbs a { color: var(--navy); }
.profm-layout.single-focus {
    display: block;
}
.profm-main-card {
    background: #f0f4ef;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 46px;
    box-shadow: var(--shadow);
}
.profm-logo-large {
    width: min(420px, 100%);
    margin-bottom: 28px;
}
.profm-main-card p {
    font-size: 1.07rem;
    color: var(--muted);
    max-width: 900px;
}
.mini-card { min-height: 190px; }

.site-footer {
    border-top: 1px solid var(--line);
    background: white;
}
.footer-inner {
    padding: 28px 24px 36px;
    display: grid;
    grid-template-columns: minmax(180px, 250px) 1fr auto;
    align-items: center;
    gap: 24px;
    color: #6b778c;
    font-size: 0.95rem;
}
.footer-brand img { width: 170px; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    color: var(--navy);
    font-weight: 600;
}
.footer-inner p { margin: 0; }

@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; }
    .hero-image-wrap { min-height: 380px; }
    .three-cards,
    .four-cards,
    .process-grid,
    .contact-band,
    .footer-inner { grid-template-columns: 1fr; }
    .contact-band { border-radius: 0 0 18px 18px; }
    .footer-inner { text-align: center; }
    .footer-brand img { margin: 0 auto; }
}

@media (max-width: 820px) {
    .header-inner { padding: 14px 18px; }
    .brand img { width: 165px; }
    .menu-toggle { display: inline-flex; }
    .site-nav {
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 16px;
        background: white;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: 12px 8px; }
    .hero-copy,
    .section-heading,
    .cards,
    .process-grid,
    .profm-main-card { padding-left: 20px; padding-right: 20px; }
    .hero { padding-left: 18px; padding-right: 18px; }
    .section,
    .profm-hero,
    .footer-inner { padding-left: 18px; padding-right: 18px; }
    .hero-copy { padding-top: 34px; padding-bottom: 34px; }
    .hero h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
}
