


:root {
    --primary: #9cbb44;
    --primary-dark: #7a9633;
    --primary-light: #b8d466;
    --dark: #2d2d2d;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --bg-light: #fafafa;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.modal-content a:not(.btn-lead-primary):not(.btn-lead-secondary),
.modal-content a:hover:not(.btn-lead-primary):not(.btn-lead-secondary),
.modal-content a:focus:not(.btn-lead-primary):not(.btn-lead-secondary),
.modal-content p a:not(.btn-lead-primary):not(.btn-lead-secondary),
.modal-content p a:hover:not(.btn-lead-primary):not(.btn-lead-secondary),
.modal-content ul a:not(.btn-lead-primary):not(.btn-lead-secondary),
.modal-content ul a:hover:not(.btn-lead-primary):not(.btn-lead-secondary),
#serviceModal a:not(.btn-lead-primary):not(.btn-lead-secondary),
#serviceModal a:hover:not(.btn-lead-primary):not(.btn-lead-secondary) {
    color: inherit !important;
    text-decoration: none !important;
    transition: none !important;
    cursor: default !important;
    pointer-events: none !important;
}


nav {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

nav.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.nav-logo {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 1.15rem;
    padding: 0.6rem 0;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}


.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger { 
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before { 
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
    top: -9px;
}

.hamburger::after { 
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
    top: 9px;
}

.mobile-menu-toggle.active .hamburger { background: transparent; }
.mobile-menu-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.mobile-menu-toggle.active .hamburger::after { transform: rotate(-45deg); top: 0; }


.mobile-nav-overlay,
.mobile-nav {
    display: none;
}


.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 2rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(156, 187, 68, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(156, 187, 68, 0.05) 0%, transparent 40%);
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-5%, -5%) rotate(0deg); }
    50% { transform: translate(5%, 5%) rotate(180deg); }
}

