/* =====================================================
   Gildeboer CSA — Landing Page
   Style: matches gildeboer.nl (DM Sans, forest green, warm gold)
   ===================================================== */

/* === CSS Variables === */
:root {
    --primary-color: #1A472A;
    --primary-dark: #1E3D2A;
    --primary-light: #2a6b40;
    --secondary-color: #D4A843;
    --white-color: #ffffff;
    --background-color: #FAFBF7;
    --background-medium: #EEF1EA;
    --surface-color: #f9f9f9;
    --text-dark: #1a1a1a;
    --text-medium: #666666;
    --text-light: #999999;
    --p-color: #717275;
    --border-color: #e5e5e5;
    --body-font-family: 'DM Sans', sans-serif;
    --heading-font-family: 'DM Sans', sans-serif;
    --accent-font: 'Covered By Your Grace', cursive;
    --p-font-size: 18px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-family: var(--body-font-family); line-height: 1.5; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { background-color: var(--background-color); color: var(--text-dark); font-family: var(--body-font-family); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font-family);
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--text-dark);
}
h1 { font-size: 42px; font-weight: var(--font-weight-bold); }
h2 { font-size: 40px; font-weight: var(--font-weight-bold); }
h3 { font-size: 28px; }

p { color: var(--p-color); font-size: var(--p-font-size); font-weight: var(--font-weight-normal); overflow-wrap: break-word; }
ul li { color: var(--p-color); font-size: var(--p-font-size); }
a, button { touch-action: manipulation; transition: all 0.3s; }
a { display: inline-block; color: var(--secondary-color); text-decoration: none; }
a:hover { color: var(--secondary-color); }
b, strong { font-weight: var(--font-weight-bold); }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
ul { list-style: none; }

::selection { background-color: var(--primary-color); color: var(--white-color); }


/* =====================================================
   BUTTONS (gildeboer style: 4px radius, 600 weight)
   ===================================================== */
.btn {
    display: inline-block; padding: 13px 32px; font-size: 16px;
    font-weight: 600; letter-spacing: 0.5px; border-radius: 4px;
    transition: all 0.3s; cursor: pointer; border: 2px solid transparent;
    text-decoration: none; line-height: 1.4; font-family: var(--body-font-family);
}
.btn i { vertical-align: -1px; }
.btn--primary { background-color: var(--primary-color); color: var(--white-color); border-color: var(--primary-color); }
.btn--primary:hover { opacity: 0.9; color: var(--white-color); transform: translateY(-2px); }
.btn--gold { background-color: var(--secondary-color); color: var(--white-color); border-color: var(--secondary-color); }
.btn--gold:hover { opacity: 0.9; color: var(--white-color); transform: translateY(-2px); }
.btn--secondary { background: transparent; border: 2px solid var(--secondary-color); color: var(--secondary-color); }
.btn--secondary:hover { background-color: var(--secondary-color); color: var(--white-color); }
.btn--outline { background: rgba(255,255,255,0.12); color: var(--white-color); border: 2px solid rgba(255,255,255,0.7); }
.btn--outline:hover { border-color: var(--white-color); background: rgba(255,255,255,0.2); color: var(--white-color); }
.btn--ghost { background: transparent; color: var(--text-medium); border: none; padding: 13px 20px; }
.btn--ghost:hover { color: var(--primary-color); }
.btn--lg { padding: 14px 34px; font-size: 16px; }


/* =====================================================
   TOPBAR (identical to gildeboer)
   ===================================================== */
.topbar {
    background-color: var(--surface-color); color: var(--text-medium);
    font-size: 13px; padding: 10px 0; border-bottom: 1px solid var(--border-color);
}
.topbar__container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.topbar__tagline { opacity: 0.9; font-size: 13px; }
.topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__divider { opacity: 0.3; font-size: 11px; }
.topbar__item { display: flex; align-items: center; gap: 8px; }
.topbar__item i { color: var(--secondary-color); font-size: 14px; }
.topbar__item a, .topbar__item span { color: var(--text-medium); font-size: 13px; }
.topbar__item a:hover { color: var(--primary-color); }

@media (max-width: 768px) { .topbar { display: none; } }


/* =====================================================
   NAVBAR (gildeboer style: 90px height, gold phone btn)
   ===================================================== */
