:root {
    --brand-primary: #2BB39B;
    --brand-primary-dark: #189881;

    --bg: #FFFFFF;
    --bg-soft: #FAF5EE;
    --text: #111111;
    --muted: #6F6F6F;
    --border: #E7E2D8;
    --border-soft: #EEE8DE;

    --shadow-btn: 0 2px 0 #1E7A6A;

    --container: 1180px;
    --radius-lg: 12px;
    --radius-md: 8px;
    --radius-sm: 4px;

    --section-x: 40px;
    --header-top: 20px;
    --header-height-space: 110px;

    /* Typography */
    --font-heading: "Nunito", sans-serif;
    --font-body: "Cabinet Grotesk", system-ui, sans-serif;

    --h1-size: 36px;
    --h1-line: 49px;
    --h1-weight: 800;

    --h2-size: 28px;
    --h2-line: 44px;
    --h2-weight: 700;

    --h3-size: 24px;
    --h3-line: 33px;
    --h3-weight: 700;

    --h4-size: 20px;
    --h4-line: 27px;
    --h4-weight: 400;

    --h5-size: 16px;
    --h5-line: 22px;
    --h5-weight: 300;

    --body-lg-size: 18px;
    --body-lg-line: 20px;
    --body-lg-weight: 400;

    --body-size: 16px;
    --body-line: 20px;
    --body-weight: 400;

    --body-sm-size: 14px;
    --body-sm-line: 20px;
    --body-sm-weight: 400;

    --btn-size: 16px;
    --btn-line: 20px;
    --btn-weight: 800;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--body-size);
    line-height: var(--body-line);
    font-weight: var(--body-weight);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.btn,
.topnav__link,
.mobile-menu__link {
    font-family: var(--font-heading);
    margin: 0;
}

h1 {
    font-size: var(--h1-size);
    line-height: var(--h1-line);
    font-weight: var(--h1-weight);
}

h2 {
    font-size: var(--h2-size);
    line-height: var(--h2-line);
    font-weight: var(--h2-weight);
}

h3 {
    font-size: var(--h3-size);
    line-height: var(--h3-line);
    font-weight: var(--h3-weight);
}

h4 {
    font-size: var(--h4-size);
    line-height: var(--h4-line);
    font-weight: var(--h4-weight);
}