.hero-content {
    max-width: 1400px;
    z-index: 1;
    position: relative;
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

.hero h1 {
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.4rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-logo {
    animation: fadeInDown 0.8s ease-out;
    transition: transform 0.3s ease;
    margin-bottom: 3rem;
}

.hero-logo:hover {
    transform: scale(1.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: slideUp 0.8s ease-out 0.4s both;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 320px;
    text-align: center;
    font-size: 1.2rem;
    padding: 1.4rem 2.8rem;
}


.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.btn-primary:hover {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary-dark), #6a8229);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1.2rem 2.5rem !important;
    font-size: 1.1rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-large:hover {
    color: var(--white) !important;
}


.apply-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #9cbb44;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.apply-button:hover {
    background: #7a9633;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 187, 68, 0.3);
}

/* Spezifische Regel für transparente apply-buttons */
.apply-button[style*="background: transparent"]:hover {
    background: #9cbb44 !important;
    color: var(--white) !important;
    border-color: #9cbb44 !important;
}


.stats {
    background: var(--primary);
    padding: 5rem 0;
    position: relative;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    color: var(--white);
}


.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.95;
}


.services {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.section-header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2.5rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 48px;
    touch-action: manipulation;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(156, 187, 68, 0.15);
}


.service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-cta {
    opacity: 1;
    transform: translateY(0);
}

.service-cta .cta-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cta .cta-arrow {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.service-card:hover .cta-arrow {
    transform: translateX(4px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}


.team {
    padding: 6rem 0;
    background: var(--white);
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    text-align: center;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(156, 187, 68, 0.15);
}

.member-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    font-weight: bold;
    flex-shrink: 0;
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
    font-weight: 600;
}

.member-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.member-expertise {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.member-expertise-item {
    display: block;
    padding: 0.2rem 0;
}

.member-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: auto;
    padding-top: 1rem;
}

.member-btn {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.member-btn:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 187, 68, 0.3);
}


.partners {
    padding: 6rem 0;
    background: var(--bg-light);
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.partner-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: var(--transition);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(156, 187, 68, 0.2);
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.partner-name {
    font-weight: 600;
    color: var(--gray);
    font-size: 1.1rem;
}


.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.about-header h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-story {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-story p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 2rem;
}

.about-story p strong {
    color: var(--dark);
    font-weight: 600;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 187, 68, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-description {
    color: var(--gray);
    line-height: 1.7;
}


.karriere {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.karriere-teaser-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.karriere-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.karriere-highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.karriere-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(156, 187, 68, 0.15);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-number {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.highlight-label {
    color: var(--gray);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 500;
    line-height: 1.3;
}


.karriere-benefits-preview {
    margin: 3rem 0;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.karriere-benefits-preview::before,
.karriere-benefits-preview::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.karriere-benefits-preview::before {
    left: 0;
    background: linear-gradient(90deg, #f8f9fa, transparent);
}

.karriere-benefits-preview::after {
    right: 0;
    background: linear-gradient(90deg, transparent, #f8f9fa);
}

.benefits-marquee {
    position: relative;
}

.benefits-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left 30s linear infinite;
}

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

.benefit-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--dark);
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.benefit-tag:hover {
    background: var(--primary);
    color: white !important;
    transform: scale(1.05);
}

.karriere-cta-area {
    background: linear-gradient(135deg, white, #f8f9fa);
    border-radius: 30px;
    padding: 4rem;
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.cta-content h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 1rem;
}

.highlight-text {
    color: var(--primary);
    position: relative;
}

.cta-content p {
    color: var(--gray);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}


.cta-buttons .btn-primary:hover,
.cta-buttons .btn-primary:hover span {
    color: var(--white) !important;
}

.cta-buttons .btn-outline:hover,
.cta-buttons .btn-outline:hover span {
    color: var(--white) !important;
}


.reviews-integrated {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews-container {
    position: relative;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f0f0f0;
    -webkit-overflow-scrolling: touch;
}


.reviews-slider::-webkit-scrollbar {
    height: 8px;
}

.reviews-slider::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.reviews-slider::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.reviews-slider::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.review-card {
    flex: 0 0 350px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(156, 187, 68, 0.15);
}

.review-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    opacity: 0.8;
}

.review-stars {
    color: #fbbc04;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-text {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
    font-style: italic;
}


.contact-wave {
    position: relative;
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}


.contact-wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 320px;
    background: linear-gradient(180deg, 
        var(--primary) 0%, 
        var(--primary-dark) 100%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}


.contact-wave::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 320px;
    background-image: 
        linear-gradient(30deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-30deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
    background-size: 30px 30px;
    pointer-events: none;
}

.contact-wave-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


.contact-wave-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 1rem;
    position: relative;
}

.contact-wave-header h2 {
    font-size: clamp(2rem, 4vw, 2.875rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.contact-wave-header p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    padding: 0 1rem;
    letter-spacing: -0.01em;
}


.contact-wave-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-wave-bottom {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}


.contact-wave-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 30px -5px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-wave-bottom .contact-wave-card {
    max-width: 380px;
    width: 100%;
}


.contact-wave-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.contact-wave-card:hover::before {
    transform: scaleX(1);
}

.contact-wave-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 20px 40px -10px rgba(0, 0, 0, 0.15);
}


.primary-contact {
    transform: scale(1.05);
    border: 2px solid var(--primary);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 15px 35px -5px rgba(156, 187, 68, 0.25);
}


@media (max-width: 768px) {
    .hero-logo img {
        height: 150px !important;
    }
    
    .primary-contact {
        transform: scale(1);
        border: 1px solid rgba(0, 0, 0, 0.04);
        box-shadow: 
            0 1px 3px rgba(0, 0, 0, 0.05),
            0 10px 30px -5px rgba(0, 0, 0, 0.08);
    }
    
    .primary-contact::before {
        transform: scaleX(0);
        height: 2px;
    }
    
    .primary-contact:hover {
        transform: translateY(-4px);
        box-shadow: 
            0 1px 3px rgba(0, 0, 0, 0.05),
            0 20px 40px -10px rgba(0, 0, 0, 0.15);
    }
    
    .primary-contact:active {
        transform: translateY(-2px) scale(0.98);
        transition: all 0.1s ease;
    }
}

.primary-contact::before {
    transform: scaleX(1);
    height: 3px;
}

.primary-contact:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 25px 50px -10px rgba(156, 187, 68, 0.35);
}


.contact-wave-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, 
        rgba(156, 187, 68, 0.1), 
        rgba(156, 187, 68, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(156, 187, 68, 0.2);
}

.contact-wave-card:hover .contact-wave-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: scale(1.05);
    border-color: transparent;
}

.contact-wave-card:hover .contact-wave-icon {
    color: white;
}


.contact-wave-card h3 {
    color: var(--dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-wave-info {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-wave-info p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-wave-info .highlight,
.contact-wave-info strong {
    color: var(--dark);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0.25rem 0;
}

.contact-wave-info .subtitle {
    font-size: 0.875rem;
    color: var(--gray);
    opacity: 0.8;
}


.contact-wave-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.15s ease;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.05),
        0 4px 8px -2px rgba(156, 187, 68, 0.25);
    margin-top: auto;
    text-align: center;
    width: 100%;
    max-width: 220px;
    min-height: 48px;
    touch-action: manipulation;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    letter-spacing: -0.01em;
}

.contact-wave-link:hover {
    transform: translateY(-1px);
    background: var(--primary-dark);
    color: var(--white) !important;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.05),
        0 8px 16px -4px rgba(156, 187, 68, 0.35);
}

.contact-wave-link span {
    transition: transform 0.15s ease;
    font-size: 1rem;
    line-height: 1;
    color: inherit;
}

.contact-wave-link:hover span {
    transform: translateX(2px);
    color: var(--white) !important;
}


.legal-page {
    padding: 120px 2rem 4rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legal-container h1 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.legal-container h2 {
    color: var(--dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.legal-container h3 {
    color: var(--dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.legal-container p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul, .legal-container ol {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
    color: var(--primary-dark);
}

.info-box {
    background: #f8f9fa;
    border-left: 4px solid var(--primary);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 5px;
}

.paragraph-number {
    font-weight: 700;
    color: var(--primary);
}


.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--primary);
    color: white;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-table tbody tr:hover {
    background: #f8f9fa;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.2rem;
}

.category-necessary {
    background: #28a745;
    color: white;
}

.category-functional {
    background: #17a2b8;
    color: white;
}

.category-analytics {
    background: #ffc107;
    color: #333;
}

.category-marketing {
    background: #dc3545;
    color: white;
}

.manage-cookies-btn {
    display: inline-block;
    margin: 2rem 0;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.manage-cookies-btn:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 187, 68, 0.3);
}


.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(156, 187, 68, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(100px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(156, 187, 68, 0.5);
    background: linear-gradient(135deg, #a5c84f, #85a339);
}

.arrow-up {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.back-to-top:hover .arrow-up {
    transform: translateY(-3px);
}

.back-to-top-text {
    display: none !important;
}

.back-to-top.show {
    animation: pulseOnce 0.6s ease 0.3s;
}

@keyframes pulseOnce {
    0% { box-shadow: 0 4px 15px rgba(156, 187, 68, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(156, 187, 68, 0.8); }
    100% { box-shadow: 0 4px 15px rgba(156, 187, 68, 0.4); }
}


.teamviewer-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #0066CC, #004499);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,102,204,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    font-weight: 600;
    animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {
    0% { box-shadow: 0 4px 20px rgba(0,102,204,0.4); }
    50% { box-shadow: 0 4px 30px rgba(0,102,204,0.6); }
    100% { box-shadow: 0 4px 20px rgba(0,102,204,0.4); }
}

.teamviewer-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,102,204,0.5);
    background: linear-gradient(135deg, #0077DD, #0055AA);
    animation: none;
    color: var(--white) !important;
}

.float-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-text {
    font-size: 1rem;
}


footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}


.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: slideUpModal 0.3s ease;
    position: relative;
}

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

.close {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.close:hover {
    color: var(--primary);
}


.modal-lead-capture {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem -1rem 0;
}

.lead-capture-content h4 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.lead-capture-content p {
    color: var(--gray);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.lead-capture-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lead-primary, .btn-lead-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.btn-lead-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-lead-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(156, 187, 68, 0.3);
}

.btn-lead-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-lead-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 600px) {
    .lead-capture-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lead-primary, .btn-lead-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }
    
    .modal-lead-capture {
        margin: 1.5rem -0.5rem 0;
        padding: 1.2rem;
    }
    
    .lead-capture-content h4 {
        font-size: 1.1rem;
    }
    
    .lead-capture-content p {
        font-size: 0.9rem;
    }
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


.service-card:active {
    transform: translateY(-6px) scale(0.98);
    transition: all 0.1s ease;
}

.contact-wave-card:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

.primary-contact:active {
    transform: scale(1.03) translateY(-4px);
    transition: all 0.1s ease;
}

.btn-lead-primary:active,
.btn-lead-secondary:active {
    transform: translateY(0) scale(0.96);
    transition: all 0.1s ease;
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }


.footer-tagline {
    margin: 0;
    line-height: 1.4;
}

.tagline-text {
    color: var(--gray);
    font-size: 0.95em;
}

.tagline-year {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1em;
    text-shadow: 0 1px 2px rgba(156, 187, 68, 0.1);
}


.about-partners {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.partner-commitment {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(156, 187, 68, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.partner-commitment p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark);
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem 1rem;
    }
    
    .partner-commitment {
        padding: 1.5rem;
    }
}


@media (max-width: 1024px) {
    .back-to-top {
        bottom: 40px;
        left: 40px;
    }
    
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .contact-wave-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    
    nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5rem;
    }
    
    .nav-logo {
        display: block !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        position: absolute !important;
        right: 1.5rem;
    }
    
    
    .mobile-nav-overlay {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-nav-overlay.active {
        display: block !important;
        opacity: 1;
    }
    
    
    .mobile-nav {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        z-index: 1999;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-direction: column;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .mobile-nav.active {
        right: 0;
    }
    
    
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        border-bottom: 1px solid #f0f0f0;
        background: linear-gradient(135deg, #fafafa 0%, white 100%);
    }
    
    .mobile-nav-close {
        width: 40px;
        height: 40px;
        border: none;
        background: #f5f5f5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #666;
    }
    
    .mobile-nav-close:hover {
        background: var(--primary);
        color: white;
        transform: rotate(90deg);
    }
    
    
    .mobile-nav-links {
        flex: 1;
        overflow-y: auto;
        padding: 1rem 0;
        list-style: none;
        margin: 0;
    }
    
    .mobile-nav-links li {
        margin: 0;
    }
    
    .mobile-nav-link {
        display: flex;
        align-items: center;
        padding: 1.2rem 1.5rem;
        color: var(--dark);
        text-decoration: none;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
        font-size: 1.1rem;
        font-weight: 500;
        min-height: 48px;
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        background: linear-gradient(90deg, rgba(156, 187, 68, 0.1) 0%, transparent 100%);
        border-left-color: var(--primary);
        color: var(--primary);
    }
    
    .mobile-nav-icon {
        width: 30px;
        font-size: 1.3rem;
        margin-right: 1rem;
    }
    
    .mobile-nav-arrow {
        margin-left: auto;
        opacity: 0.3;
        transition: all 0.2s ease;
    }
    
    .mobile-nav-link:hover .mobile-nav-arrow {
        opacity: 1;
        transform: translateX(3px);
    }
    
    
    .mobile-nav-footer {
        padding: 1.5rem;
        border-top: 1px solid #f0f0f0;
        background: #fafafa;
    }
    
    .mobile-nav-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem;
        background: var(--primary);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-bottom: 0.75rem;
        min-height: 48px;
        font-size: 1rem;
    }
    
    .mobile-nav-cta:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(156, 187, 68, 0.3);
        color: white !important;
    }
    
    .mobile-nav-cta.secondary {
        background: white;
        color: var(--primary);
        border: 2px solid var(--primary);
        margin-bottom: 0;
    }
    
    .mobile-nav-cta.secondary:hover {
        background: var(--primary);
        color: white !important;
    }
    
    
    body.mobile-menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    
    .hero {
        padding: 6rem 1rem 2rem;
        margin-top: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: fit-content;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        min-width: auto;
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }

    
    .stats {
        padding: 3rem 0;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .stat-card {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
        line-height: 1.2;
    }

    
    .services {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem;
    }
    
    .section-header p {
        font-size: 0.9rem !important;
        line-height: 1.4;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.25rem;
        border-radius: 15px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        border-radius: 10px;
    }
    
    .service-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .service-card p {
        font-size: 0.85rem !important;
        line-height: 1.4;
        color: var(--gray);
        margin-bottom: 0;
    }
    
    .service-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(156, 187, 68, 0.1);
    }
    
    .service-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .service-cta {
        opacity: 1 !important;
        transform: translateY(0) !important;
        padding-top: 0.75rem !important;
    }
    
    .service-cta .cta-text {
        font-size: 0.85rem !important;
    }

    
    .about-header h2 {
        font-size: 1.5rem !important;
    }
    
    .team-grid,
    .karriere-highlights-grid,
    .about-values {
        grid-template-columns: 1fr;
    }

    
    .about {
        padding: 3rem 0;
    }
    
    .about-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .about-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .about-header h2 span {
        color: var(--primary);
    }
    
    .about-story {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .about-story p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
        color: var(--gray);
    }
    
    .about-story p strong {
        font-size: 0.95rem !important;
        color: var(--dark);
    }
    
    
    .about-values {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 1rem !important;
        margin-top: 2rem !important;
    }
    
    .value-card {
        padding: 1.5rem !important;
        border-radius: 12px !important;
        box-shadow: 0 3px 10px rgba(0,0,0,0.06) !important;
        border: 1px solid rgba(0,0,0,0.04);
        transition: all 0.2s ease !important;
    }
    
    .value-card:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 15px rgba(156, 187, 68, 0.1) !important;
    }
    
    .value-card:active {
        transform: scale(0.98) !important;
    }
    
    .value-icon {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .value-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
        color: var(--primary);
        font-weight: 600;
    }
    
    .value-description {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        color: var(--gray);
    }
    
    
    .reviews-integrated {
        padding: 0 1rem;
    }
    
    .reviews-integrated h3 {
        font-size: 1.5rem !important;
        margin: 2rem 0 1.5rem !important;
    }
    
    .reviews-slider {
        gap: 1rem;
        padding: 0.5rem 0 1.5rem;
    }
    
    .review-card {
        flex: 0 0 280px;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .review-icon {
        font-size: 1.5rem;
        top: 1rem;
        right: 1rem;
    }
    
    .review-stars {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .review-text {
        font-size: 0.85rem !important;
        line-height: 1.5;
    }
    
    
    .reviews-integrated > div:last-child {
        margin-top: 2rem;
    }
    
    .reviews-integrated > div:last-child p {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
    }
    
    .reviews-integrated .btn {
        padding: 0.9rem 1.8rem !important;
        font-size: 0.95rem !important;
    }

    
    .partners {
        padding: 3rem 0;
    }
    
    .partners-container .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .partners-container .section-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem;
    }
    
    .partners-container .section-header p {
        font-size: 0.9rem !important;
        line-height: 1.4;
    }
    
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 0 1rem !important;
        margin-top: 2rem !important;
    }
    
    .partner-card {
        padding: 1.2rem 0.8rem !important;
        height: 110px !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
        border: 1px solid rgba(0,0,0,0.04);
        transition: all 0.2s ease !important;
        position: relative;
        background: white !important;
    }
    
    
    .partner-card:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(156, 187, 68, 0.15) !important;
    }
    
    
    .partner-card:active {
        transform: scale(0.98) !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
    }
    
    .partner-card::before {
        height: 3px !important;
    }
    
    .partner-logo {
        font-size: 2rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .partner-name {
        font-size: 0.85rem !important;
        font-weight: 600;
        color: var(--dark) !important;
        line-height: 1.2;
    }
    
    
    #serviceModal .modal-content {
        
    }
    
    
    #serviceModalContent p {
        
    }

    
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        padding: 0 1rem !important;
    }
    
    .team-member {
        background: white;
        border-radius: 10px;
        padding: 0.8rem;
        text-align: center;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
        min-height: auto;
        display: block;
    }
    
    .team-member:active {
        transform: scale(0.98);
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }
    
    .team-member:hover {
        transform: none;
        box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        border-color: var(--primary);
    }
    
    .team-member .member-image {
        width: 45px;
        height: 45px;
        margin: 0 auto 0.5rem;
        font-size: 1.1rem;
    }
    
    .team-member .member-name {
        font-size: 0.85rem;
        margin-bottom: 0.15rem;
        line-height: 1.15;
    }
    
    .team-member .member-role {
        font-size: 0.65rem;
        margin-bottom: 0;
        line-height: 1.1;
    }
    
    .team-member .member-expertise,
    .team-member .member-buttons {
        display: none;
    }

    
    .karriere-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .karriere-highlight-card {
        padding: 1.5rem 1rem;
    }
    
    .highlight-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .highlight-number {
        font-size: 1.8rem !important;
        margin-bottom: 0.3rem;
    }
    
    .highlight-label {
        font-size: 0.8rem !important;
        line-height: 1.2;
    }
    
    .karriere-cta-area {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        text-align: center;
        border-radius: 20px;
        margin-top: 3rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem;
    }
    
    .cta-content p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .cta-buttons .btn,
    .cta-buttons .btn-outline {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem !important;
        font-size: 0.95rem !important;
        text-align: center;
        justify-content: center;
    }
    
    .cta-buttons .btn span,
    .cta-buttons .btn-outline span {
        text-align: center;
        flex: 1;
    }

    
    .contact-wave {
        padding: 4rem 0;
    }
    
    .contact-wave::before {
        height: 280px;
    }
    
    .contact-wave::after {
        display: none; 
    }
    
    .contact-wave-header {
        margin-bottom: 3rem;
        padding-top: 0.5rem;
    }
    
    .contact-wave-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-wave-header p {
        font-size: 0.95rem;
    }
    
    .contact-wave-card {
        padding: 1.5rem;
    }
    
    .contact-wave-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%; 
        max-width: none; 
    }
    
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    
    .legal-page {
        padding: 3rem 1rem 2rem;
    }
    
    .legal-container {
        padding: 2rem 1.5rem;
    }
    
    .legal-container h1 {
        font-size: 1.8rem;
    }
    
    .legal-container h2 {
        font-size: 1.3rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }

    
    .teamviewer-float {
        display: none !important;
    }
    
    .back-to-top {
        bottom: 80px !important;
        right: 20px !important;
        left: auto !important;
        width: 45px !important;
        height: 45px !important;
    }
    
    .arrow-up {
        width: 20px !important;
        height: 20px !important;
    }

    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 1rem 2rem;
        min-height: 48px;
    }

    
    
    .modal-content {
        padding: 1.5rem !important;
        width: 95% !important;
        max-width: none !important;
        max-height: 90vh !important;
        margin: 1rem !important;
        border-radius: 15px !important;
    }
    
    
    #serviceModalTitle {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }
    
    
    .modal-content .close {
        top: 1rem !important;
        right: 1rem !important;
        font-size: 1.8rem !important;
        width: 35px !important;
        height: 35px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #f0f0f0 !important;
        border-radius: 50% !important;
    }
    
    
    #serviceModalContent p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.8rem !important;
    }
    
    #serviceModalContent p strong {
        font-size: 0.95rem !important;
    }
    
    
    .service-list {
        margin: 1rem 0 !important;
    }
    
    .service-list li {
        padding: 0.5rem 0 0.5rem 2rem !important;
        margin-bottom: 0.3rem !important;
        font-size: 0.85rem !important;
    }
    
    .service-list .list-bullet {
        width: 20px !important;
        height: 20px !important;
        left: 0 !important;
    }
    
    .service-list .list-bullet::after {
        width: 6px !important;
        height: 6px !important;
    }
    
    .service-list .list-content {
        line-height: 1.4 !important;
        font-size: 0.85rem !important;
    }
    
    
    .service-footer {
        margin-top: 1.2rem !important;
        padding-top: 1rem !important;
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    
    .service-list li:hover {
        background: none !important;
        transform: none !important;
    }
    
    
    .service-list li:active {
        background: rgba(156, 187, 68, 0.1) !important;
    }
    
    
    #serviceModalContent p + p {
        margin-top: 0.5rem !important;
    }
    
    
    #serviceModalContent a {
        padding: 0.5rem 0;
        display: inline-block;
    }
    
    
    .modal-content::-webkit-scrollbar {
        width: 4px !important;
    }
    
    .modal-content {
        scrollbar-width: thin;
    }
}


