/* GENERAL STYLING
**************************************************/
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}
body {
    min-height: 100vh;
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100%;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F6F2 100%);
    z-index: -1;
}

/* show on mobile */
.show-on-mobile { display:none; }
@media (max-width: 1100px) {
    .show-on-mobile { display:inline; }
}



/* LIV FLOAT / POPUP
**************************************************/
.liv-float {
    position: fixed;
    z-index: 900;
    right: 20px;
    bottom: 20px;
    width: 79px;
    height: 79px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: visible;
    background: transparent;
    transform: translateY(16px) scale(0.96);
    transition:
        width 260ms ease,
        height 260ms ease,
        border-radius 260ms ease,
        opacity 220ms ease,
        transform 220ms ease,
        visibility 220ms ease,
        box-shadow 260ms ease;
}
.liv-float:not(.liv-float.is-open):active {
    transform: scale(.8);
}
.liv-float-inner-wrapper {
    position: relative;
    width:100%;
    height:100%;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .2s ease;
}
.liv-float-inner-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(90deg, #C0609E 0%, #8C40B8 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    mask-composite: exclude;
    z-index: 3;

    transition: opacity .2s ease .25s;
}
.liv-float.is-open .liv-float-inner-wrapper::before {
    opacity:0;
    transition: opacity 0s ease 0s;
    pointer-events: none;
}

.liv-float-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
}
/* ripple rings */
.liv-float-inner::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: rgba(192, 96, 158, 0.22);
    z-index: -1;
    animation: livRippleInner 3.2s ease-in-out infinite;
}
.liv-float-inner-wrapper::after {
    content: "";
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    background: rgba(192, 96, 158, 0.16);
    z-index: -2;
    animation: livRippleOuter 3.2s ease-in-out infinite;
}
/* hide rings when opened */
.liv-float.is-open .liv-float-inner::before,
.liv-float.is-open .liv-float-inner-wrapper::after {
    display: none;
}
@keyframes livRippleInner {
    0%,100% {
        transform: scale(.9);
        opacity: .45;
    }
    50% {
        transform: scale(1);
        opacity: .75;
    }
}

@keyframes livRippleOuter {
    0%,100% {
        transform: scale(.9);
        opacity: .15;
    }
    50% {
        transform: scale(1.02);
        opacity: .34;
    }
}

.liv-float-inner-inner {
    width:79px;
    height:79px;
    background: linear-gradient(90deg, #FFFFFF 0%, #F8F6F2 100%);
    border-radius: 999px;

    display: flex;
    align-items: center;
    justify-content: center;
}
.liv-float.is-open .liv-float-inner-inner {
    width: 360px;
    height: 560px;
    border-radius: 10px;
}
.liv-float.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.liv-float.is-open {
    width: 360px;
    height: 560px;
    border-radius: 16px;
    align-items: stretch;
    justify-content: stretch;
    cursor: default;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.liv-float-label {
    position: relative;
    z-index: 1;
    transition: opacity 160ms ease;
}
.liv-float-label::before {
    content:'Stel je vraag aan Liv';
    position:absolute;
    z-index: 9000;
    top:-35px;
    left:-125px;
    padding:3px 8px 4px 8px;
    font-size: 11px;
    border-radius:50px;
    color: #81587D;
    background: #F2DCF0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .5s ease;
}
.liv-float-label.show-tooltip::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.liv-float.is-open .liv-float-label {
    opacity: 0;
    pointer-events: none;
}
.liv-float-close {
    position: absolute;
    z-index: 5;
    top: 5px;
    right: 5px;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(8, 40, 72, .15);
    border-radius: 50%;
    background: rgba(8, 40, 72, 0.05);
    font-size: 18px;
    font-weight: 500;
    color: rgba(8, 40, 72, .75);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: rotate(45deg);
    transition: all .2s ease;
}
.liv-float-close span {
    display:block;
    margin-left:1px;
}
.liv-float.is-open .liv-float-close:hover {
    border: 1px solid rgba(8, 40, 72, .25);
}
.liv-float.is-open .liv-float-close {
    opacity: 1;
    pointer-events: auto;
}
.liv-float-panel {
    position: absolute;
    z-index: 2000;
    inset: 0;
    padding: 0;
    overflow:hidden;
    color: #082848;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease 120ms;
}
.liv-float-panel iframe {
    position: relative;
}
.liv-float.is-open .liv-float-panel {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}




/* SEARCH MODAL
**************************************************/
.search-modal {
    position: fixed;
    z-index: 5000;
    top: 0;
    left: -10000%;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(0);
    transition: all .3s ease, left 0s ease .3s;
}
.search-modal.active {
    left: 0;
    backdrop-filter: blur(5px);
    background-color: rgba(0,0,0,0.35);

    transition: all .3s ease, left 0s ease;
}
.search-modal-wrapper {
    padding: 8px;
    border-radius: 24px;
    background: linear-gradient(90deg, #F2DCF0 0%, rgba(212, 124, 189, 0.55) 100%);
    box-shadow: 0px 24px 60px 0px #1A0D3340;
    transform: translateY(10px);
    opacity:0;

    transition: all .25s ease, transform 0s ease .25s;
}
.search-modal.active .search-modal-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition: all .25s ease;
}
.search-modal-inner {
    display: flex;
    flex-direction: column;

    width: 824px;
    min-height: 645px;
    border-radius: 24px;
    font-family: Inter, system-ui, sans-serif;
    color: #242233;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all .25s ease, transform 0s ease .25s;
    background: #fff;
}
.search-modal.active .search-modal-inner {
    opacity: 1;
    transform: translateY(0);
    transition: all .25s ease;
}
.search-header {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 32px 18px;
    border-bottom: 1px solid #eeeaf5;
}
.search-icon-modal {
    display: grid;
    place-items: center;
}
#modalInput {
    flex: 1;
    border: 0;
    outline: 0;
    font-size: 16px;
    color: #8C8C9E;
    padding-right: 56px;
}
#modalInput::placeholder {
    color: #9b96a8;
}
.esc-key {
    position: absolute;
    left: 365px;
    top: 50%;
    transform: translateY(-50%);
    color: #737385;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 500;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0s ease;
    background: #F5F5F7;
}

/* only hide when user typed content */
#modalInput:not(:placeholder-shown) + .esc-key {
    opacity: 0;
}

.section {
    padding: 18px 16px 20px 16px;
    border-bottom: 1px solid #E5E5EB;
    background: #FCFCFF;
}
.section-title {
    color: #808094;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 8%;
    margin: 0 0 10px 4px;
}
.results .section-title {
    margin: 15px 0 10px 20px;
}
.results .section-title:first-of-type {
    margin-top:0px;
}
.quick-searches {
    display: flex;
    gap: 10px;
}
.quick-searches button {
    border: 1px solid #E0D6FA;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #59338C;
    padding: 10px 16px;
    cursor: pointer;
    
    transition: all .15s ease;
    background: #F5F0FF;
}
.quick-searches button:hover {
    background: #eadcff;
}
.quick-searches button:active {
    transform: scale(.9);
}

