/* RESET STYLES */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'instrument sans', sans-serif;
}

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

ul {
    list-style: none;
}

body {
    background-color: #f5f7fa;
    font-family: 'Instrument Sans', sans-serif;
    padding-top: 80px;
    box-sizing: border-box;
}

/* HEADER STYLES */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.bottom__bar {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: opacity 250ms ease;
}

.bottom__bar__content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;

}

.logo {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.logo__img {
    height: 50px;

}

.logo__text {
    color: #000;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.5px;

}

.nav {
    padding-right: 40px;
}

.nav__list {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.nav__item {
    display: flex;
    align-items: center;
}

.nav__link {
    color: rgba(0, 0, 0, 1);
    transition: all 0.2s;
    font-size: 16px;
    
}

.nav__link--button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.nav__link:hover{
    color: rgba(0, 0, 0, 0.75);
}

.nav .btn {
    color: #fff;
    background-color: #e77e1d;
    padding: 12px 30px;
    font-family: 'Instrument Sans', sans-serif;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;

}

.nav .btn:hover{
    background-color: #de8129;
}

/* Language Selector */
.language__selector {
    position: relative;
    margin-left: 16px;
    display: flex;
    align-items: center;
}

.language__button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px; /* Match the height of other nav elements */
}

.language__button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.language__icon {
    width: 20px;
    height: 20px;
}

.language__dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 4px;
}

.language__dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language__option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.2s;
}

.language__option:hover {
    background-color: #f5f5f5;
}

.language__option:first-child {
    border-radius: 8px 8px 0 0;
}

.language__option:last-child {
    border-radius: 0 0 8px 8px;
}

.language__flag {
    margin-right: 10px;
    font-size: 16px;
}

.language__text {
    font-weight: 500;
}

.hamburger {
    display: none;

}

.bar {
    height: 2px;
    background-color: #000;
    width: 27px;
    margin: 5px 0;
    opacity: 0.8;
    transition: all 0.3s;

}

.scroll-lock {
    overflow: hidden;
}

.nav.is-transitioning {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.no-transition {
    transition: none !important;
}

.nav--open {
    transform: translateX(0%) !important;

}

.hamburger--open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);

}

.hamburger--open .bar:nth-child(2) {
    opacity: 0;

}

.hamburger--open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);

}


body.menu-open--mega .bottom__bar { opacity: 0; }

/* HERO STYLES */

.permanent__button {
    position: fixed;
    bottom: 12px;
    right: 20px;
    z-index: 1001;
    color: #fff;
    background-color: #e77e1d;
    padding: 12px 30px;
    border-radius: 1000px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: .8rem;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    border: 1px solid #e77e1d
}

.permanent__image {
    height: 36px;
}
.hero {
    /* height: 90vh;
    min-height: 800px;
    max-height: 1000px; */
    background: 
        radial-gradient(ellipse 800px 600px at 50% 50%, rgba(160, 200, 255, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 95% 50%, rgba(255, 180, 140, 0.4) 0%, transparent 70%),
        #fff;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    transition: opacity 0.3s ease-out;
    min-height: 80vh;
    justify-content: center;
}

.hero__image-and-below {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image-and-below-content {
    position: relative;
    background: white;
}

.hero__heading {
    width: 100%;
    text-align: center; /* Cross-browser center (Safari/Chrome) */
}

.heropart1 {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: opacity 0.6s ease-in-out;
    width: 100%;
    text-align: center;
}


h1 {
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    width: 100%;

}

.hero__subheading {
    font-size: 1rem;
    color: #555555;
    width: 100%;
    text-align: center;
}

.hero__steps {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.step1 {
    display: flex;
    gap: 10px;
    align-items: center;

}

.step2 {
    display: flex;
    gap: 10px;
    align-items: center;

}

.step3 {
    display: flex;
    gap: 10px;
    align-items: center;

}

.step__number {
    background-color: #e77e1d;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.hero__buttons {
    display: flex;  
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.button1 {
    color: #fff;
    background-color: #e77e1d;
    padding: 12px 30px;
    border-radius: 10px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: .8rem;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    border: 1px solid #e77e1d

}

.button1:hover {
    background-color: #d36d0f;
    color: #fff;
}

.button2 {
    color: #e77e1d;
    background-color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    border: 1px solid #D9D9D9;

}

.button2:hover {
    background-color: #eeeeee;
    color: #e77e1d;
}

.hero__image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.image__container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10pxww;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image__container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    max-height: 500px;
}

/* @media only screen and (max-width: 840px) {
    .hero h1 {
        font-size: 3rem;
    }

    .step__text {
    font-size: 0.8rem;
}

    .step__number {
    background-color: #e77e1d;
    width: 32px;
    height: 32px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

}
} */

@media only screen and (max-width: 640px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 0.9rem;
    }
}

/* BRANDSLIDER */

.brandslider {
    width: 100%;
    margin: 0 auto;

}

.brandslider__container {
    margin-block: 32px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;

}

.brandslider__hide__left {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 128px;
    background: linear-gradient(to right, #fff 0%, #fff 40%, transparent 100%);
    z-index: 10;
    pointer-events: none;
    
}

.brandslider__hide__right{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 128px;
    background: linear-gradient(to left, #fff 0%, #fff 40%, transparent 100%);
    z-index: 10;
    pointer-events: none;

}

.brandslider__track {
    display: flex;
    animation: scroll 20s linear infinite;

}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logos__slide {
    display: flex;
    gap: 100px;
    padding: 48px 50px;
    flex-shrink: 0;
    align-items: center;

}

.logos__slide img {
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

/* FOR JS */

.nav.is-transitioning {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.no-transition {
    transition: none !important;
}

.nav--open {
    transform: translateX(0%) !important;

}

.hamburger--open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);

}

.hamburger--open .bar:nth-child(2) {
    opacity: 0;

}

.hamburger--open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);

}

/* MEGA MENU (top slide-in floating sheet) */

.mega__menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility 0s linear .25s; 
}

.mega__menu.is-open { opacity: 1; visibility: visible; transition: opacity .25s ease, visibility 0s linear 0s; }

.mega__menu__close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: none;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 20px;
    cursor: pointer;
    z-index: 2; 
}