@media (max-width: 380px) {
    nav {
        display: none !important;
    }
    
    .back-to-top {
        bottom: 70px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .arrow-up {
        width: 18px !important;
        height: 18px !important;
    }
    
    
    .services {
        padding: 2.5rem 0;
    }
    
    .section-header h2 {
        font-size: 1.3rem !important;
    }
    
    .section-header p {
        font-size: 0.85rem !important;
    }
    
    .services-grid {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card h3 {
        font-size: 1rem !important;
        margin-bottom: 0.4rem;
    }
    
    .service-card p {
        font-size: 0.8rem !important;
        line-height: 1.35;
    }
    
    .service-cta {
        opacity: 1 !important;
        transform: translateY(0) !important;
        padding-top: 0.75rem !important;
    }
    
    .service-cta .cta-text {
        font-size: 0.8rem !important;
    }

    
    .modal-content {
        padding: 1.2rem !important;
        width: 98% !important;
        margin: 0.5rem !important;
    }
    
    #serviceModalTitle {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    #serviceModalContent p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    .service-list li {
        padding: 0.4rem 0 0.4rem 1.8rem !important;
        font-size: 0.8rem !important;
    }
    
    .service-list .list-bullet {
        width: 18px !important;
        height: 18px !important;
    }
    
    .service-list .list-content {
        font-size: 0.8rem !important;
    }
    
    .service-footer {
        font-size: 0.8rem !important;
    }

    
    .about {
        padding: 2.5rem 0 !important;
    }
    
    .about-header h2 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .about-story p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.8rem !important;
    }
    
    .about-story p strong {
        font-size: 0.9rem !important;
    }
    
    .about-values {
        gap: 0.8rem !important;
        padding: 0 0.75rem !important;
    }
    
    .value-card {
        padding: 1.2rem !important;
        border-radius: 10px !important;
    }
    
    .value-icon {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .value-title {
        font-size: 1rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .value-description {
        font-size: 0.8rem !important;
        line-height: 1.35 !important;
    }
    
    
    .reviews-integrated h3 {
        font-size: 1.3rem !important;
        margin: 1.5rem 0 1rem !important;
    }
    
    .review-card {
        flex: 0 0 240px;
        padding: 1.2rem;
    }
    
    .review-text {
        font-size: 0.8rem !important;
        line-height: 1.4;
    }
    
    .reviews-integrated > div:last-child p {
        font-size: 0.85rem !important;
    }
    
    .reviews-integrated .btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }

    
    .partners {
        padding: 2.5rem 0 !important;
    }
    
    .partners-container .section-header h2 {
        font-size: 1.3rem !important;
    }
    
    .partners-container .section-header p {
        font-size: 0.85rem !important;
    }
    
    .partners-grid {
        gap: 0.75rem !important;
        padding: 0 0.75rem !important;
    }
    
    .partner-card {
        padding: 1rem 0.5rem !important;
        height: 95px !important;
    }
    
    .partner-logo {
        font-size: 1.6rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .partner-name {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    
    .contact-wave {
        padding: 3rem 0;
    }
    
    .contact-wave::before {
        height: 240px;
    }
    
    .contact-wave::after {
        height: 240px;
    }
    
    .contact-wave-header h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .contact-wave-header p {
        font-size: 0.9375rem;
        padding: 0 1.5rem;
        line-height: 1.5;
    }
    
    .contact-wave-cards {
        gap: 1.5rem;
    }
    
    .contact-wave-card {
        padding: 2rem;
    }
    
    .contact-wave-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .contact-wave-card h3 {
        font-size: 1.4rem;
    }

    
    .about-header h2 {
        font-size: 1.4rem !important;
    }
    
    .about-story p {
        font-size: 0.88rem !important;
    }
    
    .value-card {
        padding: 1.3rem !important;
    }
    
    .value-title {
        font-size: 1.05rem !important;
    }
    
    .value-description {
        font-size: 0.83rem !important;
    }

    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        padding: 0 0.8rem !important;
    }
    
    .partner-card {
        height: 100px !important;
        padding: 1rem 0.6rem !important;
    }
    
    .partner-logo {
        font-size: 1.8rem !important;
    }
    
    .partner-name {
        font-size: 0.8rem !important;
    }
}


@media print {
    nav, 
    .cookie-banner, 
    .modal, 
    .teamviewer-float,
    .back-to-top {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem;
    }
    
    .btn {
        border: 1px solid var(--primary);
    }
}


:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2.5rem;
    color: #6c757d;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.service-list li:hover {
    background: none !important;
    transform: none !important;
}

.service-list .list-bullet {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #9cbb44, #7a9633);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-list .list-bullet::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.service-list .list-content {
    display: block;
    line-height: 1.6;
}

.service-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(156, 187, 68, 0.2);
    font-size: 0.95rem;
    font-style: italic;
    color: #6c757d;
    line-height: 1.6;
}


