:root {
    --bg: #0b0f12;
    --paper: #ffffff;
    --ink: #0f172a;
    --muted: #475569;
    --line: rgba(15, 23, 42, 0.12);
    /* Brand accents (tune later to match your logo precisely) */
    --accent: #0f8a7a; /* teal/green */
    --accent2: #0a6d60; /* deeper */
    --soft: #f6f8fb;
    --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    --radius: 18px;
    --radius2: 24px;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.muted {
    color: var(--muted);
}

.kicker {
    color: var(--accent2);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.brand-logo {
    height: 64px; /* desktop size */
    width: auto;
    display: block;
}

/* Tablet */
@media (max-width: 900px) {
    .brand-logo {
        height: 52px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .brand-logo {
        height: 44px;
    }
}

.brand-name {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .01em;
}

.brand-sub {
    font-weight: 600;
    font-size: 14px;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    padding: 8px 10px;
    border-radius: 10px;
}

    .nav-link:hover {
        background: rgba(15, 23, 42, 0.04);
        color: var(--ink);
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 700;
    padding: 12px 18px;
    border: 1px solid transparent;
    box-shadow: none;
    text-decoration: none !important;
    cursor: pointer;
}

.btn-sm {
    padding: 10px 14px;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    box-shadow: 0 12px 24px rgba(15,138,122,0.18);
}

    .btn-primary:hover {
        filter: brightness(0.98);
    }

.btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}

    .btn-ghost:hover {
        background: rgba(15, 23, 42, 0.03);
    }

.section {
    padding: 72px 0;
}

.section-soft {
    background: var(--soft);
}

.section-tight {
    padding: 56px 0;
}

.hero {
    padding: 78px 0 48px;
    background: radial-gradient(circle at 15% 20%, rgba(15,138,122,0.18), transparent 40%), radial-gradient(circle at 85% 10%, rgba(15,138,122,0.12), transparent 45%), linear-gradient(180deg, #fff, #fff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 8px;
    }
}

.hero h1 {
    margin: 10px 0 10px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.hero p {
    margin: 0 0 18px;
    font-size: 18px;
    color: var(--muted);
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.hero-card {
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 22px;
}

    .hero-card .label {
        font-weight: 800;
        font-size: 13px;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--accent2);
    }

    .hero-card ul {
        margin: 14px 0 0;
        padding-left: 18px;
        color: var(--muted);
    }

    .hero-card li {
        margin: 10px 0;
    }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 22px;
}

    .card h3 {
        margin: 8px 0 6px;
        letter-spacing: -0.01em;
    }

    .card p {
        margin: 0;
        color: var(--muted);
    }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15,138,122,0.10);
    color: var(--accent2);
    font-weight: 800;
    font-size: 13px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}

@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
    }
}

.steps {
    display: grid;
    gap: 12px;
}

.step {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 16px;
}

.step-title {
    font-weight: 800;
    margin-bottom: 6px;
}

.step-desc {
    color: var(--muted);
    margin: 0;
}

.cta-band {
    border-radius: var(--radius2);
    padding: 28px;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.22), transparent 55%), linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    box-shadow: 0 18px 40px rgba(15,138,122,0.22);
}

    .cta-band h2 {
        margin: 0 0 6px;
        letter-spacing: -0.02em;
    }

    .cta-band p {
        margin: 0;
        opacity: .92;
    }

    .cta-band .cta-actions {
        margin-top: 16px;
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .cta-band .btn-ghost {
        border-color: rgba(255,255,255,0.35);
        color: #fff;
    }

        .cta-band .btn-ghost:hover {
            background: rgba(255,255,255,0.12);
        }

.form {
    display: grid;
    gap: 12px;
}

.input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    font: inherit;
}

textarea.input {
    min-height: 120px;
    resize: vertical;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 34px 0;
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 18px;
    align-items: start;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-title {
    font-weight: 800;
    margin-bottom: 6px;
}

.footer-links {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

    .footer-links a {
        color: var(--muted);
        font-weight: 600;
    }

        .footer-links a:hover {
            color: var(--ink);
        }

.footer-meta {
    text-align: right;
}

@media (max-width: 900px) {
    .footer-meta {
        text-align: left;
    }
}