.results {
    padding: 24px 16px 18px 0;
    transition: opacity 400ms ease, transform 400ms ease;
}
.results-exit {
    opacity: 0;
    transform: translateY(10px);
}
.results-enter {
    opacity: 1;
    transform: translateY(10px);
    animation: resultsSlideIn 400ms ease forwards;
}
@keyframes resultsSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result {
    font-size: 15px;
    font-weight: 500;
    display: block;
    cursor: pointer;
    width: max-content;
    padding: 12px 22px;
}
.result:hover {
    border-radius: 8px;
    background: #F7F0FF;
}
.result.muted {
    align-items: center;
    color: #aaa4b5;
}
.result.muted strong {
    color: #2f2c3b;
}
.result a {
    color: #14141F;
    text-decoration: none;
    font-weight: 700;
}
.result span {
    padding: 0 5px;
}
.search-footer {
    height: 58px;
    margin-top: auto;
    padding: 0 16px 0 20px;
    border-top: 1px solid #E5E5EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FCFAFF;
}
.search-footer .dot {
    position: relative;
    width: 22px;
    height: 22px;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 8px;
    background: linear-gradient(90deg, #F2B3E6 0%, #B380E6 100%);
}
.search-footer .dot::after {
    content: "";
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 8px;
}
.search-footer a {
    color: #59338C;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.search-footer a img {
    opacity:.5;
    transition: .2s ease;
}
.search-footer a:hover img {
    transform: translateX(2px)
}
.shortcuts {
    display: flex;
    gap: 6px;
    margin-right:5px;
}
.shortcuts span {
    pointer-events: none;
    width: 26px;
    height: 26px;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    color: #737385;
    background: #F5F5F7;
}
/* close button */
.search-modal-close { display: none; }



/* HEADER
**************************************************/
header {
    position: fixed;
    z-index: 9000;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.2s ease;
}
header.scrolled {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* header top */
.top-bar {
    position: relative;
    z-index: 1000;
    height: 50px;
    background-color: #082848;
    display: flex;
    justify-content: center;
    font-size: 12px;
}
.top-bar-inner {
    padding: 0 20px 0 40px;
}


/* top/bottom nav joint styles */
.top-bar-inner,
.bottom-bar-inner {
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* top nav */
.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #fff;
}
.nav-item {
    color: #fff;
    text-decoration: none;
}
.divider {
    width: 1px;
    height: 20px;
    background-color: #fff;
    opacity: 0.4;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #fff;
}
.lang.en {
    opacity: 0.5;
}
.lang-divider {
    width: 1px;
    height: 20px;
    background-color: #FFFFFF66;
}

/* header bottom */
.bottom-bar {
    position: relative;
    z-index: 1000;
    height: 80px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e5e5e5;
}
.bottom-bar-inner {
    padding: 0 40px 0 30px;
}
.left-group {
    display: flex;
    align-items: center;
}
.logo {
    height: 40px;
    margin-right: 32px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
}
.main-nav a {
    padding:0 15px;
    text-decoration: none;
    color: #082848;
    height: 80px;
    display: flex;
    align-items: center;
}

.right-group {
    display: flex;
    align-items: center;
    gap: 0px;
}

/* Start met Liv button */
.header-liv-btn {
    position: relative;
    isolation: isolate;
    width: 130px;
    height: 34px;
    background: linear-gradient(90deg, #C0609E 0%, #8C40B8 100%);
    border: none;
    border-radius: 110px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    line-height: 100%;
    transition: transform 220ms ease;
}

.header-liv-btn::before,
.header-liv-btn::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
    animation: livAura 3s ease-in-out infinite;
}
.header-liv-btn::before {
    inset: -5px -10px;
    background: rgba(192, 96, 158, 0.16);
}
.header-liv-btn::after {
    inset: -10px -18px;
    background: rgba(192, 96, 158, 0.08);
    animation-delay: 0.35s;
}
.header-liv-btn span {
    font-size: 21px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-style: italic;
}
.header-liv-btn span::after {
    content: "";
    position: absolute;
    top: 13px;
    right: 16px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    transform: translateY(-50%);
    box-shadow:
        0 0 0 2.25px rgba(255, 255, 255, 0.28),
        0 0 0 5px rgba(255, 255, 255, 0.12);
    pointer-events: none;
}
.header-liv-btn:hover {
    transform: scale(1.04);
}
.header-liv-btn:hover::before,
.header-liv-btn:hover::after {
    animation-duration: 1.4s;
}

@keyframes livAura {
    0%, 100% {
        transform: scaleX(0.985) scaleY(0.96);
        opacity: 0.62;
    }

    50% {
        transform: scaleX(1.035) scaleY(1.015);
        opacity: 1;
    }
}


/* search bar */
.search-wrapper {
    position: relative;
    width: 230px;
    height: 34px;
    display: flex;
    align-items: center;
    border: 1.5px solid #DDDDDC;
    border-radius: 40px;
    background: #fff;
    font-size: 13px;
    padding: 0 30px;
    margin-left: 24px;
    cursor: pointer;
}
.search-wrapper input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #989898;
    font-size: 13px;
    cursor: pointer;
}
.search-wrapper input::placeholder {
    opacity: 1;
    color: #989898;
}
.search-icon {
    position: absolute;
    left: 8px;
    width: 16px;
    height: 16px;
}
.search-right-icon {
    position: absolute;
    top: 1px;
    right: 2px;
    background: #F4F4F4;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-right-icon img {
    width: 17px;
    height: 17px;
}
.secondary-btn {
    width: 160px;
    height: 34px;
    border-radius: 6px;
    border: 1.5px solid #DDDDDC;
    background-color: #F8F6F2;
    cursor: pointer;
    font-size: 13px;
    color:#082848;
    margin-left: 24px;
}
/* cart icon */
.cart {
    font-size: 20px;
    cursor: pointer;
    margin-left: 15px;
    margin-top: 5px;
}





/* HEADER DROPDOWN MENUS 
**************************************************/
/* overlay */
.nav-overlay {
    position: fixed;
    z-index: 500;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    background: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(6px);

    transition: .15s ease;
}
.nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* joint styles */
.nav-dropdown {
    position: fixed;
    top: 130px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    z-index: 600;

    box-shadow: 0 4px 50px 20px rgba(0, 0, 0, 0.25);
}
.nav-dropdown.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.nav-dropdown-inner {
    width: 92%;
    max-width: 1440px;
}
.nav-dropdown-inner-inner {
    width: 100%;
}
/* full-width background extensions with same breakpoint */
.nav-dropdown[data-dropdown-menu="system"],
.nav-dropdown[data-dropdown-menu="kennis"],
.nav-dropdown[data-dropdown-menu="supplementen"] {
    background: linear-gradient(
        90deg,
        #fff 0%,
        #fff calc((100% - min(92%, 1440px)) / 2 + (min(92%, 1440px) * 0.30)),
        #F8F6F2 calc((100% - min(92%, 1440px)) / 2 + (min(92%, 1440px) * 0.30)),
        #F8F6F2 100%
    );
}
.nav-dropdown[data-dropdown-menu="liv"] {
    --dropdown-inner-width: min(92%, 1440px);
    --dropdown-side-space: calc((100% - var(--dropdown-inner-width)) / 2);
    --liv-left-width: 420px;
  
    background: linear-gradient(
        90deg,
        #082848 0%,
        #082848 calc(var(--dropdown-side-space) + var(--liv-left-width)),
        #F8F6F2 calc(var(--dropdown-side-space) + var(--liv-left-width)),
        #F8F6F2 100%
    );
}
.nav-dropdown[data-dropdown-menu="themas"] {
    background: transparent;
}

/* menu items hover/active state border */
.main-nav a {
    position: relative;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: #B64398;
    transform: translateX(-50%);
    transition: width 260ms ease;
    z-index: 5000;
}
.main-nav a:hover::after {
    width: 100%;
}
.main-nav a.is-active::after {
    width: 100%;
}

/* HEADER DROPDOWN: HET SYSTEEM
**************************************************/
.system-menu {
    display: grid;
    grid-template-columns: 30% 70%;
    background: transparent;
}

.system-menu-left {
    padding-top: 70px;
    padding-right: clamp(50px, calc(50px + 40 * ((100vw - 1100px) / 340)), 60px);
    padding-bottom: 20px;
    padding-left: clamp(0px, calc(0px + 50 * ((100vw - 1100px) / 340)), 50px);

    background: #fff;
}
.system-menu-left h2 {
    font-family: "Encode Sans Semi Expanded";
    font-size: clamp(24px, calc(24px + 4 * ((100vw - 1100px) / 340)), 30px);
    font-weight: 600;
    line-height: 120%;
    color: #082848;
    margin: 0 0 10px 0;
}
.system-menu-left p {
    color: #082848;
    font-size: clamp(12px, calc(12px + 2 * ((100vw - 1100px) / 340)), 14px);
    line-height: 150%;
}
.system-menu-left p img {
    transform: translateY(9px);
}

.system-menu-right {
    padding-top: 65px;
    padding-right: clamp(20px, calc(20px + 10 * ((100vw - 1100px) / 340)), 30px);
    padding-bottom: 65px;
    padding-left: clamp(40px, calc(40px + 50 * ((100vw - 1100px) / 340)), 90px);
    background: transparent;
}
.system-menu-link {
    display: block;
    text-decoration: none;
    padding: 0 0 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(8, 40, 72, 0.12);
}
.system-menu-link h3 {
    display: inline-block;
    width: fit-content;

    font-family: "Encode Sans Semi Expanded";
    font-size: 22px;
    font-weight: 600;
    line-height: 100%;
    padding-bottom: 4px;

    background: linear-gradient(90deg, #082848 0%, #8033A6 60%, #A455A8 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;

    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.system-menu-link p {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #606060;
}


/* HEADER DROPDOWN: KENNIS
**************************************************/
.kennis-menu {
    display: grid;
    grid-template-columns: 30% 70%;
    background: transparent;
}

.kennis-menu-left {
    padding-top: 70px;
    padding-right: clamp(70px, calc(70px + 40 * ((100vw - 1100px) / 340)), 60px);
    padding-bottom: 20px;
    padding-left: clamp(0px, calc(0px + 50 * ((100vw - 1100px) / 340)), 50px);

    background: #fff;
}
.kennis-menu-left h2 {
    font-family: "Encode Sans Semi Expanded";
    font-size: clamp(24px, calc(24px + 4 * ((100vw - 1100px) / 340)), 30px);
    font-weight: 600;
    line-height: 120%;
    color: #082848;
    margin: 0 0 10px 0;
    max-width: 265px;
}
.kennis-menu-left p {
    color: #082848;
    font-size: clamp(12px, calc(12px + 2 * ((100vw - 1100px) / 340)), 14px);
    line-height: 150%;
}

.kennis-menu-right {
    padding-top: 65px;
    padding-right: clamp(20px, calc(20px + 10 * ((100vw - 1100px) / 340)), 30px);
    padding-bottom: 65px;
    padding-left: clamp(40px, calc(40px + 50 * ((100vw - 1100px) / 340)), 90px);

    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 70px;
    row-gap: 30px;
    background: transparent;
}
.kennis-menu-link {
    display: block;
    text-decoration: none;
    border-bottom: 1px solid rgba(8, 40, 72, 0.12);
    padding-bottom: 30px;
}
.kennis-menu-link h3 {
    display: inline-block;
    width: fit-content;

    padding-bottom: 4px;
  
    font-family: "Encode Sans Semi Expanded";
    font-size: 22px;
    font-weight: 600;
    line-height: 100%;

    background: linear-gradient(90deg, #082848 0%, #8033A6 60%, #A455A8 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;

    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.kennis-menu-link p {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #606060;
}

.kennis-menu-link h3.is-new::after {
    content: "Nieuw";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;

    height: 22px;
    margin-left: 12px;
    padding: 0 10px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.96px;
    line-height: 1;

    color: #141414;
    -webkit-text-fill-color: #141414;

    background-color: #D8D3C8;
    border-radius: 999px;
  
    margin-top: -3px;
}


/* HEADER DROPDOWN: SUPPLEMENTEN
**************************************************/
.nav-dropdown[data-dropdown-menu="supplementen"] {
    background: linear-gradient(
        90deg,
        #fff 0%,
        #fff calc((100% - min(92%, 1440px)) / 2 + (min(92%, 1440px) * 0.30)),
        #f7f3f0 calc((100% - min(92%, 1440px)) / 2 + (min(92%, 1440px) * 0.30)),
        #f7f3f0 100%
    );
}

.supplementen-menu {
    display: grid;
    grid-template-columns: 30% 19% 22% 32%;
    background: transparent;
}

.supplementen-menu-left {
    position: relative;
    
    padding-top: 70px;
    padding-right: clamp(30px, calc(30px + 40 * ((100vw - 1100px) / 340)), 60px);
    padding-bottom: 20px;
    padding-left: clamp(0px, calc(0px + 50 * ((100vw - 1100px) / 340)), 50px);

    background: #fff;
}

.supplementen-menu-left h2 {
    font-family: "Encode Sans Semi Expanded";
    font-size: clamp(24px, calc(24px + 4 * ((100vw - 1100px) / 340)), 30px);
    font-weight: 600;
    line-height: 120%;
    color: #082848;
    max-width: 325px;
}
.supplementen-menu-left p {
    font-size: clamp(12px, calc(12px + 2 * ((100vw - 1100px) / 340)), 14px);
    line-height: 150%;
    color: #082848;
    margin-top: 10px;
}

.supplementen-badge {
    position: absolute;
    top: 26px;
    right: -25px;
    z-index: 3;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    color: #fff;
    line-height: 97%;
    transform: rotate(11deg);
    transform-origin: center right;
    
    background-image: url("img/peer-badge.svg");
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
}

.supplementen-pol {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 50px;
}
.supplementen-pol img {
    width: 100px;
    height: 100px;
}
.supplementen-pol strong {
    display: block;

    font-family: "Encode Sans Semi Expanded";
    font-size: 13px;
    font-weight: 600;
    line-height: 120%;
    color: #818181;
}
.supplementen-pol span {
    color: #989898;
    font-size: 12px;
    font-weight: 500;
    line-height: 145%;
}
.supplementen-pol a {
    display:block;
    margin-top: 8px;

    color: #1A5490;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.122px;
    text-decoration: none;
}
.supplementen-pol a img {
    width: 8px;
    height: auto;
    transform: translateY(.5px);
    transition: all .2s ease;
}
.supplementen-pol a:hover img {
    transform: translateX(2px);
}

.supplementen-packages,
.supplementen-stacks,
.supplementen-more {
    padding-top: 20px;
    padding-right: clamp(15px, calc(15px + 20 * ((100vw - 1100px) / 340)), 35px);
    padding-bottom: 20px;
    padding-left: clamp(15px, calc(15px + 20 * ((100vw - 1100px) / 340)), 35px);

    margin: 60px 0 60px 0;
    border-left: 1px solid #DDDDDC;
}
.supplementen-more {
    padding-right: 0;
    max-width: max-content;
}
.supplementen-packages {
    border-left: none;
}
.supplementen-packages h4,
.supplementen-stacks h4,
.supplementen-more h4 {
    color: #082848;
    font-size: 11px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.98px;
    text-transform: uppercase;
    margin-bottom: 27px;
}
.supplementen-package {
    min-height:94px;
    display: block;
    margin-bottom: 14px;
    padding: 8px 12px 8px 12px;
    background: rgba(255, 255, 255, 0.48);
    border-radius: 8px;
    text-decoration: none;
    color: #082848;
    box-shadow: inset 0 -6px 0 currentColor;
}
.supplementen-package-man {
    color: #9E98E4;
    border: 1px solid #9E98E4;
}
.supplementen-package-vrouw {
    color: #F992A0;
    border: 1px solid #F992A0;
}
.supplementen-package-kind {
    color: #4BAA78;
    border: 1px solid #4BAA78;
}
.supplementen-package-familie {
    color: #EEB13B;
    border: 1px solid #f4b12f;
}

.supplementen-package-head {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(8, 40, 72, 0.16);
}
.supplementen-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    flex: 0 0 auto;
}
.supplementen-package strong {
    color: #082848;
    font-size: 14px;
    line-height: 100%;
}
.supplementen-package em {
    color: rgba(8, 40, 72, 0.45);
    font-style: normal;
    transform: scale(.7);
}
.supplementen-package small {
    color: #082848;
    font-size: 8px;
}
.supplementen-package p {
    margin: 7px 0 00;
    color: rgba(8, 40, 72, 0.62);
    font-size: 9px;
    line-height: 140%;
}
.supplementen-mini-label {
    margin-top:2px;
    padding: 2px 5px;
    border-radius: 999px;
    background: rgba(53, 169, 112, 0.16);
    color: #078C43;
    font-size: 8px;
    font-weight: 700;
}
.supplementen-package-familie .supplementen-mini-label {
    background: rgba(244, 177, 47, 0.16);
    color: #E29512;
}

.supplementen-stacks a {
    display: block;
    padding: 22px 0 22px 10px;
    border-top: 1px solid #DDDDDC;
    text-decoration: none;
    
    color: #606060;
    font-size: 13px;
    font-weight: 400;
}
.supplementen-stacks a img {
    transform: translateY(.5px) translateX(1px);
    transition: all .2s ease;
}
.supplementen-stacks a:hover img {
    transform: translateY(.5px) translateX(3px);
}
.supplementen-stacks a:last-child {
    border-bottom: 1px solid rgba(8, 40, 72, 0.12);
}

.supplementen-all-link {
    display: block;
    padding: 12px 0 2px 0;
    border-top: 1px solid rgba(8, 40, 72, 0.12);
    text-decoration: none;
    color: #81587D;
    font-size: 13px;
    font-weight: 700;
}
.supplementen-all-link img {
    transition: all .2s ease;
}
.supplementen-all-link:hover img {
    transform: translateX(2px);
}
.supplementen-all-sub {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(8, 40, 72, 0.12);
    color: #989898;
    font-size: 11px;
    line-height: 170%;
}
.supplementen-filter {
    padding: 15px 0;
    border-bottom: 1px solid rgba(8, 40, 72, 0.12);
}
.supplementen-filter p {
    margin: 0 0 10px 0;
    color: #A8A8A8;
    font-size: 12px;
    font-weight: 600;
    line-height: 170%;
}
.supplementen-filter span {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    margin: 0 2px 6px 0;
    padding: 0 16px;
    border: 1px solid #A8A8A8;
    border-radius: 999px;
    
    color: #A8A8A8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.32px;
}
.supplementen-filter span {
    padding: 0 10px;
}

.supplementen-menu-footer {
    position: absolute;
    z-index: 3001;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 38px;
    padding: 0 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #d8d4ca;
}
.supplementen-menu-footer-inner {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.supplementen-menu-footer p {
    margin: 0;
    color: #141414;
    font-size: 10px;
    line-height: 155%;
}
.supplementen-menu-footer p u:hover {
    cursor: pointer;
}
.supplementen-menu-footer span {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap:30px;
}
.supplementen-menu-footer a {
    color: #606060;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12px;
    text-decoration-line: underline;
}
.supplementen-menu-footer a:last-child {
    color: #B64398;
}


/* HEADER DROPDOWN: THEMA'S
**************************************************/
.nav-dropdown[data-dropdown-menu="themas"] {
    background: linear-gradient(
        180deg,
        #ffffff 0,
        #ffffff 154px,
        #f7f3f0 154px,
        #f7f3f0 100%
    );
}

.themas-menu {
    width: 100%;
    background: transparent;
}

.themas-menu-header {
    padding-top: 40px;
    padding-right: clamp(20px, calc(20px + 40 * ((100vw - 1100px) / 340)), 60px);
    padding-bottom: 0px;
    padding-left: clamp(0px, calc(0px + 50 * ((100vw - 1100px) / 340)), 60px);

    background: transparent;
}
.themas-menu-header h2 {
    color: #082848;
    font-family: "Encode Sans Semi Expanded";
    font-size: clamp(24px, calc(24px + 4 * ((100vw - 1100px) / 340)), 30px);
    font-weight: 600;
    line-height: 120%;
}
.themas-menu-header p {
    font-size: clamp(12px, calc(12px + 2 * ((100vw - 1100px) / 340)), 14px);
    line-height: 150%;
    color: #082848;
    margin-top: 10px;
}

.themas-menu-cards {
    padding-top: 90px;
    padding-right: clamp(20px, calc(20px + 40 * ((100vw - 1100px) / 340)), 60px);
    padding-bottom: 65px;
    padding-left: clamp(0px, calc(0px + 50 * ((100vw - 1100px) / 340)), 60px);

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    background: transparent;
}
.themas-menu-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px 24px 15px 24px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.22);
    text-decoration: none;
    color: #082848;
    transition: .3s ease;
}
.themas-menu-card:hover {
    transform: translateY(-2px);
}
.themas-card-label {
    color: #141414;
    font-size: 15px;
    font-weight: 500;
    line-height: 120%;
}
.themas-card-label img {
    transform: translateY(5px);
    margin-right: 2px;
}
.themas-menu-card p {
    margin: 15px 0 18px 0;
    padding: 15px 0 15px 0;
    border-top: 1px solid #D8D3C8;  
    border-bottom: 1px solid #D8D3C8;

    color: #141414;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
}
.themas-menu-card ul {
    list-style: none;
    margin: 0 0 10px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid rgba(8, 40, 72, 0.12);
}
.themas-menu-card li {
    font-size: 11px;
    font-weight: 400;
    line-height: 145%;
    color: #2E2E2E;
}
.themas-menu-card li img {
    margin-right:3px;
    transform: translateY(1px);
}
.themas-menu-card span {
    color: #B64398;
    font-size: 11px;
    font-weight: 400;
    line-height: 145%;
}
.themas-menu-card span img {
    transform: translateY(1px);
    transition: .2s;
}
.themas-menu-card span:hover img {
    transform: translateY(1px) translateX(2px);
}


/* HEADER DROPDOWN: LIV
**************************************************/
.liv-menu {
    display: grid;
    grid-template-columns: 420px auto;
    background: transparent;
}

.liv-menu-left {
    background: linear-gradient(90deg, #082848 0%, #8033A6 60%, rgba(192, 96, 158, 0.85) 100%);
    padding: 26px 0 36px 0;
}
.liv-menu-embed {
    width: 380px;
    height: auto;
    margin-right: 85px;
    background: #fff;
    border:1px solid #D8D3C8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 10px 10px 0px rgba(4, 28, 52, .35);
}

.liv-menu-right {
    padding-top: 65px;
    padding-right: clamp(20px, calc(20px + 10 * ((100vw - 1100px) / 340)), 30px);
    padding-bottom: 65px;
    padding-left: clamp(40px, calc(40px + 50 * ((100vw - 1100px) / 340)), 90px);

    background: transparent;
}
.liv-menu-link {
    display: block;
    text-decoration: none;
    padding: 0 0 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(8, 40, 72, 0.12);
}
.liv-menu-link h3 {
    display: inline-block;
    width: fit-content;

    font-family: "Encode Sans Semi Expanded";
    font-size: 22px;
    font-weight: 600;
    line-height: 100%;
    padding-bottom: 4px;

    background: linear-gradient(90deg, #082848 0%, #8033A6 60%, #A455A8 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;

    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.liv-menu-link p {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #606060;
}

.liv-menu-buttons {
    display: flex;
    gap: 22px;
    padding-top: 15px;
}
.liv-menu-primary,
.liv-menu-secondary {
    min-width: 230px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14px;
    transition: 400ms cubic-bezier(0.19, 1, 0.22, 1);
}
.liv-menu-primary {
    color: #fff;
    background: linear-gradient(90deg, #C0609E 0%, #8C40B8 100%);
}
.liv-menu-primary img {
    transform: translateX(4px);
}
.liv-menu-secondary {
    color: #606060;
    border: 1px solid #606060;
    background: transparent;
}
/* lift */
.liv-menu-primary:hover,
.liv-menu-secondary:hover {
    transform: translateY(-4px);
}
/* press */
.liv-menu-primary:active,
.liv-menu-secondary:active {
    transform: translateY(-1px);
    transition-duration: 140ms;
}


/* ==================================================
   HOVER STATES
================================================== */
.system-menu-link:hover h3,
.kennis-menu-link:hover h3,
.supplementen-stack-link:hover,
.supplementen-main-link:hover,
.themas-menu-card:hover h3,
.liv-menu-link:hover h3 {
    color: #9d35b6;
}


/* ==================================================
   DROPDOWN STAGGER ANIMATIONS
================================================== */
.nav-dropdown .system-menu-left,
.nav-dropdown .system-menu-right,
.nav-dropdown .kennis-menu-left,
.nav-dropdown .kennis-menu-right,
.nav-dropdown .supplementen-menu-left,
.nav-dropdown .supplementen-packages,
.nav-dropdown .supplementen-stacks,
.nav-dropdown .supplementen-more,
.nav-dropdown .themas-menu-header,
.nav-dropdown .themas-menu-cards,
.nav-dropdown .liv-menu-left .liv-menu-embed,
.nav-dropdown .liv-menu-right {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 420ms ease,
        transform 420ms ease;
}
.nav-dropdown .liv-menu-left {
    opacity: 0;
    transition:
        opacity 420ms ease,
        transform 420ms ease;
}
.nav-dropdown.is-active .system-menu-left,
.nav-dropdown.is-active .kennis-menu-left,
.nav-dropdown.is-active .supplementen-menu-left,
.nav-dropdown.is-active .themas-menu-header,
.nav-dropdown.is-active .liv-menu-left .liv-menu-embed,
.nav-dropdown.is-active .liv-menu-left {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0ms;
}
.nav-dropdown.is-active .system-menu-right,
.nav-dropdown.is-active .kennis-menu-right,
.nav-dropdown.is-active .themas-menu-cards,
.nav-dropdown.is-active .liv-menu-right {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 100ms;
}

/* Supplementen 4-step stagger */
.nav-dropdown.is-active .supplementen-menu-left {
    transition-delay: 0ms;
}
.nav-dropdown.is-active .supplementen-packages {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 80ms;
}
.nav-dropdown.is-active .supplementen-stacks {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 160ms;
}
.nav-dropdown.is-active .supplementen-more {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 240ms;
}

/* Prevent delayed fade-out when closing */
.nav-dropdown:not(.is-active) .system-menu-left,
.nav-dropdown:not(.is-active) .system-menu-right,
.nav-dropdown:not(.is-active) .kennis-menu-left,
.nav-dropdown:not(.is-active) .kennis-menu-right,
.nav-dropdown:not(.is-active) .supplementen-menu-left,
.nav-dropdown:not(.is-active) .supplementen-packages,
.nav-dropdown:not(.is-active) .supplementen-stacks,
.nav-dropdown:not(.is-active) .supplementen-more,
.nav-dropdown:not(.is-active) .themas-menu-header,
.nav-dropdown:not(.is-active) .themas-menu-cards,
.nav-dropdown:not(.is-active) .liv-menu-left,
.nav-dropdown:not(.is-active) .liv-menu-right {
    transition-delay: 0ms;
}
  
  
/* HERO SECTION
**************************************************/
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-top: 160px;
    padding: 0 30px;
}
.hero-inner {
    max-width: 1380px;
    margin: 0 auto;
    
    padding-top: 75px;
    padding-right: clamp(20px, calc(20px + 20 * ((100vw - 1100px) / 340)), 40px);
    padding-bottom: 45px;
    padding-left: clamp(0px, calc(0px + 40 * ((100vw - 1100px) / 340)), 40px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.hero-inner::before {
    content: "";
    position: absolute;
    inset: -8%;
    z-index: -1;

    background-image:
        linear-gradient(90deg, rgba(8, 40, 72, 0.8) 0%, rgba(128, 51, 166, 0.8) 60%, rgba(192, 96, 158, 0.68) 100%),
        url("img/hero-bg.jpg");
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;

    transform: translateY(var(--hero-bg-y, 0px)) scale(1.04);
    transition: transform 80ms linear;
    will-change: transform;
}
  
/* WEBINAR PROMO */
.hero-webinar-wrap {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 10px;
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    z-index: 5;
    pointer-events: none;
}
.hero-webinar {
    position: relative;
    width: 525px;
    min-height: 87.5px;
    padding: 10px 13px 10px 13px;
    border-radius: 16px;
    background: rgba(8, 24, 48, 0.88);
    color: #fff;
    display: grid;
    grid-template-columns: 116px 1fr auto;
    align-items: center;
    gap: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
    pointer-events: auto;
    transform: translate(0, -150%);
    opacity: 0;
    animation: webinarSlideIn 800ms cubic-bezier(.2, .9, .2, 1) 400ms forwards;
}
@keyframes webinarSlideIn {
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.webinar-thumb {
    position: relative;
    width: 120px;
    height: 67px;
    overflow: hidden;
    background: #243449;
}
.webinar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.webinar-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.webinar-copy p {
    font-size: 8px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 5px;
}
.webinar-copy h3 {
    font-size: 10.2px;
    line-height: 100%;
    font-weight: 500;
    color: #F5C84C;
    margin-bottom: 8px;
}
.webinar-meta {
    display: flex;
    gap: 4px;
}
.webinar-meta > span {
    height: 20px;
    padding: 0 7px;
    border-radius: 4px;
    border:.7px solid #FFFFFF1F;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    font-size: 9px;
    color: rgba(255,255,255,0.65);
}
.webinar-meta span span {
    color: #fff;
    font-weight: 700;
    margin-right:2px;
}
.webinar-cta {
    height: 30px;
    padding: 0 15px;
    border: .7px solid #FFFFFF2E;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 9.5px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
}
.webinar-cta img {
    width: 9px;
    height: auto;
    transform: translateY(1px);
    transition: .2s;
}
.webinar-cta:hover img {
    transform: translateY(1px) translateX(2px);
}

/* HERO LEFT */
.hero-left {
    max-width: 600px;
    margin-left: 4%;
}
.hero-left h1 {
    font-size: clamp(50px, calc(50px + 6 * ((100vw - 1100px) / 340)), 56px);
    line-height: 110%;
    font-family: "Encode Sans Semi Expanded", sans-serif;
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}
.hero-sub {
    font-size: clamp(20px, calc(20px + 4 * ((100vw - 1100px) / 340)), 24px);
    margin-bottom: clamp(15px, calc(15px + 10 * ((100vw - 1100px) / 340)), 25px);
}
.hero-quote {
    position: relative;
    max-width: 500px;
    padding-left: 16px;
    font-size: 14px;
    margin-bottom: 70px;
    line-height: 150%;
    font-style: italic;
    
    color: transparent;
    background: linear-gradient(90deg, #FFFFFF 0%, #F2DCF0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F2DCF0 100%);
}
/* HERO buttons */
.hero-actions {
    display: flex;
    gap: 22px;
}
.hero-actions.show-on-mobile {
    display: none;
}
.hero-primary {
    height:56px;
    padding: 0 24px;
    border-radius: 10px;
    border: none;
    background: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #082848;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
}
.hero-secondary {
    height:56px;
    padding: 0 44px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.6);
    background: transparent;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}
/* button hover/active states */
.hero-primary,
.hero-secondary {
    position: relative;
    transition:
        transform 400ms cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 400ms cubic-bezier(0.19, 1, 0.22, 1),
        background-color 400ms cubic-bezier(0.19, 1, 0.22, 1),
        border-color 400ms cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, box-shadow;
}

/* lift */
.hero-primary:hover,
.hero-secondary:hover {
    transform: translateY(-4px);
}
/* PRIMARY = rich premium bloom */
.hero-primary:hover {
    box-shadow:
        0 28px 60px rgba(0,0,0,0.18),
        0 14px 28px rgba(0,0,0,0.10),
        0 6px 14px rgba(0,0,0,0.06),
        0 0 32px rgba(255,255,255,0.10),
        0 0 0 1px rgba(255,255,255,0.08) inset;
}
/* SECONDARY = softer atmospheric bloom */
.hero-secondary:hover {
    box-shadow:
        0 24px 52px rgba(0,0,0,0.14),
        0 12px 24px rgba(0,0,0,0.08),
        0 5px 12px rgba(0,0,0,0.05),
        0 0 26px rgba(255,255,255,0.08),
        0 0 0 1px rgba(255,255,255,0.12) inset;
}
/* press */
.hero-primary:active,
.hero-secondary:active {
    transform: translateY(-1px);
    transition-duration: 140ms;
}

/* CARD */
.hero-card {
    width: 380px;
    height: 590px;
    margin-right: clamp(20px, calc(20px + 65 * ((100vw - 1100px) / 340)), 85px);
    background: #fff;
    border:1px solid #D8D3C8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 10px 10px 0px rgba(4, 28, 52, .35);
}
.card-header {
    text-align: center;
    padding: 10px 16px 15px 16px;
    background: linear-gradient(90deg, #FFFFFF 0%, #F8F6F2 100%);
}
.liv-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    color: #C0609E;
}
.liv-sub {
    font-size: 12px;
    color: #81587D;
}
.card-status {
    background: #fff;
    font-size: 11px;
    font-weight: 700;
    color: #55C11B;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid #E8E7E7;
    border-bottom: 1px solid #E8E7E7;
}
.dot {
    width: 8px;
    height: 8px;
    background: #3dbe4a;
    border-radius: 50%;
}
.card-body {
    padding: 15px 20px;
}
.card-body h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 500;
    font-style: italic;
    margin-top: 3px;
    margin-bottom: 20px;
    text-align: center;

    background: linear-gradient(90deg, #082848 0%, #8033A6 60%, rgba(192, 96, 158, 0.85) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.card-options {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 16px;
}
.card-options button {
    border: 1px solid #D8D3C8;
    border-radius: 10px;
    padding: 8px 12px;
    text-align: left;
    cursor: pointer;
    font-size: 12px;
    color: #141414;
    background:
        url("img/arrow-right-dark.svg") no-repeat right 11px center / 10px 16px,
        linear-gradient(90deg, #FFFFFF 0%, #F8F6F2 100%);
}
.card-options button.active {
    background: url("img/arrow-right-dark-gradient.svg") no-repeat right 11px center / 10px 16px,
                linear-gradient(90deg, #FFFFFF 0%, #F2DCF0 100%);
}

.card-input {
    position: relative;
    display: flex;
    gap: 8px;
    margin-bottom: 5px;
}
.card-input input {
    flex: 1;
    padding: 10px 50px 10px 15px;
    font-size: 13px;
    border: 1px solid transparent;
    border-radius: 12px;
    background:
      linear-gradient(#fff, #fff) padding-box,
      linear-gradient(90deg, #082848 0%, #8033A6 60%, rgba(192, 96, 158, 0.85) 100%) border-box;
}
.card-input input::placeholder {
    opacity: 1;
    color: #989898;
}
.card-input button {
    position: absolute;
    top: 4.5px;
    right: 4.5px;
    width: 36px;
    height: 28px;
    border: none;
    border-radius: 10px;
    background: #1A5490;
    cursor: pointer;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding: 16px;
    background: #F8F6F2;
    border: 3px solid #fff;
}
.card-footer .tags {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 26px;
    border: .25px solid #B2B2B2;
    background: #fff;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #555;
    padding:0 5px 0 6px;
}
.card-footer .tags span {
    position: relative;
    margin-left: 17px;
    margin-right: 5px;
    padding: 4px 0;
}
.card-footer .tags span::before {
    content: '';
    position: absolute;
    left:-13px;

    width: 10px;
    height: 10px;
    border-radius: 10px;
}
.card-footer .tags span:nth-child(1) {
    color: #D93230;
}
.card-footer .tags span:nth-child(1)::before {
    background-color: #D93230;
}
.card-footer .tags span:nth-child(2) {
    color: #E8A020;
}
.card-footer .tags span:nth-child(2)::before {
    background-color: #E8A020;
}
.card-footer .tags span:nth-child(3) {
    color: #2A5FD4;
}
.card-footer .tags span:nth-child(3)::before {
    background-color: #2A5FD4;
}

/* download via */
.hero-card-extra {
    max-width: 380px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    padding: 30px 3px 0 8px;
}
.hero-card-extra p {
    font-size: 12px;
    color: rgba(253, 253, 253, 1);
}
.hero-card-extra-images {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}




/* TYPES SECTION
**************************************************/
.types-section {
    padding: 60px 30px 100px 30px;
}
.types-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0;
}
.types-title {
    font-size: 32px;
    line-height: 110%;
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;

    background: linear-gradient(90deg, #082848 0%, #8033A6 60%, rgba(192, 96, 158, 0.85) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(15px, calc(15px + 14 * ((100vw - 1100px) / 340)), 34px);
}
.types-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 26px 24px 24px;
    display: flex;
    flex-direction: column;
    transition: .3s ease;
}
.types-card:hover {
    transform: translateY(-2px);
}
.types-card::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    box-shadow: 4px 4px 0px rgba(189, 185, 185, 1);
}
.types-card-label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    font-weight: 500;
    color: #141414;
    margin-bottom: 16px;
}
.types-divider {
    border: none;
    border-top: 1px solid #D8D3C8;
    margin: 0 0 18px;
}
.types-card h3 {
    font-size: 15px;
    font-weight: 400;
    color: #141414;
    line-height: 130%;
    margin-bottom: 10px;
}
.types-card p {
    font-size: 12px;
    color: #606060;
    line-height: 145%;
    margin-bottom: 15px;
}
.types-items-divider {
    border: none;
    border-top: 1px solid #D8D3C8;
    margin: 0 0 15px;
}
.types-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}
.types-card ul li {
    font-size: 12px;
    color: #2E2E2E;
    display: flex;
    align-items: center;
    gap: 8px;
}
.types-link {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #D8D3C8;
    font-size: 12px;
    color: #1A5490;
    text-align: right;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.types-link img {
    transform: translateY(.5px);
    transition: .2s ease;
}
.types-link:hover img {
    transform: translateX(2px);
}




/* INTAKE SECTION
**************************************************/
.liv-intake-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: 8px;
    width: 100%;
    padding: 0 30px;
}
.liv-intake-inner {
    max-width: 1380px;
    position: relative;
    z-index: 1;
    min-height: 500px;
    margin: 0 auto;
    padding: 0;
    margin:0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 10px;
    border-radius: 12px;

    background-image: url("img/intake-bg.jpg");
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
}
.liv-intake-copy {
    max-width: 620px;
    margin-left: clamp(50px, calc(50px + 100 * ((100vw - 1100px) / 340)), 150px);
    transform: translateY(clamp(-110px, calc(-110px + 40 * ((100vw - 1100px) / 340)), -70px));
}
.liv-intake-copy img {
    margin-left: 3px;
}
.liv-intake-copy h2 {
    font-size: clamp(46px, calc(46px + 6 * ((100vw - 1100px) / 340)), 52px);
    line-height: 140%;
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-weight: 700;
}
.liv-intake-copy p {
    font-size: clamp(24px, calc(24px + 6 * ((100vw - 1100px) / 340)), 30px);
    line-height: 140%;
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-weight: 400;
}

.liv-intake-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 430px;
    justify-self: center;
    border: 1px solid rgba(255,255,255,1);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 24px 26px 32px;
    background: #144271;
    margin-top: 50px;
    margin-right: clamp(80px, calc(80px + 100 * ((100vw - 1100px) / 340)), 180px);
}
.progress {
    height: 3px;
    background: #082848;
    border-radius: 20px;
    margin-bottom: 8px;
    overflow: hidden;
}
.progress span {
    display: block;
    width: 20%;
    height: 100%;
    background: #C0609E;
    border-radius: inherit;
}
.step {
    font-size: 10px;
    color: #F8F6F2;
    margin-bottom: 24px;
    margin-left: 1px;
}
.liv-intake-card h3 {
    font-size: 22px;
    line-height: 120%;
    font-family: "Encode Sans Semi Expanded", sans-serif;
    color: #F8F6F2;
    font-weight: 600;
}
.card-sub {
    font-size: 12px;
    color: #F8F6F2;
    padding-bottom: 15px;
    border-bottom: 1px solid #FFFFFF33;
    margin-bottom: 21px;
}
.intake-options {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.intake-option {
    min-height: 64px;
    display: grid;
    grid-template-columns: 30px 1fr 40px;
    align-items: center;
    gap: 12px;
    padding: 0 18px 0 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.05);
  
  cursor:pointer;
  
  backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
  
  transition: all .2s ease;
}
.intake-option:hover {
    transform: scale(1.02);
}
.intake-option:active {
    transform: scale(0.98);
}
.intake-option.selected {
    min-height: 64px;
    display: grid;
    grid-template-columns: 30px 1fr 40px;
    align-items: center;
    gap: 12px;
    padding: 0 18px 0 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    
background: rgba(255,255,255,0.05);
}

.intake-option strong {
    display: block;
    font-size: 14px;
    line-height: 120%;
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-weight: 500;
    color: #F8F6F2;
    margin-bottom: 3px;
}
.intake-option span {
    display: block;
    font-size: 12px;
}
.option-icon {
    display: flex;
    align-items: center;
}
.check {
    display: none;
    align-items: center;
    justify-content: center;
}
.intake-option.selected .check {
    display: flex;
}
.liv-intake-disclaimer {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 46px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: clamp(7px, calc(7px + 3 * ((100vw - 1100px) / 340)), 10px);
}
.shield {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    min-width: 46px;
    height: 46px;
    background: #FFFFFF1A;
}




/* PEOPLE SECTION
**************************************************/
.people-grid-section {
    position: relative;
    margin: 72px 0 90px 0;
    padding: 0 30px;
}
.people-grid-section::before {
    pointer-events: none;
    content:'';
    position: absolute;
    z-index:10;
    left:0;
    bottom:-130px;
    width:100%;
    height:250px;
    
    background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #FCFBF9 55%,
    #FFFFFF 100% );
}
.people-grid-wrap {
    position: relative;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0;
}

/* heading */
.people-heading {
    margin-bottom: 26px;
}
.people-heading h2 {
    font-size: clamp(44px, calc(44px + 4 * ((100vw - 1100px) / 340)), 48px);
    line-height: 110%;
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-weight: 600;
    margin-bottom: 10px;

    color: #082848;
}
.people-heading h2 span {
    background: linear-gradient(90deg, #082848 0%, #8033A6 60%, rgba(116, 63, 97, 0.85) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.people-heading p {
    font-size: clamp(22px, calc(22px + 2 * ((100vw - 1100px) / 340)), 24px);
    line-height: 155%;
    color: #082848;
    margin-bottom: clamp(30px, calc(30px + 20 * ((100vw - 1100px) / 340)), 50px);
}

/* grid */
.people-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 250px);
    gap: 7px;
}

/* tiles */
.tile {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 20px;
    min-height: 0;

    background-position: top center;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
}
.tile:nth-child(1)  {
    grid-column: 1; grid-row: 1 / span 2;
    background-image: url("img/people-arne.jpg");
}
.tile:nth-child(2)  {
    grid-column: 2; grid-row: 1 / span 2;
    background-image: url("img/people-nathalie.jpg");
}
.tile:nth-child(3)  {
    grid-column: 3; grid-row: 1;
}
.tile:nth-child(4)  {
    grid-column: 4; grid-row: 1;
    background-image: url("img/people-karin.jpg");
}
.tile:nth-child(5)  {
    grid-column: 1; grid-row: 3;
    background-image: url("img/people-david.jpg");
}
.tile:nth-child(6)  {
    grid-column: 2; grid-row: 3;
}
.tile:nth-child(7)  {
    grid-column: 3; grid-row: 2 / span 2;
    background-image: url("img/people-joris.jpg");
}
.tile:nth-child(8)  {
    grid-column: 4; grid-row: 2 / span 2;
    background-image: url("img/people-allon.jpg");
}
.tile:nth-child(9)  {
    grid-column: 1; grid-row: 4;
}
.tile:nth-child(10) {
    grid-column: 2; grid-row: 4;
    background-image: url("img/people-lars.jpg");
}
.tile:nth-child(11) {
    grid-column: 3; grid-row: 4;
    background-image: url("img/people-sandra.jpg");
}
.tile:nth-child(12) {
    grid-column: 4; grid-row: 4;
}

/* photo/video cards */
.photo,
.video {
    position: relative;
    color: #fff;
}
.photo::before,
.video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.09%, #000000 97.97%);
    background-blend-mode: luminosity;
}

/* quote cards */
.quote {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.pink {
    color: #801367;
    background: #F2DCF085;
}
.mint {
    color: #0A524E;
    background: #4C939C1F;
}
.lilac {
    color: #606060;
    background: #E6E6E6;
}
.quote p {
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-weight: 400;
    font-size: clamp(20px, calc(20px + 4 * ((100vw - 1100px) / 340)), 24px);
    line-height: 120%;
    margin: 0 0 22px;
}
.quote strong {
    font-family: "Encode Sans Semi Expanded", sans-serif;
    margin-bottom: 4px;
    font-weight: 600;
    display: block;
    font-size: clamp(20px, calc(20px + 4 * ((100vw - 1100px) / 340)), 24px);
}
.quote span {
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 1100px) / 340)), 18px);
    color: #989898;
}

/* top tags */
.tag {
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 10px;

    display: inline-flex;
    align-items: center;

    height: 20px;
    padding: 0 9px;
    border-radius: 999px;

    background: #F8F6F2;
}
.tag span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 14%;
    text-transform: uppercase;

    background: linear-gradient(90deg, #082848 0%, #8033A6 60%, rgba(192, 96, 158, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
/* photo cards bottom texts */
.tile-bottom {
    position: absolute;
    width: 100%;
    max-width: 100%;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding:0 30px 20px 20px;
}
.tile-bottom h3 {
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-size: clamp(20px, calc(20px + 4 * ((100vw - 1100px) / 340)), 24px);
    font-weight: 600;
}
.tile-bottom h4 {
    margin: 0;
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 1100px) / 340)), 18px);
    line-height: 160%;
    font-weight: 400;
}
.tile-bottom p {
    margin: 5px 0 0 0;
    font-size: clamp(12px, calc(12px + 2 * ((100vw - 1100px) / 340)), 14px);
    line-height: 150%;
}
/* buttons */
.circle-btn,
.play-btn {
    position: absolute;
    z-index: 4;
    top: 5px;
    right: 20px;

    border: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    
    background:transparent;
}
.circle-btn-close {
    transform: rotate(45deg);
}
.tile .circle-btn img,
.tile .play-btn img {
    cursor: pointer;
    transition: all .1s ease;
}
.tile .circle-btn img:active,
.tile .play-btn img:active {
    transform: scale(.95);
}
.play-btn.sm {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.play-btn.sm img {
    width: 57px;
    height: 57px;
}




/* INSIGHTS SECTION
**************************************************/
.insights-section {
    padding: 5px 30px 0 30px;
    overflow: hidden;
    background-color: #fff;
}
.insights-inner {
    position: relative;
    max-width: 1380px;
    min-height: 565px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(90px, calc(90px + 70 * ((100vw - 1100px) / 340)), 120px);
    padding-right: 30px;
    border-radius: 12px;
    background: #F0FAFD;
}
.insights-inner::before {
    content:'';
    position: absolute;
    z-index:9;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 250px;

    border-radius: 12px;
    background: linear-gradient(0deg, rgba(240, 250, 253, 0.50) 0%, rgba(255, 255, 255, 0.00) 87.55%);
    pointer-events: none;
}
.insights-card-wrap {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    height: 100%;
    margin-left: clamp(30px, calc(30px + 70 * ((100vw - 1100px) / 340)), 100px);
}
.insights-card-wrap::before {
    content: '';
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 24px;
    width: clamp(430px, calc(430px + 50 * ((100vw - 1100px) / 235)), 480px);
    height: 465px;
    background: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 34px 35px;
    box-shadow: 0px 4px 44px 4px #0000000D;
}
.insights-card-wrap::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 48px;
    width: clamp(430px, calc(430px + 50 * ((100vw - 1100px) / 235)), 480px);
    height: 465px;
    background: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 34px 35px;
    box-shadow: 0px 4px 44px 4px #0000000D;
}

