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

.vision-section {
    position: relative;
    max-width: 100%;
    min-height: 50vh; /* Ensures full height while being flexible */
    background:
      radial-gradient(circle at 16% 18%, rgba(170, 240, 209, 0.28) 0%, rgba(170, 240, 209, 0) 42%),
      radial-gradient(circle at 86% 82%, rgba(8, 45, 33, 0.5) 0%, rgba(8, 45, 33, 0) 44%),
      linear-gradient(140deg, #2f7a5b 0%, #1a5a43 46%, #103b2d 100%);
    display: flex;
    align-items: center;
    color: #ffffff;
    filter: none;
    padding: 20px 20px 40px;
    overflow: hidden;
    isolation: isolate;
}

.vision-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/webpageBG_Photo.svg") center/cover no-repeat;
    opacity: 0.30;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.vision-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.vision-content {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 26px;
    margin: 0 auto;
    padding-left: clamp(18px, 2.5vw, 48px);
    padding-right: clamp(14px, 2.2vw, 40px);
    position: relative;
    z-index: 1;
}

.vision-text {
    grid-column: 1;
    justify-self: start;
    width: 100%;
    max-width: 760px;
    padding: 14px 24px 34px 0;
    border-radius: 10px;
    text-align: left;
}

.vision-text h1 {
    margin: 0 0 18px;
    font-size: clamp(32px, 3.8vw, 54px);
    line-height: 1.15;
    color: #ecfff5;
    font-weight: 800;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.vision-text h1 .hero-line {
    display: block;
    white-space: nowrap;
}

/* AFTER — correct selector, correct size */
.vision-text h3 {
    margin: 0 0 14px;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.25;
    color: #ecfff5;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.vision-text h3 .hero-line {
    display: block;
    white-space: nowrap;
}

.vision-points {
    list-style: none;
    margin-left: 15px;
    padding: 0;
}

.vision-points li {
    margin: 10px 0;
    font-size: 24px;
    line-height: 1.35;
    color: #f4fff9;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.vision-points li::before {
    content: "\2713";
    color: #56ffb1;
    font-weight: 700;
    margin-right: 10px;
    font-size: 1.15em;
    text-shadow: 0 0 14px rgba(86, 255, 177, 0.45);
}

.vision-cta {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1f2d27;
    color: #ffffff;
    border: 1px solid #1f2d27;
    border-radius: 999px;
    padding: 16px 32px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(31, 45, 39, 0.22);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    animation: ctaPulse 2.4s ease-in-out infinite;
    text-decoration: none;
}

.vision-cta:hover {
    background-color: #3a564c;
    border-color: #3a564c;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 26px rgba(31, 45, 39, 0.28);
    animation-play-state: paused;
}

.vision-cta:focus-visible {
    outline: 2px solid #1f2d27;
    outline-offset: 2px;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 22px rgba(31, 45, 39, 0.22);
    }
    50% {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 16px 30px rgba(31, 45, 39, 0.34);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vision-cta {
        animation: none;
    }

    .vision-media-image {
        animation: none;
    }
}

.vision-media {
    grid-column: 2;
    justify-self: center;
    align-self: center;
    width: min(48vw, 640px);
    aspect-ratio: 1 / 1;
    border: none;
    padding: 0px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-left: 0;
    transform: none;
}

.vision-media-image {
    width: 108%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    display: block;
    animation: none;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.25));
}

