/* ============================================
   Mijn Receptenboek — mijnreceptenboek-app.nl
   Gildeboer brand: forest green + gold + cream
   ============================================ */

:root {
    --primary: #1A472A;
    --primary-rgb: 26, 71, 42;
    --primary-light: #2D6A4F;
    --primary-dark: #1E3D2A;
    --gold: #D4A843;
    --gold-rgb: 212, 168, 67;
    --gold-light: #E8C97A;
    --gold-dark: #B8862D;
    --cream: #FAFBF7;
    --sage: #EEF1EA;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-medium: #4a5558;
    --text-light: #8a9490;
    --border: #dde3dd;
    --font: 'Poppins', -apple-system, sans-serif;
    --max-width: 1100px;
    --radius: 20px;
    --radius-sm: 12px;
    --phone-frame: #111111;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--text); line-height: 1.15; font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Shared ─────────────────────────────── */

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.section-label--light { color: var(--gold-light); }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}
.section-title--light { color: var(--white); }

.section-wave {
    display: block;
    width: 100%;
    height: 80px;
    position: relative;
    z-index: 1;
    margin-top: -1px;
}

.wave-after {
    position: relative;
}
.wave-after::after {
    content: '';
    position: absolute;
    bottom: -79px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0 0v99.7C62 69 122.4 48.7 205 66c83.8 17.6 160.5 20.4 240-12 54-22 110-26 173-10a392.2 392.2 0 0 0 222-5c55-17 110.3-36.9 160-27.2V0H0Z' fill='%231A472A' opacity='.5'/%3E%3Cpath d='M0 0v74.7C62 44 122.4 28.7 205 46c83.8 17.6 160.5 25.4 240-7 54-22 110-21 173-5 76.5 19.4 146.5 23.3 222 0 55-17 110.3-31.9 160-22.2V0H0Z' fill='%231A472A'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 4;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn--primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn--primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.3);
}
.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--border);
}
.btn--outline:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.btn--gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--gold-rgb), 0.35);
}
.btn--white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}
.btn--white-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}
.btn--white-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* ── Navigation ─────────────────────────── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 251, 247, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: box-shadow 0.3s ease;
}
.nav--scrolled {
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}
.nav__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.nav__logo-img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
}
.nav__logo-text {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--primary);
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}
.nav__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.2s;
}
.nav__link:hover { color: var(--primary); }
.nav__link--cta {
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.25s;
}
.nav__link--cta:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--gold-rgb), 0.3);
}
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

/* ── Hero ────────────────────────────────── */

.hero {
    padding: 10rem 2rem 5rem;
    background: var(--cream);
    position: relative;
    overflow: visible;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -79px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0 0v99.7C62 69 122.4 48.7 205 66c83.8 17.6 160.5 20.4 240-12 54-22 110-26 173-10a392.2 392.2 0 0 0 222-5c55-17 110.3-36.9 160-27.2V0H0Z' fill='%23FAFBF7' opacity='.5'/%3E%3Cpath d='M0 0v74.7C62 44 122.4 28.7 205 46c83.8 17.6 160.5 25.4 240-7 54-22 110-21 173-5 76.5 19.4 146.5 23.3 222 0 55-17 110.3-31.9 160-22.2V0H0Z' fill='%23FAFBF7'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 4;
}
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.hero__blob--1 {
    width: 500px;
    height: 500px;
    background: rgba(var(--primary-rgb), 0.08);
    top: -120px;
    right: -100px;
}
.hero__blob--2 {
    width: 350px;
    height: 350px;
    background: rgba(var(--gold-rgb), 0.1);
    bottom: 40px;
    left: -80px;
}
.hero__blob--3 {
    width: 200px;
    height: 200px;
    background: rgba(var(--primary-rgb), 0.06);
    top: 50%;
    left: 40%;
}
.hero__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
    position: relative;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 0.35rem 1rem 0.35rem 0.6rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero__title {
    font-size: 3.8rem;
    letter-spacing: -0.03em;
    margin-bottom: 1.4rem;
    color: var(--primary);
    line-height: 1.05;
}
.hero__subtitle {
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 460px;
    color: var(--text-medium);
}
.hero__actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}
.hero__phone-glow {
    position: absolute;
    width: 320px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}