.expert-card {
    position: relative;
    z-index:3;
    width: clamp(430px, calc(430px + 50 * ((100vw - 1100px) / 235)), 480px);
    height: 465px;
    background: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 34px 35px;
    box-shadow: 0px 4px 44px 4px #0000000D;
    display: flex;
    flex-direction: column;
}


.peer-badge {
    position: absolute;
    top: -35px;
    right: -70px;
    z-index: 3;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    color: #fff;
    line-height: 97%;
    transform: rotate(11deg);

    background-image: url("img/peer-badge.svg");
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
}

.expert-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.expert-avatar {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0;

    background-image: url("img/peer-pol.png");
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
}
.expert-info span {
    display: block;
    color: #818181;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 4px;
}
.expert-info h3 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
}
.role-pill {
    display: inline-flex;
    align-items: center;
    height: 27px;
    padding: 0 12px;
    border-radius: 7px;
    background: #6CB545;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
}
.expert-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
    flex-shrink: 0;
}
.expert-meta {
    color: #082848;
}
.expert-meta strong,
.expert-meta span {
    display: block;
    font-size: 12px;
}

.main-seminar-btn,
.expert-row button {
    font-family: "DM Sans", sans-serif;
    height: 39px;
    padding: 0 18px 0 22px;
    border-radius: 8px;
    border: 1.5px solid #082848;
    background: #fff;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.main-seminar-btn img,
.expert-row button img {
    transform: translateY(1px);
}
.main-seminar-btn {
    font-size: 12px;
    border: 1px solid transparent;
    border-radius: 7px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(
            90deg,
            #082848 0%,
            #8033A6 60%,
            rgba(192, 96, 158, 0.85) 100%
        ) border-box;
}
.main-seminar-btn span {
    background: linear-gradient(
        90deg,
        #082848 0%,
        #8033A6 60%,
        rgba(192, 96, 158, 0.85) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.main-seminar-btn img,
.expert-row button img {
    transition: all .2s ease;
}
.main-seminar-btn:hover img,
.expert-row button:hover img {
    transform: translateY(1px) translateX(2px);
}

.expert-card h4 {
    color: #082848;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 10px 0;
    flex-shrink: 0;
}
.expert-scroll {
    position: relative;
    flex: 1;
    overflow-y: hidden;
    min-height: 0;
    padding-right: 8px;
}
.expert-list {
    display: flex;
    flex-direction: column;
}
.expert-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 0px;
    padding: 10px 0;
    border-bottom: 1px solid #e1e1e1;
}
.mini-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;

    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
}

.expert-row .mini-avatar {
    opacity: .75;
    transition: all .3s ease;
}
.expert-row:hover .mini-avatar {
    opacity: 1;
}
.expert-list .expert-row:nth-of-type(1) .mini-avatar {
    background-image: url("img/peer-xevi.png");
}
.expert-list .expert-row:nth-of-type(2) .mini-avatar {
    background-image: url("img/peer-iva.png");
}

.expert-row strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #082848;
}
.expert-row span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #606060;
}
.expert-row button {
    height: 27px;
    font-size: 8.5px;
    color: #082848;
    padding: 0 13px;
    border-radius: 5px;

    border: 0.74px solid #082848
}
.expert-row button img {
    width: 7px;
}
.expert-scrollbar {
    position: absolute;
    bottom: 35px;
    right: 10px;
    width:20px;
    height:145px;

    background-image: url("img/arrow-down-pink.svg");
    background-size: 10.5px auto;
    background-position: bottom center;
    background-repeat: no-repeat, no-repeat;
}
.expert-scrollbar::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 8.5px;
    width: 3px;
    height: 36px;
    border-radius: 3px;
    background-color: #D47CBD;
}
.expert-scrollbar::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 8.5px;
    width: 3px;
    height: 125px;
    border-radius: 3px;
    background-color: #F2DCF0;
}
.insights-copy {
    color: #082848;
    padding-top: 30px;
}
.insights-copy h2 {
    max-width: 400px;
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-size: clamp(36px, calc(36px + 2 * ((100vw - 1100px) / 340)), 38px);
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 20px;
}
.insights-copy p {
    max-width: 485px;
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 1100px) / 340)), 16px);
    font-weight: 400;
    line-height: 155%;

    margin-bottom:30px;
}
.insights-copy button {
    height: 52px;
    padding: 0 30px;
    border: 0;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1%;
    cursor: pointer;
    background: #337391;
}
.insights-copy button img {
    margin-left:3px;
    transition: all .2s ease;
    transform: translateY(1px);
}
.insights-copy button:hover img {
    transform: translateY(1px) translateX(2.5px);
}




