@font-face {
  font-display: swap; 
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/barlow-v13-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap; 
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/barlow-v13-latin-600.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/barlow-v13-latin-700.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/barlow-v13-latin-800.woff2') format('woff2'); 
}

:root {
    --primary: #3E74B3;       
    --primary-dark: #0f172a;
    --primary-light: #64748b;
    --white: #ffffff;
    --black: #000000;
    
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, .btn-header, .btn-hero, .btn-interim {
    font-family: "Barlow", sans-serif;
    font-weight: 700; 
}

.hero h1 {
    font-weight: 800; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

#leistungen,
#vorteile {scroll-margin-top: 120px; }
#ablauf,
#referenzen {scroll-margin-top: 80px; }
#kontakt {scroll-margin-top: 40px; }

@media (max-width: 768px) {
    #leistungen,
    #vorteile {scroll-margin-top: 80px; }
    #ablauf,
    #referenzen {scroll-margin-top: 20px; }
    #kontakt {scroll-margin-top: 20px; }
}

header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.header-inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo img {
    height: 40px; 
    width: auto;
    display: block; 
}


nav {
    display: flex;
    align-items: center;
    gap: 30px; 
}

.desktop-nav { display: flex; align-items: center; gap: 30px; }
.hamburger, .mobile-menu, .mobile-overlay { display: none; }

.header-inner {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%;
}

@media (max-width: 900px) {
    
    .desktop-nav { display: none !important; }

    .header-inner {
        display: flex !important;
        justify-content: space-between !important; 
        align-items: center !important;
        flex-wrap: nowrap !important;
        width: 100%;
        padding: 0 20px;
    }

    .logo {
        margin: 0 !important;
        flex: 0 0 auto !important;
        width: auto !important;
        text-align: left !important;
    }
    
    .logo a, .logo img {
        display: block;
        margin: 0 !important;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        cursor: pointer;
        z-index: 100; 
        margin: 0 !important;
        margin-left: auto !important;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--primary-dark);
        border-radius: 3px;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0;
        width: 85%; 
        max-width: 320px; 
        height: 100vh;
        background-color: var(--white);
        z-index: 1002; 
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        padding: 25px;
        box-sizing: border-box;
    }

    .mobile-menu.active { transform: translateX(0); }

    .mobile-overlay {
        display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(15, 23, 42, 0.6); z-index: 1001; 
        opacity: 0; visibility: hidden; transition: all 0.3s ease;
        backdrop-filter: blur(2px);
    }
    .mobile-overlay.active { opacity: 1; visibility: visible; }

    .mobile-menu-header {
        display: flex; justify-content: space-between; align-items: center;
        margin-bottom: 20px;
        border-bottom: 1px solid #f1f5f9; padding-bottom: 15px;
    }
    .mobile-logo { height: 35px; width: auto; }
    .close-icon { padding: 5px; cursor: pointer; }

    .mobile-links {
        display: flex;
        flex-direction: column;
        gap: 15px; 
    }

    .mobile-links a:not(.btn-mobile) {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--primary-dark);
        text-decoration: none;
        display: block;
        padding: 5px 0;
        
        transition: color 0.1s ease;
    }

    .mobile-links a:not(.btn-mobile):active {
        color: #94a3b8;
    }
    
    .btn-mobile {
        background-color: var(--primary-dark);
        color: var(--white);
        border: 2px solid var(--primary-dark); 
        width: fit-content; 
        padding: 12px 25px;
        
        text-align: center;
        font-weight: 700;
        border-radius: 8px;
        text-decoration: none;
        display: block; 
        
        margin-top: 5px;
        box-shadow: 0 4px 6px rgba(15, 23, 42, 0.1);
        
        transition: all 0.1s ease;
    }

    .btn-mobile:active {
        background-color: var(--white);
        color: var(--primary-dark);
        transform: scale(0.98);
    }
}


nav a:not(.btn-header) {
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

nav a:not(.btn-header)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-dark);
    transition: width 0.3s ease;
}

