﻿:root {
    --bg: #f6f8fb;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: rgba(148,163,184,.35);
    --shadow: 0 18px 45px rgba(15,23,42,.10);
    --brand: #0e9f6e;
    --brand2: #0b5cab;
    --btn: #0e9f6e;
    --btn2: #0b7c54;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none
}

.page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 16px 44px
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0 18px;
}

.brand-logo {
    height: 54px;
    width: auto;
    display: block
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px
}

.link {
    color: var(--muted)
}

    .link:hover {
        color: var(--text);
        text-decoration: underline;
        text-underline-offset: 3px
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--btn);
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(14,159,110,.25);
    transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
    white-space: nowrap;
}

    .btn:hover {
        background: var(--btn2);
        transform: translateY(-1px);
        box-shadow: 0 12px 26px rgba(14,159,110,.30)
    }

.btn-ghost {
    background: transparent;
    color: var(--btn);
    border: 1px solid rgba(14,159,110,.35);
    box-shadow: none;
}

    .btn-ghost:hover {
        background: rgba(14,159,110,.06);
        transform: none;
        box-shadow: none
    }

.btn-wide {
    width: 100%
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 22px;
    align-items: start;
    margin-top: 6px;
}

.pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    color: #0b7c54;
    background: rgba(14,159,110,.10);
    letter-spacing: .02em;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(2rem,3vw,2.65rem);
    line-height: 1.12;
    margin-bottom: 10px;
}

.sub {
    color: var(--muted);
    max-width: 60ch;
    margin-bottom: 14px
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 8px 14px;
    margin-bottom: 14px;
}

.bullet {
    color: var(--muted);
    font-size: .92rem
}

.hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center
}

.fineprint {
    margin-top: 10px;
    font-size: .78rem;
    color: var(--muted)
}

.section {
    margin-top: 38px
}

.section-head {
    margin-bottom: 14px
}

    .section-head h2 {
        font-size: 1.55rem;
        margin-bottom: 6px
    }

.muted {
    color: var(--muted)
}

.small {
    font-size: .9rem
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 16px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 16px 18px;
    box-shadow: var(--shadow);
}

    .card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px
    }

    .card h4 {
        font-size: 1rem;
        margin: 10px 0 6px
    }

ul {
    padding-left: 18px
}

.list li {
    margin: 6px 0;
    color: var(--muted)
}

.divider {
    height: 1px;
    background: rgba(148,163,184,.35);
    margin: 14px 0;
}

.form {
    display: grid;
    gap: 10px;
    margin-top: 8px
}

.row {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px
}

label {
    display: block;
    font-size: .78rem;
    font-weight: 800;
    color: #334155;
    margin-bottom: 3px
}

input, select, textarea {
    width: 100%;
    border: 1px solid rgba(148,163,184,.55);
    border-radius: 12px;
    padding: 10px 11px;
    font-size: .95rem;
    outline: none;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
}

    input:focus, select:focus, textarea:focus {
        border-color: rgba(14,159,110,.9);
        box-shadow: 0 0 0 2px rgba(14,159,110,.18);
    }

textarea {
    resize: vertical
}

.hint {
    margin-top: 6px;
    font-size: .8rem;
    color: var(--muted)
}

.steps {
    display: grid;
    gap: 10px;
    margin-top: 10px
}

.step {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted)
}

.step-num {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,92,171,.10);
    color: #0b5cab;
    font-weight: 900;
    flex: 0 0 auto;
}

.footer {
    margin-top: 42px;
    padding-top: 14px;
    border-top: 1px solid rgba(148,163,184,.35);
    color: var(--muted);
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 8px;
    align-items: center
}

/* Responsive */
@media (max-width: 920px) {
    .hero {
        grid-template-columns: 1fr
    }

    .hero-bullets {
        grid-template-columns: 1fr
    }

    .grid-2 {
        grid-template-columns: 1fr
    }

    .row {
        grid-template-columns: 1fr
    }

    .header {
        flex-direction: column;
        align-items: flex-start
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap
    }

    .brand-logo {
        height: 48px
    }
}
/* Featured Logo Section */
.logo-feature {
    text-align: center;
    padding: 36px 16px 28px;
    margin-bottom: 12px;
}

.logo-feature-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    margin: 0 auto 12px;
    display: block;
}

.logo-tagline {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.04em;
}

/* Header logo refinement */
.small-logo {
    height: 44px;
    width: auto;
}

/* Mobile tweaks */
@media (max-width: 640px) {
    .logo-feature-img {
        max-width: 300px;
    }

    .logo-tagline {
        font-size: 0.95rem;
    }
}
