/* BASIS */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #122032;
    background-color: #f5f6f8;
}

/* LAYOUT */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* TOPBAR */
.topbar {
    background: #0b2341;
    color: #e4ebf6;
    font-size: 0.9rem;
}

.topbar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    padding: 0.4rem 0;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    font-size: 0.9rem;
}

.topbar a {
    color: inherit;
    text-decoration: none;
}

.topbar a:hover {
    text-decoration: underline;
}

/* HEADER / NAVIGATIE */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid #dde3ec;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-weight: 600;
    color: #0b2341;
    letter-spacing: 0.03em;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: #394b63;
    font-size: 0.95rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-menu a:hover {
    background: #e9f2ff;
    color: #0b2341;
}

/* HERO */
.hero {
    background: radial-gradient(circle at top left, #d9f4ff 0, #f5f6f8 40%, #ffffff 100%);
    padding: 3.5rem 0 3rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
    gap: 2.5rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
    color: #0b2341;
}

.hero p {
    margin: 0 0 1.4rem;
    line-height: 1.6;
    color: #435165;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #435165;
}

.hero-badges span {
    background: #eef3fb;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
}

/* HERO CARD */
.hero-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.6rem 1.5rem;
    box-shadow: 0 16px 40px rgba(6, 40, 89, 0.08);
}

.hero-card h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    color: #0b2341;
}

.hero-card-text {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #465873;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.3rem;
    font-size: 0.9rem;
    color: #435165;
}

.hero-list li::before {
    content: "•";
    color: #0b9f8a;
    font-weight: bold;
    margin-right: 0.4rem;
}

.hero-list li + li {
    margin-top: 0.3rem;
}

/* KNOPPEN */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
    background: #0b9f8a;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(11, 159, 138, 0.35);
}

.btn.primary:hover {
    background: #098673;
    box-shadow: 0 10px 28px rgba(11, 159, 138, 0.45);
}

.btn.ghost {
    background: transparent;
    color: #0b2341;
    border-color: #b8c5d9;
}

.btn.ghost:hover {
    background: #e9f2ff;
    border-color: #8fa3c4;
}

.btn.fullwidth {
    width: 100%;
}

/* SECTIONS */
.section {
    padding: 3.5rem 0;
}

.section-alt {
    background: #ffffff;
}

.section h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.7rem;
    color: #0b2341;
}

.section-intro {
    max-width: 600px;
    margin-bottom: 2rem;
    color: #4a5870;
}

/* TWO COLUMN */
.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
    gap: 2.2rem;
    align-items: flex-start;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: #f3f7ff;
    border-radius: 0.9rem;
    padding: 1.4rem 1.3rem;
    border: 1px solid #dde6f7;
}

.highlight-box h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #0b2341;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: #435165;
}

.highlight-box li + li {
    margin-top: 0.3rem;
}

/* DIENSTEN CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.card {
    background: #ffffff;
    border-radius: 0.9rem;
    padding: 1.4rem 1.3rem;
    border: 1px solid #e1e6f0;
    box-shadow: 0 10px 24px rgba(9, 23, 51, 0.03);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
    color: #0b2341;
}

.card p {
    margin: 0 0 0.8rem;
    font-size: 0.95rem;
    color: #44546a;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #4a5870;
}

.card ul li::before {
    content: "✓";
    color: #0b9f8a;
    font-weight: bold;
    margin-right: 0.3rem;
}

.card ul li + li {
    margin-top: 0.25rem;
}

/* WERKWIJZE STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.step {
    background: #f5f7fb;
    border-radius: 0.9rem;
    padding: 1.4rem 1.3rem;
    border: 1px solid #dde4f0;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0b9f8a;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step h3 {
    margin: 0 0 0.6rem;
    font-size: 1rem;
    color: #0b2341;
}

.step p {
    margin: 0;
    font-size: 0.9rem;
    color: #4a5870;
}

/* CONTACT */
.contact-section {
    background: #ffffff;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.2rem;
    font-size: 0.95rem;
}

.contact-list li + li {
    margin-top: 0.3rem;
}

.contact-list a {
    color: #0b2341;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.85rem;
    color: #7a8798;
}

/* CONTACT FORM */
.contact-form {
    background: #f5f7fb;
    border-radius: 0.9rem;
    padding: 1.4rem 1.3rem;
    border: 1px solid #dde4f0;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.9rem;
}

.form-row label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #37455a;
}

.form-row input,
.form-row textarea {
    border-radius: 0.55rem;
    border: 1px solid #c8d2e2;
    padding: 0.55rem 0.6rem;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #0b9f8a;
    box-shadow: 0 0 0 2px rgba(11, 159, 138, 0.18);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #7b8696;
    margin-top: 0.6rem;
}

.form-success {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: #0b9f8a;
    display: none; /* wordt via JS op block gezet */
}

/* RENTESECTIE */
.rates-section {
    /* gebruikt basis van .section-alt */
}

.rates-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rates-note {
    font-size: 0.9rem;
    color: #6b7586;
}

.rates-table-wrapper {
    overflow-x: auto;
    border-radius: 0.9rem;
    border: 1px solid #dde4f0;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(9, 23, 51, 0.03);
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    font-size: 0.9rem;
}

.rates-table thead {
    background: #f3f7ff;
}

.rates-table th,
.rates-table td {
    padding: 0.75rem 0.9rem;
    text-align: left;
    border-bottom: 1px solid #e1e6f0;
}

.rates-table th {
    font-weight: 600;
    color: #0b2341;
    font-size: 0.9rem;
}

.rates-table tbody tr:nth-child(even) {
    background: #f9fbff;
}

.rates-table tbody tr:hover {
    background: #eef4ff;
}

.rates-table td:first-child {
    font-weight: 500;
    color: #0b2341;
}

.rates-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #7b8696;
}

/* FOOTER */
.footer {
    background: #0b2341;
    color: #d5dfef;
    padding: 2.4rem 0 1.2rem;
    margin-top: 2.5rem;
    font-size: 0.85rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-col a {
    color: #d5dfef;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #223553;
    padding-top: 0.8rem;
    text-align: center;
    color: #9fb0cc;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-inner,
    .two-col,
    .cards,
    .steps {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 2.5rem;
    }

    .hero-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        justify-content: flex-start;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .rates-table {
        font-size: 0.85rem;
        min-width: 600px;
    }
}

@media (max-width: 600px) {
    .topbar-inner {
        justify-content: center;
    }

    .hero {
        padding-top: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}