.navbar {
    background-color: var(--white-color); position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.navbar__container {
    max-width: 1200px; margin: 0 auto; padding: 0 30px;
    display: flex; align-items: center; justify-content: space-between; height: 90px;
}
.navbar__logo {
    display: flex; align-items: center; gap: 8px; text-decoration: none;
}
.navbar__logo-img { height: 50px; width: auto; }
.navbar__logo-csa {
    font-size: 24px; font-weight: var(--font-weight-bold); color: var(--secondary-color);
    letter-spacing: 1px;
}

.navbar__menu { display: flex; list-style: none; gap: 0; margin: 0; padding: 0; }
.navbar__link {
    display: block; padding: 32px 18px; color: var(--text-dark);
    font-size: 15px; font-weight: 600; letter-spacing: 0.3px; position: relative;
}
.navbar__link:hover { color: var(--primary-color); }

.navbar__actions { display: flex; align-items: center; gap: 18px; }
.navbar__phone-wrap {
    display: flex; align-items: center; gap: 12px;
    background-color: var(--secondary-color); border-radius: 8px; padding: 12px 20px;
}
.navbar__phone-wrap > i { color: var(--white-color); font-size: 18px; }
.navbar__phone-text { display: flex; align-items: baseline; gap: 6px; line-height: 1.2; }
.navbar__phone-label { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 600; text-transform: uppercase; }
.navbar__phone { font-size: 16px; font-weight: 700; color: var(--white-color); }
.navbar__phone:hover { color: var(--white-color); opacity: 0.9; }

.navbar__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.navbar__toggle span { display: block; width: 25px; height: 2px; background-color: var(--primary-color); transition: all 0.3s; }

@media (max-width: 992px) {
    .navbar__toggle { display: flex; order: 99; margin-left: auto; }
    .navbar__menu {
        display: none; position: absolute; top: 90px; left: 0; right: 0;
        background: var(--white-color); flex-direction: column; padding: 10px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .navbar__menu--open { display: flex; }
    .navbar__link { padding: 12px 20px; }
    .navbar__actions { display: none; }
}


/* =====================================================
   HERO
   ===================================================== */
.hero { position: relative; }
.hero__slider {
    position: relative; height: 560px; overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 40%, var(--primary-light) 100%);
    display: flex; align-items: center; padding-bottom: 100px;
}
.hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(20,60,40,0.82) 0%, rgba(30,70,50,0.65) 50%, rgba(30,70,50,0.50) 100%);
}
.hero__content {
    position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
    padding: 0 20px; width: 100%; text-align: center;
}
.hero__heading {
    color: var(--white-color); font-size: 68px; font-weight: 500;
    line-height: 1.1; margin-bottom: 0; letter-spacing: -1px;
}
.hero__heading-accent {
    font-family: var(--accent-font); font-size: 80px;
    color: var(--secondary-color); font-weight: 400;
}

/* Gold button bar (above hero photo) */
.hero__bar {
    background-color: var(--secondary-color); padding: 8px 0;
}

@media (max-width: 1200px) {
    .hero__heading { font-size: 52px; }
    .hero__heading-accent { font-size: 64px; }
}
@media (max-width: 992px) {
    .hero__slider { height: 420px; }
    .hero__heading { font-size: 44px; }
    .hero__heading-accent { font-size: 52px; }
}
@media (max-width: 576px) {
    .hero__slider { height: 380px; }
    .hero__heading { font-size: 32px; }
    .hero__heading-accent { font-size: 40px; }
    .hero__bar-container { flex-direction: column; }
    .hero__bar-container .btn { width: 100%; text-align: center; }
}


/* =====================================================
   FEATURES (gildeboer card grid with tilted cards)
   ===================================================== */
.features {
    padding: 100px 20px 140px; background: var(--white-color); overflow: hidden;
}
.features__container { max-width: 1200px; margin: 0 auto; }
.features__header { text-align: center; margin-bottom: 60px; }
.features__icon-wrapper {
    width: 50px; height: 50px; border-radius: 50%;
    background-color: var(--primary-color); display: flex; align-items: center;
    justify-content: center; margin: 0 auto 14px; color: var(--white-color); font-size: 18px;
}
.features__label {
    display: block; color: var(--primary-color); font-size: 16px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}
