.home-hero,
.home-support {
    background: #ffffff;
    border: 1px solid var(--wood-border);
    border-radius: 10px;
}

.home-hero {
    padding: 40px;
    border-left: 4px solid var(--wood-accent);
}

.home-title {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.home-lead {
    max-width: 680px;
    margin: 0;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.65;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.home-process {
    padding: 24px;
    background: #f8f5f1;
    border: 1px solid var(--wood-border);
    border-radius: 10px;
}

.home-process h2,
.home-section-heading h2,
.home-support h2 {
    margin: 0;
    color: #111827;
    font-size: 1.15rem;
    font-weight: 700;
}

.home-process ol {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.home-process li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    align-items: start;
}

.home-process span {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6d3ce;
    border-radius: 8px;
    background: #ffffff;
    color: var(--wood-accent);
    font-weight: 700;
}

.home-process p {
    margin: 3px 0 0;
    color: #374151;
    line-height: 1.45;
}

.home-section {
    margin-top: 34px;
}

.home-section-heading {
    max-width: 760px;
    margin-bottom: 18px;
}

.home-section-heading p,
.home-support p {
    margin: 8px 0 0;
    color: #4b5563;
    line-height: 1.6;
}

.home-module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-module {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--wood-border);
    border-radius: 10px;
}

.home-module h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 700;
}

.home-module p {
    margin: 0 0 18px;
    color: #4b5563;
    line-height: 1.55;
}

.home-module ul {
    display: grid;
    gap: 10px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.home-module li {
    position: relative;
    padding-left: 18px;
    color: #374151;
    line-height: 1.45;
}

.home-module li::before {
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wood-accent);
    content: "";
}

.home-support {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 24px;
}

@media (max-width: 991.98px) {
    .home-hero {
        padding: 28px;
    }

    .home-module-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .home-hero,
    .home-support {
        padding: 22px;
    }

    .home-title {
        font-size: 2rem;
    }

    .home-support {
        align-items: stretch;
        flex-direction: column;
    }

    .home-actions .btn,
    .home-support .btn {
        width: 100%;
    }
}