.team-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.team-modal.show {
    display: flex;
}

.team-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.team-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.team-modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.team-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-modal-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #9cbb44, #7a9633);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(156, 187, 68, 0.3);
}

.team-modal-name {
    font-size: 1.5rem;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

.team-modal-role {
    color: #9cbb44;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.team-modal-expertise {
    margin-bottom: 1.5rem;
}

.team-modal-expertise h4 {
    font-size: 1rem;
    color: #2d2d2d;
    margin-bottom: 0.8rem;
}

.team-modal-expertise-list {
    list-style: none;
    padding: 0;
}

.team-modal-expertise-item {
    display: block;
    padding: 0.5rem 0;
    color: #6c757d;
    font-size: 0.95rem;
    position: relative;
}

.team-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.team-modal-btn {
    flex: 1;
    padding: 1rem;
    background: linear-gradient(135deg, #9cbb44, #7a9633);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(156, 187, 68, 0.3);
}

.team-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(156, 187, 68, 0.4);
}


@media (max-width: 768px) {
    .team-member {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .team-member:active {
        transform: scale(0.98);
    }
}


@media (prefers-reduced-motion: reduce) {
    *, 
    *::before, 
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .back-to-top {
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .back-to-top:hover {
        transform: none;
    }
    
    .back-to-top.show {
        animation: none;
    }
}