/* SUPPLEMENT PICKS SECTION
**************************************************/
.picks-section {
    margin: 0 0 0 0;
    padding: 70px 0px 30px 0px;
    overflow: hidden;
    background-color: #fff;
}
.picks-inner {
    max-width: 1380px;
    margin: 0 auto;
}
.picks-heading {
    text-align: center;
    margin-bottom: 50px;
    color: #606060;
}
.picks-heading p {
    font-size: 14px;
    line-height: 155%;
    margin-bottom: 8px;
}
.picks-heading h2 {
    font-size: 28px;
    line-height: 120%;
    font-weight: 700;
}

.supplement-slider {
    position: relative;
}  
.supplement-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 60px;
  
    overflow-x: auto;
    overflow-y: hidden;
  
    margin: 0 auto;
    padding: 20px 100px 20px 30px;
  
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.supplement-cards::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
.supplement-card {
    position: relative;
    flex: 0 0 370px;
    width: 370px;
    min-width: 370px;
    height: 340px;
  
    border-radius: 10px;
    overflow: visible;
    color: #fff;
  
    cursor: pointer;
  
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.supplement-cards .supplement-card:nth-of-type(1) {
    background-image:url("img/picks-bg-man.jpg");
}
.supplement-cards .supplement-card:nth-of-type(2) {
    background-image:url("img/picks-bg-woman.jpg");
}
.supplement-cards .supplement-card:nth-of-type(3) {
    background-image:url("img/picks-bg-sleep.jpg");
}
/* gradient fades */
.supplement-slider::before,
.supplement-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 4;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.25s ease;
}
.supplement-slider::before {
    left: 0px;
    background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0) 100%
    );
}
.supplement-slider::after {
    right: 0px;
    background: linear-gradient(
    270deg,
    #fff 0%,
    rgba(255, 255, 255, 0) 100%
    );
}
.supplement-slider.at-start::before,
.supplement-slider:not(.is-scrollable)::before {
    opacity: 0;
}
.supplement-slider.at-end::after,
.supplement-slider:not(.is-scrollable)::after {
    opacity: 0;
}
.supplement-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
  
