/* ############# HEADER SECTION ##############  */

#header-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: var(--bg-primary-1);
    position: relative;
}

.header-section-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.header-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 5rem;
}

.header-title h1,
.header-title h3 {
    color: var(--text-primary-light);
}

.hero-image-wrapper {
    width: 18rem;
    aspect-ratio: 1/1;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-light);

    border: .3rem var(--bg-primary-2) solid;
    border-radius: 50%;
}

.hero-desc {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.hero-desc h5 {
    color: var(--text-primary-light);
}

/* ############# SWIFT-BOX OVERVIEW SECTION ##############  */

#swift-box-overview-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 1rem;
    background:
        linear-gradient(135deg, rgba(0, 147, 205, 0.03) 0%, rgba(0, 147, 205, 0.06) 100%),
        radial-gradient(circle at 20% 50%, rgba(0, 147, 205, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 147, 205, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

/* Animated gradient border */
#swift-box-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--bg-primary-1) 25%,
        var(--accent-2) 50%,
        var(--bg-primary-1) 75%,
        transparent 100%
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Decorative background elements */
#swift-box-overview-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 147, 205, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(-10px); }
}

.swift-box-overview-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: var(--section-max-width);
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    border: 1px solid rgba(0, 147, 205, 0.1);
    box-shadow:
        0 20px 60px rgba(0, 147, 205, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2.5rem;
}

.swift-box-overview-wrapper:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0, 147, 205, 0.12),
        0 12px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 147, 205, 0.2);
}

.overview-text {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-direction: column;
    gap: 1.25rem;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.overview-text .product_badge {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--bg-primary-1) 0%, #0077a3 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.625rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    box-shadow:
        0 4px 12px rgba(0, 147, 205, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.overview-text .product_badge:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 16px rgba(0, 147, 205, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.overview-text h2 {
    color: var(--bg-primary-1);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.overview-text h3 {
    color: #1a1a1a;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.overview-text h6 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
}

.overview-text p {
    color: #2c3e50;
    line-height: 1.8;
    font-size: 1rem;
}

.overview-text p strong {
    color: var(--bg-primary-1);
    font-weight: 700;
}

.overview-text ul {
    margin-left: 0;
    list-style-type: none;
    padding-left: 0;
}

.overview-text ul li {
    color: #2c3e50;
    margin-bottom: 0.875rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.overview-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bg-primary-1);
    font-weight: 900;
    font-size: 1.25rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-text ul li:hover {
    padding-left: 2.25rem;
    color: var(--bg-primary-1);
}

.overview-text a {
    color: var(--bg-primary-1);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 0;
    margin-top: 1rem;
}

.overview-text a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-primary-1);
    transition: width 0.3s ease;
}

.overview-text a:hover::after {
    width: calc(100% - 1.5rem);
}

.overview-text a:hover {
    color: #0077a3;
    transform: translateX(4px);
}

.overview-text svg {
    width: 1.125rem;
    height: 1.125rem;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.overview-text a:hover svg {
    transform: translateX(4px);
}

.overview-text a svg path {
    fill: var(--bg-primary-1);
    transition: fill 0.2s ease;
}

.overview-text a:hover svg path {
    fill: #0077a3;
}

.overview-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s backwards;
}

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

.overview-image::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, rgba(0, 147, 205, 0.1) 0%, rgba(0, 147, 205, 0.05) 100%);
    border-radius: 1.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overview-image:hover::before {
    opacity: 1;
}

.overview-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 1.25rem;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.overview-image:hover img {
    transform: scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Responsive layout for larger screens */
@media screen and (min-width: 720px) {
    #swift-box-overview-section {
        padding: 6rem 1rem;
    }

    .swift-box-overview-wrapper {
        flex-direction: row;
        gap: 4rem;
        padding: 4rem 3rem;
    }

    .overview-text,
    .overview-image {
        width: 50%;
    }

    .overview-text h2 {
        font-size: 2.5rem;
    }

    .overview-text h3 {
        font-size: 1.75rem;
    }
}

@media screen and (min-width: 1024px) {
    .swift-box-overview-wrapper {
        gap: 5rem;
        padding: 5rem 4rem;
    }
}

/* ############# ABOUT_APP SECTION ##############  */

#about-product-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
}