.features__heading { font-size: 40px; font-weight: 700; color: var(--text-dark); }

.features__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

/* Tilted cards (gildeboer offerings pattern) */
.features__card {
    background-color: var(--white-color); border-radius: 12px; overflow: visible;
    text-align: center; transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative; z-index: 1; padding: 0 20px 30px;
}
.features__card:nth-child(1) { transform: rotate(-1.5deg); }
.features__card:nth-child(2) { transform: rotate(1.5deg); margin-top: 20px; }
.features__card:nth-child(3) { transform: rotate(-1.5deg); }
.features__card:nth-child(4) { transform: rotate(1.5deg); margin-top: 10px; }
.features__card:nth-child(5) { transform: rotate(-1.5deg); margin-top: -10px; }
.features__card:nth-child(6) { transform: rotate(1.5deg); margin-top: 10px; }

.features__card:hover {
    z-index: 2; transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.features__card-icon {
    width: 65px; height: 65px; border-radius: 50%;
    background-color: var(--primary-color); display: flex; align-items: center;
    justify-content: center; margin: -32px auto 16px; color: var(--white-color);
    position: relative; z-index: 1; border: 5px solid var(--white-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); font-size: 22px;
}
.features__card-title {
    font-size: 17px; font-weight: 700; color: var(--text-dark);
    margin-bottom: 8px; letter-spacing: 0;
}
.features__card-text {
    font-size: 15px; color: var(--text-medium); line-height: 1.7; margin: 0;
}

@media (max-width: 992px) {
    .features { padding: 100px 20px 80px; }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .features__heading { font-size: 32px; }
}
@media (max-width: 576px) {
    .features { padding: 80px 20px 60px; }
    .features__grid { grid-template-columns: 1fr; }
    .features__card { transform: none !important; margin-top: 24px !important; }
}


/* =====================================================
   CTA BANNER (gildeboer style: green bg + noise texture)
   ===================================================== */
.cta-banner {
    position: relative; background-color: var(--primary-color);
    overflow: visible; padding-bottom: 40px;
}
.cta-banner__wave {
    position: absolute; top: -79px; left: 0; width: 100%; height: 80px; z-index: 1;
}
.cta-banner--bottom { padding-top: 20px; }
.cta-banner::after {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none; opacity: 0.3;
}
.cta-banner__container {
    position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.cta-banner__container--centered { text-align: center; }
.cta-banner__content { padding: 60px 0; }
.cta-banner__heading {
    color: var(--white-color); font-size: 48px; font-weight: 400;
    margin-bottom: 0; line-height: 1.2;
}
.cta-banner__heading:not(:last-child) { margin-bottom: 20px; }
.cta-banner__text {
    color: rgba(255,255,255,0.75); font-size: 18px; margin-bottom: 28px;
    max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-banner__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
    .cta-banner__heading { font-size: 32px; }
    .cta-banner__content { padding: 40px 0; }
    .cta-banner__buttons { flex-direction: column; align-items: center; }
}


/* =====================================================
   ABOUT / HOW IT WORKS (gildeboer about-style: 2-col)
   ===================================================== */
.about {
    padding: 120px 20px 100px; background: var(--white-color); overflow: hidden;
}
.about__container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about__images { position: relative; min-height: 620px; }
.about__img-main {
    width: 90%; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    position: relative; z-index: 1; transform: rotate(-3deg);
    border: 8px solid var(--white-color); outline: 1px solid var(--border-color);
}
.about__img-main img { width: 100%; height: 380px; object-fit: cover; }
.about__img-overlay {
    position: absolute; bottom: -20px; left: 15%; width: 75%; overflow: hidden;
    border: 8px solid var(--white-color); outline: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); z-index: 2; transform: rotate(3deg);
}
.about__img-overlay img { width: 100%; height: 300px; object-fit: cover; }

.about__label {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary-color); font-size: 16px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.about__heading { font-size: 42px; font-weight: 700; color: var(--text-dark); margin-bottom: 24px; }
.about__intro {
    font-size: 16px; font-weight: 600; line-height: 1.6; color: var(--text-dark);
    margin-bottom: 16px; border-bottom: 1px dashed var(--secondary-color);
    padding-bottom: 4px; display: inline;
}
.about__text { font-size: 15px; line-height: 1.8; color: var(--text-medium); margin-bottom: 32px; margin-top: 24px; }

.about__features {
    list-style: none; padding: 0; margin: 0 0 30px;
    display: flex; flex-direction: row; gap: 30px; flex-wrap: wrap;
}
.about__feature {
    display: flex; align-items: center; gap: 12px;
    font-size: 16px; color: var(--text-dark); font-weight: 600;
}
.about__feature-icon {
    width: 50px; height: 50px; border-radius: 8px;
    background-color: var(--primary-color); color: var(--white-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.about__buttons { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 992px) {
    .about__container { grid-template-columns: 1fr; gap: 40px; }
    .about__images { min-height: 350px; }
    .about { padding: 80px 20px 60px; }
}
@media (max-width: 576px) {
    .about__heading { font-size: 28px; }
    .about__features { flex-direction: column; gap: 14px; }
    .about__buttons { flex-direction: column; }
    .about__images { min-height: 280px; }
    .about__img-main img { height: 240px; }
    .about__img-overlay img { height: 200px; }
}


/* =====================================================
   CONFIGURATOR / WIZARD
   ===================================================== */
.configurator {
    padding: 0 20px 80px; background-color: transparent;
    position: relative; z-index: 4; margin-top: -120px;
}
.configurator__container { max-width: 1200px; margin: 0 auto; }

.wizard {
    max-width: 680px; margin: 0 auto; background: var(--white-color);
    border-radius: 16px; padding: 44px 40px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
}
.wizard__progress { height: 4px; background: var(--background-medium); border-radius: 2px; margin-bottom: 16px; overflow: hidden; }
.wizard__progress-bar { height: 100%; width: 0; background: var(--secondary-color); border-radius: 2px; transition: width 0.4s ease; }

.wizard__step-indicators { display: flex; justify-content: center; gap: 12px; margin-bottom: 36px; }
.wizard__indicator {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
    background: var(--background-medium); color: var(--text-light); transition: all 0.3s;
}
.wizard__indicator--active { background: var(--primary-color); color: var(--white-color); }

.wizard__step { display: none; }
.wizard__step--active { display: block; animation: wizardFadeIn 0.3s ease; }
@keyframes wizardFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.wizard__question { font-size: 24px; margin-bottom: 8px; text-align: center; }
.wizard__hint { text-align: center; font-size: 15px; color: var(--text-light); margin-bottom: 28px; }

.wizard__options { display: grid; gap: 12px; margin-bottom: 28px; }
.wizard__options--single { grid-template-columns: repeat(2, 1fr); }
.wizard__options--multi { grid-template-columns: repeat(3, 1fr); }

.wizard__option {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 20px 16px; border-radius: 8px;
    background: var(--background-color); border: 2px solid var(--border-color);
    cursor: pointer; transition: all 0.3s; font-family: var(--body-font-family); text-align: center;
}
.wizard__option i { font-size: 24px; color: var(--primary-color); }
.wizard__option-label { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.wizard__option-desc { font-size: 13px; color: var(--text-light); }
.wizard__option:hover { border-color: var(--primary-color); background: rgba(26,71,42,0.03); }
.wizard__option--selected {
    border-color: var(--primary-color); background: rgba(26,71,42,0.06);
    box-shadow: 0 0 0 1px var(--primary-color);
}
.wizard__option--selected i { color: var(--secondary-color); }

.wizard__nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border-color);
}

.wizard__summary {
    background: var(--background-color); border-radius: 8px;
    padding: 20px 24px; margin-bottom: 28px; border: 1px solid var(--border-color);
}
.wizard__summary-grid { display: flex; flex-direction: column; gap: 8px; }
.wizard__summary-item { font-size: 15px; color: var(--text-medium); }
.wizard__summary-item strong { color: var(--text-dark); }

/* Form */
.wizard__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.wizard__form-group { display: flex; flex-direction: column; gap: 6px; }
.wizard__form-group--full { margin-bottom: 16px; }
.wizard__form-group label { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.wizard__form-group input,
.wizard__form-group textarea {
    padding: 12px 16px; border-radius: 4px;
    border: 1.5px solid var(--border-color); font-family: var(--body-font-family);
    font-size: 16px; background: var(--background-color); color: var(--text-dark);
    transition: all 0.3s; width: 100%;
}
.wizard__form-group input:focus,
.wizard__form-group textarea:focus {
    outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(26,71,42,0.1);
}
.wizard__form-group input::placeholder,
.wizard__form-group textarea::placeholder { color: var(--text-light); opacity: 0.7; }
.wizard__form-group textarea { resize: vertical; }

.wizard__success { display: none; text-align: center; padding: 40px 20px; }
.wizard__success-icon { font-size: 64px; color: var(--primary-color); margin-bottom: 16px; }
.wizard__success h3 { margin-bottom: 8px; }

@media (max-width: 992px) {
    .wizard { padding: 32px 28px; }
    .wizard__options--multi { grid-template-columns: 1fr 1fr; }
    .configurator__heading { font-size: 32px; }
}
@media (max-width: 576px) {
    .wizard { padding: 24px 20px; }
    .wizard__options--single,
    .wizard__options--multi { grid-template-columns: 1fr; }
    .wizard__form-row { grid-template-columns: 1fr; }
    .wizard__question { font-size: 20px; }
    .wizard__nav { flex-direction: column; gap: 12px; }
    .wizard__nav .btn { width: 100%; text-align: center; }
}


/* =====================================================
   FEATURES (icon + title + description grid)
   ===================================================== */
.features {
    padding: 20px 20px 70px; background: var(--background-color);
}
.features__container { max-width: 900px; margin: 0 auto; text-align: center; }
.features__title {
    font-size: 36px; font-weight: 700; margin-bottom: 36px; color: var(--text-dark);
}
.features__grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 36px;
    text-align: left;
}
.features__item { display: flex; gap: 14px; align-items: center; }
.features__icon {
    width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
    background: var(--primary-color); color: var(--white-color);
    display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.features__item h3 {
    font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 1px;
    line-height: 1.2;
}
.features__item p { font-size: 14px; color: var(--text-medium); line-height: 1.4; }
.features__badge {
    display: inline-block; background: var(--secondary-color); color: var(--white-color);
    font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 3px;
    text-transform: uppercase; letter-spacing: 0.5px; vertical-align: middle;
    margin-left: 4px;
}

@media (max-width: 992px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .features__grid { grid-template-columns: 1fr; }
    .features__title { font-size: 24px; margin-bottom: 28px; }
}


/* =====================================================
   SOCIAL PROOF (phone mockup + text)
   ===================================================== */
.proof {
    padding: 60px 20px 80px; background: var(--background-color); overflow: hidden;
}
.proof__container { max-width: 1100px; margin: 0 auto; }
.proof__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }

.proof__heading {
    color: var(--text-dark); font-size: 36px; font-weight: 700; margin-bottom: 12px; line-height: 1.2;
}
.proof__heading-accent { color: var(--secondary-color); }
.proof__text {
    font-size: 16px; color: var(--text-medium); line-height: 1.7; margin-bottom: 24px;
}
.proof__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary-color); color: var(--white-color);
    border-radius: 50px; padding: 10px 20px;
    font-size: 14px; font-weight: 600;
}
.proof__badge i { color: var(--secondary-color); }