/* FAQ SECTION */
.faq {
    background: #fff;
    padding: 60px 0;
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.faq__title {
    font-size: 32px;
    margin-bottom: 24px;
}

/* FAQ Group (collapsible sections) */
.faq__group {
    margin-bottom: 20px;
    border: 2px solid #005bff;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.faq__group__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 22px;
    color: #005bff;
    background: rgba(0, 91, 255, 0.05);
}

.faq__group__header:hover {
    background: rgba(0, 91, 255, 0.1);
}

.faq__group__content {
    padding: 16px 20px 8px;
}

/* Individual FAQ items (nested) */
.faq__item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
}

/* Hide default marker */
summary::-webkit-details-marker { display: none; }
summary { list-style: none; }

.faq__answer { padding: 0 20px 16px; color: #555; }

.faq__arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: rotate(45deg);
    transition: transform .2s ease;
    flex-shrink: 0;
}

details[open] > .faq__arrow,
details[open] > summary .faq__arrow {
    transform: rotate(225deg);
}

.mega__menu__sheet {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(560px, 80vh, 780px);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    overflow: hidden; /* sheet owns its scrolling on mobile */
}

.mega__menu.is-open .mega__menu__sheet { transform: translateY(0); }

.mega__menu__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 30px 60px;
}

/* Desktop: compacter verticale spacing in mega menu */
@media (min-width: 1000px) {
    .mega__menu__inner {
        padding: 80px 30px 40px; /* was 120/60 */
    }
    .mega__menu__header h2 {
        margin-bottom: 16px; /* was 24 */
    }
    .mega__menu__col__title {
        margin-bottom: 12px; /* was 20 */
    }
    .mega__menu__links {
        gap: 12px; /* was 16 */
    }
}
.mega__menu__header h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 320ms ease, transform 320ms ease;
    transition-delay: 220ms; 
}

.mega__menu__footer {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.mega__menu__overview__btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    background: linear-gradient(135deg, #005bff 0%, #0047cc 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 320ms ease;
    box-shadow: 0 4px 14px rgba(0, 91, 255, 0.3);
    opacity: 0;
    transform: translateY(-12px);
    transition-delay: 660ms;
}

.mega__menu.is-open .mega__menu__overview__btn {
    opacity: 1;
    transform: translateY(0);
}

.mega__menu__overview__btn:hover {
    opacity: 0.9;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.mega__menu.is-closing .mega__menu__overview__btn {
    transition: opacity 220ms ease, transform 220ms ease;
    transition-delay: 0ms !important;
}

.mega__menu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
}

.mega__menu__col__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 320ms ease, transform 320ms ease;
}

.mega__menu__links {
    display: grid;
    gap: 16px;
}

.mega__menu__links a {
    color: #111;
    text-decoration: none;
    font-size: 1.05rem;
}

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

/* Reveal titles when open */
.mega__menu.is-open .mega__menu__header h2,
.mega__menu.is-open .mega__menu__col__title {
    opacity: 1;
    transform: translateY(0);
}


