/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #3b6064;
    --color-accent: #87bba2;
    --color-background: #f6f6f6;
    --color-dark: #1b1b1b;
    --color-white: #f6f6f6;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Merriweather', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

img {
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Mobile Navigation */
/* Burger Menu Button */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #5eead4;
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 150;
}

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* Mobile Navigation Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 80vw;
    height: 100%;
    background-color: #1a3a3a;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    z-index: 1001;
    padding: 24px;
}

    .mobile-nav.active {
        transform: translateX(0);
    }

/* Close Button */
.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #5eead4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

    .close-btn:hover {
        color: #ccfbf1;
    }

/* Mobile Navigation Links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 64px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    color: #ccfbf1;
    text-decoration: none;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
}

    .mobile-nav-link:hover {
        background-color: rgba(94, 234, 212, 0.1);
        color: #5eead4;
    }

    .mobile-nav-link-highlight {
        background-color: var(--color-accent);
        color: var(--color-dark);
    }

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 96, 100, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 200px;
}
    .logo img {
        width: 100%;
    }

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 20px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link-highlight {
    background-color: var(--color-accent);
    color: var(--color-dark);
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link-highlight:hover {
    background-color: rgba(135, 187, 162, 0.8);
    color: var(--color-dark);
}

.lang-picker {
    position: absolute;
    right: -70px;
}
    .lang-picker img {
        width: 30px;
        height: 17px;
        margin-top: 8px;
    }

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-background);
}

.btn-primary:hover {
    color: var(--color-dark);
    background-color: rgba(135, 187, 162, 0.8);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid rgba(135, 178, 162, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(135, 178, 162, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-dark);
    border: 2px solid rgba(59, 96, 100, 0.3);
}

.btn-outline:hover {
    background-color: rgba(59, 96, 100, 0.1);
}

.btn-full {
    width: 100%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--color-white);
}

.section-muted {
    background-color: var(--color-background);
}

.section-title {
    font-size: 48px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--color-dark);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: rgba(27, 27, 27, 0.7);
    margin-bottom: 48px;
}

.section-text {
    font-size: 18px;
    text-align: center;
    color: rgba(27, 27, 27, 0.8);
    max-width: 800px;
    margin: 0 auto 48px;
}

.deco_circle {
    position: absolute;
    width: 600px;
    opacity: 0.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(140deg, var(--color-dark) -50%, var(--color-primary) 100%);
    color: var(--color-white);
    padding: 160px 0 80px;
    min-height: 80vh;
    align-content: center;
}
    .hero .btn-secondary {
        color: var(--color-white);
    }
    .hero_circle {
        left: -250px;
        top: 20vh;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    z-index: 100;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-features {
    list-style: none;
}

.hero-features li {
    font-size: 18px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image {
    width: 100%;
    position:relative;
}
    .hero-image img {
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        z-index: 5;
    }
    .hero-image .triangle_bot_right {
        width: 0;
        height: 0;
        border: 75px solid transparent;
        position: absolute;
        right: -19px;
        bottom: -15px;
        border-right: 75px solid var(--color-accent);
        border-bottom: 75px solid var(--color-accent);
        z-index: 2;
        border-radius: 10px;
        opacity: 0.6;
    }

/* Image Placeholder */
.image-placeholder {
    background-color: rgba(59, 96, 100, 0.1);
    border: 2px dashed rgba(59, 96, 100, 0.3);
    border-radius: 12px;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(27, 27, 27, 0.5);
    font-size: 18px;
    font-weight: 600;
}

.image-placeholder-small {
    padding: 40px 20px;
    margin-top: 32px;
}

.image-placeholder-wide {
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Two Column Grid */
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.pain-text {
    font-size: 18px;
    color: rgba(27, 27, 27, 0.8);
    margin-bottom: 24px;
}

.solution-title {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.solution-list {
    list-style: none;
}

.solution-list li {
    font-size: 18px;
    margin-bottom: 16px;
    color: rgba(27, 27, 27, 0.9);
}

/* FEATURES */
.hero-image#feature_sideHero {
  display: inline-block;
  width: 25%;
}
#features, #why {
  padding: 2rem 0;
  position: relative;
}
h2 {
  margin-top: 100px;
}
.features_wrapper {
  display:inline-block;
  width:75%;
  position: absolute;
  right: 0;
}
.features {
  display: inline-block;
  width: 100%;
}
.feature-card {
  display: inline-block;
  width: 45%;
  margin: 2% 2% 5% 2%;
  text-align: center;
  padding: 4%;
  background-color: #f9f9f9;
  border-radius: 6px;
  transition: box-shadow 0.3s;
  position: relative;
  padding-top: 80px;
}
.feature-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.feature-card img {
  width: 80px;
  margin-bottom: 1rem;
  border-radius: 100px;
  padding: 10px;
  position: absolute;
  left: 50%;
  margin-left: -40px;
  top: -20px;
}
.feature-card img.blue {
  background-color: #e6e5ff;
}
.feature-card img.green {
  background-color: #e5fff2;
}
.feature-card img.yellow {
  background-color: #fff7e5;
}
.feature-card img.red {
  background-color: #ffe5e5;
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}
.feature-card p {
  font-size: 0.95rem;
  color: #555;
}


/* Benefits */
/*#benefits {
    padding:40px 0 80px 0;
    margin-top: 50px;
    background-color: #e6e6e6;
}
    #benefits h2 {
        margin-top: 50px;
    }
    */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.benefit-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 96, 100, 0.1);
}

.benefit-icon {
    font-size: 48px;
    width: 120px;
}

