.home-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    padding: 48px 40px 24px;
    background:
        radial-gradient(circle at top left, rgba(30, 107, 133, 0.18), transparent 32%),
        linear-gradient(180deg, #f7fafc 0%, #eef4f7 100%);
}

.hero-copy h1 {
    margin: 12px 0 18px;
    font-size: 56px;
    line-height: 1.05;
    color: #0e2732;
    max-width: 760px;
}

.hero-copy p {
    max-width: 640px;
    color: #4b6470;
    font-size: 18px;
    line-height: 1.7;
}

.eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11, 61, 74, 0.08);
    color: #0b3d4a;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-btn:hover {
    transform: translateY(-1px);
}

.hero-btn.primary {
    background: #0b3d4a;
    color: white;
}

.hero-btn.primary:hover {
    background: #155265;
}

.hero-btn.secondary {
    background: white;
    color: #0b3d4a;
    border: 1px solid rgba(11, 61, 74, 0.12);
}

.hero-btn.secondary:hover {
    background: #eef4f7;
}

.hero-btn.small {
    padding: 12px 16px;
}

.hero-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.panel-card {
    background: white;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(11, 61, 74, 0.08);
    border: 1px solid rgba(11, 61, 74, 0.06);
}

.panel-card strong {
    display: block;
    margin-bottom: 8px;
    color: #10212a;
    font-size: 20px;
}

.panel-card span {
    color: #56707b;
    line-height: 1.5;
}

.spotlight {
    background: linear-gradient(135deg, #0b3d4a, #1e6b85);
    color: white;
}

.spotlight strong,
.spotlight span,
.spotlight .panel-label {
    color: white;
}

.panel-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
    margin-bottom: 10px;
}

.value-strip,
.featured-section {
    padding: 24px 40px 48px;
}

.value-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.value-card {
    background: white;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(11, 61, 74, 0.06);
}

.value-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.value-card p {
    color: #5c7079;
    line-height: 1.6;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    margin-bottom: 22px;
}

.section-head h2 {
    margin-top: 10px;
    font-size: 34px;
    color: #10212a;
}

.inline-link {
    color: #0b3d4a;
    font-weight: bold;
    text-decoration: none;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(11, 61, 74, 0.06);
    box-shadow: 0 18px 40px rgba(11, 61, 74, 0.08);
}

.featured-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.featured-content {
    padding: 22px;
}

.featured-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.featured-content p {
    margin: 0 0 18px;
    color: #5b6f78;
    line-height: 1.6;
}

.empty-state {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    color: #5b6f78;
}

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

    .hero-copy h1 {
        font-size: 44px;
    }

    .value-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-hero,
    .value-strip,
    .featured-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-actions,
    .section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .panel-grid {
        grid-template-columns: 1fr;
    }
}