#about-product-section_content_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
}

.about-product-section-title {
    width: 100vw;
    height: 4rem;
    background-color: var(--bg-primary-2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
    
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary-light);
}

.about-product-section-top {
    width: 80%;
    margin: 1rem 0 2rem 0;
}

.card-wrapper {
    width: 100%;
}

.card-wrapper.right {
    margin-right: -10rem;
}

.card-wrapper.left {
    margin-left: -10rem;
}

.card-no-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: .2rem var(--bg-primary-2) solid;
    margin: 1rem;
}

.card-no-image.right {
    border-left-width: 2rem;
    align-items: start;
}

.card-no-image.left {
    border-right-width: 2rem;
    align-items: end;
}

.card-no-image_content {
    width: 70%;
    padding: 1rem;
}

.card-with-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: .2rem var(--bg-primary-2) solid;
    
    margin: 4rem 0;
    position: relative;
}

.card-with-image_img-container {
    position: absolute;
}

.right .card-with-image_img-container {
    left: -10%;
    bottom: -40%;
}

.left .card-with-image_img-container {
    right: 5%;
    top: -30%;
}

.card-with-image .card-title {
    background-color: var(--bg-primary-2);
    color: var(--text-primary-light);
    padding: 1rem 0;
}

.card-with-image_content {
    width: 70%;
    height: 10rem;
    padding: 2rem;
}

.right .card-with-image {
    align-items: start;
}
.left .card-with-image {
    align-items: end;
}


/* ############# FEATURES_SECTION ##############  */
.section-divider {
    width: 100vw;
    margin: 1rem 0 2rem 0;
}

#features-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    text-align: center;
    padding: 0rem 1rem;
    margin-bottom: 4rem;
}

.features-section-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.features-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: var(--section-max-width);
    width: 80vw;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 3rem 0;
}

.card-container.fill {
    background-color: var(--bg-primary-2);
}

.card-container.stroke {
    border: .2rem var(--bg-primary-2) solid;
}

.top {
    padding: 1rem .5rem;
    width: 100%;
}

.card-title, .card-subtitle {
    text-align: center;
}

.bottom {
    font-size: 1.2rem;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 5rem;
}

.bottom .button {
    border-width: .15rem;
    color: var(--text-primary-dark);
    border-color: var(--bg-dark);
}

.stroke .bottom .button:hover {
    background-color: var(--bg-dark);
    color: var(--text-secondary);
}

.fill .bottom .button:hover {
    background-color: var(--bg-dark);
    color: var(--text-primary-light);
}

.middle {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    padding-bottom: 1rem;
}

.feature-title {
    text-align: center;
    color: var(--text-primary-light);
    font-size: 1.2rem;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.features-card-list {
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 0 2rem 1rem 3rem;
}

.features-card-list li {
    list-style-type: none;
    font-size: 1rem;

    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
}

.card-icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.fill .card-icon path {
    stroke: var(--bg-light);
}

.stroke .card-icon path {
    stroke: var(--bg-primary-2);
}

.stroke .feature-title {
    color: var(--text-secondary);
}


/* ############## PARTNERS SECTION */

.about-us-section_wrapper {
    padding: 1rem;
    margin-bottom: 3rem;
}


/* ############## PARTNERS SECTION */
#partners {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: linear-gradient(var(--accent-1) 0%, var(--accent-1) 90%, var(--bg-dark) 90%);
}

.partners-section-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0 2rem;
}

.partners-section-top h2,
.partners-section-top p {
    color: var(--text-primary-dark);
}

.partner-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.partner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 80rem;
    background-color: var(--bg-primary-light);
}

.partner:not(:first-child) {
    margin-top: 3rem;
}