h5 {
    font-size: var(--h5-size);
    line-height: var(--h5-line);
    font-weight: var(--h5-weight);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

p {
    margin: 0;
}

ul {
    margin: 0;
    padding-left: 18px;
}

.container {
    width: min(var(--container), calc(100% - (var(--section-x) * 2)));
    margin-inline: auto;
}

.muted {
    color: var(--muted);
}

/* =======================
   TOPBAR
======================= */
.topbar {
    position: fixed;
    top: var(--header-top);
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
}

.topbar__inner,
.mobile-menu {
    pointer-events: auto;
}

.topbar__inner {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 18px 28px;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: inset 0 -1px 0 #E3D7C6;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand__logo {
    height: 22px;
    width: auto;
}

.topnav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topnav__link {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #222;
    transition: opacity 0.2s ease;
}

.topnav__link:hover {
    opacity: 0.7;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-primary);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

/* =======================
   BUTTONS
======================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 24px;
    border-radius: 4px;
    border: 2px solid transparent;
    font-size: var(--btn-size);
    line-height: var(--btn-line);
    font-weight: var(--btn-weight);
    white-space: nowrap;
    box-shadow: var(--shadow-btn);
    transition: transform 0.08s ease, box-shadow 0.08s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #1E7A6A;
}

.btn--sm {
    min-height: 38px;
    padding: 8px 24px;
    font-size: var(--btn-size);
    line-height: var(--btn-line);
}

.btn--primary,
.btn--faq {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.btn--primary:hover,
.btn--faq:hover {
    background: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
}

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

.btn--outline:hover {
    background: rgba(43, 179, 155, 0.06);
}

/* =======================
   HERO
======================= */
.hero {
    padding: calc(var(--header-height-space) + 34px) 62px;
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
    align-items: center;
    gap: 58px;
}

.hero__copy {
    max-width: 440px;
}

.hero__title {
    margin: 0 0 18px;
}

.hero__lead {
    margin: 0 0 22px;
    font-size: var(--body-size);
    line-height: 28px;
    font-weight: var(--body-weight);
    color: #262626;
}

.hero__cta {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.hero__cta btn {
    height: 22px !important;
}


.hero__note {
    font-size: var(--body-sm-size);
    line-height: var(--body-sm-line);
    color: #8A8A8A;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__visual img {
    width: min(100%, 570px);
}

/* =======================
   PORTAL STRIP
======================= */

.portal-strip {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.portal-strip__inner {
    min-height: 260px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
    align-items: center;
    gap: 40px;
    padding: 24px 0;
}

.portal-strip__left {
    position: relative;
    height: 370px; 
    width: 600px;
    display: flex;
    align-items: center;
}

.portal-path {
    position: relative;
    width: 520px; 
    height: 420px;
}

/* pad */
.portal-strip__path {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
}


/* badges */
.portal-badge {
    position: absolute;
    width: 100px;
    height: auto;
    opacity: 0;
    transform: scale(0.7) translateY(10px);
    pointer-events: none;
}

.portal-badge.is-visible {
    animation: portalBadgePop 0.45s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

@keyframes portalBadgePop {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
    }
    60% {
        opacity: 1;
        transform: scale(1.2) translateY(-2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* exacte posities desktop */
.portal-badge--check-1 {
    top: 20px;
    left: 130px;
}

.portal-badge--check-2 {
    top: 145px;
    left: 290px;
}

.portal-badge--star {
    top: 280px;
    left: 130px;
}

.portal-strip__card {
    justify-self: end;
    max-width: 410px;
}

.portal-strip__card h2 {
    margin: 0 0 10px;
}

.portal-strip__card p {
    margin: 0 0 16px;
    font-size: var(--body-sm-size);
    line-height: 22px;
    font-weight: var(--body-sm-weight);
    color: #2C2C2C;
}


/* =======================
   PRACTICE
======================= */
.practice {
    position: relative;
    overflow: hidden;
    padding: 90px 0 90px;
}

.practice::before {
    content: "";
    position: absolute;
    left: -150px;
    bottom: -180px;
    width: 470px;
    height: 470px;
    background: url('../assets/images/fullmonkey.svg') no-repeat center / contain;
    pointer-events: none;
    z-index: 0;
}

.practice__title {
    margin: 0 auto 72px;
    position: relative;
    z-index: 1;
}

.practice__grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 90px;
}

.practice__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
    align-items: center;
    gap: 72px;
    position: relative;
}

.practice__row:first-child::before {
    content: "";
    position: absolute;
    left: -210px;
    top: 100%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: url('../assets/images/yellowswirl-background.png') no-repeat center / contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}


.practice__row--reverse {
    grid-template-columns: minmax(300px, 370px) minmax(0, 1fr);
    position: relative;
}

.practice__row--reverse::before {
    content: none;
}

.practice__row--reverse::after {
    content: "";
    position: absolute;
    right: -260px;
    top: 100%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    background: url('../assets/images/pinkswirl-background.png') no-repeat center / contain;
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
}

.practice__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.practice__visual img {
    height: 400px;
}

.visual-stat {
    width: 500px;
}

.practice__copy {
    max-width: 370px;
}

.practice__copy h3 {
    margin: 0 0 12px;
    color: var(--brand-primary);
}

.practice__copy p {
    margin: 0 0 12px;
    font-size: var(--body-size);
    line-height: 24px;
    font-weight: var(--body-weight);
    color: #2C2C2C;
}

.practice__list {
    font-size: var(--body-size);
    line-height: 24px;
    font-weight: var(--body-weight);
    color: #111;
}

.practice__list li + li {
    margin-top: 6px;
}


/* =======================
   BENEFITS
======================= */
.benefits {
    background: var(--bg-soft);
    padding: 72px 0 74px;
}

.benefits__inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    column-gap: 118px;
    align-items: center;
}

.benefits__intro {
    padding-top: 34px;
}

.benefits__title {
    max-width: 290px;
    margin: 0;
    font-size: 28px;
    line-height: 33px;
    font-weight: 700;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    column-gap: 74px;
    row-gap: 58px;
    align-items: start;
}

.benefit-card {
    max-width: 300px;
}

.benefit-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    object-fit: contain;
}

.benefit-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    /* line-height: 33px; */
    font-weight: 600;
    color: #111111;
}

.benefit-card p {
    margin: 0;
    max-width: 290px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #7A7A7A;
}

/* =======================
   FAQ
======================= */
.faq {
    padding: 82px 0 70px;
}

.faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
}

