/* ==========================
Hero Band — teal
Home page only
============================= */
.home-hero {
    background-color: var(--color-teal);
    width: 100%;
}
 
.home-hero-inner {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}
 
.home-hero-text {
    flex: 1 1 480px;
}
 
.home-hero-text h1 {
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}
 
.home-hero-text .subtitle {
    margin-bottom: 32px;
    max-width: 520px;
}
 
.hero-btn {
    display: inline-block;
    background-color: var(--color-brand);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}
 
.hero-btn:hover {
    background-color: var(--color-brand-hover);
    color: white;
    transform: translateY(-1px);
}
 
.home-hero-image {
    flex: 1 1 420px;
}
 
.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--color-teal-mid);
    border-radius: 12px;
    border: 1px solid var(--color-teal-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-subtle);
    font-size: 0.9rem;
}
 
.home-hero-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}
 
/* ==========================
Tools Band — white
Home page only (tools page uses .tools-grid-section from main-pages.css)
============================= */
.home-tools {
    background-color: var(--color-white);
    width: 100%;
}
 
.home-tools h2 {
    margin-bottom: 40px;
}
 
/* ==========================
Why Band — teal-light
Home page only
============================= */
.home-why {
    background-color: var(--color-teal-light);
    width: 100%;
    border-top: 1px solid var(--color-teal-border);
    border-bottom: 1px solid var(--color-teal-border);
}
 
.home-why-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}
 
.home-why-image {
    flex: 1 1 420px;
}
 
.why-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--color-teal-mid);
    border-radius: 12px;
    border: 1px solid var(--color-teal-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-subtle);
    font-size: 0.9rem;
}
 
.home-why-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}
 
.home-why-text {
    flex: 1 1 480px;
}
 
.home-why-text h2 {
    margin-bottom: 16px;
}
 
.home-why-text .subtitle {
    margin-bottom: 28px;
}
 
/* ==========================
Resources Band — white
Home page only (resources page uses .resources-articles from main-pages.css)
============================= */
.home-resources {
    background-color: var(--color-white);
    width: 100%;
}
 
.home-resources h2 {
    margin-bottom: 8px;
}
 
.home-resources .subtitle {
    margin-bottom: 36px;
}
 
/* ==========================
Responsive — Tablet
============================= */
@media (max-width: 1024px) {
 
    .home-hero-inner {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }
 
    .home-hero-text h1 {
        font-size: 2rem;
    }
 
    .home-hero-image {
        width: 100%;
    }
 
    .home-why-inner {
        flex-direction: column-reverse;
        gap: 40px;
    }
 
    .home-why-image {
        width: 100%;
    }
}
 
/* ==========================
Responsive — Mobile
============================= */
@media (max-width: 600px) {
 
    .home-hero-text h1 {
        font-size: 1.7rem;
    }
}