/* Page-specific styles for homepage */

.hero {
    padding: 80px 0;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 900px;
    line-height: 1.7;
}

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

.pillar p {
    color: #4a4a4a;
    margin-bottom: 20px;
    font-size: 16px;
}

.pillar ul {
    margin-bottom: 20px;
}

.pillar-footer {
    color: #4a4a4a;
    font-style: italic;
    font-size: 15px;
    margin-top: 20px;
}

.pillar a {
    color: #1a1a1a;
    font-weight: 500;
    border-bottom: 1px solid #d0d0d0;
    transition: border-color 0.2s;
}

.pillar a:hover {
    border-bottom-color: #1a1a1a;
}

.why-list {
    max-width: 800px;
}

.why-list li {
    padding: 12px 0;
    font-size: 18px;
}

.why-list li:before {
    margin-right: 16px;
}

.why-tagline {
    margin-top: 32px;
    font-size: 18px;
    color: #1a1a1a;
    font-style: italic;
}

.footer-cta {
    background: #f8f8f8;
    padding: 80px 0;
    text-align: center;
    border-top: none;
}

.footer-cta p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta .cta-group {
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 18px;
    }

    .pillars {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
