
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f3f4f6;
    color: #111827;
    line-height: 1.5;
}

a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
    color: #111827;
    font-weight: 600;
}

code, .code-inline {
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.code-inline {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 6px;
    background: #e5e7eb;
    border: 1px solid #d1d5db;
    font-size: 13px;
}

/* Layout */

header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-wrap img {
    width: 36px;
    height: 36px;
    border-radius: 999px;
}

.logo-title {
    font-weight: 700;
    font-size: 18px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link {
    font-size: 14px;
    color: #374151;
}

.nav-link:hover {
    color: #111827;
    text-decoration: none;
}

.btn-chat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #e5e7eb;
    font-size: 14px;
    color: #111827;
}

.btn-chat .icon {
    font-size: 14px;
}

.btn-chat:hover {
    background: #d1d5db;
}

main {
    max-width: 1120px;
    margin: 24px auto 40px;
    padding: 0 16px 40px;
}

/* Hero */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 24px;
    margin-bottom: 32px;
}

.section-label {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e5f3ff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.hero-title {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 8px;
}

.hero-title span {
    color: #16a34a;
}

.hero-text {
    font-size: 15px;
    color: #4b5563;
    margin: 0 0 12px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #15803d;
    font-size: 12px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    background: #16a34a;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.btn-primary:hover {
    background: #15803d;
    text-decoration: none;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    font-weight: 500;
    font-size: 14px;
}

.btn-outline:hover {
    background: #f3f4f6;
    text-decoration: none;
}

.btn-caption {
    font-size: 13px;
    color: #6b7280;
}

.hero-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.hero-card-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-list li {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #374151;
}

.hero-list .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #16a34a;
    margin-top: 6px;
}

/* Sections */

.section-title {
    font-size: 24px;
    margin: 0 0 6px;
}

.section-subtitle {
    font-size: 14px;
    color: #4b5563;
    max-width: 720px;
    margin: 0 0 16px;
}

.card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.06);
    margin-bottom: 16px;
}

.card-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.card-text {
    font-size: 14px;
    color: #374151;
}

/* Providers */

.providers-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.provider {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 12px 14px 10px;
}

.provider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    gap: 8px;
}

.provider-name a {
    font-weight: 600;
    font-size: 15px;
}

.provider-label {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #16a34a;
}

.provider-list {
    margin: 0;
    padding-left: 16px;
    font-size: 13px;
    color: #4b5563;
}

.aside-box {
    background: #f9fafb;
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px dashed #d1d5db;
    font-size: 13px;
    color: #4b5563;
}

/* Two-column */

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px;
}

/* Checklist & summary */

.checklist h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    margin-bottom: 6px;
}

.checklist label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 14px;
    color: #374151;
}

.checklist input[type="checkbox"] {
    margin-top: 2px;
}

.summary-box {
    background: #ecfdf5;
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid #bbf7d0;
    font-size: 14px;
    color: #064e3b;
}

/* Anty block */

.anty-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}

.anty {
    background: #f3f4f6;
    border-radius: 16px;
    padding: 14px 14px 12px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

.anty .pill {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}

.anty .pill:hover {
    background: #030712;
    text-decoration: none;
}

/* Blog */

.blog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
}

.blog-list li {
    margin-bottom: 6px;
    font-size: 14px;
}

/* Footer */

footer {
    border-top: 1px solid #e5e7eb;
    padding: 16px;
    background: #f9fafb;
    font-size: 13px;
    color: #6b7280;
}

/* Responsive */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }
    .two-col {
        grid-template-columns: minmax(0, 1fr);
    }
}