.vision-media-note {
    margin: 8px 0 0;
    color: #e8fff3;
    font-size: clamp(16px, 1.5vw, 22px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1280px) {
    .vision-text h1 {
        font-size: clamp(28px, 3.2vw, 44px);
    }

    .vision-points li {
        font-size: 20px;
    }
}

@keyframes mediaFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.supported-section {
    padding: 32px 20px;
}

.supported-section,
.customers-section,
.slogan-section,
.offers-section,
.benefits-section,
.team-section,
.question-contact-section,
.demo-booking-section,
.vision-sectionEnd {
    background: #edf5f1;
}

.supported-content {
    width: 100%;
    margin: 0 auto;
}

.supported-content > h1:not(.supported-highlight) {
    margin: 0 0 18px;
    font-size: 24px;
    color: #18372c;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.supported-marquee {
    position: relative;
    overflow: hidden;
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 14px 0;
    background: transparent;
}

/* .supported-note {
    width: min(13000px, 100%);
    margin: 34px auto 0;
    padding: 0 12px;
    text-align: center;
    color: #1f6b4d;
    font-size: 24px;
    line-height: 1.7;
    font-weight: 600;
} */
/* <!-- ======================== Supported-Section-TEXT ======================== --> */
.supported-note {
    width: min(900px, 100%);
    margin: 34px auto 0;
    padding: 0 12px;
    text-align: center;
}

.supported-note-lead {
    font-size: 24px;
    font-weight: 700;
    color: #0f4d33;
    margin: 0 0 12px;
    line-height: 1.4;
}

.supported-note-body {
    font-size: 24px;
    font-weight: 400;
    color: #1f6b4d;
    margin: 0 0 16px;
    line-height: 1.75;
}

.supported-note-result {
    font-size: 24px;
    font-weight: 700;
    color: #0f4d33;
    margin: 0 0 16px;
    line-height: 1.6;
}

.supported-note-stat {
    font-weight: 400;
    color: #1f6b4d;
    font-size: 24px;
}

.supported-note-cta {
    font-size: 24px;
    font-weight: 400;
    color: #1f6b4d;
    line-height: 1.75;
    margin: 0;
}

.supported-note-cta::first-line {
    font-weight: 700;
    color: #0f4d33;
}

@media (max-width: 768px) {
    .supported-note-lead { font-size: 18px; }
    .supported-note-body,
    .supported-note-stat,
    .supported-note-cta { font-size: 15px; }
    .supported-note-result { font-size: 16px; }
}


.supported-content .supported-highlight {
    margin: 16px 0 0;
    text-align: center;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.01em;
    background: linear-gradient(120deg, #0f4d33 0%, #1f7a53 52%, #2ea26b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(20, 83, 56, 0.14);
}

.customers-section {
    padding: 24px 20px 42px;
}

.customers-content {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.customers-content h2 {
    margin: 0 0 20px;
    text-align: center;
    font-size: clamp(28px, 2.8vw, 40px);
    color: #123b2c;
    font-weight: 800;
}

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

.customer-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 260px;
    border: 1px solid #c7dacf;
    box-shadow: 0 10px 22px rgba(18, 58, 42, 0.1);
    background: #edf4f0;
}

.customer-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    filter: saturate(0.95) contrast(1.02);
}

.customer-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 24, 16, 0.08) 20%, rgba(5, 24, 16, 0.7) 100%);
    pointer-events: none;
}

.customer-card h3 {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    margin: 0;
    z-index: 1;
    font-size: clamp(18px, 1.7vw, 24px);
    color: #f3fff9;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1024px) {
    .customers-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .customers-section {
        padding: 16px 12px 26px;
    }

    .customers-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .customer-card,
    .customer-card img {
        min-height: 220px;
    }
}

.supported-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.65s ease;
}

.supported-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 10px;
    align-items: center;
    justify-items: center;
}

.supported-item {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1f2d27;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    width: min(100%, 195px);
    height: 80px;
    aspect-ratio: auto;
    flex: 0 0 auto;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
    box-sizing: border-box;
}

.supported-item img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    display: block;
}

/* Make specific logos visually larger inside the same card size */
.supported-item img[alt="Campus founders"],
.supported-item img[src*="cf3.png"] {
    width: 100%;
    height: 96%;
    transform: scale(1.32);
    transform-origin: center;
}

.supported-item img[alt="Uni-Stuttgart"] {
    width: 98%;
    height: 88%;
}

.supported-item:hover {
    transform: translateY(-2px);
    background: transparent;
    box-shadow: none;
}

/* Responsive Fix for Mobile */
@media (max-width: 768px) {
    .vision-section {
        min-height: 80vh; /* Slightly smaller height */
        padding: 20px 12px; /* Adjust padding */
    }

    .vision-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .vision-text {
        width: 100%;
        font-size: 20px; /* Adjust text size */
    }

    .vision-text h1 {
        font-size: 32px; /* Adjusts heading size */
    }

    .vision-points li {
        font-size: 18px;
    }

    .vision-cta {
        width: 100%;
        text-align: center;
    }

    .vision-media {
        width: min(76vw, 320px);
        padding: 10px;
        margin-left: 0;
        transform: none;
    }

    .vision-media-image {
        width: 100%;
        min-height: 0;
    }

    .supported-section {
        padding: 28px 12px 38px;
    }

    .supported-slide {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 12px;
    }

    .supported-item {
        width: min(100%, 180px);
        height: 104px;
    }

    .slogan-section {
        margin-top: 8px;
        padding: 14px 12px 30px;
    }

    .slogan-content {
        padding: 24px 16px 22px 22px;
        border-radius: 16px;
    }
}