.supplement-content {
    position: relative;
    z-index: 3;
    padding: 35px 20px 0 20px;
}
.supplement-tag {
    display: inline-flex;
    align-items: center;
    height: 13.5px;
    padding: 0 4px;
    border-radius: 999px;
    font-size: 6.65px;
    font-weight: 700;
    letter-spacing: 14%;

    margin-bottom: 10px;
    background: #F8F6F2;
}
.supplement-tag span {
    background: linear-gradient(
        90deg,
        #082848 0%,
        #8033A6 60%,
        rgba(192, 96, 158, 0.85) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.purple-tag {
    color: #7F3178;
    background: #DCD2F0;
}
  
.supplement-content h3 {
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
}
.supplement-content h4 {
    font-size: 11.8px;
    line-height: 155%;
    font-weight: 700;
    margin-bottom: 10px;
}
.supplement-proof {
    position: relative;
    max-width: 285px;
    font-size: 11.8px;
    line-height: 140%;
    font-style: italic;

    padding-left: 13px;
    border-left: 2px solid #FFFFFF
}
.supplement-card-purple .supplement-proof {
    max-width: 160px;
}

.supplement-brand {
    position: absolute;
    left: 15px;
    bottom: 80px;
}
  
.dark-text {
    color: #582E54;
}
  
.supplement-price {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    height: 66px;
    padding: 0 12px;
    color: #fff;
    border-radius: 0 0 10px 10px;

    display: flex;
    justify-content: center;
    flex-direction: column;
}
.supplement-card-red .supplement-price {
    background: #D93230;
}
.supplement-card-yellow .supplement-price {
    background: #E8A020;
}
.supplement-card-purple .supplement-price {
    background: #7367CD;
}
  
.supplement-price strong {
    display: block;
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-size: 18.5px;
    font-weight: 600;
    line-height: 120%;
}
.supplement-price span {
    display: block;
    font-size: 10px;
    font-weight: 500;
    line-height: 155%;
}
  
.supplement-pack {
    position: absolute;
    right: -50px;
    bottom: -25px;
    z-index: 4;
    width: 200px;
}

.supplement-arrow {
    position: absolute;
    z-index: 6;
    top: 50%;
    width: 41px;
    height: 41px;
    border: 1.28px solid #EEEEEE;
    border-radius: 50%;
    background: #F8F6F2;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}
.supplement-arrow-left {
    left: clamp(-20px, calc(15px - 45 * ((100vw - 1300px) / 340)), 15px);
    transform: translateY(-50%);
}
.supplement-arrow-right {
    right: clamp(-20px, calc(15px - 45 * ((100vw - 1300px) / 340)), 15px);
    transform: translateY(-50%) scaleX(-1);
}
.supplement-arrow:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.supplement-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: clamp(40px, calc(40px + 20 * ((100vw - 1100px) / 340)), 60px);
    padding-top: 0;
    padding-right: clamp(30px, calc(30px + 20 * ((100vw - 1100px) / 340)), 50px);
    padding-bottom: 0;
    padding-left: clamp(35px, calc(35px + 40 * ((100vw - 1100px) / 340)), 75px);
}
.supplement-bottom p {
    font-size: 13px;
    line-height: 155%;
    color: #A8A8A8;
}
.supplement-bottom a {
    color: #A8A8A8;
    text-decoration: underline;
}
.supplement-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.supplement-btn {
    height: 52px;
    padding: 0 25px;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1%;
    cursor: pointer;
}
.supplement-btn img {
    transition: all .2s ease;
    transform: translateY(1px) translateX(2px);
}
.supplement-actions button:hover img {
    transform: translateY(1px) translateX(4px);
}
.supplement-btn.secondary {
    background: transparent;
    color: #606060;
    border: 1.5px solid #A8A8A8;
}
.supplement-btn.primary {
    color: #fff;
    border: none;
    background: linear-gradient(90deg, #BF609D 0%, #9947BF 100%);
}





/* KNOWLEDGE SECTION
**************************************************/
.knowledge-section {
    background: #fff;
    padding: 80px 30px 66px 30px;
}
.knowledge-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: clamp(0px, calc(0px + 80 * ((100vw - 1100px) / 340)), 80px);
    align-items: start;
}
  
.knowledge-intro {
    color: #082848;
}
.knowledge-intro h2 {
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-size: clamp(24px, calc(24px + 4 * ((100vw - 1100px) / 340)), 28px);
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 20px;
}
.knowledge-intro p {
    max-width: 240px;
    font-size: clamp(12px, calc(12px + 2 * ((100vw - 1100px) / 340)), 14px);
    line-height: 150%;
    margin-bottom: 15px;
}
.knowledge-intro a {
    display: inline-flex;
    align-items: center;
    color: #606060;
    font-size: clamp(11px, calc(11px + 2 * ((100vw - 1100px) / 340)), 13px);
    font-weight: 700;
    text-decoration: none;
}
.knowledge-intro a img {
    margin-left: 3px;
    opacity: .65;
    transition: .25s ease;
}
.knowledge-intro a:hover img {
    transform: translateX(2px);
}
  
.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 29px;
}
.knowledge-card {
    min-width: 0;
    text-decoration: none;
}

.knowledge-image-wrap {
    position: relative;
    height: clamp(270px, calc(270px + 90 * ((100vw - 1100px) / 340)), 360px);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
}
.knowledge-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;

    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat, no-repeat;

    transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1);
}
.knowledge-card:hover .knowledge-image-wrap::before {
    transform: scale(1.04);
}
.knowledge-grid .knowledge-card:nth-of-type(1) .knowledge-image-wrap::before {
    background-image: url("img/knowledge-artikel.jpg");
}
.knowledge-grid .knowledge-card:nth-of-type(2) .knowledge-image-wrap::before {
    background-image: url("img/knowledge-gerechten.jpg");
}
.knowledge-grid .knowledge-card:nth-of-type(3) .knowledge-image-wrap::before {
    background-image: url("img/knowledge-onderzoek.jpg");
}