.mega__menu.is-open .mega__menu__col:nth-child(1) .mega__menu__col__title { transition-delay: 280ms; }
.mega__menu.is-open .mega__menu__col:nth-child(2) .mega__menu__col__title { transition-delay: 320ms; }
.mega__menu.is-open .mega__menu__col:nth-child(3) .mega__menu__col__title { transition-delay: 360ms; }
.mega__menu.is-open .mega__menu__col:nth-child(4) .mega__menu__col__title { transition-delay: 400ms; }


.mega__menu__links li {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 300ms ease, transform 300ms ease;
}

.mega__menu.is-open .mega__menu__links li { opacity: 1; transform: translateY(0); }


.mega__menu.is-open .mega__menu__links li:nth-child(1) { transition-delay: 420ms; }
.mega__menu.is-open .mega__menu__links li:nth-child(2) { transition-delay: 450ms; }
.mega__menu.is-open .mega__menu__links li:nth-child(3) { transition-delay: 480ms; }
.mega__menu.is-open .mega__menu__links li:nth-child(4) { transition-delay: 510ms; }
.mega__menu.is-open .mega__menu__links li:nth-child(5) { transition-delay: 540ms; }
.mega__menu.is-open .mega__menu__links li:nth-child(6) { transition-delay: 570ms; }
.mega__menu.is-open .mega__menu__links li:nth-child(7) { transition-delay: 600ms; }
.mega__menu.is-open .mega__menu__links li:nth-child(8) { transition-delay: 630ms; }


.mega__menu.is-closing .mega__menu__header h2,
.mega__menu.is-closing .mega__menu__col__title {
    transition: opacity 220ms ease, transform 220ms ease;
    transition-delay: 0ms !important;
}

.mega__menu.is-closing .mega__menu__links li {
    transition: opacity 200ms ease, transform 200ms ease;
    transition-delay: 0ms !important;
}


.scroll-lock {
    overflow: hidden;
}


body.menu-open--mega .bottom__bar { opacity: 0; }

/* HOW DUTCHUB WORKS STYLES */

.how__dutchub__works {
    min-height: 600px;
    background-color: white;
}

.how__dutchub__works__content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;

}

.works__heading h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    font-family: 'instrument sans', sans-serif;
    margin: 0 0 12px 0;
    

}

.works__subheading {
    text-align: center;
    font-size: 1.1rem;

}

.works__grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    padding: 80px 0;
}

.works__grid__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: white;
    width: 300px;
    height: 240px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(231, 126, 29, 0.2);


}

.works__grid__item .works__grid__item:nth-child(1) {
    align-self: flex-end;

}

.works__grid__item .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.item__image img {
    width: 48px;

}

.item__title {
    font-size: 1.2rem;
    text-align: center;
    font-weight: 500;

}

.item__text {
    font-size: 1rem;
    text-align: center;
    padding: 0 20px;
}

.button a {
    background-color: white;
    border: none;
    color: #e77e1d;
    font-size: 1rem;
    font-family: 'instrument sans', sans-serif;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.button a:hover {
    cursor: pointer;
}

/* PERFORMANCE STYLES */

.performance {
    height: 800px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.performance__content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;

}

/* removed empty ruleset .performance1 */

.performance__heading h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    font-family: 'instrument sans', sans-serif;
    margin: 0 0 12px 0;

}

.performance__subheading {
    text-align: center;
    font-size: 1.1rem;

}

.performance__subheading #highlight {
    color: #005bff;
}

/* removed empty ruleset .performance__subheading p */

.performance__grid {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 0 0 0;

}

.performance__item__container {
    width: 50%;
    max-width: 1200px;
    height: 200px;

}

.performance__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    background-color: white;
    width: 400px;
    height: 160px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 91, 255, 0.2);

}

#item1 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;

}

#item2 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;

}

#item3 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;

}

#item4 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

}

.performance__item__number {
    font-size: 2rem;
    padding: 0 0 8px 0;
    font-weight: 500;

}

.performance__item__text {
    font-size: 1rem;
    

}

.performance__content .quote {
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
    color: #555555;
    margin-top: 80px;
}

/* WHY CHOOSE DUTCHUB STYLES */

.why-choose {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why-choose__content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    max-width: 100%;
}

.why-choose__left-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
}

.why-choose__right-column {
    flex: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.why-choose__right-column img {
    height: 500px;
}

@media only screen and (max-width: 600px) {
    .why-choose__right-column img {
        max-width: 300px;
        height: 100%;
    }
}

.why-choose__title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    font-family: 'instrument sans', sans-serif;
    margin-bottom: 50px;
    color: #000;
}

