.hero-split {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    overflow: hidden;
}

.hero-image-side {
    position: relative;
    background-image: url('/images/home-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0a150e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(13, 31, 18, 0.7);, rgba(13, 31, 18, 0.3));
}

.hero-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px 48px 48px;
    background-color: var(--bg-dark);
}

.hero-content-side h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 16px;
}

.hero-content-side p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-meta {
    margin-top: 32px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-cta);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
}

.section-articles {
    background-color: var(--bg-white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.article-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.article-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.article-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-card-body {
    padding: 20px;
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.article-card-cat {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-brand);
}

.article-card-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.article-card-time {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.article-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.6;
}

.article-card-body h3 a {
    color: var(--text-dark);
    transition: color 0.2s;
}

.article-card-body h3 a:hover {
    color: var(--color-brand);
}

.article-card-excerpt {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.section-categories {
    background-color: var(--bg-light);
}

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

.category-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 28px 24px;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.category-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.category-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(22, 101, 52, 0.1);
    border-radius: 8px;
}

.category-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--color-brand);
}

.category-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.category-info h3 a {
    color: var(--text-dark);
}

.category-info h3 a:hover {
    color: var(--color-brand);
}

.category-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.section-stats {
    background-color: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-cta);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.stats-table-wrapper {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.stats-table-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th {
    padding: 12px 20px;
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-table td {
    padding: 14px 20px;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stats-table tr:last-child td {
    border-bottom: none;
}

.stats-table .value-highlight {
    font-weight: 700;
    color: var(--color-cta);
}

.section-calculator {
    background-color: var(--bg-white);
}

.calculator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calculator-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.calculator-info p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.calculator-benefits li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.9375rem;
    color: var(--text-body);
}

.calculator-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background-color: var(--color-brand);
    border-radius: 50%;
}

.calculator-form {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 28px;
}

.calc-field {
    margin-bottom: 18px;
}

.calc-field label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}

.calc-field select {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-white);
    font-size: 1rem;
    color: var(--text-dark);
    width: 100%;
    appearance: auto;
}

.calc-result {
    background: rgba(22, 101, 52, 0.08);
    border: 1px solid rgba(22, 101, 52, 0.15);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    display: none;
}

.calc-result.visible {
    display: block;
}

.calc-result-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-brand);
    line-height: 1.2;
}

.calc-result-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.calc-result-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.5;
}

.section-newsletter {
    background-color: var(--bg-light);
}

.newsletter-layout {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-layout h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.newsletter-layout p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    min-width: 0;
}

.newsletter-form .btn-cta {
    flex-shrink: 0;
    padding: 12px 24px;
    white-space: nowrap;
}

.newsletter-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.section-featured-image {
    padding: 0;
}

.featured-image-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.featured-image-strip img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.featured-image-strip img:hover {
    transform: scale(1.02);
}

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

    .hero-image-side {
        min-height: 320px;
    }

    .hero-content-side {
        padding: 36px 28px;
    }

    .hero-content-side h1 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculator-layout {
        grid-template-columns: 1fr;
    }
}

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

    .hero-image-side {
        min-height: 260px;
    }

    .hero-content-side {
        padding: 28px 20px;
    }

    .hero-content-side h1 {
        font-size: 1.5rem;
    }

    .hero-meta {
        gap: 20px;
    }

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

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

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

    .stats-table th,
    .stats-table td {
        padding: 10px 14px;
        font-size: 0.875rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn-cta {
        width: 100%;
    }

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

    .featured-image-strip img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-content-side h1 {
        font-size: 1.3rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        text-align: center;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .calc-result-amount {
        font-size: 1.4rem;
    }
}