nav a:not(.btn-header):hover::after {
    width: 100%;
}

.btn-header {
    background-color: var(--primary-dark);
    color: var(--white) !important; 
    border: 2px solid var(--primary-dark);
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}

.btn-header:hover {
    background-color: var(--white);
    color: var(--primary-dark) !important;
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-header:active {
    background-color: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(0);
}

.hero-split {
    position: relative;
    background-color: var(--primary-dark);
    color: var(--white);
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 75vh; 
    min-height: 600px; 
    height: auto; 
}

.hero-text-wrapper {
    display: flex;
    align-items: center; 
    justify-content: center; 
    padding: 40px 40px; 
    width: 100%;
    box-sizing: border-box;
}

.hero-text-content {
    width: 100%;
    max-width: 650px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cbd5e1;
    margin-bottom: 15px;
    display: flex; align-items: center; gap: 8px;
}

.hero-text-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem); 
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 15px; 
    color: var(--white);
    letter-spacing: -1px;
}

.hero-text-content p {
    font-size: 1.25rem;
    line-height: 1.5; 
    color: #cbd5e1;
    margin-bottom: 30px; 
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px; 
    flex-wrap: wrap; 
}

.btn-hero {
    background-color: var(--white); 
    color: var(--primary-dark);       
    padding: 16px 32px;
    border-radius: 8px; 
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
    border: 2px solid var(--white);
    -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
    
    .btn-hero:hover {
        background-color: var(--primary-dark); 
        color: var(--white);
        border-color: var(--white); 
        transform: translateY(-1px);
        cursor: pointer;
    }

    .btn-hero:active {
        background-color: var(--white);
        color: var(--primary-dark) !important;
        border-color: var(--white);
        
        transform: translateY(0);
        box-shadow: none;
    }
}

@media (hover: none) {
    
    .btn-hero:active {
        background-color: var(--primary-dark);
        color: var(--white) !important;
        border-color: var(--white);
        transform: translateY(0);
        box-shadow: none;
    }
}


.btn-hero:active {
    background-color: var(--white);
    color: var(--primary-dark) !important;
    transform: translateY(0);
}

.link-secondary {
    color: var(--white); text-decoration: none; font-weight: 600; font-size: 1rem;
}
.link-secondary:hover { text-decoration: underline; }


.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


.hero-trust {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    width: 100%;
}

.trust-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap; 
}

.white-logo {
    filter: grayscale(100%) 
    invert(100%) 
    brightness(150%)
    contrast(120%);
    opacity: 1;
    transition: all 0.3s ease;
    object-fit: contain; 
}

.trust-separator {
    opacity: 0.2;
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: -4px;
    color: var(--white);
}

@media (max-width: 600px) {
    .trust-logos { gap: 15px; }
    .white-logo { height: 25px !important; }
    .trust-separator { display: none; }
}

.hero-image-container {
    height: 100%;
    width: 100%;
    min-height: 600px; 
    position: relative; 
    background-color: var(--primary-dark);
}
.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right, 
        var(--primary-dark) 0%,   
        rgba(15, 23, 42, 0.6) 15%, 
        rgba(15, 23, 42, 0) 50%    
    );
    pointer-events: none;
}