.partner_top {
    width: 100%;
    height: 15rem;
    background-size: cover;
    background-position: 50% 50%;
}

.insys .partner_top {
    background-image: url("../assets/images/insys_header.webp");
}

.wago .partner_top {
    background-image: url("../assets/images/wago-header.webp");
    background-position: 50% 65%;
}

.janitza .partner_top {
    background-image: url("../assets/images/janitza-header.webp");
}

.pcvue .partner_top {
    background-image: url("../assets/images/pcvue-header.png");
}



.partner-card {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 8rem;
    height: 5rem;
    padding: 1rem;
    background-color: var(--bg-primary-light);
}

.partner-card img {
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

.partner-showcase-container {
    width: 100%;
    overflow: hidden;
}

.partner-showcase-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.partner-showcase_text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
    padding: 0 2rem;
}

.partner-showcase-title {
    margin: 1rem 0;
    font-weight: 600;
    text-align: left;
}

.partner-showcase-description ul {
    margin: 1rem 0.5rem;
}

.partner-showcase-description li {
    list-style-type: square;
    margin-left: .5rem;
    margin-bottom: 1rem;
}

.insys-text {
    color: var(--insys)
}

.partner-showcase-description {
    text-align: justify;
}

.partner-showcase-description li {
    color: var(--text-primary-dark);
}

.partner-showcase-contents h3 {
    margin: 2rem 0;
    font-size: 2rem;
}

.partner-showcase-products-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5rem;
    width: 100%;
    padding: 2rem 0;
    background-color: #fafafa;
}

.partner-showcase-products-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--insys);
}

.partner-showcase-products-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.products-prev-btn,
.products-next-btn {
    color: var(--accent-2);
    display: flex;
    align-items: center;
    cursor: pointer;

    position: absolute;
    top: 50%;
    z-index: 100;
}

.products-prev-btn {
    left: 1%;
}

.products-next-btn {
    right: 1%;
}


.products-prev-btn svg,
.products-next-btn svg {
    width: 3rem;
}

.products-prev-btn path,
.products-next-btn path {
    stroke: var(--accent-2);
}

.partner-showcase-products {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    width: 20rem;
    border-radius: .3rem;
    padding: 1rem;
    position: relative;
    gap: 5rem;
    height: 40rem;
}

