.home-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1rem 1rem;
    font-size: 14px;
}

/* ── Hero ── */
.home-hero {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border-radius: 14px;
    margin: 1.25rem 0;
    border: 1px solid #cde0f7;
}

.home-hero-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a5c;
    margin: 0 0 0.6rem;
    line-height: 1.4;
}

.home-hero-title em {
    font-style: normal;
    color: #1a6fc4;
}

.home-hero-sub {
    font-size: 13px;
    color: #4a6a8a;
    margin: 0 0 1.25rem;
    line-height: 1.7;
}

.home-hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.home-btn-primary {
    background: #1a6fc4;
    color: #fff;
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s;
}

.home-btn-primary:hover { background: #155fa8; }

.home-btn-secondary {
    color: #1a6fc4;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    border: 1px solid #9ec5f5;
    background: #fff;
    transition: background 0.15s;
}

.home-btn-secondary:hover { background: #f0f7ff; }

.home-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.home-stat {
    background: #fff;
    border-radius: 10px;
    padding: 0.9rem;
    text-align: center;
    border: 1px solid #cde0f7;
}

.home-stat-n {
    font-size: 26px;
    font-weight: 700;
    color: #1a6fc4;
    line-height: 1;
}

.home-stat-n span { font-size: 16px; }

.home-stat-d {
    font-size: 11px;
    color: #6b7e91;
    margin-top: 4px;
}

/* ── Section Label ── */
.home-sec-label {
    font-size: 11px;
    font-weight: 500;
    color: #8a9bb0;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.75rem;
}

/* ── Feature Grid ── */
.home-features { margin-bottom: 1.5rem; }

.home-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.home-feat {
    background: #fff;
    border: 1px solid #e2eaf3;
    border-radius: 12px;
    padding: 1.1rem 1rem;
}

.home-feat-icon { font-size: 22px; margin-bottom: 8px; }

.home-feat-title {
    font-size: 13px;
    font-weight: 500;
    color: #1a3a5c;
    margin-bottom: 5px;
}

.home-feat-body {
    font-size: 12px;
    color: #5a6a7a;
    line-height: 1.6;
}

/* ── Scope Tags ── */
.home-scope { margin-bottom: 1.5rem; }

.home-scope-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.home-scope-tag {
    background: #f0f7ff;
    border: 1px solid #cde0f7;
    color: #1a5fa0;
    font-size: 12px;
    padding: 5px 11px;
    border-radius: 20px;
}

/* ── CTA ── */
.home-cta {
    background: #1a3a5c;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.home-cta-text {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.home-cta-contact {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #a8d0f0;
    flex-wrap: wrap;
}

.home-cta-contact a {
    color: #7ec8f5;
    text-decoration: none;
}

.home-cta-contact a:hover { text-decoration: underline; }

/* ── RWD ── */
@media (max-width: 560px) {
    .home-feat-grid { grid-template-columns: repeat(2, 1fr); }
    .home-hero-stats { grid-template-columns: repeat(3, 1fr); }
    .home-cta { flex-direction: column; }
}

@media (max-width: 380px) {
    .home-feat-grid { grid-template-columns: 1fr; }
}