.hero__phone {
    position: relative;
    width: 250px;
    height: 500px;
    background: var(--phone-frame);
    border-radius: 40px;
    padding: 10px;
    box-shadow:
        0 30px 60px rgba(var(--primary-rgb), 0.2),
        0 10px 24px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.1);
    z-index: 2;
}
.hero__phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: var(--phone-frame);
    border-radius: 0 0 16px 16px;
    z-index: 3;
}
.hero__phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: var(--cream);
}
.hero__phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__float {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}
.hero__float--1 {
    bottom: 100px;
    left: -10px;
}
.hero__float--2 {
    top: 60px;
    right: -20px;
    animation-delay: -2s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── Stats ───────────────────────────────── */

.stats {
    background: var(--primary);
    padding: 3rem 2rem;
    position: relative;
    overflow: visible;
    z-index: 5;
}
.stats::after {
    content: '';
    position: absolute;
    bottom: -79px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0 0v99.7C62 69 122.4 48.7 205 66c83.8 17.6 160.5 20.4 240-12 54-22 110-26 173-10a392.2 392.2 0 0 0 222-5c55-17 110.3-36.9 160-27.2V0H0Z' fill='%231A472A' opacity='.5'/%3E%3Cpath d='M0 0v74.7C62 44 122.4 28.7 205 46c83.8 17.6 160.5 25.4 240-7 54-22 110-21 173-5 76.5 19.4 146.5 23.3 222 0 55-17 110.3-31.9 160-22.2V0H0Z' fill='%231A472A'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 4;
}
.stats__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}
.stats__item {
    text-align: center;
    flex: 1;
}
.stats__number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}
.stats__label {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.stats__divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
}

/* ── Steps ───────────────────────────────── */

.steps {
    padding: calc(5rem + 80px) 2rem 6rem;
    background: var(--sage);
    text-align: center;
}
.steps__container {
    max-width: var(--max-width);
    margin: 0 auto;
}
.steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem 2rem;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    border: none;
}
.step-card:nth-child(1) { transform: rotate(-1.5deg); }
.step-card:nth-child(2) { transform: rotate(1.5deg); margin-top: 20px; }
.step-card:nth-child(3) { transform: rotate(-1.5deg); }
.step-card:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    z-index: 2;
}
.step-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}
.step-card__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2.5px solid var(--gold);
    background: rgba(var(--gold-rgb), 0.1);
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.step-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-card__icon--gold {
    background: var(--gold);
}
.step-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.step-card__text {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Features ────────────────────────────── */

.features {
    padding: 6rem 2rem;
    background: var(--white);
    text-align: center;
}
.features__container {
    max-width: var(--max-width);
    margin: 0 auto;
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.6rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-bottom: 2px dashed var(--gold);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    position: relative;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.08);
    border-bottom-style: solid;
}
.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.feature-card__icon--green {
    background: var(--primary);
    color: var(--white);
}
.feature-card__icon--gold {
    background: var(--gold);
    color: var(--white);
}
.feature-card__title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}
.feature-card__text {
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── Showcase ────────────────────────────── */

.showcase {
    padding: 7rem 2rem;
    background: var(--primary);
    position: relative;
    overflow: visible;
}
.showcase__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.showcase__list {
    list-style: none;
    margin: 1.5rem 0 2rem;
}
.showcase__list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    padding: 0.55rem 0;
    font-weight: 400;
}
.showcase__list li svg { flex-shrink: 0; }
.showcase__visual {
    display: flex;
    justify-content: center;
    position: relative;
}
.showcase__phone-glow {
    position: absolute;
    width: 320px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(var(--gold-rgb), 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.showcase__phone {
    position: relative;
    width: 240px;
    height: 480px;
    background: var(--primary-dark);
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.06);
    z-index: 2;
}
.showcase__phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: var(--primary-dark);
    border-radius: 0 0 14px 14px;
    z-index: 3;
}
.showcase__phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: var(--cream);
}
.showcase__phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showcase__decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.showcase__decor--1 {
    width: 350px;
    height: 350px;
    border: 1px solid rgba(var(--gold-rgb), 0.1);
    top: -120px;
    right: -120px;
}
.showcase__decor--2 {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255,255,255,0.05);
    bottom: -60px;
    left: -60px;
}
.showcase__decor--3 {
    width: 12px;
    height: 12px;
    background: var(--gold);
    opacity: 0.3;
    top: 30%;
    left: 15%;
}

