

/* HomePage Styles */
.homepage-header {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-content {
    max-width: 580px;
    padding: 10rem 0;
    text-align: left;
}

.hero-eyebrow {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    text-align: left;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-align: left;
}

.hero-bottext {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
    text-align: left;
}

.button {
    background-color: #024573;
    color: white;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.header-content .button,
.header-content a.button,
.header-content a.w-button {
    display: inline-block;
    margin: 0;
    margin-right: auto;
}

.button:hover {
    background-color: #023a5d;
}

/* Business Solutions Section */

.business-solutions {
    padding: 4rem 0;
}

.solutions-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.solutions-text {
    flex: 1;
    max-width: 600px;
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.solution-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #555;
}

.solution-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
}

.solutions-image {
    flex: 1;
}

.solutions-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .header-content {
        margin-left: 0;
        padding: 1.5rem;
        text-align: center;
        max-width: 100%;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .hero-bottext {
        font-size: 1rem;
    }

    .solutions-content {
        flex-direction: column;
        gap: 2rem;
    }

    .solution-title {
        font-size: 2rem;
    }

    .solution-subtitle {
        font-size: 1.25rem;
    }

    .solution-content {
        font-size: 1rem;
    }
}


.solution-blocks {
    background-color: #f9f9fb;
    padding: 4rem 0;
}

.info-blocks-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .info-blocks-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .info-blocks-wrapper {
        grid-template-columns: 1fr;
    }
}

.info-block {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 2rem;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(16, 2, 115, 0.1);
    border-radius: 16px;
    transition: transform 0.4s, box-shadow 0.4s;
}

.info-block:hover {
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 24px;
}

.block-logo {
    max-width: 50px;
    height: auto;
    margin-bottom: 1rem;
}

.block-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.block-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.Floraconnect{
    background: #f9f9fb;
    text-align: center;
    padding-bottom: 3rem;
}

.floraconnect{
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #8a93ad;
    margin-bottom: 6px;
}

.flora-title{
    font-weight: 700;
    color: #333;
    letter-spacing: .4px;
    margin-bottom: .5rem;
}
.flora-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}
.flora-text{
    color: #024573;
    margin-bottom: 2rem;
    max-width: 1000px;
}

/* How Title */
.how-title {
    font-weight: 700;
    color: #333;
    letter-spacing: .4px;
    margin-bottom: 2rem;
    margin-top: 3rem;
    text-align: center;
}


.spec-chips{
    display:flex; flex-wrap:wrap; gap:.5rem;
}
.spec-chip{
    display:inline-flex; align-items:center; justify-content:center;
    padding:.5rem .75rem;
    background:#fff;
    border:1px solid rgba(16,2,115,.18);
    border-radius:999px;
    font-size:.95rem;
    color:#333;
    box-shadow:0 2px 6px rgba(0,0,0,.05);
}
.spec-chip-outline{
    background:transparent;
    border-style:dashed;
    color:#100273;
}


/* How Blocks Section */
.how-blocks-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.how-block {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(16, 2, 115, 0.1);
    border-radius: 16px;
    transition: transform 0.4s, box-shadow 0.4s;
}

.how-block:hover {
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 24px;
}

.how-block-logo {
    max-width: 42px;
    height: auto;
    margin-bottom: 1rem;
}