.partner-product-card {
    flex: 0 0 auto;
    width: 18rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.partner-product-card-header {
    background-color: var(--accent-2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-container {
    width: 10rem;
    height: 10rem;
    margin-top: -5rem;
}

.partner-product-card-header img {
    height: auto; /* reset the height, otherwise it causes overflow, since height is set 100% in base.css for img */
    transition: transform .2s ease-in-out;
    -webkit-transition: transform .2s ease-in-out;
    -moz-transition: transform .2s ease-in-out;
    -ms-transition: transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out;
}

.partner-product-card:hover {
    box-shadow: 0 0 .4rem .4rem var(--shadow-primary);
    transform: scaleX(101%) scaleY(101%) translateY(-3%);
}

.partner-product-card:hover .partner-product-card-header img {
    transform: scale(115%) translateY(-5%);
}

.partner-product-card-body {
    padding: 2rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    background-color: var(--bg-primary-light);
}

.partner-product-card-body_title {
    height: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
}

.partner-product-card-body_title p {
    font-size: .9rem;
}

.partner-product-card-body_desc {
    flex-grow: 1;
}

.partner-product-card-body_desc ul {
    margin: 1rem 0;
}

.partner-product-card-body_desc li {
    list-style-type: square;
    margin-top: .3rem ;
    color: var(--text-primary-dark);
}

.partner-product-card-footer {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-product-card-footer a {
    width: 100%;
    color: var(--text-primary-light);
    background-color: var(--accent-2);
    font-size: 1.1rem;
    padding: .8rem 0;
    /*clip-path: polygon(100% 0, 100% 81%, 62% 100%, 0 73%, 0 0);*/
}

.partner-product-card-footer a:hover {
    color: var(--text-primary-dark);
    background-color: var(--accent-2);
}


/* PCVUE CARD*/

.pcvue .partner-showcase-products-container {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    width: 100%;
    padding: 2rem 0;
}

.pcvue .partner-product-card_desc-title {
    color: var(--text-primary-dark);
    font-weight: 400;
    font-size: 2rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.pcvue .partner-showcase-products-title {
    font-weight: 700;
    font-size: 1.4rem;
}

.pcvue  .partner-product-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    transition: none;
    padding: 0 2rem;
}

.pcvue .partner-product-card:hover {
    box-shadow: none;
    transform: none;
}

.pcvue .partner-product-card:hover .partner-product-card-header img {
    transform: none;
}

.pcvue  .partner-product-card_desc {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 1rem;
    flex-direction: column;
    margin-bottom: 2rem;
}

.pcvue  .partner-product-card_image {
    position: relative;
    z-index: 1;
}

.pcvue  .partner-product-card_image::after {
    content: "";
    position: absolute;
    bottom: -10%;
    right: -5%;
    --radius: 10rem;
    width: var(--radius);
    height: var(--radius);
    border-radius: 50%;
    background-color: red;
    z-index: -1;
}

/*.pcvue  .partner-product-card_image::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: -20%;*/
/*    right: 10%;*/
/*    width: 20rem;*/
/*    height: 20rem;*/
/*    border-radius: 50%;*/
/*    background-color: red;*/
/*    z-index: -1;*/
/*}*/


.partner-product-card_desc--list-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: start;
}

.partner-product-card_desc--list-container_title {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    margin-top: 1rem;
}

.partner-product-card_desc--list li {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: .5rem;
}


/* ############## CONTACT_US SECTION */

#contact-us-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 1rem;
    margin: 5rem 0;
}

.contact-us-section-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-us-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}
.contact-us-title-container p {
    text-align: center;
}

#contact-us-section .buttons-container {
    flex-direction: row;
    margin: 1rem 0;
}

#contact-us-section .button {
    background-color: var(--bg-dark);
}

