   :root {
        --accent: #1f2937;
        --muted: #6b7280;
        --bg: #f8fafc;
        --card: #ffffff
    }

    * {
        box-sizing: border-box
    }

    body {
        font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
        background: var(--bg);
        color: var(--accent);
        margin: 0;
        padding: 32px
    }

    .container {
        max-width: 1180px;
        margin: 50px auto
    }

    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px
    }

    header .brand {
        display: flex;
        gap: 12px;
        align-items: center
    }

    .logo {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        background: linear-gradient(135deg, #111827, #374151);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700
    }

    h1 {
        font-size: 28px;
        margin: 0
    }

    p.lead {
        color: var(--muted);
        margin: 6px 0 0
    }

    .grid {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 20px
    }

    .card {
        background: var(--card);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(16, 24, 40, 0.06)
    }

    label {
        display: block;
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 6px
    }

    input[type=text],
    input[type=email],
    select,
    textarea {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #e6e9ee;
        font-size: 14px
    }

    textarea {
        min-height: 110px
    }

    .muted {
        color: var(--muted);
        font-size: 13px
    }

    .btn {
        display: inline-block;
        background: #111827;
        color: white;
        padding: 10px 16px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        border: none;
        cursor: pointer
    }

    .alt-btn {
        background: transparent;
        color: var(--accent);
        border: 1px solid #e6e9ee;
        padding: 9px 14px;
        border-radius: 10px
    }

    .steps {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 12px
    }

    .step {
        background: #f1f5f9;
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 13px;
        color: var(--muted)
    }

    .small {
        font-size: 13px
    }

    .faq dt {
        font-weight: 600;
        margin-top: 12px
    }

    .notice {
        background: #fff7ed;
        border-left: 4px solid #f59e0b;
        padding: 12px;
        border-radius: 8px;
        color: #92400e
    }

    .footer {
        margin-top: 18px;
        color: var(--muted);
        font-size: 13px
    }