/* ── Reviews ─────────────────────────────── */

.reviews {
    padding: 6rem 2rem;
    padding-top: calc(6rem + 80px);
    background: var(--cream);
    text-align: center;
    position: relative;
}
.reviews__container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.reviews__rating {
    margin-bottom: 2.5rem;
}
.reviews__stars {
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 3px;
}
.reviews__score {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-top: 0.2rem;
    font-weight: 500;
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    text-align: left;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 2rem 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.review-card::after {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.15;
    font-family: Georgia, serif;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.review-card__stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}
.review-card__text {
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 1.3rem;
    font-style: italic;
    color: var(--text);
}
.review-card__author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.review-card__name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}
.review-card__source {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ── Gildeboer ───────────────────────────── */

.gildeboer {
    padding: 6rem 2rem;
    background: var(--sage);
    position: relative;
    overflow: visible;
}
.gildeboer::after {
    content: '';
    position: absolute;
    bottom: -79px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0 0v99.7C62 69 122.4 48.7 205 66c83.8 17.6 160.5 20.4 240-12 54-22 110-26 173-10a392.2 392.2 0 0 0 222-5c55-17 110.3-36.9 160-27.2V0H0Z' fill='%23EEF1EA' opacity='.5'/%3E%3Cpath d='M0 0v74.7C62 44 122.4 28.7 205 46c83.8 17.6 160.5 25.4 240-7 54-22 110-21 173-5 76.5 19.4 146.5 23.3 222 0 55-17 110.3-31.9 160-22.2V0H0Z' fill='%23EEF1EA'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 4;
}
.gildeboer__container {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}
.gildeboer__image-wrap {
    position: relative;
}
.gildeboer__image-wrap::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    z-index: 0;
    opacity: 0.4;
}
.gildeboer__image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
}
.gildeboer__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    letter-spacing: -0.01em;
}
.gildeboer__promise {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}
.gildeboer__promise span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
}
.gildeboer__text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}
.gildeboer__text strong {
    color: var(--primary);
}
.gildeboer__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.25s;
}
.gildeboer__link:hover { gap: 0.8rem; }

/* ── CTA ─────────────────────────────────── */