@media (max-width: 1100px) {
    
    .hero-grid { 
        grid-template-columns: 1fr; 
        min-height: auto;
        height: auto;
    }
    
    .hero-image-container { 
        width: 100%;
        height: 250px; 
        min-height: 250px; 
        order: -1; 
    }

    .hero-image-container::after {
        background: linear-gradient(
            to top, 
            var(--primary-dark) 0%, 
            rgba(15, 23, 42, 0) 30%
        );
    }

    .hero-text-wrapper {
        padding: 30px 20px; 
        justify-content: flex-start; 
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-text-content { 
        max-width: 100%; 
    }

    .hero-text-content h1 {
        font-size: 2.5rem; 
        margin-bottom: 15px;
    }
    
    .hero-text-content p {
        font-size: 1.1rem;
        margin-bottom: 25px; 
    }

    .hero-actions {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .trust-label { margin-bottom: 10px; }
    .trust-logos { gap: 15px; }
    .white-logo { height: 20px !important; }
    .trust-separator { display: none; }
}

.bento-section {
    padding: 100px 0; 
    background-color: var(--white); 
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-dark); 
}

.section-header p {
    color: var(--primary-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto; 
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.item-sport {
    grid-row: 1 / 3; 
    grid-column: 1 / 2;
}

.bento-item {
    position: relative;
    border-radius: 16px; 
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    background-color: #1e293b; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.bento-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.bento-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        to bottom, 
        rgba(15, 23, 42, 0) 20%, 
        rgba(15, 23, 42, 0.5) 50%, 
        rgba(15, 23, 42, 0.95) 100%
    );
    z-index: 1;
}

.bento-item:hover .bento-bg {
    transform: scale(1.05); 
}

.bento-content {
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    padding: 25px; 
    box-sizing: border-box; 
    z-index: 2;
}

.bento-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
    line-height: 1.1;
}

.bento-content p {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.btn-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary); 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
    display: inline-block;
}

.bento-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.bento-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: #cbd5e1; 
    line-height: 1.3;
}

.bento-list li::before {
    content: '✓'; 
    position: absolute;
    left: 0;
    color: var(--primary); 
    font-weight: bold;
}


@media (min-width: 900px) {
    
    .item-sport .bento-content {
        padding: 40px;
    }
    .item-sport h3 { font-size: 2.5rem; margin-bottom: 15px; }
    .item-sport p { font-size: 1.1rem; margin-bottom: 20px; }
    .item-sport .bento-list li { font-size: 1.1rem; margin-bottom: 8px; }
    .item-sport .btn-text { font-size: 1rem; margin-top: 20px; }
    .item-sport .bento-bg {
        background-position: top center !important;
    }

    .item-work .bento-content, 
    .item-work .bento-bg {
        background-position: top center !important;
    }
    .item-print .bento-content {
        padding: 25px;
    }
    
    .item-work h3, .item-print h3 { 
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .item-work p, .item-print p { 
        font-size: 0.95rem; 
        margin-bottom: 5px; 
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;  
        overflow: hidden;
    }
    
    .item-work .bento-list, .item-print .bento-list {
        margin: 5px 0;
    }
    
    .item-work .btn-text, .item-print .btn-text {
        margin-top: 10px;
    }
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr; 
        grid-template-rows: auto; 
        gap: 15px;
    }
    
    .item-sport {
        grid-row: auto; 
        height: 450px;
    }
    
    .item-work, .item-print {
        height: 350px;
    }
    
    .bento-content { padding: 25px; }
    .bento-content h3 { font-size: 1.8rem; }
}


.usps {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: transparent; 
}

.usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px; 
}

.usp-card {
    background: transparent;
    padding: 0 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.usp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.usp-icon svg { 
    width: 45px;  
    height: 45px;
    transition: transform 0.3s ease;
}

.usp-card:hover .usp-icon {
    transform: scale(1.1); 
}

.usp-card h3 { 
    color: var(--primary-dark);
    font-size: 1.3rem; 
    font-weight: 800; 
    margin-bottom: 15px; 
}

.usp-card p { 
    color: var(--primary-light); 
    font-size: 1.05rem; 
    line-height: 1.7; 
}

@media (min-width: 600px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .usp-grid { grid-template-columns: repeat(4, 1fr); } }


.cta-section {
    background-color: var(--primary-dark);
    margin-top: 180px; 
    margin-bottom: 0;
    padding: 0; 
    position: relative;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 350px; 
    position: relative;
}

.cta-content {
    width: 60%;
    z-index: 2;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
    text-transform: none;
}

.cta-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 90%;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--white); 
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--white);
    
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.cta-image {
    position: absolute;
    right: 10%;
    bottom: 0;
    height: 145%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}

.cta-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(-10px 10px 15px rgba(0,0,0,0.3));
}

