/* HERO */
.hero {
    background: linear-gradient(135deg, #e8f0ff, #f7faff);
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtext {
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: var(--muted);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 1rem;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* FEATURES */
.feature {
    padding: 100px 0;
    background: white;
}

.feature.alt {
    background: var(--light-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid.reverse .feature-text {
    direction: ltr;
}

.feature-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-text p {
    color: var(--muted);
    margin-bottom: 20px;
}

.link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.placeholder-img {
    background: #d0ddf8;
    height: 260px;
    border-radius: var(--radius);
}

/* TOOLS */
.tools {
    padding: 100px 0;
}

.tools h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtext {
    text-align: center;
    color: var(--muted);
    margin-bottom: 50px;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.tool-card {
    padding: 30px;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    text-align: center;
    font-weight: 600;
}

/* CTA */
.cta {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 25px;
}

.btn-primary.large {
    padding: 16px 36px;
    font-size: 1.2rem;
}