.how-block-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.how-block-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 992px) {
    .how-blocks-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .how-blocks-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .how-block {
        padding: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.faq-left {
    flex: 1;
}

.faq-title {
    font-weight: 700;
    color: #333;
    letter-spacing: .4px;
    margin-bottom: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #024573;
    color: white;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #023a5d;
}

.faq-icon {
    font-style: normal;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    background-color: #e9ecef;
    color: #333;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 1.25rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* FAQ Right -*/
.faq-right {
    display: flex;
    align-items: flex-start;
}

.faq-cta-block {
    background-color: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px;
}

.faq-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #024573;
    margin-bottom: 1rem;
}

.faq-cta-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.faq-cta-button {
    display: inline-block;
    background-color: #024573;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.faq-cta-button:hover {
    background-color: #013557;
    color: white;
}

@media (max-width: 992px) {
    .faq-section {
        grid-template-columns: 1fr;
    }

    .faq-cta-block {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-answer.active {
        padding: 1rem 1.25rem;
    }
}

/* Explore Section */
.explore {
    padding: 4rem 0;
    background-color: #fff;
}

.explore-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.explore-left {
    display: flex;
    justify-content: center;
}

.explore-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.explore-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.explore-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.explore-subtext {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.explore-title1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #024573;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.explore-text1 {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

.explore-text2 {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.explore-title2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #024573;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .explore-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .explore-title {
        font-size: 1.75rem;
    }

    .explore-title1,
    .explore-title2 {
        font-size: 1.25rem;
    }
}

/* Partnership Section */
.partnership {
    background-color: #fff;
    padding: 4rem 0 0 0;
    text-align: center;
}

.partnership-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #8a93ad;
    margin-bottom: 6px;
}

.partnership-title {
    font-weight: 700;
    color: #333;
    letter-spacing: .4px;
    margin-bottom: 2rem;
}

/* Logo Slider */
.slider-container {
    overflow: hidden;
    margin-top: 2rem;
    padding: 2rem 0;
}

.slider-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slider-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
}

.slider-item a {
    display: block;
}

.partner-logo {
    width: 100%;
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Flora Blocks Section */
.flora-blocks {
    background-color: #f9f9fb;
    padding: 4rem 0;
}

.flora-blocks-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.flora-block {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 2rem;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(16, 2, 115, 0.1);
    border-radius: 16px;
    transition: transform 0.4s, box-shadow 0.4s;
}

.flora-block:hover {
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 24px;
}

.flora-logo {
    max-width: 50px;
    height: auto;
    margin-bottom: 1rem;
}

.flora-block-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    width: 100%;
}

@media (max-width: 992px) {
    .flora-blocks-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .flora-blocks {
        padding: 3rem 0;
    }

    .flora-blocks-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .flora-block {
        padding: 1.5rem;
    }
}

/* Werken bij /* 
/* Algemene opmaak en fade‑in effect */
.career-section {
    background-color: #fff;
    padding: 2rem 0;
    overflow: hidden;
}
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Tekst en typografie */
.career-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(16, 0, 115, 0.3);
}
.career-section .dot {
    color: #100273;
}
.career-section .lead {
    font-size: 1.125rem;
    color: #100273;
    margin-bottom: 1.5rem;
}
.career-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Buttons */
.career-buttons .career-btn {
    margin: 0 0.5rem;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    background: #100273;
    color: #fff;
    transition: background 0.3s ease;
}
.career-buttons .career-btn:hover {
    background: #0d004f;
}

/* Career cards */
.career-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.career-card .badge {
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
    display: inline-block;
    width: auto;
}
.career-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0.5rem;
}
.career-card .card-text {
    font-size: 0.9rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .career-section {
        padding: 1.5rem 0;
    }
    .career-section h2 {
        font-size: 2rem;
    }
    .career-section .lead {
        font-size: 1rem;
    }
    .career-buttons .career-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .career-section h2 {
        font-size: 1.75rem;
    }
    .career-buttons .career-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}


/* Blog */

.blog-section-lux {
    background-color: #f9f9fb;
    padding: 4rem 1rem;
  }
  
  .blog-container-lux {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .blog-post-lux {
    background: #fff;
    border: 1px solid rgba(16, 2, 115, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
  }
  
  .blog-post-lux:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  }
  
  .blog-post-image-lux {
    position: relative;
    height: 180px;
    background-image: url('https://via.placeholder.com/600x400');
    background-size: cover;
    background-position: center;
  }
  
  .blog-post-image-lux.second {
    background-image: url('https://via.placeholder.com/600x400/1e73be/ffffff');
  }
  
  .blog-post-image-lux.third {
    background-image: url('https://via.placeholder.com/600x400/8134af/ffffff');
  }
  
  .blog-post-image-lux::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
  }
  
  .blog-post-content-lux {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .blog-post-date-lux {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .blog-post-title-lux {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
  }
  
  .blog-post-excerpt-lux {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
  }
  
  .blog-post-link-lux {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #100273;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .blog-post-link-lux:hover {
    color: #0d004f;
  }
  
  @media (max-width: 480px) {
    .blog-post-lux {
      max-width: 100%;
    }
    .blog-post-image-lux {
      height: 150px;
    }
  }
  
/* Info banner
 */

.info-section {
    color: #fff;
    padding: 6rem 0;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    text-align: center;
}

.info-section .dot {
    color: #ff6f00;
}

.info-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-section .lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.info-buttons {
    display: inline-flex;
    gap: 1rem;
}

.info-buttons .info-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    color: #fff;
    font-weight: 500;
    transition: background 0.3s ease;
}

.info-buttons .info-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
    .info-section {
        padding: 4rem 0;
        clip-path: polygon(0 7%, 100% 0, 100% 93%, 0 100%);
    }
    .info-section h2 {
        font-size: 2rem;
    }
    .info-section .lead {
        font-size: 1rem;
    }
    .info-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .info-buttons .info-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
    .info-section {
        padding: 3rem 0;
    }
    .info-section h2 {
        font-size: 1.75rem;
    }
    .info-section .lead {
        font-size: 0.9rem;
    }
}
  