/* ──────────────────────────────────────────────
   Abbos Homepage — mobiel-first
────────────────────────────────────────────── */

/* ── Hero ── */
.abbos-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
}
.abbos-hero-titel {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 1rem;
}
.abbos-hero-subtekst {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 1.75rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.abbos-hero-cta {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease;
}
.abbos-hero-cta:hover {
    background: #1d4ed8;
    text-decoration: none;
    color: #fff;
}

/* ── Section titel ── */
.abbos-section-titel {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.25rem;
}

/* ── Categorieën grid ── */
.abbos-categorieen {
    margin-bottom: 2.5rem;
}
.abbos-categorieen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.abbos-categorie-kaart {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.abbos-categorie-kaart:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
    text-decoration: none;
    color: inherit;
}
.abbos-categorie-icoon {
    font-size: 1.75rem;
    line-height: 1;
}
.abbos-categorie-naam {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}
.abbos-categorie-beschrijving {
    font-size: 0.78rem;
    color: #6b7280;
    line-height: 1.4;
}

/* ── USPs ── */
.abbos-usps {
    margin-bottom: 2.5rem;
}
.abbos-usps-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.abbos-usp {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 10px;
}
.abbos-usp-icoon {
    font-size: 1.75rem;
    line-height: 1;
}
.abbos-usp-titel {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}
.abbos-usp-tekst {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

/* ── Newsletter ── */
.abbos-newsletter {
    background: #fef3c7;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.abbos-newsletter-kop {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.25rem;
}
.abbos-newsletter-sub {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
}
.abbos-newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.abbos-newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.65rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #fff;
}
.abbos-newsletter-form input[type="email"]:focus {
    outline: 2px solid #2563eb;
    outline-offset: 1px;
    border-color: #2563eb;
}
.abbos-newsletter-form button {
    padding: 0.65rem 1.25rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.abbos-newsletter-form button:hover {
    background: #1d4ed8;
}

/* ──────────────────────────────────────────────
   Desktop (≥ 640px)
────────────────────────────────────────────── */
@media (min-width: 640px) {
    .abbos-hero {
        padding: 4rem 2.5rem;
    }
    .abbos-hero-titel {
        font-size: 2.75rem;
    }
    .abbos-categorieen-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    .abbos-usps-grid {
        flex-direction: row;
        gap: 1.25rem;
    }
    .abbos-usp {
        flex: 1;
    }
    .abbos-newsletter {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .abbos-newsletter-text {
        flex: 1;
    }
    .abbos-newsletter-form {
        flex-wrap: nowrap;
    }
}