@media screen and (min-width: 720px) {

    #header-section::after {
        content: '';
        position: absolute;
        background-color: var(--bg-primary-1);
        width: 100vw;
        height: 100%;
        z-index: -1;
    }

    .header-section-top {
        max-width: var(--section-max-width);
    }

    .hero-desc {
        max-width: 30rem;
    }

    #about-product-section_content_wrapper {
        max-width: var(--section-max-width);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .about-product-section-top {
        width: 40em;
        margin: 1rem 0 3rem 0;
    }

    .card-wrapper.left {
        margin: 0;
    }

    .card-wrapper.right {
        margin: 0;
    }

    .card-no-image {
        margin: 2rem 0;
        border: 0;
    }

    .card-no-image_content {
        padding: 0;
    }

    .card-no-image_content h5 {
        border-bottom: .5rem var(--bg-primary-2) solid;
        padding-bottom: .3rem;
    }

    .card-with-image {
        margin: 2rem 0;
        border: 0;
    }

    .right .card-with-image_img-container {
        left: 75%;
        bottom: 10%;
    }

    .left .card-with-image_img-container {
        right: 75%;
        top: 30%;
    }

    #features-section {
        margin-top: 4rem;
    }

    .features-cards-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        width: 100%;
    }

    .features-card-list {
        padding: 0;
    }

    .card-container {
        max-width: 22rem;
        align-self: stretch;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
        text-align: left;
        padding: 1rem 2rem;
    }

    .card-container .card-title {
        font-size: clamp(1.1rem, 2.5vw, 1.25rem);
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
    }

    /* ############# ABOUT_US SECTION ##############  */
    .section-divider {
        width: auto;
    }
    
    #about-us-section {
        padding: 2rem 0;
        margin: 4rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .about-us-section_wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        max-width: var(--section-max-width);
    }

    .about-us-section_title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .about-us-section_title h3,
    .about-us-section_title h5 {
        text-align: left;
    }

    .about-us-section_text {
        width: 100%;
    }


    /* ############# PARTNERS SECTION ##############  */
    #partners {
        width: 100vw;
        padding: 1rem;
    }

    .partners-section-top {
        margin-top: 5rem;
    }

    .partner_top {
        height: 25rem;
        width: 100%;
    }

    .insys .partner_top {
        clip-path: polygon(100% 0, 100% 89%, 74% 100%, 0 89%, 0 0);
    }

    .wago .partner_top {
        clip-path: polygon(100% 0, 100% 100%, 25% 82%, 0 100%, 0 0);
    }

    .janitza .partner_top {
        clip-path: polygon(100% 0, 100% 83%, 52% 100%, 0 82%, 0 0);
    }

    .pcvue .partner_top {
        clip-path: polygon(100% 0px, 99.92% 95.75%, 27.70% 81.25%, 0px 90.25%, 0px 0px);
    }

    .partner-showcase-container {
        gap: 0;
        overflow: unset;
    }

    .partner-showcase_title-description {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .partner-showcase_text {
        max-width: 40rem;
        padding-bottom: 3rem;
    }

    .partner-showcase_text h4,
    .partner-showcase_text p {
        text-align: justify;
    }

    .partner-card {
        border: none;
        padding: 0;
        height: auto;
    }

    .partner-showcase-products-container {
        gap: 7rem;
    }

    .partner-showcase-products-wrapper {
        justify-content: center;
    }

    .partner-showcase-products {
        width: auto;
    }

    .janitza .partner-showcase-products {
        all: unset;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
        row-gap: 8rem;
    }

    .products-prev-btn,
    .products-next-btn {
        display: none;
    }

    .partner-product-card-body_title {
        height: 5rem;
    }

    .wago .partner-product-card-body_title {
        height: 8rem;
    }

    .partner-product-card-body {
        flex-grow: 1;
    }

    .section-desc {
        font-size: 1.2rem;
    }

    .pcvue  .partner-product-card {
        flex-direction: row;
    }
    
    .pcvue  .partner-product-card_desc {
        margin-bottom: 0;
    }

    .pcvue  .partner-product-card_image::after {
        top: -10%;
        right: -10%;
        --radius: 13rem;
    }


}

/* Larger screens - more width for feature cards */
@media screen and (min-width: 1024px) {
    .card-container {
        max-width: 25rem;
        padding: 1.5rem 2.5rem;
    }

    .card-container .card-title {
        font-size: 1.35rem;
    }
}
/* Modern Language Toggle Styles */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    margin-right: 1.5rem;
}

.lang-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary-2);
    transition: all 0.3s ease;
    user-select: none;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 147, 205, 0.1) 0%, rgba(0, 147, 205, 0.2) 100%);
    border: 2px solid rgba(0, 147, 205, 0.3);
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-slider:hover {
    border-color: var(--accent-2);
    background: linear-gradient(135deg, rgba(0, 147, 205, 0.15) 0%, rgba(0, 147, 205, 0.25) 100%);
}

.toggle-indicator {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.1);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--accent-2) 0%, #0081b3 100%);
    border-color: var(--accent-2);
}

.toggle-switch input:checked + .toggle-slider .toggle-indicator {
    transform: translateX(30px);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    box-shadow:
        0 2px 8px rgba(0, 147, 205, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Active state for labels - using JavaScript to add active class */
.lang-label.active {
    color: var(--accent-2);
    transform: scale(1.05);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .language-toggle {
        margin-right: 1rem;
        gap: 0.5rem;
    }

    .toggle-switch {
        width: 50px;
        height: 26px;
    }

    .toggle-indicator {
        height: 18px;
        width: 18px;
    }

    .toggle-switch input:checked + .toggle-slider .toggle-indicator {
        transform: translateX(24px);
    }

    .lang-label {
        font-size: 0.75rem;
    }
}