.knowledge-image-wrap .knowledge-tag {
    position: absolute;
    left: 9px;
    bottom: 10px;
    height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    background: #F8F6F2;
    color: #b35ba2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 12%;

    background: #F8F6F2;
}
.knowledge-image-wrap .knowledge-tag span {
    background: linear-gradient(
    90deg,
    #C0609E 0%,
    #8C40B8 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
  
.knowledge-card h3 {
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 1100px) / 340)), 16px);
    font-weight: 500;
    line-height: 140%;
    color: #082848;
    margin-bottom: 5px;
}
.knowledge-card p {
    font-size: clamp(11px, calc(11px + 1 * ((100vw - 1100px) / 340)), 12px);
    line-height: 145%;
    color: #989898;
}



/* FAQ SECTION
**************************************************/
.faq-section {
    background: #fff;
    padding: 70px 30px 100px 30px;
}
.faq-inner {
    max-width: 1380px;
    margin: 0 auto;
}
.faq-list {
    display: flex;
    flex-direction: column;
}
  
.faq-item {
    overflow: hidden;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, #082848 0%, #8033A6 60%, rgba(192, 96, 158, 0.85) 100%) 1;
}
.faq-item:last-child {
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #082848 0%, #8033A6 60%, rgba(192, 96, 158, 0.85) 100%) 1;
}
  