.proof__usps { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.proof__usp { display: flex; align-items: center; gap: 12px; }
.proof__usp-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--primary-color);
    color: var(--white-color); display: flex; align-items: center;
    justify-content: center; font-size: 16px; flex-shrink: 0;
}
.proof__usp-text { color: var(--text-dark); font-size: 14px; font-weight: 600; }

.proof__phones {
    display: flex; align-items: flex-start; justify-content: center; gap: 24px;
}

/* CSS Phone mockup */
.phone {
    width: 200px; background: #111; border-radius: 28px;
    padding: 8px; box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    flex-shrink: 0;
}
.phone__notch {
    width: 80px; height: 6px; background: #111; border-radius: 3px;
    margin: 0 auto 6px;
}
.phone__screen {
    background: #fff; border-radius: 20px; overflow: hidden;
    min-height: 380px;
}
.phone__app { padding: 16px 14px; }
.phone__item {
    display: flex; justify-content: space-between; align-items: center;
    background: #f6f7f6; border-radius: 10px; padding: 10px 12px;
    font-size: 12px; font-weight: 500; color: #1a1a1a; margin-bottom: 6px;
}
.phone__item span { color: var(--primary-color); font-weight: 600; font-size: 11px; }
.phone__item--done { color: #bbb; text-decoration: line-through; }
.phone__recipe {
    border-radius: 10px; padding: 28px 10px 10px; position: relative;
}

@media (max-width: 992px) {
    .proof__grid { grid-template-columns: 1fr; gap: 40px; }
    .proof__heading { font-size: 28px; }
    .proof__phones { order: -1; }
    .phone { width: 170px; }
    .phone__screen { min-height: 320px; }
}
@media (max-width: 576px) {
    .proof { padding: 20px 20px 60px; }
    .proof__usps { grid-template-columns: 1fr; }
    .phone { width: 145px; border-radius: 22px; }
    .phone__screen { min-height: 280px; border-radius: 16px; }
    .phone__app { padding: 12px 10px; }
    .phone__item { font-size: 10px; padding: 8px 10px; }
}


/* =====================================================
   FAQ (gildeboer style)
   ===================================================== */
.faq { padding: 100px 20px; background: var(--white-color); }
.faq__container { max-width: 720px; margin: 0 auto; }
.faq__header { text-align: center; margin-bottom: 40px; }
.faq__icon-wrapper {
    width: 50px; height: 50px; border-radius: 50%;
    background-color: var(--primary-color); display: flex; align-items: center;
    justify-content: center; margin: 0 auto 14px; color: var(--white-color); font-size: 18px;
}
.faq__label {
    display: block; color: var(--primary-color); font-size: 16px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}
.faq__heading { font-size: 40px; font-weight: 700; }

.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
    background: var(--background-color); border-radius: 8px;
    border: 1px solid var(--border-color); overflow: hidden; transition: all 0.3s;
}
.faq__item:hover { border-color: var(--primary-color); }
.faq__question {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 18px 24px; background: none; border: none;
    cursor: pointer; font-family: var(--body-font-family);
    font-size: 16px; font-weight: 600; color: var(--text-dark); text-align: left;
}
.faq__question i { transition: transform 0.3s; color: var(--text-light); font-size: 14px; }
.faq__item--open .faq__question i { transform: rotate(180deg); color: var(--primary-color); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__item--open .faq__answer { max-height: 300px; }
.faq__answer p { padding: 0 24px 18px; font-size: 16px; line-height: 1.7; }

@media (max-width: 576px) {
    .faq__heading { font-size: 28px; }
    .faq__question { padding: 14px 18px; font-size: 15px; }
    .faq__answer p { padding: 0 18px 14px; font-size: 15px; }
}


/* =====================================================
   FOOTER (gildeboer style: waves, dark green, gold links)
   ===================================================== */
.footer {
    position: relative; background-color: var(--primary-dark); color: rgba(255,255,255,0.75);
    padding: 70px 20px 0; overflow: visible; border-top: 3px solid var(--primary-color);
}
.footer__wave {
    position: absolute; top: -79px; left: 0; width: 100%; height: 80px;
    transform: scaleY(-1); z-index: 4;
}
.footer__container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }

.footer__brand { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; text-decoration: none; }
.footer__brand-logo { height: 45px; width: auto; }
.footer__brand-csa { font-size: 20px; font-weight: var(--font-weight-bold); color: var(--secondary-color); letter-spacing: 1px; }
.footer__desc { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; }

.footer__title { color: var(--white-color); font-size: 16px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0; }
.footer__links li { margin-bottom: 8px; }
.footer__links a { color: rgba(255,255,255,0.6); font-size: 15px; }
.footer__links a:hover { color: var(--secondary-color); }
.footer__link-arrow { color: var(--secondary-color); margin-right: 4px; font-weight: 700; }

.footer__contact li {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 10px;
}
.footer__contact i { color: var(--secondary-color); font-size: 14px; }
.footer__contact a { color: rgba(255,255,255,0.6); }
.footer__contact a:hover { color: var(--secondary-color); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 20px;
    text-align: center; color: rgba(255,255,255,0.4); font-size: 14px;
}

@media (max-width: 992px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__cta-heading { font-size: 32px; }
}
@media (max-width: 576px) {
    .footer__grid { grid-template-columns: 1fr; }
    .footer__cta { padding: 50px 20px 40px; }
    .footer__cta-heading { font-size: 28px; }
    .footer__cta-buttons { flex-direction: column; align-items: center; }
}