.faq__title {
    margin: 0 0 18px;
}

.faq__list {
    display: grid;
}

.faq-item {
    border-bottom: 1px solid var(--border-soft);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-soft);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    font-size: var(--body-size);
    line-height: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 28px;
    line-height: 1;
    font-weight: 200;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item__content {
    padding: 0 26px 18px 0;
    font-size: var(--body-sm-size);
    line-height: 22px;
    font-weight: var(--body-sm-weight);
    color: #434343;
}

.faq-card {
    background: #fff;
    padding: 24px 40px;
    margin-top: 56px;
    align-content: center;
    text-align: center;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;

    /* width: 459.75px;
    height: 423px; */
    border: 1px solid rgba(229, 231, 235, 0.866667);
    border-radius: 8px;
}

.faq-card__badge {
    height: 48px;
    width: 48px;
}

.faq-card h3 {
    font-size: var(--h4-size);
    line-height: var(--h4-line);
    font-weight: 700;
}

.faq-card p {
    margin: 0 0 18px;
    font-size: var(--body-sm-size);
    line-height: 22px;
    font-weight: var(--body-sm-weight);
}

/* =======================
   PRICING
======================= */

/* =======================
   PRICING
======================= */
.pricing {
    padding: 80px 0;
    background: #fff;
}

.pricing__title {
    margin-bottom: 12px;
}

.pricing__subtitle {
    margin-bottom: 40px;
    color: #5f5f5f;
}

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

/* CARD */
.pricing-card {
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
}

/* highlighted card */
.pricing-card--featured {
    border: 2px solid var(--brand-primary);
}

/* title */
.pricing-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--brand-primary)
}

/* price */
.pricing-card__price {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.pricing-card__price span {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}


/* list */
.pricing-card ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0 0 24px;
    color: #222;
}

.pricing-card li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* BUTTONS */

/* default (outline) */
.pricing-card .btn {
    align-self: flex-start;
    margin-top: 16px;
}

/* outline button */
.btn--outline {
    background: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
}

/* featured button */
.pricing-card--featured .btn {
    background: var(--brand-primary);
    color: #fff;
    border: none;
}

/* =======================
   TESTIMONIALS
======================= */
.testimonials {
    background: var(--bg-soft);
    padding: 60px 0 64px;
}

.testimonials__title {
    margin: 0 0 6px;
}

.testimonials__subtitle {
    margin: 0 0 40px;
    font-size: var(--body-size);
    line-height: 20px;
    font-weight: var(--body-weight);
    color: #707070;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.t-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 18px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
}

.t-card__stars {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1;
    color: #F0B43A;
}

.t-card__text {
    margin: 0 0 18px;
    font-size: var(--body-sm-size);
    line-height: 22px;
    font-weight: var(--body-sm-weight);
    color: #333;
}