.benefit-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.benefit-description {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.benefit-details {
    font-size: 16px;
    color: rgba(27, 27, 27, 0.7);
}

/* Social Proof */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}
.single-logo {
    align-content: center;
    text-align: center;

    transition: all 0.5s;

    filter: grayscale(100%) opacity(80%);
    -o-filter: grayscale(100%) opacity(80%);
    -moz-filter: grayscale(100%) opacity(80%);
    -webkit-filter: grayscale(100%) opacity(80%);
}
    .single-logo:hover {
        filter: grayscale(0%) opacity(100%);
        -o-filter: grayscale(0%) opacity(100%);
        -moz-filter: grayscale(0%) opacity(100%);
        -webkit-filter: grayscale(0%) opacity(100%);
    }
    #dock1 {
        max-width: 250px;
    }
    #gw {
        max-width: 160px;
    }
    #bsr {
        width: 130%;
    }

.logo-placeholder {
    background-color: rgba(59, 96, 100, 0.05);
    border: 2px solid rgba(59, 96, 100, 0.2);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    color: rgba(27, 27, 27, 0.5);
    font-weight: 600;
}

.testimonial-card {
    background-color: var(--color-white);
    border-left: 4px solid var(--color-accent);
    border-radius: 12px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.testimonial-author {
    font-size: 16px;
    color: rgba(27, 27, 27, 0.7);
}

/* Forms */
.hot-seat-content {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.hot-seat-form,
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(59, 96, 100, 0.2);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: rgba(27, 27, 27, 0.6);
    font-style: italic;
    margin-top: 16px;
}

.success-message {
    background-color: rgba(135, 187, 162, 0.1);
    border: 2px solid var(--color-accent);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-white);
    margin: 0 auto 24px;
}

.success-message h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.success-message p {
    font-size: 16px;
    color: rgba(27, 27, 27, 0.7);
}

/* Pricing Grid */
.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--color-white);
    border: 2px solid rgba(59, 96, 100, 0.2);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pricing-card:not(.pricing-card-highlighted) {
    margin-top: 30px;
}

.pricing-card-highlighted {
    border: 4px solid var(--color-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
    background: rgba(135, 187, 162, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: var(--color-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-header-content {
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 28px;
    margin-bottom: 8px;
}

.pricing-label {
    font-size: 14px;
    color: rgba(27, 27, 27, 0.6);
}

.pricing-price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
}

.price-period {
    font-size: 16px;
    color: rgba(27, 27, 27, 0.6);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 16px;
    margin-bottom: 12px;
    color: rgba(27, 27, 27, 0.9);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 16px;
}

.team-name {
    font-size: 20px;
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: rgba(27, 27, 27, 0.6);
}

/* Contact Section */
.contact-header {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.contact-form {
    max-width: 800px;
}

/* CTA Section */
.cta-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
}
    .footer-logo img {
        width: 200px;
    }

.footer-nav {
    display: flex;
    gap: 32px;
}
    .footer-nav li {
        list-style-type: none;
    }

.footer-nav a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    text-align: right;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

#impressum, #datenschutz {
    margin: 200px auto;
}
    #impressum h2, #datenschutz h2 {
        font-size: 30px;
    }
    #impressum h3, #datenschutz h3 {
        margin-top: 30px;
        margin-bottom: 10px;
    }
    #impressum p, #datenschutz p {
    }

/* Responsive */
@media (max-width: 1400px) {
    .hero-image {
        width: 70%;
    }
    .hero_circle {
        width: 500px;
    }

    .logos-grid {
        gap: 10px;
    }
    #gw {width: 130px;}
    #bsr {width: 120%;}
}

@media (max-width: 1025px) {
    .container {
        width: 820px;
    }
    .hero-grid {
        grid-template-columns: 2fr;
    }
    .hero-content {
        width: 80%;
        margin: 0 auto;
    }
    .hero-image {
        width: 400px;
        margin: 0 auto;
    }
    #why {
        margin-bottom: 200px;
    }
    .hero-image#feature_sideHero {
        width: 40%;
    }
    .features_wrapper {
        width: 60%;
        margin-bottom: 180px;2
    }
    .feature-card {
        width: 90%;
        margin: 2% 2% 5% 40px;
    }
    #features {

    }
    .benefits-grid {
        grid-template-columns: repeat(1 , 1fr);
    }
    .logos-grid {
        gap: 0;
    }
    #dock1 {width: 230px;}
    #gw {width: 110px;}

    .pricing-grid {
        grid-template-columns: repeat(1 , 1fr);
    }
}

@media (max-width: 768px) {
    .hero-grid,
    .two-column-grid,
    .benefits-grid,
    .logos-grid,
    .pricing-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .lang-picker {
        right: 20px;
        bottom: 20px;
    }

    .container {
        width: 100%;
    }
    .section {
        padding: 40px 0; 
    }


    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .hero {
        padding-top: 140px;
        min-height: 600px;
        max-height: 70vh;
    }
    .hero-image {
        display: none;
    }
    .hero_circle {
        width: 420px;
    }

    #why {
        margin-bottom: 0;
    }
        .hero-image#feature_sideHero {
            display: none;
        }
        .features_wrapper {
            position: relative;
            width: 100%;
            margin-bottom: 0;
        }
            .feature-card {
                width: 80%;
                margin: 2% 10% 5% 10%;
            }

    .logos-grid {
        grid-template-columns: repeat(2 , 1fr);
    }
        #dock1 {width: 80%;}
        #gw {width: 50%;}
        #bsr {width: 150%;}

    .form-row {
        grid-template-columns: 1fr;
    }

    .pricing-card-highlighted {
        transform: none;
    }

    .footer-nav {
        display:block;
    }
        .footer-nav li {
            list-style-type: none;
            text-align: right;
        }
}