.slogan-section {
    margin-top: 12px;
    padding: 24px 24px 52px;
}

.slogan-content {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 34px 34px 30px 42px;
    border-radius: 20px;
    border: 1px solid rgba(86, 156, 121, 0.28);
    background:
      linear-gradient(120deg, rgba(122, 214, 172, 0.14), rgba(122, 214, 172, 0) 35%),
      linear-gradient(150deg, #ffffff 0%, #f1f8f4 58%, #ecf6f1 100%);
    box-shadow: 0 14px 30px rgba(18, 57, 41, 0.14);
    text-align: left;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.slogan-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, #34b66e 0%, #1f7a53 100%);
    border-radius: 8px;
    pointer-events: none;
}

.slogan-line {
    margin: 0 0 10px;
    color: #10382b;
    font-size: clamp(26px, 2.5vw, 38px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 10px rgba(19, 78, 55, 0.08);
    position: relative;
    z-index: 1;
}

.slogan-subline {
    margin: 0;
    color: #1f6b4d;
    font-size: clamp(17px, 1.7vw, 24px);
    font-weight: 600;
    line-height: 1.45;
    position: relative;
    z-index: 1;
}

.slogan-sub-subline{
    margin: 0;
    color: #1f6b4d;
    font-size: clamp(9px, 1.7vw, 14px);
    font-weight: 400;
    line-height: 1.45;
    position: relative;
    z-index: 1;
    overflow-wrap: anywhere;
    word-break: break-word;
}



.mission-section{
    position: relative;
    width: 100%; /* Full width of the parent */
    height: 100vh; /* Full viewport height (adjust as needed) */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    overflow: hidden; /* Hide overflow */
}


/* Video as Background */
.background-video {
    /* position: absolute; */
    position: relative;
    top: 50%;
    left: 50%;
    width: 1920px;
    height: 1080px;
    object-fit: cover; /* Ensure the video fills the section */
    z-index: -1; /* Keep it behind the text */
}

/* Mission Text Styling */
.mission-text {
    position: relative;
    max-width: 60%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
    z-index: 1; /* Ensure text appears above video */
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-text {
        max-width: 80%;
        text-align: center;
    }
}
/* ============================ */
/*=================== Offers Section =======================*/
.offers-section {
    text-align: center;
    padding: 32px 20px;
}

/* Section Title */
.offers-title {
    font-size: clamp(28px, 2.7vw, 38px);
    margin-bottom: 24px;
    color: #17382b;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.offers-subtitle {
    margin: 0 0 10px;
    font-size: 18px;
    color: #8b1f1f;
}

.offers-sub-subtitle {
    margin: 0 0 40px;
    font-size: 16px;
    color: #8b1f1f;
}

.feature-combined-card {
    max-width: 1240px;
    margin: 0 auto;
    margin-top: 36px;
    border: 1px solid #c7dacf;
    border-radius: 16px;
    overflow: hidden;
    background:
      linear-gradient(140deg, rgba(122, 214, 172, 0.08), rgba(122, 214, 172, 0.02) 44%),
      #f7faf8;
    box-shadow: 0 10px 22px rgba(18, 58, 42, 0.1);
}

.feature-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: none;
    margin: 0;
    border: none;
    border-radius: 0;
    overflow: visible;
    background: linear-gradient(135deg, rgb(30, 127, 87), rgb(44, 165, 111));
}

.feature-nav-card {
    display: block;
    text-decoration: none;
    width: 100%;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    cursor: pointer;
    font: inherit;
    color: #ffffff;
    appearance: none;
    background: linear-gradient(135deg, rgb(30, 127, 87), rgb(44, 165, 111));
    border-radius: 0;
    padding: 14px 12px;
    text-align: center;
    box-shadow: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.feature-nav-card:hover {
    transform: none;
    background: linear-gradient(135deg, rgb(27, 116, 79), rgb(40, 151, 102));
    box-shadow: none;
}

.feature-nav-card.is-active {
    background: linear-gradient(135deg, rgb(13, 61, 42), rgb(20, 90, 61));
    color: #ffffff;
    box-shadow:
      inset 0 0 0 2px rgba(255, 255, 255, 0.55),
      inset 0 -3px 0 rgba(16, 56, 43, 0.28);
}

.feature-nav-card h3 {
    margin: 0;
    color: inherit;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
}

.feature-nav-card:last-child {
    border-right: none;
}

.feature-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: none;
    margin: 0;
    padding: 14px;
}

.feature-slider-shell {
    position: relative;
}

.feature-block {
    background:
      linear-gradient(145deg, rgba(122, 214, 172, 0.08), rgba(122, 214, 172, 0.02) 52%),
      #f9fcfa;
    border: 1px solid #b7d9c7;
    border-radius: 14px;
    padding: 18px 18px 16px;
    box-shadow: none;
    text-align: left;
}

.feature-panel {
    display: none;
    animation: featureSlideIn 0.32s ease;
}

.feature-panel.is-active {
    display: block;
}

@keyframes featureSlideIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-tagline {
    margin: 0 0 16px;
    color: #1f7a53;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    gap: 14px;
    align-items: stretch;
}

.feature-list li {
    border: 1px solid #b4d6c4;
    background:
      linear-gradient(145deg, rgba(122, 214, 172, 0.08), rgba(122, 214, 172, 0.02) 65%),
      #ffffff;
    border-radius: 10px;
    display: grid;
    grid-template-rows: 168px minmax(108px, 1fr);
    gap: 14px;
    padding: 0 0 18px;
    text-align: left;
    overflow: hidden;
    height: 100%;
}

.feature-card-media {
    position: relative;
    width: 100%;
    min-height: 168px;
    height: 168px;
}

.feature-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 22, 15, 0.18) 20%, rgba(5, 22, 15, 0.72) 100%);
    pointer-events: none;
}