.faq-toggle {
    width: 100%;
    min-height: clamp(120px, calc(120px + 20 * ((100vw - 1100px) / 340)), 140px);
    border: 0;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr 70px;
    align-items: center;
    padding: 0 15px 0 20px;
    color: #082848;
    cursor: pointer;
    text-align: left;
}
.faq-toggle span:first-child {
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-size: clamp(36px, calc(36px + 6 * ((100vw - 1100px) / 340)), 42px);
    font-weight: 500;
    line-height: 110%;
}
.faq-icon {
    justify-self: end;
    color: #C0609E;
    width: 50px;
    height: 50px;
    transform: rotate(0deg);
    transition: transform 300ms ease;
    transform-origin: center center;
    
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-icon span {
    font-family: "DM Sans", sans-serif !important;
    font-size: 75px !important;
    font-weight: 200 !important;
    transform: translateY(-5px);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answers {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 300ms ease;
    overflow: hidden;
}
.faq-answers > div {
    min-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;

    padding: 0 30px 0 20px;
    transition: padding 300ms ease;
}
.faq-item.active .faq-answers {
    grid-template-rows: 1fr;
}
.faq-item.active .faq-answers > div {
    padding: 25px 30px 90px 20px;
}

.faq-answer h4 {
    font-weight: 600;
    font-size: clamp(20px, calc(20px + 2 * ((100vw - 1100px) / 340)), 22px);
    line-height: 120%;
    margin-bottom: 15px;
}
.faq-answer p {
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 1100px) / 340)), 18px);
    line-height: 150%;
    padding: 0;
}




/* FOOTER CTA
**************************************************/
.cta-banner {
    width: 100%;
    padding: 27px 0;
    color: #fff;
    background: #14223E;
}
.cta-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-left h2 {
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-size: clamp(27px, calc(27px + 4 * ((100vw - 1100px) / 340)), 31px);
    font-weight: 600;
}
.cta-left p {
    font-size: clamp(12px, calc(12px + 2 * ((100vw - 1100px) / 340)), 14px);
    font-weight: 500;
}
.cta-right {
    display: flex;
    gap: 22px;
}
.cta-secondary {
    height: 52px;
    padding: 0 56px;
    
    border: 1.5px solid #082848;
    border-radius: 10px;
    
    font-family: "DM Sans", sans-serif;
    font-size:13px;
    font-weight: 700;
    color: #082848;
    letter-spacing: 1%;
    cursor: pointer;
    
    background: #F8F6F2;
}
.cta-primary {
    height: 52px;
    padding: 0 62px;
    border-radius: 10px;
    border: none;
    
    font-family: "DM Sans", sans-serif;
    font-size:13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1%;
    cursor: pointer;

    background: linear-gradient(90deg, #BF609D 0%, #9947BF 100%);
}
/* footer button hover/active states */
.cta-banner .cta-right button {
    position: relative;
    transition:
        transform 400ms cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 400ms cubic-bezier(0.19, 1, 0.22, 1),
        background-color 400ms cubic-bezier(0.19, 1, 0.22, 1),
        border-color 400ms cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, box-shadow;
}
.cta-banner .cta-right button:hover {
    transform: translateY(-4px);
}
.cta-banner .cta-right button:hover {
    box-shadow:
        0 10px 22px rgba(0,0,0,0.14),
        0 4px 10px rgba(0,0,0,0.08),
        0 0 0 1px rgba(255,255,255,0.06) inset;
}
.cta-banner .cta-right button:hover {
    box-shadow:
        0 10px 24px rgba(0,0,0,0.10),
        0 4px 12px rgba(0,0,0,0.06),
        0 0 0 1px rgba(255,255,255,0.10) inset;
}
.cta-banner .cta-right button:active {
    transform: translateY(-1px);
    transition-duration: 140ms;
}




/* FOOTER
**************************************************/
.footer {
    color: #fff;
    font-size: 14px;

    background: linear-gradient(180deg, #082848 0%, #472670 55%, rgba(192, 96, 158, 0.85) 100%);
}
.footer-top {
    padding: 50px 0 80px 0;
}
.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}
.footer-top .footer-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}
.footer-top .footer-inner .footer-col:first-of-type {
    margin-left: 20px;
}
.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-col a {
    display: block;
    font-size: 11px;
    line-height: 240%;
    color: #F8F6F2;
    text-decoration: none;
}
.footer-col a:hover {
    color: #fff;
}
.footer-col img {
    margin-top: 10px;
    margin-right: 15px;
}
.footer-middle {
    max-width: 1380px;
    margin:0 auto;
}
.footer-badges {
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    font-size: 11px;
    color: #E5E5E5;
    padding: 16px 0px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}
.footer-badges span:first-of-type {
    padding-left: 20px;
}
.footer-badges span:last-of-type {
    padding-right: 20px;
    justify-self: end;
}
.footer-bottom {
    font-size: 11px;
    color: #F8F6F2;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px 16px 30px;
}
.footer-right {
    display: flex;
    gap: 16px;
    align-items: center;
}
.footer-right {
    color: #eee;
}
.footer-right a {
    color: #eee;
    text-decoration: none;
    margin: 0 -5px;
}
.footer-right .footer-lang {
    margin-left: 20px;
}
.footer-right .footer-lang span {
    color: #989898;
}
.footer-brand {
    padding: 60px 0 50px 0;
}
.footer-brand a img {
    width: 155px;
    height: auto;
}




/* START OPTIONS SECTION
**************************************************/
.start-options-section {
    background: #fff;
    padding: 0 30px 65px 30px;
    color: #082848;
}
.start-options-inner {
    max-width: 1340px;
    margin: 0 auto;
}
  
.start-options-heading {
    text-align: center;
    margin-bottom: 50px;
}
.start-options-heading h2 {
    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-size: clamp(32px, calc(32px + 4 * ((100vw - 1100px) / 340)), 36px);
    font-weight: 600;
    line-height: 115%;
    background: linear-gradient(90deg, #082848 0%, #8033A6 60%, rgba(116, 63, 97, 0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}
.start-options-heading p {
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 1100px) / 340)), 18px);
    line-height: 160%;
}
  