.placeholder-box {
    width: 100%;
    height: 480px;
    background-color: #f2f2f2;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.reason-item {
    margin-bottom: 30px;
    max-width: 100%;
}

.reason-item__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.reason-item__icon {
    font-size: 1.8rem;
    margin-right: 15px;
    color: #e57373;
    flex-shrink: 0;
}

.reason-item__description {
    font-size: 1.1rem;
    color: #555;
    max-width: 100%;
    margin-left: 55px;
    padding-right: 10px;
}

span img {
    width: 24px;
    height: 24px;
}

/* CTA END STYLES*/



body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--dark-bg);
    color: var(--text-color);
}

.workwithus {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 30px;
    min-height: 40vh;
    background-color: BLACK;
    color: white;
}

.workwithus__content {
    max-width: 800px;
}

.workwithus__content h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    font-family: 'instrument sans', sans-serif;
    margin-bottom: 20px;
}

.workwithus__content p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.8;
}

.workwithus__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.workwithus__buttons a {
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.workwithus__button--primary {
    color: white;
    background: linear-gradient(180deg, #005bff 0%, #0047cc 100%);
}

.workwithus__button--primary:hover {
    opacity: 0.9;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.workwithus__button--secondary {
    background-color: white;
    color: black;
    border: 1px solid #e0e0e0;
}

.workwithus__button--secondary:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #999;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .content{
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section2 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
}

.main__text {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.main__text li {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footermenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footermenu li {
    margin: 0;
}

.footermenu a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footermenu a:hover {
    color: #666;
}

@media (max-width: 600px) {
    .workwithus__content h1 {
        font-size: 2.5rem;
    }
    
    .workwithus__content p {
        font-size: 1rem;
    }

    .workwithus__buttons {
        flex-direction: column;
        gap: 15px;
    }

    .workwithus__buttons a {
        width: 100%;
    }
}

@media (max-width: 1000px) {
    .why-choose__content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .why-choose__left-column {
        min-width: 0;
        width: 100%;
    }
    
    .why-choose__right-column {
        flex-basis: auto;
        width: 100%;
        padding-top: 0;
    }

    .placeholder-box {
        height: 300px;
        width: 100%;
    }

    .why-choose__title {
        font-size: 2.5rem;
    }
}




/* Responsive tweaks (appended) */
@media (max-width: 900px) {
    .faq { padding: 48px 0; }
    .faq__title { font-size: 28px; }
    .faq__question { padding: 14px 18px; }
    .hero__buttons { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 600px) {
    .faq { padding: 40px 0; }
    .faq__container { padding: 0 20px; }
    .faq__group__title { font-size: 18px; }
    .faq__question { font-size: 0.95rem; }
}




/* MEDIA QUERIES */

@media only screen and (max-width: 900px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        padding: 10px 0 25px;
        transform: translateX(-100%);
        will-change: transform;
        z-index: 999;
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: -1;
    }

    .nav__list {
        flex-direction: column;
        row-gap: 24px;
        align-items: center;

    }

    .nav__link {
        font-size: 14px;
    }

    .nav .btn {
        font-size: 14px;
        padding: 10px 20px;

    }

    .hamburger {
        display: block;
        cursor: pointer;

    }
    
}



/* Mega menu responsive */
@media (max-width: 1000px) {
    .mega__menu__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
}

@media (max-width: 560px) {
    .mega__menu__grid {
        grid-template-columns: 1fr;
    }
    /* Give the mega menu more usable space on small screens */
    .mega__menu__sheet {
        height: 100dvh; /* full dynamic viewport height on mobile */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .mega__menu__inner {
        padding: 72px 20px 24px; /* tighter padding but more content room */
        max-height: none; /* allow natural height; sheet scrolls */
    }
    .mega__menu__header h2 { margin-bottom: 12px; }
    .mega__menu__col__title { margin-bottom: 10px; }
    .mega__menu__links { gap: 10px; }
    .mega__menu__close {
        top: calc(env(safe-area-inset-top, 0px) + 12px);
        right: calc(env(safe-area-inset-right, 0px) + 12px);
    }
}




/* Consolidated responsive tweaks for home sections (final, bottom) */
@media (max-width: 1000px) {
    .hero__content { padding: 60px 24px; }
    h1 { font-size: 3.2rem; }
    .works__grid { gap: 40px; padding: 48px 0; flex-wrap: wrap; }
    .performance { height: auto; }
    .performance__content { padding: 60px 24px; }
}

@media (max-width: 900px) {
    .hero__buttons { flex-wrap: wrap; gap: 12px; }
    .works__grid { gap: 24px; }
    .works__grid__item { width: 280px; height: auto; padding: 20px 0; }
    .performance__item__container { width: 100%; height: auto; }
    .performance__item { width: 100%; max-width: 520px; height: auto; padding: 24px; margin: 12px auto; }
    .performance__item__number { font-size: 1.8rem; }
    .performance__item__text { font-size: 0.95rem; }
    .why-choose { padding: 60px 24px; overflow-x: hidden; }
    .why-choose__content-wrapper { gap: 40px; }
    .reason-item__description { margin-left: 40px; font-size: 1rem; }
    .faq { padding: 48px 0; }
    .faq__title { font-size: 28px; }
    .faq__question { padding: 14px 18px; }
    footer .content { flex-direction: column; gap: 12px; }
    .section2 { flex-direction: column; gap: 10px; align-items: center; }
}

@media (max-width: 600px) {
    .hero__content { flex-direction: column; gap: 40px; }
    h1 { font-size: 2.4rem; }
    .hero__subheading { font-size: 0.95rem; }
    .step__number { width: 32px; height: 32px; }
    .works__grid { flex-direction: column; align-items: center; }
    .works__grid__item { width: 100%; max-width: 480px; }
    .item__text { padding: 0 12px; font-size: 0.95rem; }
    .performance__heading h2 { font-size: 2rem; }
    .performance__grid { padding-top: 40px; }
    .performance__content .quote { margin-top: 40px; }
    .why-choose { padding: 60px 15px; overflow-x: hidden; }
    .why-choose__content-wrapper { gap: 30px; }
    .why-choose__title { font-size: 2rem; margin-bottom: 30px; }
    .why-choose__left-column { min-width: 0; max-width: 100%; }
    .reason-item { margin-bottom: 20px; max-width: 100%; }
    .reason-item__title { font-size: 1.3rem; }
    .reason-item__description { max-width: 100%; margin-left: 0; padding-left: 40px; font-size: 1rem; }
    .workwithus { padding: 80px 20px; }
    .faq { padding: 40px 0; }
    .faq__container { padding: 0 20px; }
    .faq__group__title { font-size: 18px; }
    .faq__question { font-size: 0.95rem; }
}




/* Language Selector Mobile Responsiveness */
@media (max-width: 900px) {
    .language__selector {
        margin-left: 8px;
    }
    
    .language__button {
        padding: 8px;
    }
}

/* COMPARISON TABLE STYLES */
.comparison-table {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Instrument Sans', sans-serif;
    max-width: 100%;
    margin: 0 auto;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
    border-bottom: 2px solid #e9ecef;
}

.header-cell {
    padding: 16px 12px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    color: white;
    border-right: 1px solid #dee2e6;
}

.header-cell:last-child {
    border-right: none;
}

.header-cell.empty {
    background: #f8f9fa;
    border-right: 1px solid #dee2e6;
}

.header-cell.dutchub {
    background: #e77e1d;
}

.header-cell.agency {
    background: #6c757d;
}

.header-cell.distributor {
    background: #495057;
}

.table-subheader {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.subheader-cell {
    padding: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    color: #495057;
    border-right: 1px solid #dee2e6;
}

.subheader-cell:last-child {
    border-right: none;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid #e9ecef;
}

.table-row:last-of-type {
    border-bottom: none;
}

.feature-cell {
    padding: 16px;
    font-weight: 500;
    background: white;
    display: flex;
    align-items: center;
    border-right: 1px solid #dee2e6;
    color: #212529;
}

.value-cell {
    padding: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border-right: 1px solid #dee2e6;
    background: white;
}

.value-cell:last-child {
    border-right: none;
}

.value-cell.included {
    color: #28a745;
    background: #f8fff9;
}

.value-cell.partial {
    color: #fd7e14;
    background: #fff8f0;
}

.value-cell.not-offered {
    color: #6c757d;
    background: #f8f9fa;
}

.payment-row .feature-cell {
    background: #f8f9fa;
    font-weight: 600;
}

.payment-row .value-cell {
    background: #f8f9fa;
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
}

.table-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 16px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.legend-icon {
    font-weight: 600;
    font-size: 1rem;
}

.legend-icon.included {
    color: #28a745;
}

.legend-icon.partial {
    color: #ffc107;
}

.legend-icon.not-offered {
    color: #6c757d;
}

.legend-text {
    color: #6c757d;
}

/* Responsive table */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .header-cell, .subheader-cell, .value-cell, .feature-cell {
        padding: 12px 8px;
    }
    
    .table-legend {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}