.t-card__meta {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.t-card__meta strong {
    font-size: var(--body-sm-size);
    line-height: 20px;
    font-weight: 700;
}

.t-card__meta span {
    font-size: 13px;
    line-height: 18px;
    color: #888;
}


/* =======================
   FINAL CTA
======================= */
.final-cta {
    background: #fff;
    padding: 28px 0 0;
}

.cta {
    position: relative;
    min-height: 400px;
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 24px;
    overflow: hidden; 
}

.cta__content {
    position: relative;
    z-index: 2;
    max-width: 420px;
    padding-bottom: 28px;
}

.cta__content h2 {
    margin: 0 0 10px;
}

.cta__content p {
    margin: 0 0 18px;
    font-size: var(--body-size);
    line-height: 24px;
    color: #333;
}

.cta__visual {
    position: relative;
    height: 260px;
    z-index: 1;
}

/* basis-aap */
.cta-monkey {
    position: absolute;
    right: 0;
    bottom: -6px;          /* basis verankerd aan onderkant CTA */
    width: 340px;
    max-width: none;
    transform: translateY(90%);  /* rust: vooral haar zichtbaar */
    transform-origin: bottom center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

/* hover: oogjes piepen */
.cta:hover .cta-monkey {
    transform: translateY(73%);
}

/* excited: springt omhoog */
.cta.is-excited .cta-monkey {
    transform: translateY(55%);
}

/* sterrenlaag */
.cta-stars {
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 410px;
    max-width: none;
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.cta.is-excited .cta-stars {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* tablet */
@media (max-width: 900px) {
    .hero__inner {
        padding: 120px 0 0;
        margin: 0;
    }
    .cta {
        grid-template-columns: 1fr 280px;
        min-height: 220px;
    }

    .cta__visual {
        height: 220px;
    }

    .cta-monkey {
        width: 250px;
        transform: translateY(70%);
    }

    .cta:hover .cta-monkey {
        transform: translateY(55%);
    }

    .cta.is-excited .cta-monkey {
        transform: translateY(16%);
    }

    .cta-stars {
        width: 270px;
        right: -4px;
    }

    .portal-strip__left {
        width: 85%;
    }

    .portal-badge {
        scale: 0.8 !important;
    }

    .portal-badge--check-1{
        top: 25px !important;
        left: 100px !important;
    }
    .portal-badge--check-2{
        top: 120px !important;
        left: 230px !important;
 }
    .portal-badge--star{
        top: 230px !important;
        left: 100px !important;
    }
}

/* mobiel */
/* mobiel */
@media (max-width: 768px) {
    .final-cta {
        padding: 20px 0 0;
    }

    .cta {
        grid-template-columns: 1fr;
        min-height: 220px;
        gap: 0;
        overflow: hidden;
        margin-bottom: -16px;
    }

    .cta__content {
        max-width: 100%;
        padding-top: 40px;
        padding-bottom: 80px; /* ruimte voor de aap rechtsonder */
    }

    .cta__content h2 {
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 8px;
    }

    .cta__content p {
        font-size: 14px;
        line-height: 22px;
        margin: 0 0 14px;
        max-width: 300px;
    }

    .cta__visual {
        position: absolute;
        right: 20px;
        bottom: 0;
        width: 180px;
        height: 120px;
        z-index: 1;
        pointer-events: none;
    }

    .cta-monkey {
        width: 190px;
        right: 0;
        bottom: -4px;
        transform: translateY(78%);
    }

    .cta:hover .cta-monkey {
        transform: translateY(58%);
    }

    .cta.is-excited .cta-monkey {
        transform: translateY(40%);
    }

    .cta-stars {
        width: 240px;
        right: -10px;
        bottom: 70px;
        opacity: 0;
        transform: translateY(8px) scale(0.96);
    }

    .pricing-card__price {
        font-size: 28px;
    }
}

/* =======================
   FOOTER
======================= */
.footer {
    background: var(--bg-soft);
    padding: 34px 0 42px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__logo {
    width: 110px;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__socials a {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer__socials img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__copyright {
    font-size: 13px;
    line-height: 18px;
    color: #666;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col a,
.footer__contact p,
.footer__contact a {
    font-size: var(--body-sm-size);
    line-height: 20px;
    font-weight: var(--body-sm-weight);
    color: #222;
}

.footer__contact p {
    margin: 0 0 2px;
    font-weight: 700;
}

.footer__contact a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* =======================
   TABLET
======================= */
@media (max-width: 1100px) {
    :root {
        --section-x: 28px;
    }

    .hero__inner,
    .faq__grid {
        gap: 34px;
    }

    .benefits__inner {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 64px;
    }

    .practice__row,
    .practice__row--reverse {
        gap: 40px;
    }

    .hero__inner {
        grid-template-columns: 1fr 1fr;
    }

    .practice__row {
        grid-template-columns: 1fr 340px;
    }

    .practice__row--reverse {
        grid-template-columns: 340px 1fr;
    }

    .pricing__grid,
    .testimonials__grid {
        gap: 14px;
    }
    .portal-strip__inner {
        grid-template-columns: 1fr 1fr;
        gap: 0px;
    }

    .portal-path img {
        scale: 0.9;
    }
    .portal-strip__inner {
        padding: 0;
    }
    .portal-badge--check-1{
        top: 35px;
    }
    .portal-badge--star{
        top: 270px;
    }
}

/* =======================
   MOBILE
======================= */
@media (max-width: 820px) {
    :root {
        --section-x: 24px;
        --header-top: 16px;
        --header-height-space: 94px;

        --h1-size: 32px;
        --h1-line: 40px;

        --h2-size: 20px;
        --h2-line: 28px;

        --h3-size: 20px;
        --h3-line: 28px;

        --h4-size: 18px;
        --h4-line: 24px;
    }


    .topbar__inner {
        min-height: 58px;
        padding: 12px 24px;
        border-radius: 8px;
    }

    .brand__logo {
        height: 18px;
    }

    .topnav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .mobile-menu {
        display: block;
        width: min(var(--container), calc(100% - (var(--section-x) * 2)));
        margin: 0 auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .mobile-menu.is-open {
        max-height: 220px;
    }

    .mobile-menu__nav {
        background: var(--bg-soft);
        border-radius: 0 0 8px 8px;
        box-shadow: inset 0 -1px 0 #E3D7C6;
        padding: 24px 16px 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: -6px;
    }

    .mobile-menu__link {
        font-size: 14px;
        line-height: 20px;
        font-weight: 500;
    }

    .mobile-menu__btn {
        align-self: flex-start;
    }

    .hero {
        padding: 0 24px!important;
        margin-top: 2em;
        margin-bottom: 4em;
    }

    /* .hero__inner {
        grid-template-columns: 1fr;
        gap: 26px;
    } */

    .hero__lead {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    .hero__cta .btn {
        min-height: 38px;
        font-size: 14px;
        line-height: 20px;
        padding-inline: 16px;
    }

    .hero__visual img {
        max-width: 320px;
    }

    .portal-strip {
        background-image: url('../assets/images/portaal-mobile.png');
        background-repeat: no-repeat;
        background-position: right bottom;
        background-size: 300px;
    }

    .portal-strip__inner {
        grid-template-columns: 1fr;
        min-height: 360px;
        gap: 0;
        padding: 26px 0;
    }

    .portal-strip__left {
        display: none;
    }

    .portal-strip__card {
        justify-self: start;
        max-width: 235px;
    }

    .portal-strip__card p {
        font-size: 14px;
        line-height: 22px;
    }

    .portal-strip__card .btn {
        min-height: 36px;
        padding: 8px 14px;
        font-size: 14px;
        line-height: 20px;
    }

    .practice {
        padding: 56px 0 58px;
    }

    .practice::before {
        width: 320px;
        height: 320px;
        left: -100px;
        bottom: -100px;
    }

    .practice__title {
        margin-bottom: 38px;
    }

    .practice__grid {
        gap: 80px;
    }

    .practice__row,
    .practice__row--reverse {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 600px;

    }

    .practice__row--reverse::after {     
        width: 180px;
        height: 180px;
        right: -80px;
        top: 70%;
    }

    .practice__row:first-child::before {
        width: 200px;
        height: 200px;
        left: -140px;
        top: 100%;
    
    }

    .practice__visual {
        order: 1;
    }

    .practice__copy {
        order: 2;
        max-width: 80%;
        align-self: center;
    }

    .practice__copy p,
    .practice__list {
        font-size: 15px;
        line-height: 24px;
    }

    .benefits {
        padding: 34px 0;
    }

    .benefits__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits__title {
        max-width: 100%;
    }

   
    .faq {
        padding: 44px 0 34px;
    }

    .faq__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item summary {
        padding: 16px 0;
        font-size: 14px;
        line-height: 22px;
    }

    .faq-item__content {
        padding: 0 18px 16px 0;
    }

    .faq-card {
        margin-top: 0;
        padding: 20px 18px;
    }

    .pricing {
        padding: 6px 0 38px;
    }

    .pricing__subtitle {
        margin-bottom: 18px;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        min-height: unset;
    }

    .price-card .btn {
        margin-top: 14px;
    }

    .testimonials {
        padding: 34px 0 38px;
    }

    .testimonials__subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .final-cta {
        padding: 20px 0 16px;
    }

    .final-cta::before {
        right: -85px;
        bottom: -75px;
        width: 250px;
        height: 250px;
    }

    .final-cta__inner {
        min-height: 180px;
    }

    .final-cta__content {
        max-width: 220px;
    }

    .final-cta p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 14px;
    }

    .final-cta .btn {
        min-height: 36px;
        font-size: 14px;
        line-height: 20px;
        padding: 8px 14px;
    }

    .footer {
        padding: 28px 0 36px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer__logo {
        width: 92px;
    }
}

@media (max-width: 480px) {
    .hero__visual img {
        max-width: 290px;
    }

    .portal-strip {
        min-height: 400px;
        background-size: 225px;
    }

    .portal-strip__card {
        max-width: 220px;
    }

    .practice__grid {
        padding: 0px 24px;
        gap: 32px !important;
    }

    .practice__visual img {
        width: 100% !important;
    }

    .practice__row,
    .practice__row--reverse {
        gap: 24px !important;
    }
}



/* =======================
   PRACTICE MOBILE
======================= */
@media (max-width: 768px) {
     .hero__inner {
        display: flex;
        flex-direction: column;
        align-items: left;
        gap: 40px;
    }

    .practice {
        padding: 56px 0 60px;
    }

    .practice__title {
        margin: 0 auto 32px;
        padding: 0 20px;
    }

    .practice__grid {
        gap: 80px;
        align-items: center;

    }

    /* 🔁 alle rows stacken */
    .practice__row,
    .practice__row--reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    /* 🎯 volgorde: eerst visual, dan tekst */
    .practice__visual {
        order: 1;
        justify-content: center;
        width: 100%;
    }

    .practice__copy {
        order: 2;
        max-width: 100%;
        padding: 0;
    }

    /* 📱 visual schaal */
    .practice__visual img {
        width: 80%;
        max-width: 520px;
        height: auto;
    }

    /* ✍️ titel */
    .practice__copy h3 {
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 12px;
        max-width: 280px;
    }

    /* 📄 tekst */
    .practice__copy p {
        font-size: 14px;
        line-height: 22px;
        margin: 0 0 18px;
        max-width: 300px;
    }

    /* ✅ lijst */
    .practice__list {
        font-size: 14px;
        line-height: 22px;
    }

    .practice__list li {
        position: relative;
        padding-left: 8px;
        margin-bottom: 12px;
        list-style: none;
    }

    .practice__list li::before {
        content: "✓";
        position: absolute;
        left: -20px;
        top: 0;
        color: var(--brand-primary);
        font-weight: 800;
        font-size: 16px;
    }

    /* 🌀 swirls uit op mobiel (cleaner) */
    .practice__row::before,
    .practice__row--reverse::after {
        display: none;
    }

    /* 🐒 achtergrond vorm subtieler */
    .practice::before {
        width: 220px;
        height: 220px;
        left: -80px;
        bottom: -60px;
        opacity: 0.25;
    }

    .benefits {
        padding: 64px 24px;
    }

    .benefits__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits__title {
        max-width: 100%;
        font-size: var(--h2-size);
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        max-width: 100%;
    }

    .benefit-card img {
        width: 32px;
        height: 32px;
    }
    
    .benefit-card h3{
        font-size: var(--h4-size);
    }

    .faq {
        padding: 64px 24px;
    }

    .portal-strip {
        padding: 0px 24px;
    }

    .hero {
        padding-left: 24px;
        padding-right: 24px;
    }

    .pricing {
        padding: 64px 24px;
    }

    .testimonials {
        padding: 64px 24px;
    }

    .cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer {
        padding: 64px 24px;
    }
}






/* =======================
   GENERIC FORM PAGES
======================= */
.signup-page {
    background: #ffffff;
    padding-top: 80px;
}

.signup-main {
    padding: 80px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.signup-benefits, .check-list li {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.signup-benefits li, .check-list li {
    position: relative;
    line-height: 1;
    color: #333;
    padding-left: 8px;

}

.signup-benefits li::before, .check-list li::before {
    content: "✓";
    position: absolute;
    left: -20px;
    top: 0;
    color: var(--brand-primary);
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
}

.hero img{
    width: 40vw;
}

@media (max-width: 900px) {
    .signup-main {
        flex-direction: column;
        gap: 0px;
        justify-content: start;
    }
    .hero img{
        width: 60vw;
    }
    .hero {
        padding-top: 40px;
    }
    .signup-copy h1 {
        font-size: 32px !important;
        line-height: 36px;
        margin: 0 !important;
    }
    .signup-copy p {
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .signup-copy h1 {
        font-size: 36px !important;
        line-height: 36px;
    }
    .signup-main {
        padding: 40px 24px;
    }    
}

.signup-hero {
    padding: 48px 0 40px;
}

.signup-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.signup-copy {
    max-width: 520px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--brand-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
}

.signup-copy h1 {
    margin-bottom: 16px;
    font-size: 42px;
    line-height: 50px;
    width: 100%;
}

.signup-copy p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 22px;
}

.signup-benefits {
    line-height: 28px;
}

.signup-benefits li + li {
    margin-top: 4px;
}

.signup-card h2 {
    margin-bottom: 8px;
}

.signup-card__intro {
    margin-bottom: 20px;
}

.lead-form,
.onboarding-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
}

.form-field small {
    font-size: 12px;
    color: #7c7c7c;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 8px 24px;
    border: 1px solid #D8D3C9;
    border-radius: 4px;
    background: #fff;
    font: inherit;
    color: #222;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: black;
}

.btn--full {
    width: 100%;
}

.form-note {
    margin-top: 4px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #818181;
}

/* =======================
   ONBOARDING
======================= */

.onboarding__wrap {
    max-width: 1080px;
}

.onboarding__progress {
    margin-bottom: 28px;
}

.onboarding__progress p {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: #E8E8E8;
    overflow: hidden;
}

.progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #84AEDD;
}

.onboarding__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.onboarding__header h1 {
    margin-bottom: 6px;
}

.onboarding__header p {
    color: #666;
}

@media (max-width: 480px) {
    .signup-onboarding {
        padding: 40px 0px !important;
    }  
    .onboarding {
        padding: 0;
    }  
    .onboarding-actions{
        display: flex;
        flex-direction: column !important;
        gap: 12px;
    }
    
}

.signup-onboarding {
    padding: 80px 12px;
}
.onboarding-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    max-width: 700px;
}

.onboarding-card label {
    padding-top: 16px;
}

.check-list li {
    margin: 1em !important;
}


