:root {
    --bg:#f4f6fb;
    --glass:rgba(255,255,255,.7);
    --border:rgba(15,23,42,.06);
    --text:#0f172a;
    --muted:#64748b;
    --accent:#1f2937;
    --cta:#16a34a;
    --cta-hover:#15803d;
    --danger:#ef4444;
}

body {
    font-family: Inter, sans-serif;
    background:
            radial-gradient(1200px 600px at 10% -10%, #ecfdf5, transparent),
            radial-gradient(800px 500px at 90% 10%, #f0fdf4, transparent),
            var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all .2s ease;
}

.glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(15,23,42,0.06);
}

.navbar {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-link {
    color: var(--muted);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--text);
}

.btn-primary {
    background: linear-gradient(135deg,var(--cta),var(--cta-hover));
    border: none;
    font-weight: 600;
    transition: all .2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(22,163,74,0.25);
}

.hero {
    padding: 120px 0 60px;
}

.hero .container {
    max-width: 760px;
}

.section {
    padding: 56px 0;
}

.section-cta {
    padding: 40px 0;
}

.divider {
    height: 1px;
    background: rgba(15,23,42,.08);
    margin: 48px 0;
}

.info-card {
    padding: 28px;
    height: 100%;
}

.info-card h6 {
    font-weight: 600;
    margin-bottom: 12px;
}

.info-card p,
.info-card li {
    font-size: 15px;
}

.highlight-card {
    border: 1px solid rgba(22,163,74,0.15);
    box-shadow: 0 8px 24px rgba(22,163,74,0.08);
}

.text-block {
    max-width: 640px;
}

.text-muted {
    line-height: 1.65;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-list span {
    font-size: 16px;
    line-height: 1.2;
}

.feature-card {
    text-align: left;
}

.feature-card .icon {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card h6 {
    margin-bottom: 6px;
}

.step-card .step {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(22,163,74,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 10px;
}

.report-card {
    position: relative;
}

.report-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--danger);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
}

.related-link {
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px dashed rgba(15,23,42,0.2);
    padding-bottom: 2px;
    transition: all .2s ease;
}

.related-link:hover {
    color: var(--text);
    border-bottom-color: rgba(15,23,42,0.4);
}

.soft-block {
    background: rgba(15,23,42,0.03);
    border-radius: 16px;
}

.row.mb-5 {
    margin-bottom: 56px !important;
}

@media (max-width: 991px) {
    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .divider {
        margin: 36px 0;
    }
}