@media (max-width: 900px) {
    .cta-section {
        margin-top: 60px;
        padding: 50px 20px;
        text-align: center;
    }
    
    .cta-container {
        flex-direction: column;
        min-height: auto;
    }

    .cta-content {
        width: 100%;
        padding-left: 0;
        margin-bottom: 30px;
    }

    .cta-image {
        display: none;
    }

}

.process-section {
    padding: 100px 0;
    background-color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0; 
    height: 3px;
    background: #cbd5e1;
    z-index: 0;
    transform: translateY(30px);
    transition: width 2s ease-out; 
}

.process-grid.active::before {
    width: 100%;
}

.process-step.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.process-step.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(1) {
    transition-delay: 0.2s;
}

.process-step:nth-child(2) {
    transition-delay: 0.6s;
}

.process-step:nth-child(3) {
    transition-delay: 1.0s;
}

.process-step:nth-child(4) {
    transition-delay: 1.4s;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #e2e8f0;
    background-color: var(--white);
    width: fit-content;
    padding-right: 25px; 
    margin-bottom: 20px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.process-step:hover .step-number {
    color: var(--primary);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 1rem;
    color: var(--primary-light);
    line-height: 1.7;
    max-width: 90%;
}

@media (max-width: 900px) {
    
    .process-grid {
        display: flex;
        flex-direction: column;
        gap: 0; 
        position: relative;
        padding-left: 0;
        margin-left: 10px; 
        border: none !important;
    }

    .process-grid::before {
        display: none !important;
    }

    .process-grid::after {
        content: '';
        position: absolute;
        top: 0;
        left: 29px; 
        width: 3px;
        background: #cbd5e1;
        height: 0; 
        transition: height 1.5s ease-out;
        z-index: 0;
    }

    .process-grid.active::after {
        height: 100%;
    }
    
    .process-step {
        position: relative;
        padding-left: 80px;
        padding-bottom: 40px; 
        margin-bottom: 0;
        z-index: 1;
    }

    .step-number {
        position: absolute;
        left: 0; 
        top: 0;
        width: 60px; 
        text-align: center;
        background-color: var(--white) !important; 
        font-size: 2.5rem;
        z-index: 10; 
        padding: 10px 0; 
        margin: 0;
    }
    
    .process-step:nth-child(1) { transition-delay: 0.1s; }
    .process-step:nth-child(2) { transition-delay: 0.3s; }
    .process-step:nth-child(3) { transition-delay: 0.5s; }
    .process-step:nth-child(4) { transition-delay: 0.7s; }
}

.logo-section {
    padding: 60px 0;
    background: #f8fafc;
    overflow: hidden;
}


.slider-title {
    text-align: center;
    margin-bottom: 50px;
    
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    
    text-transform: none;
    letter-spacing: -0.5px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0; 
}

.slider-track {
    display: flex;
    width: fit-content;
    gap: 80px;
    animation: scroll 80s linear infinite; 
}

.slider-wrapper:hover .slider-track {
    animation-play-state: paused;
}

.slide {
    width: 160px; 
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slide img {
    width: auto;
    max-height: 70%; 
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6; 
    transition: all 0.3s ease;
    transform: translateZ(0);
    backface-visibility: hidden; 
}

.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15); 
    cursor: pointer;
}

.slider-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right, #f8fafc 0%, transparent 15%, transparent 85%, #f8fafc 100%);
    z-index: 2;
}

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

@media (max-width: 768px) {
    .slider-track { gap: 40px; animation-duration: 60s; }
    .slide { width: 120px; height: 70px; }
    .slider-title { font-size: 1.2rem; margin-bottom: 30px; }
}

.contact { 
    padding: 100px 0;
    background-color: var(--white); 
    scroll-margin-top: 0;
}

.contact-wrapper { 
    display: grid; 
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px; 
    align-items: flex-start;
}

.contact-info-card h3 {
    font-size: 3.5rem;
    font-weight: 800; 
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 40px;
    max-width: 90%;
}

.trust-list { margin-bottom: 50px; }

