:root {
    --blue: #1A2A47;
    --blue-soft: #24385C;
    --green: #5CA387;
    --green-soft: #EAF5F1;
    --white: #FFFFFF;
    --gray: #68778A;
    --muted: #F5F8FA;
    --line: #DFE8EE;
    --error: #B42318;
    --success: #167A52;
    --radius: 24px;
    --shadow: 0 22px 70px rgba(26, 42, 71, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--blue);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at 12% 8%, rgba(92, 163, 135, 0.12), transparent 28%), var(--muted);
}

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

p {
    color: var(--gray);
    line-height: 1.75;
}

ul {
    margin: 0;
    padding-left: 20px;
}

.site-top {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(16px, 4vw, 64px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand strong {
    display: block;
    color: var(--blue);
    font-size: 18px;
    letter-spacing: 0.02em;
}

.brand small {
    display: block;
    margin-top: 2px;
    color: var(--gray);
    font-size: 12px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-nav a {
    padding: 10px 14px;
    color: var(--gray);
    font-size: 14px;
    font-weight: 800;
    border-radius: 999px;
}

.top-nav a:hover {
    color: var(--white);
    background: var(--blue);
}

.nav-toggle {
    display: none;
    border: 0;
    color: var(--white);
    background: var(--blue);
    border-radius: 12px;
    padding: 10px 12px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    gap: clamp(22px, 4vw, 46px);
    align-items: center;
    padding: clamp(54px, 8vw, 116px) clamp(16px, 4vw, 64px);
    background: linear-gradient(145deg, #FFFFFF 0%, #EEF7F4 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 980px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--blue);
    line-height: 1.08;
}

h1 {
    margin-top: 18px;
    max-width: 980px;
    font-size: clamp(38px, 7vw, 80px);
    letter-spacing: -0.06em;
}

h2 {
    font-size: clamp(27px, 4vw, 48px);
    letter-spacing: -0.045em;
}

h3 {
    font-size: 22px;
}

.lead {
    max-width: 780px;
    font-size: clamp(18px, 2vw, 22px);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 20px;
    color: var(--blue);
    font-weight: 900;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 34px rgba(26, 42, 71, 0.14);
}

.btn.primary {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.btn.dark {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
}

.btn.ghost {
    color: var(--blue);
    background: rgba(255, 255, 255, 0.82);
}

.btn.light {
    color: var(--blue);
    background: var(--white);
    border-color: var(--white);
}

.hero-card,
.card,
.form-card,
.access-card,
.mini-card,
.step-card,
.content-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: clamp(24px, 3vw, 34px);
}

.brand-panel {
    display: grid;
    gap: 20px;
    place-items: center;
    text-align: center;
}

.brand-panel img {
    width: min(100%, 330px);
    max-height: 260px;
    object-fit: contain;
}

.brand-panel p {
    margin: 0;
    max-width: 360px;
    font-weight: 750;
}

.section {
    padding: clamp(42px, 7vw, 86px) clamp(16px, 4vw, 64px);
}

.section-head {
    margin-bottom: 28px;
}

.section-head.slim {
    max-width: 980px;
}

.section-head.slim h2,
.section-head.compact h2 {
    margin-top: 14px;
}

.section-head.compact {
    display: flex;
    justify-content: space-between;
    gap: 22px;
}

.grid {
    display: grid;
    gap: 18px;
}

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

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

.card {
    padding: 26px;
}

.card-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 18px;
    color: var(--blue);
    font-weight: 900;
    background: var(--green-soft);
    border-radius: 16px;
}

.quote-band {
    margin-top: 28px;
    padding: clamp(22px, 3vw, 30px);
    color: var(--blue);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    line-height: 1.45;
    background: var(--green-soft);
    border-left: 6px solid var(--green);
    border-radius: 20px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 22px;
    align-items: stretch;
}

.split-section.reverse {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
}

.split-section.reverse .content-card {
    order: 2;
}

.content-card {
    padding: clamp(26px, 4vw, 42px);
}

.dark-card {
    color: var(--white);
    background: linear-gradient(145deg, var(--blue), var(--blue-soft));
    border-color: transparent;
}

.dark-card h2,
.dark-card p {
    color: var(--white);
}

.dark-card .eyebrow {
    color: #9FD0BC;
}

.soft-card {
    background: linear-gradient(145deg, #FFFFFF, var(--green-soft));
}

.info-list {
    display: grid;
    gap: 14px;
}

.mini-card {
    display: grid;
    gap: 8px;
    padding: 22px;
}

.mini-card strong {
    font-size: 19px;
}

.mini-card span {
    color: var(--gray);
    line-height: 1.6;
}

.process-section {
    background: var(--white);
}

.step-card {
    padding: 22px;
    color: var(--blue);
    font-weight: 850;
    line-height: 1.55;
    background: var(--muted);
    box-shadow: none;
}

.form-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
    gap: 22px;
    align-items: start;
}

.form-card,
.access-card {
    padding: clamp(22px, 4vw, 34px);
}

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

.field,
.access-form {
    display: grid;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

label {
    color: var(--blue);
    font-weight: 850;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 15px;
    color: var(--blue);
    font: inherit;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: none;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(92, 163, 135, 0.15);
}

.notice {
    margin: 0 0 18px;
    padding: 14px 16px;
    font-weight: 850;
    border-radius: 16px;
}

.notice.success {
    color: var(--success);
    background: rgba(92, 163, 135, 0.14);
}

.notice.error {
    color: var(--error);
    background: rgba(180, 35, 24, 0.10);
}

.table-card {
    overflow: hidden;
    padding: 0;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

th,
td {
    padding: 15px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

th {
    color: var(--blue);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--green-soft);
}

td {
    color: var(--gray);
    line-height: 1.5;
}

.table-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 22px;
}

.badge {
    display: inline-flex;
    padding: 6px 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    background: var(--green-soft);
    border-radius: 999px;
}

.empty-state {
    padding: 28px;
    text-align: center;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px clamp(16px, 4vw, 64px);
    color: var(--white);
    background: var(--blue);
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.legal-page,
.internal-page {
    min-height: 55vh;
}

@media (max-width: 1120px) {
    .hero,
    .split-section,
    .split-section.reverse,
    .form-section {
        grid-template-columns: 1fr;
    }

    .split-section.reverse .content-card {
        order: initial;
    }

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

@media (max-width: 860px) {
    .site-top {
        align-items: center;
        flex-wrap: wrap;
        padding: 12px 16px;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .top-nav {
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .top-nav.open {
        display: flex;
    }

    .top-nav a {
        border-radius: 14px;
    }

    .grid.three,
    .grid.five,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .actions,
    .site-footer,
    .table-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .brand small {
        display: none;
    }
}

@media (max-width: 520px) {
    .brand strong {
        font-size: 16px;
    }

    .hero {
        padding-top: 38px;
    }

    h1 {
        font-size: 36px;
    }

    .card,
    .mini-card,
    .step-card,
    .form-card,
    .access-card,
    .content-card {
        border-radius: 18px;
    }
}