.feature-list strong {
    color: #f3fff9;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.34);
}

.feature-list span {
    color: #4a4a4a;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 0;
    max-width: none;
    padding: 0 16px;
    min-height: 108px;
    text-align: left;
}

/* Grid Layout */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(230px, 1fr));
    gap: 18px;
    max-width: 1440px;
    margin: auto;
}

.offer-card {
    background: #edf4f0;
    border: 1px solid #c7dacf;
    border-radius: 14px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 10px 22px rgba(18, 58, 42, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-4px);
    border-color: #8fcfae;
    box-shadow: 0 16px 30px rgba(18, 58, 42, 0.14);
}

.offer-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 18% 14%, rgba(126, 219, 171, 0.18) 0%, rgba(126, 219, 171, 0) 45%),
      radial-gradient(circle at 82% 82%, rgba(36, 125, 84, 0.12) 0%, rgba(36, 125, 84, 0) 42%);
    pointer-events: none;
}

.offer-image {
    width: 100%;
    height: 178px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #f6fbf8 0%, #edf6f1 100%);
    border-top: 1px solid #d8e8df;
    border-bottom: 1px solid #d8e8df;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offer-body {
    padding: 14px 16px 16px;
    position: relative;
    z-index: 1;
}

.offer-title {
    position: relative;
    z-index: 1;
    padding: 12px 14px;
    background: linear-gradient(135deg, #d9f3e4 0%, #bfe4cd 100%);
    border-bottom: 1px solid #a6d5bb;
}

.offer-title h3 {
    margin: 0;
    font-size: 19px;
    color: #0f4c33;
    line-height: 1.28;
    font-weight: 800;
}

.offer-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #355547;
    font-weight: 600;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 1320px) {
    .offers-grid {
        grid-template-columns: repeat(3, minmax(250px, 1fr));
    }
}