.trust-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.trust-icon {
    width: 24px; 
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-item strong {
    display: block;
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.contact-details .info-item {
    display: flex; 
    gap: 15px; 
    margin-bottom: 20px; 
    align-items: center; 
}

.info-icon { 
    width: 45px; height: 45px; 
    background: #f1f5f9;
    color: var(--primary-dark); 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center;
}

.contact-details strong { display: block; font-size: 0.9rem; color: var(--primary-light); }
.contact-details a { color: var(--primary-dark); font-weight: 700; font-size: 1.1rem; text-decoration: none; }
.contact-details a:hover { color: var(--primary); }


.form-card {
    background: var(--white);
    padding: 40px; 
    border-radius: 20px;
    border: 1px solid #e2e8f0; 
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08); 
}

.form-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
}

.form-header h3 { font-size: 1.6rem; color: var(--primary-dark); margin-bottom: 5px; font-weight: 800; }
.form-header p { color: var(--primary-light); font-size: 0.95rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group { margin-bottom: 20px; width: 100%; }

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark); 
}

input, textarea, select {
    width: 100%;
    padding: 14px 16px;
    background: var(--white); 
    border: 1px solid #cbd5e1; 
    border-radius: 8px; 
    font-family: inherit; 
    font-size: 1rem;
    color: var(--primary-dark);
    transition: all 0.2s ease;
}

input:focus, textarea:focus, select:focus { 
    outline: none; 
    border-color: var(--primary); 
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1); 
}

input::placeholder, textarea::placeholder { color: #cbd5e1; }

button[type="submit"] {
    width: 100%;
    background: var(--primary-dark);
    color: var(--white); 
    padding: 18px; 
    border: none; 
    border-radius: 8px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: 0.3s; 
    font-size: 1.1rem;
    margin-top: 10px;
}
button[type="submit"]:hover { 
    background: var(--primary);
    transform: translateY(-2px); 
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

@media (max-width: 900px) {
    .contact { padding: 60px 0; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-info-card h3 { font-size: 2.8rem; }
    .form-card { padding: 30px 20px; }
}

footer { 
    background: var(--primary-dark);
    color: #94a3b8;
    padding-top: 80px;
    font-size: 0.95rem;
    margin-bottom: 0 !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    text-align: left;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 25px;
    opacity: 0.95;
}

.footer-slogan {
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
}

footer a { 
    color: #cbd5e1;
    text-decoration: none; 
    transition: 0.3s; 
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-contact svg {
    stroke: #94a3b8;
    transition: 0.3s;
    flex-shrink: 0;
}

footer a:hover { 
    color: var(--white);
    transform: translateX(5px);
}

footer a:hover svg {
    stroke: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
    font-size: 0.85rem;
    margin-bottom: 0 !important;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0 !important;
}

.legal-links a {
    margin-left: 20px;
    color: var(--primary-light);
}
.legal-links a:hover { color: var(--white); transform: none; }

@media (max-width: 900px) {
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        
        text-align: center; 
    }

    footer a, 
    .contact-link,
    .footer-contact li {
        justify-content: center; 
    }
    
    .footer-logo img {
        margin: 0 auto 20px auto; 
        display: block;
    }
    
    .footer-slogan {
        margin: 0 auto; 
    }
}


@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .contact-wrapper { grid-template-columns: 1fr; }

}

.legal-main {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 60vh;
    background-color: #f8fafc;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: var(--black);
}

.legal-content h1 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 40px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 700;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.legal-section-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 10px;
}

.legal-content p, 
.legal-content li {
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-content a {
    color: var(--black);
    text-decoration: underline;
    font-weight: 500;
}
.legal-content a:hover {
    text-decoration: none;
    opacity: 0.7;
}

.data-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.data-list li {
    margin-bottom: 8px;
    color: var(--black);
}
.data-list strong {
    color: var(--black);
    font-weight: 700;
    margin-right: 5px;
}

.legal-spacer {
    border-top: 1px solid #e2e8f0; 
    margin: 40px 0;
}

@media (max-width: 600px) {
    .legal-content { padding: 25px; }
}