:root {
    color-scheme: light;
    --background: #f5f7f9;
    --surface: #ffffff;
    --surface-subtle: #eef2f5;
    --text: #111418;
    --muted: #5f6872;
    --line: #dce2e7;
    --accent: #087a73;
    --accent-dark: #075b57;
    --yellow: #f2c84b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.6;
}

a {
    color: var(--accent-dark);
}

.site-header {
    position: sticky;
    z-index: 10;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.header-inner,
.hero-inner,
.trust-inner,
.content-section,
.contact-section,
.site-footer,
.page {
    width: min(1040px, calc(100% - 40px));
    margin: 0 auto;
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 750;
    text-decoration: none;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    object-fit: cover;
}

nav,
.footer-links {
    display: flex;
    gap: 22px;
}

nav a,
.footer-links a {
    color: var(--muted);
    font-size: 15px;
    font-weight: 650;
    text-decoration: none;
}

nav a:hover,
.footer-links a:hover {
    color: var(--text);
}

.hero {
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.hero-inner {
    min-height: 500px;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 70px;
    padding: 70px 0;
}

.hero-logo {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(20, 30, 40, 0.12);
}

.hero-copy {
    max-width: 640px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

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

h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 68px);
}

h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 5vw, 42px);
}

h3 {
    margin: 14px 0 10px;
    font-size: 21px;
}

p {
    margin: 0 0 16px;
}

.lead {
    color: var(--muted);
    font-size: 21px;
    line-height: 1.55;
}

.actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.button {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--accent);
    color: white;
    font-weight: 750;
    text-decoration: none;
}

.button:hover {
    background: var(--accent-dark);
}

.text-link {
    font-weight: 700;
}

.response-note {
    margin-top: 16px;
    color: var(--muted);
    font-size: 14px;
}

.trust-band {
    border-bottom: 1px solid var(--line);
    background: var(--surface-subtle);
}

.trust-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 24px 0;
}

.trust-inner div {
    display: flex;
    flex-direction: column;
}

.trust-inner strong {
    font-size: 15px;
}

.trust-inner span {
    color: var(--muted);
    font-size: 14px;
}

.content-section {
    padding: 80px 0;
}

.section-heading {
    max-width: 620px;
    margin-bottom: 34px;
}

.section-heading p:last-child,
.contact-section p {
    color: var(--muted);
}

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

.panel {
    min-height: 230px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.panel p:last-child {
    margin-bottom: 0;
}

.topic-number {
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 800;
}

.path {
    color: var(--muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 14px;
}

.contact-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
    padding: 34px;
    border: 1px solid var(--line);
    border-left: 5px solid var(--yellow);
    border-radius: 8px;
    background: var(--surface);
}

.contact-section div {
    max-width: 600px;
}

.legal {
    max-width: 780px;
    padding: 64px 0 80px;
}

.legal section {
    margin-top: 38px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 0 44px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.site-footer div:first-child {
    display: flex;
    flex-direction: column;
}

.site-footer strong {
    color: var(--text);
}

@media (max-width: 760px) {
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
    }

    nav {
        width: 100%;
        justify-content: space-between;
    }

    .hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
    }

    .hero-logo {
        width: 150px;
    }

    .trust-inner,
    .grid {
        grid-template-columns: 1fr;
    }

    .trust-inner {
        gap: 18px;
    }

    .actions,
    .contact-section,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
