:root {
    --bg:#f4f6fb;
    --glass:rgba(255,255,255,.65);
    --border:rgba(255,255,255,.85);
    --text:#0f172a;
    --muted:#64748b;
    --accent:#2563eb;
}

body {
    font-family: Inter, sans-serif;
    background:
            radial-gradient(1200px 600px at 10% -10%, #dbeafe, transparent),
            radial-gradient(800px 500px at 90% 10%, #e0e7ff, 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 rgba(15,23,42,.06);
}
.nav-link {
    color: var(--muted);
    font-weight: 500;
}
.nav-link:hover {
    color: var(--text);
}

.btn-primary {
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    border: none;
    font-weight: 600;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    color: #fff;
}

.hero {
    padding: 100px 0 56px;
}

.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;
}

.feature-card {
    text-align: left;
    padding: 24px;
    height: 100%;
}
.feature-card .icon {
    font-size: 22px;
    margin-bottom: 12px;
}
.feature-card h6 {
    font-weight: 600;
    margin-bottom: 6px;
}

.step-card {
    padding: 24px;
    text-align: center;
    height: 100%;
}
.step-card .step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(37,99,235,0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    margin: 0 auto 12px;
}

.highlight-card {
    border: 1px solid rgba(37,99,235,0.15) !important;
    box-shadow: 0 8px 24px rgba(37,99,235,0.06);
}

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

.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);
}

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

.badge-red {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
}

.stat-num {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

.report-img {
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(15,23,42,0.10);
    width: 100%;
    display: block;
}
.report-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef4444;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.compare-table th {
    font-weight: 600;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid rgba(15,23,42,.08);
}
.compare-table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(15,23,42,.05);
    vertical-align: top;
}
.compare-table tr:last-child td {
    border-bottom: none;
}
.compare-table .col-us {
    color: #16a34a;
    font-weight: 600;
}
.compare-table .col-no {
    color: #94a3b8;
}

.accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    color: var(--text) !important;
}
.accordion-button:not(.collapsed) {
    color: var(--text) !important;
    background: transparent !important;
    box-shadow: none !important;
}
.accordion-button:focus {
    box-shadow: none !important;
}
.accordion-item {
    background: transparent;
    border: none;
}

@media (max-width: 991px) {
    .hero {
        padding-top: 80px;
        text-align: center;
    }
    .divider {
        margin: 36px 0;
    }
}