:root {
    --navy: #152a42;
    --navy-2: #0f2134;
    --blue: #275b88;
    --light-blue: #eef5fa;
    --soft: #f7f9fb;
    --orange: #d9782d;
    --orange-dark: #b85f1f;
    --white: #ffffff;
    --text: #27313a;
    --muted: #63707b;
    --border: #d9e1e7;
    --shadow: 0 14px 40px rgba(21, 42, 66, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
}

a {
    color: var(--blue);
}

img {
    max-width: 100%;
}

.site-header {
    background: var(--navy);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
}

.header-inner,
.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

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

.brand-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus {
    text-decoration: underline;
}

.hero {
    background:
        radial-gradient(circle at top right, rgba(39, 91, 136, 0.12), transparent 40%),
        linear-gradient(135deg, var(--light-blue), var(--white));
    padding: 78px 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 46px;
    align-items: start;
}

.hero h1,
.page-hero h1 {
    color: var(--navy);
    margin: 0 0 18px;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.08;
}

.hero .lead,
.page-hero .lead {
    color: var(--muted);
    font-size: 1.18rem;
    max-width: 760px;
}

.eyebrow {
    color: var(--orange-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    margin-bottom: 10px;
}

.button {
    display: inline-block;
    border: 0;
    border-radius: 7px;
    background: var(--orange);
    color: var(--white);
    padding: 14px 22px;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    font: inherit;
}

.button:hover,
.button:focus {
    background: var(--orange-dark);
}

.button.secondary {
    background: var(--navy);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 28px;
}

.form-card h2 {
    margin-bottom: 8px;
}

.form-intro {
    color: var(--muted);
    margin-top: 0;
    font-size: 0.96rem;
}

.property-form {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    gap: 6px;
}

.form-row label {
    font-weight: 800;
    color: var(--navy);
}

.form-row input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 12px 13px;
    background: var(--white);
    color: var(--text);
    font: inherit;
}

.form-row input:focus {
    outline: 2px solid rgba(39, 91, 136, 0.20);
    border-color: var(--blue);
}

.optional {
    font-weight: 400;
    color: var(--muted);
}

.consent-group {
    border-top: 1px solid var(--border);
    margin-top: 5px;
    padding-top: 14px;
    display: grid;
    gap: 13px;
}

.checkbox-row {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 0.86rem;
    line-height: 1.45;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
}

.form-legal {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.form-legal a {
    font-weight: 700;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

section {
    padding: 66px 24px;
}

section.compact {
    padding-top: 46px;
    padding-bottom: 46px;
}

h2 {
    color: var(--navy);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1.18;
    margin-top: 0;
}

h3 {
    color: var(--navy);
    line-height: 1.25;
}

.soft-section {
    background: var(--soft);
}

.light-blue-section {
    background: var(--light-blue);
}

.grid-3,
.grid-2,
.process-grid {
    display: grid;
    gap: 22px;
}

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

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

.info-card,
.process-step {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    background: var(--white);
}

.process-step .number {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: var(--white);
    background: var(--orange);
    font-weight: 800;
}

.check-list {
    padding-left: 1.2rem;
}

.check-list li {
    margin-bottom: 8px;
}

.page-hero {
    background:
        linear-gradient(135deg, var(--light-blue), var(--white));
    padding: 62px 24px;
}

.content {
    width: min(900px, 92%);
    margin: 0 auto;
}

.content h2 {
    margin-top: 36px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 34px;
    align-items: start;
}

.contact-details {
    border-left: 5px solid var(--orange);
    padding: 8px 0 8px 20px;
}

.notice {
    background: var(--soft);
    border-left: 5px solid var(--orange);
    padding: 18px 20px;
    margin: 22px 0;
}

.legal-copy h2 {
    margin-top: 34px;
}

.legal-copy p,
.legal-copy li {
    max-width: 880px;
}

.site-footer {
    background: var(--navy-2);
    color: var(--white);
    padding: 34px 24px;
}

.footer-grid {
    width: min(1120px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    justify-content: flex-end;
    align-content: start;
}

.site-footer a {
    color: var(--white);
}

.legal-note {
    color: #d5dee6;
    font-size: 0.88rem;
    margin: 6px 0;
}

.center-card {
    width: min(680px, 92%);
    margin: 80px auto;
}

@media (max-width: 860px) {
    .site-header {
        position: static;
    }

    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
        gap: 12px;
    }

    .site-nav {
        gap: 12px 18px;
    }

    .hero-grid,
    .contact-grid,
    .grid-3,
    .grid-2,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .hero {
        padding-top: 54px;
        padding-bottom: 54px;
    }
}