@media (max-width: 1024px) {
    .feature-nav-grid {
        grid-template-columns: 1fr;
    }

    .feature-nav-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    }

    .feature-nav-card:last-child {
        border-bottom: none;
    }

    .feature-blocks {
        padding: 12px;
    }

    .feature-combined-card.is-mobile-accordion .feature-nav-grid {
        display: block;
        background: transparent;
    }

    .feature-combined-card.is-mobile-accordion .feature-blocks {
        display: none;
    }

    .feature-combined-card.is-mobile-accordion .feature-nav-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    }

    .feature-combined-card.is-mobile-accordion .feature-nav-card + .feature-panel {
        margin: 0;
        border-radius: 0;
        border-top: none;
    }

    .feature-combined-card.is-mobile-accordion .feature-nav-card:last-of-type {
        border-bottom: none;
    }

    .offers-grid {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .feature-combined-card {
        border-radius: 12px;
    }

    .feature-block {
        padding: 14px 12px;
    }

    .feature-nav-card h3 {
        font-size: 24px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .feature-list strong {
        font-size: 18px;
    }

    .feature-list span {
        font-size: 18px;
        max-width: 100%;
        padding: 0 14px;
        min-height: 0;
    }

    .feature-list li {
        grid-template-rows: 150px auto;
    }

    .feature-card-media,
    .feature-card-media img {
        min-height: 150px;
        height: 150px;
    }

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

.benefits-section {
    padding: 32px 20px;
}

.benefits-title {
    width: 100%;
    margin: 0 auto 22px;
    text-align: center;
    font-size: clamp(32px, 3.5vw, 48px);
    color: #123b2c;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.offers-title,
.team-section h1,
.vision-titleEnd {
    width: 100%;
    margin: 0 auto 22px;
    text-align: center;
    font-size: clamp(32px, 3.5vw, 48px);
    color: #123b2c;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    font-family: inherit;
}

.supported-content h1::after,
.customers-content h2::after,
.offers-title::after,
.benefits-title::after,
.team-section h1::after,
.vision-titleEnd::after,
.work-steps-shell h2::after,
.demo-booking-intro h1::after,
.question-contact-card h1::after {
    content: "";
    display: block;
    width: 65%;
    max-width: 860px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #2fbf64 0%, #1f8b4f 100%);
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0.45;
}

.supported-content h1.line-animate-in::after,
.customers-content h2.line-animate-in::after,
.offers-title.line-animate-in::after,
.benefits-title.line-animate-in::after,
.work-steps-shell h2.line-animate-in::after,
.team-section h1.line-animate-in::after,
.vision-titleEnd.line-animate-in::after {
    animation: sectionLineGrow 1.8s ease-out forwards;
}

.supported-highlight::after,
.demo-booking-intro h1::after,
.question-contact-card h1::after {
    content: none !important;
    display: none;
}

@keyframes sectionLineGrow {
    from {
        transform: scaleX(0);
        opacity: 0.45;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

.benefits-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 24px;
}

.benefit-item {
    text-align: center;
    padding: 14px 10px;
}

.benefit-item h3 {
    margin: 0 0 12px;
    font-size: clamp(44px, 5.2vw, 68px);
    line-height: 1;
    color: #38be4f;
    font-weight: 800;
}

.benefit-tick img {
    width: clamp(62px, 6vw, 90px);
    height: auto;
    display: inline-block;
}

.benefit-item p {
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #203037;
    font-weight: 600;
}

/* ============================ */
/* Work Steps Timeline */
.work-steps-section {
    padding: 32px 20px;
    background: #edf5f1;
}

.work-steps-shell {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 30px 28px 26px;
    background: transparent;
    color: #123b2c;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.work-steps-shell::before,
.work-steps-shell::after {
    content: none;
}

.work-steps-shell::before {
    width: 260px;
    height: 260px;
    right: -90px;
    top: -120px;
    background: radial-gradient(circle, rgba(121, 225, 175, 0.2) 0%, rgba(121, 225, 175, 0) 68%);
}

.work-steps-shell::after {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: -160px;
    background: radial-gradient(circle, rgba(96, 196, 153, 0.22) 0%, rgba(96, 196, 153, 0) 72%);
}

.work-steps-shell h2 {
    margin: 0 0 30px;
    text-align: center;
    font-size: clamp(34px, 3.5vw, 50px);
    color: #123b2c;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-shadow: none;
    position: relative;
    z-index: 2;
}

.work-steps-track {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    position: relative;
    gap: 0 10px;
    z-index: 2;
}

.work-steps-track::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 62px;
    height: 3px;
    background: rgba(30, 127, 87, 0.35);
    border-radius: 999px;
}

.work-step {
    text-align: left;
    position: relative;
    padding: 10px 10px 14px;
    border: 1px solid rgba(20, 93, 65, 0.35);
    border-radius: 14px;
    background: linear-gradient(135deg, rgb(30, 127, 87), rgb(44, 165, 111));
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.work-step:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 75, 52, 0.58);
    box-shadow: 0 10px 18px rgba(6, 28, 20, 0.24);
}

.work-step-label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #effff4;
    font-weight: 700;
}

.work-step-dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #ecfff5;
    border: 1px solid rgba(231, 255, 242, 0.95);
    box-shadow: 0 0 0 4px rgba(18, 84, 58, 0.26);
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.work-step-dot::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 999px;
    background: #1d875a;
}

.work-step p {
    margin: 0;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.26;
    color: #f1fff8;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.work-step-time {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.35;
    color: rgba(240, 255, 246, 0.95);
    font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
    .supported-content h1::after,
    .offers-title::after,
    .benefits-title::after,
    .work-steps-shell h2::after,
    .team-section h1::after,
    .vision-titleEnd::after {
        animation: none;
        transform: none;
    }

    .work-step {
        transition: none;
    }

    .work-step:hover {
        transform: none;
        box-shadow: none;
    }
}

@media (max-width: 1024px) {
    .work-steps-track {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 18px 12px;
    }

    .work-steps-track::before {
        display: none;
    }

    .work-step {
        background: linear-gradient(135deg, rgb(30, 127, 87), rgb(44, 165, 111));
        border: 1px solid rgba(20, 93, 65, 0.35);
        border-radius: 12px;
        padding: 14px 12px 16px;
    }

    .work-step-dot {
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .work-steps-section {
        padding: 24px 12px;
    }

    .work-steps-shell {
        padding: 20px 14px 18px;
        border-radius: 14px;
    }

    .work-steps-shell h2 {
        margin: 0 0 18px;
        font-size: clamp(26px, 8vw, 34px);
    }

    .work-steps-track {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .work-step p {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .benefits-content {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 24px 12px;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .benefit-item p {
        font-size: 16px;
    }
}


/* ================================== */

/* Style the video section */
#video-section {
    display: flex;
    flex-direction: column; /* Stack title and video */
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 50px 0;
    background-color: #f4f4f4; /* Optional: Light background */
}

/* Style the headline */
.video-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px; /* Space between text and video */
}

/* Style the video container */
.video-container {
    width: 70%; /* 70% of the page */
    display: flex;
    justify-content: center;
}

/* Make the video responsive */
.video-container video {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Optional: Add rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Optional: Add shadow */
}

/* Responsive: Adjust video size on smaller screens */
@media (max-width: 768px) {
    .video-container {
        width: 90%; /* Make it 90% of the page width on smaller screens */
    }

    .video-title {
        font-size: 24px; /* Slightly smaller text on mobile */
    }
}


/* ================================== */
.team-section {
    text-align: center;
    padding: 32px 20px;
}

.team-section h1 {
    width: 100%;
    margin: 0 auto 22px;
    text-align: center;
    font-size: clamp(32px, 3.5vw, 48px);
    color: #123b2c;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    font-family: inherit;
}

/* Team Container - Flexible Layout */
.team-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between columns */
    flex-wrap: wrap; /* Ensures responsiveness */
}

/* Individual Team Member */
.team-member {
    flex: 1 1 calc(25% - 20px); /* 4 Columns when added, 3 by default */
    max-width: 250px;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* .linkedin-icon{
    height: 1em;
    width: auto;
    vertical-align: middle;
    margin-left: 5px;
    border: none;
    border-radius: 0; 
} */

/* Profile Picture */
.team-member img {
/* .profile-pic{ */
    width: 100px;
    height: 100px;
    border-radius: 50%; 
    object-fit: cover;
    border: 2px solid #007bff;
}

/* Name & Role */
.team-member h3 {
    margin: 10px 0 5px;
    font-size: 1.1rem;
    color: #333;
}

.team-member p {
    font-size: 0.95rem;
    color: #666;
}

/* Responsive: Stacked on Mobile */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 80%;
        max-width: 300px;
    }
}

/* ====================== */
/* Question + Demo Booking */
.question-contact-section {
    margin-top: 0;
    padding: 32px 24px;
    background: #edf5f1;
}

.question-contact-card {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 34px 34px 30px 42px;
    border-radius: 20px;
    border: 1px solid rgba(86, 156, 121, 0.28);
    background:
      linear-gradient(120deg, rgba(122, 214, 172, 0.14), rgba(122, 214, 172, 0) 35%),
      linear-gradient(150deg, #ffffff 0%, #f1f8f4 58%, #ecf6f1 100%);
    box-shadow: 0 14px 30px rgba(18, 57, 41, 0.14);
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.question-contact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, #34b66e 0%, #1f7a53 100%);
    border-radius: 8px;
    pointer-events: none;
}

.question-contact-card h1 {
    margin: 0 0 8px;
    color: #10382b;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.question-contact-card p {
    margin: 0 0 18px;
    color: #1f6b4d;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.45;
    position: relative;
    z-index: 1;
}

.question-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 14px;
}

.question-contact-item {
    padding: 18px 16px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #d8e7de;
    position: relative;
    z-index: 1;
}

.question-contact-grid-single {
    grid-template-columns: minmax(280px, 620px);
    justify-content: center;
}

.question-contact-label {
    display: block;
    font-size: 18px;
    color: #356654;
    margin-bottom: 6px;
}

.question-contact-item a {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #0f4d33;
    text-decoration: none;
    margin-bottom: 4px;
}

.question-contact-item a:hover {
    text-decoration: underline;
}

.question-contact-item small {
    display: block;
    color: #5d7e6f;
    font-size: 12px;
}

.demo-booking-section {
    padding: 32px 16px;
    background: #edf5f1;
    position: relative;
}

.demo-booking-wrap {
    max-width: 1120px;
    margin: 0 auto;
    border: 1px solid #c7dacf;
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(340px, 1.1fr);
    box-shadow: 0 10px 22px rgba(18, 58, 42, 0.1);
}

.demo-booking-intro {
    background:
      radial-gradient(circle at 12% 14%, rgba(170, 240, 209, 0.22) 0%, rgba(170, 240, 209, 0) 46%),
      linear-gradient(140deg, #2ca56f 0%, #1e7f57 55%, #1a6b49 100%);
    padding: 44px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.demo-booking-intro h1 {
    margin: 0 0 16px;
    color: #ecfff5;
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.demo-booking-intro p {
    margin: 0;
    color: #d9f7e8;
    font-size: 24px;
    line-height: 1.5;
}

.demo-booking-form {
    background: #f4f9f6;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 1px solid #d4e3db;
}

.demo-form-status {
    margin: 0 0 8px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.demo-form-status-success {
    color: #0f5a3b;
    background: #e5f6ed;
    border-color: #a7d8bd;
}

.demo-form-status-error {
    color: #8b1f1f;
    background: #fdecec;
    border-color: #f1b5b5;
}

.demo-booking-toast {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 420px;
    width: calc(100% - 32px);
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #a7d8bd;
    background: #e5f6ed;
    color: #0f5a3b;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(15, 90, 59, 0.2);
    opacity: 0;
    transform: translate(-50%, -50%) translateY(12px);
    pointer-events: none;
    z-index: 10000;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.demo-booking-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.demo-booking-form label {
    color: #0e3f2d;
    font-size: 18px;
    font-weight: 700;
}

.demo-booking-form input,
.demo-booking-form textarea {
    width: 100%;
    border: 1px solid #bfd6c8;
    border-radius: 6px;
    padding: 10px 12px;
    background: #ffffff;
    color: #193d30;
    font-size: 18px;
    box-sizing: border-box;
}

.demo-booking-form input::placeholder,
.demo-booking-form textarea::placeholder {
    font-size: 18px;
}

.demo-booking-form textarea {
    resize: vertical;
    min-height: 110px;
}

.demo-booking-form input:focus,
.demo-booking-form textarea:focus {
    border-color: #2f7a5b;
    outline: 2px solid rgba(47, 122, 91, 0.15);
}

.demo-consent {
    margin-top: 6px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 8px;
    font-size: 18px;
    color: #315a49;
    line-height: 1.35;
}

.demo-consent input {
    margin-top: 2px;
}

.demo-consent a {
    color: #1a6b49;
    font-weight: 700;
    text-decoration: underline;
}

.demo-consent a:hover {
    color: #144b34;
}

.demo-submit-btn {
    align-self: center;
    margin-top: 8px;
    border: 1px solid #1a6b49;
    background: linear-gradient(135deg, #1e7f57, #2ca56f);
    color: #ffffff;
    border-radius: 999px;
    padding: 9px 34px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(30, 127, 87, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.demo-submit-btn:hover {
    background: linear-gradient(135deg, #0f3f2b, #16563a);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(10, 58, 39, 0.4);
}

.demo-submit-btn:focus-visible {
    outline: 2px solid #2ca56f;
    outline-offset: 2px;
}

@media (max-width: 900px) {
    .demo-booking-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .question-contact-section {
        margin-top: 8px;
        padding: 24px 12px;
    }

    .question-contact-card {
        padding: 24px 16px 22px 22px;
        border-radius: 16px;
    }

    .question-contact-grid {
        grid-template-columns: 1fr;
    }

    .demo-booking-intro {
        padding: 28px 18px;
    }

    .demo-booking-intro p {
        font-size: 16px;
    }

    .demo-booking-form {
        padding: 16px;
    }
}

/* ======================= */
.gallery-section {
    text-align: center;
    padding: 40px 20px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns in desktop view */
    gap: 20px; /* Equal gap between images */
    max-width: 800px;
    margin: auto;
}

.gallery-item img {
    width: 100%; /* Ensure images are responsive */
    height: auto;
    display: block;
    border-radius: 10px; /* Optional: Adds rounded corners */
}

/*  Responsive: Stack images on smaller screens */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr; /* Single column for mobile */
    }
}


/* ========================= */

/* Vision Section */
.vision-sectionEnd {
    text-align: center;
    padding: 32px 20px;
}

/* Style the title */
.vision-titleEnd {
    width: 100%;
    margin: 0 auto 22px;
    text-align: center;
    font-size: clamp(32px, 3.5vw, 48px);
    color: #123b2c;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    font-family: inherit;
}

/* Style the text */
.vision-textEnd {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
}

/* Style the contact */
.vision-contactEnd {
    font-size: 16px;
    color: #007bff;
    font-weight: bold;
}

/* Style the email link */
.vision-contactEnd a {
    text-decoration: none;
    color: #007bff;
}

.vision-contactEnd a:hover {
    text-decoration: underline;
}


/* ======================== */

/* Ensure the rest of the content is pushed down properly */
main {
    flex-grow: 1;
    padding: 20px;
}

/* ======================== */
/* Mobile Responsiveness */
@media (max-width: 768px) {
    main {
        padding: 12px;
    }

    .vision-text {
        padding: 18px 14px;
    }

    .vision-text h1 {
        font-size: clamp(20px, 5.2vw, 28px);
        line-height: 1.2;
    }

    .vision-points li {
        font-size: 16px;
        margin: 8px 0;
    }

    .vision-text h3 {
        font-size: clamp(18px, 4.8vw, 24px);
        line-height: 1.3;
    }

    .vision-text h1 .hero-line,
    .vision-text h3 .hero-line {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .supported-marquee {
        width: 100%;
        margin-left: 0;
    }

    .supported-note {
        font-size: 15px;
        padding: 0 8px;
    }

    .supported-content > h1:not(.supported-highlight),
    .supported-content .supported-highlight {
        font-size: 15px;
    }

    .slogan-sub-subline {
        font-size: 13px;
        line-height: 1.5;
    }

    .offers-section {
        padding: 24px 12px;
    }

    .offers-subtitle,
    .offers-sub-subtitle {
        max-width: 94%;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-card {
        border-radius: 12px;
    }

    .offer-title h3 {
        font-size: 17px;
    }

    .offer-image {
        height: 148px;
    }

    .offer-body p {
        font-size: 15px;
        line-height: 1.45;
    }

    .benefits-title::after {
        width: 86%;
    }

    .benefit-item p {
        letter-spacing: 0.02em;
        font-size: 15px;
    }

    .team-member {
        width: 100%;
        max-width: 360px;
    }

    .demo-booking-form {
        border-left: none;
        border-top: 1px solid #d4e3db;
    }

    .vision-sectionEnd {
        padding: 24px 12px;
    }
}

@media (max-width: 480px) {
    .vision-section {
        min-height: auto;
        padding: 16px 10px 18px;
    }

    .vision-text h1 {
        font-size: clamp(18px, 5.1vw, 24px);
    }

    .vision-text h3 {
        font-size: clamp(16px, 4.8vw, 20px);
        line-height: 1.32;
    }

    .vision-cta {
        padding: 12px 16px;
        font-size: 16px;
    }

    .supported-item {
        width: 106px;
        height: 106px;
    }

    .customers-content h2,
    .offers-title,
    .benefits-title,
    .question-contact-card h1 {
        font-size: clamp(24px, 8vw, 30px);
    }

    .work-steps-shell {
        padding: 16px 10px 14px;
    }

    .work-step p {
        font-size: 19px;
    }

    .question-contact-item a {
        font-size: 20px;
        word-break: break-word;
    }

    .demo-booking-form {
        padding: 14px 12px;
    }
}