.start-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(15px, calc(10px + 9 * ((100vw - 1100px) / 340)), 19px);
    align-items: stretch;
}
.start-options-grid button img {
    transition: all .2s ease;
    transform: translateX(0);
}
.start-options-grid button:hover img {
    transform: translateX(2px);
}
.start-card {
    position: relative;
    min-height: 520px;
    border: 1px solid #989898;
    border-radius: 12px;
    padding-top: 21px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.start-number {
    font-size: 11px;
    font-weight: 700;
    color: #9a9a9a;
    letter-spacing: 18%;

    margin-left: 10px;
    margin-bottom: 15px;
}
.start-brand {
    margin-left: 10px;
}
.start-card h3 {
    font-size: 14px;
    font-weight: 500;
    color: #606060;

    margin-top: -7px;
    margin-left: 12px;
    margin-bottom: 30px;
}
.start-card:nth-of-type(2) h3 {
    color:#B64398;
}
.start-card:nth-of-type(4) h3 {
    color:#082848;
}
.start-card hr {
    width: calc(100% - 20px);
    border: 0;
    border-top: 1px solid #999;
    margin: 0px auto 0px auto;
}
.start-price {
    min-height: 80px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    font-family: "Encode Sans Semi Expanded", sans-serif;
    font-size: 30px;
    line-height: 120%;
    color: #606060;
    font-weight: 600;

    margin-left: 25px;
}
.start-price small {
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
    margin-left: 5px;
}
.start-price > span {
    width: 100%;
    font-size: 10px;
    font-weight: 400;
    margin-top: -25px;
}
.start-card ul {
    list-style: none;
    margin: 0;
    padding: 0 0 24px 0;
    color: #606060;
    font-size: 14px;
    line-height: 180%;

    margin-top: 20px;
    margin-left: 25px;
}

.start-btn {
    margin-top: auto;
    width: 100%;
    height: 50px;
    border-radius: 10px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.start-btn.outline {
    border: 1.5px solid #082848;
    background: #fff;
    color: #082848;
}
.pink-btn {
    border: none;
    background: #bd3f9e;
    color: #fff;
}
.blue-btn {
    border: none;
    background: #1d5f9e;
    color: #fff;
}

.start-pill {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 25px;
    padding: 0 15px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 300;

    margin-top:-13px;
    margin-left: 10px;
    margin-bottom: 16px;
}
.pink-pill {
    background: #bd3f9e;
    color: #fff;
}

.start-featured {
    min-height: 540px;
    margin-top: -6px;
    margin-bottom:-6px;
    color: #fff;
    border-color: transparent;

    background: linear-gradient(90deg, #082848 0%, #1A5490 100%);
}
.start-featured .start-number,
.start-featured ul,
.start-featured .start-price,
.start-featured hr {
    color: #fff;
    border-color: #fff;
}
.start-card:nth-of-type(1) hr:first-of-type {
    margin-top: 30px;
}
.start-card:nth-of-type(2) > hr {
    margin-top: 2px;
}
.start-card:nth-of-type(3) > hr {
    margin-top: 4px;
}
.featured-logo {
    margin-left: 10px;
    margin-bottom: 34px;
}

.white-pill {
    background: #fff;
    color: #082848;
}
.white-btn {
    border: none;
    background: #fff;
    color: #082848;
}

.ribbon {
    position: absolute;
    top: 27px;
    right: 0;
    width: 170px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ribbon img {
    transform: translateX(35px);
}

.family-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    color: #1A5490;

    margin-left: 10px;
    margin-bottom: 5px;
}
.blue-pill {
background: #1A5490;
color: #fff;
}
.family-price {
    min-height: 74px;
}
.family-price span {
    width: auto;
    font-size: 14px;
    margin: 0 8px 0 0;
    font-weight: 400;
}
.family-price em {
    width: 100%;
    padding-left: 36px;
    margin-top: -20px;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
}
.family-table {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #8a8a8a;
    font-size: 11px;
    padding-left: 15px;
    padding-right: 15px;
}
.family-table div {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 6px;
    min-height: 26px;
    border-top: 1px solid #E3E3E3;
}
.family-table div:last-child {
    border-bottom: 1px solid #E3E3E3;
}
.family-table span,
.family-table p,
.family-table strong {
    font-size: 11px;
    color: #606060;
    font-weight: 400;
    white-space: nowrap;
}
.family-table strong {
    font-size: 9px;
    color: #989898;
    font-weight: 600;
}
.family-table div:first-of-type span {
    padding-left: 2px;
    color: #989898;
}
.family-table span {
    display: flex;
    justify-content: center;
    align-items: center;
}
.family-table span img:first-of-type {
    margin-right: 1px;
}
.family-table span img:last-of-type {
    margin-left: 3px;
}
.family-table div:first-of-type p {
    color: #989898;
}

.start-options-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 30px;
    color: #A8A8A8;
    font-size: 13px;
    line-height: 135%;
}
.start-options-footer a {
    color: #606060;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1%;
    text-decoration: none;
    white-space: nowrap;

    transition: all .2s ease;
    transform: translateX(0);
}
.start-options-footer a:hover img {
    transform: translateX(2px);
}



/* SWITCH TO PORTRAIT NOTICE (mobile)
**************************************************/
/* logo on portrait notice */
.nutrined-portrait-notice-wrapper > img {
    position:fixed;
    display:block;
    top:25px;
    left:26px;
    width:auto;
    height:60px;
}
/* hide by default */
.nutrined-portrait-notice-wrapper {
    display:none;
}
/* show under specified circumstances */
@media (orientation: landscape) and (hover: none) and (pointer: coarse) and (max-height:650px) {
    .nutrined-portrait-notice-wrapper {
        display:table;
        position:fixed;
        z-index:9999999999;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background-color:rgba(20,34,62,.85);

        -webkit-backdrop-filter:blur(25px);
        backdrop-filter:blur(25px);
    }
}

/* white device */
.nutrined-portrait-device {
    position:absolute;
    top:calc(50% - 35px);
    left:0;
    right:0;
    width:90px;
    height:50px;
    border:3px solid #ccc;
    border-radius:6px;
    margin:0 auto 0 auto;

    transform-origin:bottom right;

    animation-name:rotate-device;
    animation-duration:4s;
    animation-timing-function:ease-in-out;
    animation-iteration-count:infinite;
    animation-fill-mode:forwards;
}
@keyframes rotate-device {
    0% { opacity:0; transform:scale(1); }
    10%, 15% { opacity:1; transform:scale(1); }
    30% { opacity:1; transform:rotate(92deg) translateY(50px) translateX(0px); }
    35%, 90% { opacity:1; transform:rotate(90deg) translateY(50px) translateX(0px); }
    100% { opacity:0; transform:rotate(90deg) translateY(50px) translateX(0px); }
}

/* grayed out device */
.nutrined-portrait-device-back {
    position:absolute;
    z-index:-1;
    top:calc(50% - 35px);
    left:0;
    right:0;
    width:90px;
    height:50px;
    border:3px solid #fff;
    border-radius:6px;
    margin:0 auto;
    box-sizing:border-box;
    opacity:.1;

    transform-origin:bottom right;

    animation-name:rotate-device-back;
    animation-duration:4s;
    animation-timing-function:ease-in-out;
    animation-iteration-count:infinite;
    animation-fill-mode:forwards;
}
@keyframes rotate-device-back {
    0%, 15% { opacity:.1; transform:translateY(0px) translateX(0px); }
    35% { opacity:.1; transform: translateY(0px) translateX(-15px); }
    95% { opacity:.1; transform: translateY(0px) translateX(-15px); }
    100% { opacity:0; transform:translateY(0px) translateX(-15px); }
}
/* buttons for both devices */
.nutrined-portrait-device::before,
.nutrined-portrait-device-back::before {
    content:'';
    position:absolute;
    width:6px;
    height:6px;
    background-color:#fff;
    top:calc(50% - 3px);
    right:calc(10% - 3px);
    border-radius:5px;
}
/* rotate device text */
.nutrined-portrait-notice {
    display:table-cell;
    vertical-align:middle;
    text-align:center;
    color:#E7E5DE;
}
.nutrined-portrait-notice span {
    display:block;
    font-size:16px;
    margin-top:100px;
    opacity:.75;
}


/* SWITCH TO LANDSCAPE NOTICE (iPad)
**************************************************/
/* logo on landscape notice */
.nutrined-landscape-notice-wrapper > img {
    position:fixed;
    display:block;
    top:20px;
    left:20px;
    height:auto;
    height:80px;
}
/* hide by default */
.nutrined-landscape-notice-wrapper {
    display:none;
}
/* show under specified circumstances */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .nutrined-landscape-notice-wrapper {
        display:table;
        position:fixed;
        z-index:9999999999;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background-color:rgba(20,34,62,.85);

        -webkit-backdrop-filter:blur(25px);
        backdrop-filter:blur(25px);
    }
}

/* white device */
.nutrined-landscape-device {
    position:absolute;
    top:calc(50% - 55px);
    left:0;
    right:0;
    width:90px;
    height:70px;
    border:3px solid #ccc;
    border-radius:6px;
    margin:0 auto 0 auto;

    transform-origin:center center;

    animation-name:rotate-device-landscape;
    animation-duration:4s;
    animation-timing-function:ease-in-out;
    animation-iteration-count:infinite;
    animation-fill-mode:forwards;
}
@keyframes rotate-device-landscape {
    0% { opacity:0; transform:rotate(90deg) translateY(0px) translateX(0px); }
    10%, 15% { opacity:1; transform:rotate(90deg) translateY(0px) translateX(0px); }
    30% { opacity:1; transform:rotate(-2deg) translateY(0px) translateX(0px); }
    35%, 90% { opacity:1; transform:rotate(0deg) translateY(0px) translateX(0px); }
    100% { opacity:0; transform:rotate(0deg) translateY(0px) translateX(0px); }
}

/* grayed out device */
.nutrined-landscape-device-back {
    position:absolute;
    z-index:-1;
    top:calc(50% - 55px);
    left:0;
    right:0;
    width:90px;
    height:70px;
    border:3px solid #fff;
    border-radius:6px;
    margin:0 auto;
    box-sizing:border-box;
    opacity:.1;

    transform-origin:center;

    animation-name:rotate-device-back-landscape;
    animation-duration:4s;
    animation-timing-function:ease-in-out;
    animation-iteration-count:infinite;
    animation-fill-mode:forwards;
}
@keyframes rotate-device-back-landscape {
    0%, 15% { opacity:.1; transform:rotate(90deg) translateY(0px) translateX(0px); }
    35% { opacity:.1; transform:rotate(90deg) translateY(0px) translateX(-10px); }
    95% { opacity:.1; transform:rotate(90deg) translateY(0px) translateX(-10px); }
    100% { opacity:0; transform:rotate(90deg) translateY(0px) translateX(-10px); }
}

/* buttons for both devices */
.nutrined-landscape-device::before,
.nutrined-landscape-device-back::before {
    content:'';
    position:absolute;
    width:6px;
    height:6px;
    background-color:#fff;
    top:calc(50% - 3px);
    right:calc(10% - 3px);
    border-radius:5px;
}

/* rotate device text */
.nutrined-landscape-notice {
    display:table-cell;
    vertical-align:middle;
    text-align:center;
    color:#E7E5DE;
}
.nutrined-landscape-notice span {
    display:block;
    font-size:16px;
    margin-top:100px;
    opacity:.75;
}