.cta {
    padding: 6rem 2rem;
    padding-top: calc(6rem + 80px);
    background: var(--primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta__container {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cta__title {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.cta__text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.2rem;
    line-height: 1.8;
}
.cta__actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta__decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta__decor--1 {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(var(--gold-rgb), 0.12);
    top: -100px;
    left: -100px;
}
.cta__decor--2 {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255,255,255,0.04);
    bottom: -60px;
    right: -40px;
}
.cta__decor--3 {
    width: 10px;
    height: 10px;
    background: var(--gold);
    opacity: 0.25;
    top: 40%;
    right: 15%;
}

/* ── Footer ──────────────────────────────── */

.footer {
    position: relative;
    background: var(--primary-dark);
    border-top: 3px solid var(--primary);
    color: rgba(255,255,255,0.7);
}
.footer__wave {
    position: absolute;
    top: -79px;
    left: 0;
    width: 100%;
    height: 80px;
    transform: scaleY(-1);
    z-index: 4;
}
.footer__inner {
    padding: 4rem 2rem 1.5rem;
}
.footer__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.footer__logo-img {
    width: 30px;
    height: 30px;
    border-radius: 7px;
}
.footer__logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}
.footer__tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    max-width: 300px;
    color: rgba(255,255,255,0.5);
}
.footer__badges {
    display: flex;
    gap: 0.6rem;
}
.footer__badges img {
    width: 110px;
    opacity: 0.75;
    transition: opacity 0.2s;
}
.footer__badges img:hover { opacity: 1; }
.footer__heading {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.footer__col {
    display: flex;
    flex-direction: column;
}
.footer__link {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    padding: 0.28rem 0;
    transition: color 0.2s;
}
.footer__link:hover { color: var(--gold); }
.footer__bottom {
    max-width: var(--max-width);
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.footer__bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
.footer__gildeboer {
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    transition: color 0.2s;
}
.footer__gildeboer:hover { color: var(--gold); }
.footer__dot { color: var(--gold); }

/* ── Responsive — Tablet ─────────────────── */

@media (max-width: 992px) {
    .nav__toggle { display: flex; }
    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 2rem 1.5rem;
        gap: 0.4rem;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        border-top: 1px solid var(--border);
    }
    .nav__links--open { display: flex; }
    .nav__link--cta { text-align: center; margin-top: 0.4rem; }

    .hero { padding: 7.5rem 2rem 0; }
    .hero__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .hero__title { font-size: 2.8rem; }
    .hero__subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__phone { width: 220px; height: 440px; }
    .hero__float--1 { left: 10%; bottom: 60px; }
    .hero__float--2 { right: 10%; top: 40px; }

    .stats__number { font-size: 2.2rem; }
    .stats__container { gap: 2rem; }

    .section-title { font-size: 2rem; margin-bottom: 2.5rem; }
    .steps__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .step-card:nth-child(1),
    .step-card:nth-child(2),
    .step-card:nth-child(3) { transform: none; margin-top: 0; }

    .features__grid { grid-template-columns: repeat(2, 1fr); }

    .showcase__container { grid-template-columns: 1fr; text-align: center; }
    .showcase__list { display: inline-block; text-align: left; }
    .showcase__actions { justify-content: center; display: flex; }
    .showcase__visual { margin-top: 2rem; }

    .reviews__grid { grid-template-columns: repeat(2, 1fr); }

    .gildeboer__container { grid-template-columns: 1fr; text-align: center; }
    .gildeboer__image-wrap { max-width: 380px; margin: 0 auto; }

    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer__brand { grid-column: span 2; }
}

/* ── Responsive — Mobile ─────────────────── */

@media (max-width: 576px) {
    .hero { padding: 6.5rem 1.5rem 0; }
    .hero__title { font-size: 2.2rem; }
    .hero__subtitle { font-size: 0.98rem; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__phone { width: 200px; height: 400px; }
    .hero__float { display: none; }

    .stats__container { flex-direction: column; gap: 1.5rem; }
    .stats__divider { width: 40px; height: 1px; }
    .stats__number { font-size: 2rem; }

    .steps { padding: 3rem 1.5rem 4rem; }
    .features { padding: 3.5rem 1.5rem; }
    .features__grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.7rem; margin-bottom: 2rem; }

    .showcase { padding: 5rem 1.5rem; }
    .showcase__phone { width: 180px; height: 360px; }

    .reviews { padding: 3.5rem 1.5rem; }
    .reviews__grid { grid-template-columns: 1fr; }

    .gildeboer { padding: 3.5rem 1.5rem; }
    .gildeboer__title { font-size: 1.5rem; }
    .gildeboer__image-wrap::after { display: none; }

    .cta { padding: 4rem 1.5rem; }
    .cta__title { font-size: 1.9rem; }
    .cta__actions { flex-direction: column; align-items: center; }

    .footer__grid { grid-template-columns: 1fr; }
    .footer__brand { grid-column: span 1; }
    .footer__badges { flex-direction: column; align-items: flex-start; }
}
