/* Local Fonts */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/Cormorant-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/Cormorant-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    /* Colors inspired by nature and premium calmness */
    --color-bg-light: #f9f8f6;
    /* Soft off-white/sand */
    /* --color-bg-dark: #2c3e50; */

    --color-bg-dark: #1a1616;
    /* Deep slate blue/grey */
    --color-brand-primary: #8e9eab;
    /* Muted cool blue/grey */
    --color-brand-accent: #fec48a;
    /* Soft Gold/Earth tone for highlights */
    --color-text-main: #2c3e50;
    --color-text-main-2: #3b536b;
    --color-text-light: #666666;
    --color-white: #ffffff;

    --color-semi-transparent-black: #1a1616de;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-container: 1440px;
    --spacing-section: 5rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.7;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    font-weight: 400;
    line-height: 1.3;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.9rem;
    color: var(--color-brand-primary);
}

h3 {
    font-size: 1.36rem;
    font-weight: 500 !important;
    margin-bottom: 0.7rem;
    font-family: var(--font-body);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

h4 {

    font-family: var(--font-body);
}


p {
    margin-bottom: 1.5rem;
    /* margin-left: 1rem; */
    font-weight: 400;
    font-size: large;
}



img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.section-light {
    padding: var(--spacing-section) 0;
    background-color: var(--color-bg-light);
}

.section-dark {
    padding: var(--spacing-section) 0;
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    min-height: 720px;
}

/* Kept light for now, maybe use accent background */

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white);
}

.btn-hero {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-brand-accent);
    color: var(--color-white);
    border-radius: 24px;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.btn-hero:hover {
    background-color: var(--color-brand-accent);
}

.btn-primary {
    display: inline-block;
    padding: 22px 30px;
    background-color: var(--color-brand-accent);
    border-radius: 34px;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text-main);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #FEC38A;
    box-shadow: 0 4px 12px rgba(254, 195, 138, 0.4);
}


.btn-secondary {
    display: inline-block;
    padding: 22px 30px;
    background-color: #2c3e50;
    border-radius: 34px;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-white);
    transition: all 0.3s ease;
    margin-left: 1rem;
    margin-top: 1rem;
}

.btn-secondary:hover {
    background-color: #3b536b;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4);
}

/* .btn-subtle {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--color-brand-primary);
    color: var(--color-brand-primary);
    border-radius: 2px;
    margin-top: 1rem;
} */



.btn-subtle {
    font-weight: 400;
    display: inline-block;
    padding: 10px 25px;
    /* border: 1px solid var(--color-brand-primary); */
    color: var(--color-text-main);

    border-radius: 22px;
    /* margin-top: 1rem; */
    background-color: var(--color-brand-accent);
}

.btn-subtle:hover {
    background-color: var(--color-brand-primary);
    color: var(--color-white);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

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


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled,
.legal-page .navbar {
    background-color: #fff1dc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.25rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-top {
    height: 96px;
}

.logo-scroll {
    height: 72px;
}

.logo .logo-scroll {
    display: none;
}

.navbar.scrolled .logo-top,
.legal-page .navbar .logo-top {
    display: none;
}

.navbar.scrolled .logo-scroll,
.legal-page .navbar .logo-scroll {
    display: block;
}

/* Mobile Logo Visibility Logic */
.mobile-logo {
    display: none;
    height: 72px;
}

/* Ensure mobile scroll logo stays hidden on desktop even when scrolled */
.navbar.scrolled .logo-scroll.mobile-logo,
.legal-page .navbar .logo-scroll.mobile-logo {
    display: none;
}

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

    .logo-top.mobile-logo {
        display: block;
    }

    .navbar.scrolled .logo-top.mobile-logo,
    .legal-page .navbar .logo-top.mobile-logo {
        display: none;
    }

    .navbar.scrolled .logo-scroll.mobile-logo,
    .legal-page .navbar .logo-scroll.mobile-logo {
        display: block;
    }
}


.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-main);
}

.nav-link:hover {
    color: var(--color-brand-accent);
}

.nav-link.active {
    color: var(--color-brand-accent);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-brand-accent);
}

/* Active state for button-style nav links */
.nav-link.btn-primary.active {
    background-color: var(--color-brand-accent);
    color: var(--color-white);
}

.nav-link.btn-primary.active::after {
    display: none;
}

.nav-link.btn-subtle.active {
    color: var(--color-white);
}

.nav-link.btn-subtle.active::after {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-main);
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}


/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('../img/hero_bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
    overflow: hidden;
    /* Ensure animations don't scroll initially */
}

.hero-content {
    max-width: 1000px;
    /* Increased width for big text */
    padding: 0 2rem;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Reset default fade behavior for children control */
    transform: translateY(0);
    opacity: 1;
}

/* Custom Title Styling */
.hero-title {
    font-family: var(--font-heading);
    /* Back to Serif */
    font-weight: 300;
    line-height: 0.78;
    letter-spacing: -0.01em;
    color: var(--color-white);
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.outro-title {
    font-family: var(--font-heading);
    font-weight: 300;
    /* line-height: 0.85; */
    color: var(--color-white);
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}


.line-wrapper {
    display: block;
    overflow: visible;
    position: relative;
    /* padding: 0.8rem 1rem; */
    padding: 0.8rem 0rem 0rem 0rem;
    /* Added horizontal padding for swashes */
    margin: -0.8rem -1rem;
    /* Compensate for padding */
}


.line-inner {
    display: block;
    font-size: clamp(3rem, 7vw, 7rem);
    /* Adjusted for 3 lines */
    transform: translateY(120%);
    /* Start lower and slightly rotated */
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.4s ease;
    opacity: 0;
    transform-origin: left bottom;
}

.serif-italic {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    margin-left: 0;
    /* Slight optical spacing */
}


/* Groovy Indentations & Hierarchy */
.groovy-title .line-wrapper:nth-child(1) {
    transform: translateX(-12%);
    /* Shift Left */
}

.groovy-title .line-wrapper:nth-child(1) .line-inner {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 300;
    opacity: 0.9;
}

.groovy-title .line-wrapper:nth-child(2) .line-inner {
    font-size: clamp(3.5rem, 9vw, 8.5rem);
    font-weight: 400;
}

.groovy-title .line-wrapper:nth-child(3) {
    transform: translateX(12%);
    /* Shift Right */
}

.groovy-title .line-wrapper:nth-child(3) .line-inner {
    font-size: clamp(4.5rem, 11vw, 10rem);
    line-height: 0.9;
    /* removed separate indent class usage here, controlled by wrapper transform */
}

.indent-1,
.indent-2 {
    margin-left: 0 !important;
    /* Reset these as we use wrapper transforms */
}

/* Last Row styling */
.line-wrapper.small-row {
    margin-top: 1rem;
    overflow: visible;
    /* Allow shadow/glow if needed */
}

.small-row .line-inner {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 400;
    line-height: 1.5;
    transform: translateY(50%);
    /* Simpler entrance */
    opacity: 0;
}

.small-row .serif-italic {
    font-family: var(--font-heading);
    text-transform: none;
    letter-spacing: 0;
    font-size: 3.2em;
    vertical-align: middle;
    color: var(--color-bg-dark);
    margin-left: 0.5rem;
    position: relative;
    top: -16px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.32rem;
    margin-bottom: 3rem;
    color: #f0f0f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.8s;
    /* Delayed appearance */
}

.btn-hero {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 1s;
    /* Even more delayed */
}

/* Animation Trigger State */
.hero-content.visible .line-inner {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
}

.hero-content.visible .hero-subtitle,
.hero-content.visible .btn-hero {
    opacity: 1;
    transform: translateY(0);
}

/* Staggering the lines */
.line-wrapper:nth-child(1) .line-inner {
    transition-delay: 0.1s;
}

.line-wrapper:nth-child(2) .line-inner {
    transition-delay: 0.25s;
}

.line-wrapper:nth-child(3) .line-inner {
    transition-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .line-inner {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .groovy-title .line-wrapper:nth-child(1) {
        transform: translateX(-10%);
    }

    .groovy-title .line-wrapper:nth-child(3) {
        transform: translateX(10%);
    }

    .groovy-title .line-wrapper:nth-child(1) .line-inner {
        font-size: 2.5rem;
    }

    .groovy-title .line-wrapper:nth-child(2) .line-inner {
        font-size: 5.2rem;
    }

    .groovy-title .line-wrapper:nth-child(3) .line-inner {
        font-size: 5.8rem;
    }

    /* Ensure no unwanted margins on mobile */
    .indent-1 {
        margin-left: 0;
    }

    .indent-2 {
        margin-left: 0;
    }
}


.static-hero-subtitle {
    font-size: 1.32rem;
    margin-bottom: 3rem;
    color: #f0f0f0;
    max-width: 700px;
    /* Slightly wider for the longer text */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


/* Sections Specifics */
#uber-mich .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 80px 4px 80px 4px;
    /* Creative organic shape */
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(212, 163, 115, 0.2);
    /* Offset accent shadow */
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.text-content .section-title.text-left {
    text-align: left;
    margin-bottom: 2rem;
}


.section-caption {
    text-transform: uppercase;
    color: #fec58a;
    font-size: larger;
    letter-spacing: 2px;
    margin-top: 40px;
}

.section-light .section-caption {
    color: #d77328;
}

.section-caption.text-white {
    color: var(--color-white);
}

.text-content .section-caption.text-left {
    text-align: left;
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.45rem;
    line-height: 1.6;
    color: var(--color-text-main);
    /* Darker for better readability against light bg */
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    /* Slightly heavier */
}

.quote-block {
    position: relative;
    padding: 1.5rem 0 1.5rem 2.5rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--color-brand-accent);
    background: linear-gradient(to right, rgba(212, 163, 115, 0.1), transparent);
    border-radius: 0 4px 4px 0;
}

.quote-block p {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-text-main);
    margin: 0;
    font-weight: 400;
}

.credentials-block {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    /* border-top: 2px solid var(--color-brand-primary); */
    margin-bottom: 2rem;
}

.final-statement {
    font-weight: 500;
    margin-top: 2rem;
    color: var(--color-brand-primary);
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

/* Ansatz Infographic */
.infographic-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4rem;
    position: relative;
    gap: 2rem;
}

.info-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 100px;
    /* Increased size for icons */
    height: 100px;
    background-color: var(--color-white);
    /* White bg to let icon stand out */
    border: 2px solid var(--color-brand-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.info-step:hover .step-circle {
    border-color: var(--color-brand-accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 163, 115, 0.3);
}

.step-icon {
    width: 65%;
    height: auto;
    object-fit: contain;
}

/* Legacy support or removal */
.step-number {
    display: none;
}

.connector-line {
    flex-grow: 0.25;
    height: 2px;
    background-color: #ddd;
    margin-top: 40px;
    /* Align with center of circle (80px / 2) */
    position: relative;
    z-index: 1;
}

.info-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-brand-primary);
}

.info-step p {
    font-size: large;
    /* color: var(--color-text-light); */
    max-width: 250px;
    margin: 0 auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-brand-accent);
    margin-bottom: 2rem;
}

/* Offers & Accordion */
.intro-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-list li {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.accordion-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    /* border-left: 4px solid var(--color-brand-primary); */
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    /* Vertically align items */
    gap: 1.5rem;
    /* Space between image and text content */
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #fcfcfc;
}

.header-image {
    width: 140px;
    /* Thumbnail size */
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.header-content {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    /* Ensure full width utilisation */
}

.header-text {
    flex: 1;
}

.header-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
    list-style: none;
    /* Ensure no bullets */
    padding: 0;
}

.header-tags li {
    font-size: 0.9rem;
    color: var(--color-brand-primary);
    /* background: #e3eef7; */
    padding: 6px 12px;
    border-radius: 22px;
    border: 1px solid var(--color-brand-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.accordion-header h3 {
    margin: 0;
    color: var(--color-text-main);
    font-size: 1.3rem;
    line-height: 1.2;
}

.accordion-header .icon {
    font-size: 1.5rem;
    color: var(--color-brand-primary);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .accordion-header {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 1rem;
    }

    .header-image {
        width: 100%;
        height: 200px;
        /* Prominent image on mobile */
        margin-bottom: 0.5rem;
    }

    .header-content {
        align-items: flex-start;
        /* Align text and icon to top of their container */
    }

    /* Adjust icon vertically if needed, but flex row default is okay */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fff;
}

.content-inner {
    padding: 0 2rem 2rem 2rem;
}

.pricing-card {
    background-color: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.pricing-card ul {
    margin: 1rem 0;
}

.pricing-card li {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 0.3rem;
}

.pricing-card li.small-note {
    font-size: 0.8rem;
    color: #888;
    border: none;
    display: block;
}

.info-box,
.info-box-secondary {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-box ul,
.info-box-secondary ul {
    list-style: disc inside;
    margin-top: 1rem;
    color: var(--color-text-light);
}


/* Wie ich arbeite */
.section-image-bg {
    position: relative;
    padding: 6rem 0;
    background: #333;
    /* Fallback */
    background: url('../img/ryan_portrait.jpeg') no-repeat center center/cover;
    /* Placeholder background */
    background-attachment: fixed;
    color: white;
}

.section-image-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-semi-transparent-black);
    /* Semi transparent black */
    /* Dark overlay */
}

.content-relative {
    position: relative;
    z-index: 1;
}

#arbeitsweise {
    background-image: url('../img/methoden_bg.jpg');
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.5rem;
    margin-top: 4rem;
    counter-reset: grid-counter;
}

.strategy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.strategy-layout .grid-3 {
    margin-top: 0;
    grid-template-columns: 1fr;
    /* Stack cards vertically in the split view */
}

@media (max-width: 900px) {
    .strategy-layout {
        grid-template-columns: 1fr;
    }

    .strategy-layout img {
        margin-bottom: 2rem;
    }
}

.card-glass {
    background: rgba(255, 255, 255, 0.1);
}


/* Empathy Section */
.empathy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.empathy-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.empathy-item:hover {
    transform: translateY(-5px);
}

.empathy-item p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-main);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    /* background: rgba(255, 255, 255, 0.05); */
    background: #31363da1;
    /* Assuming on dark bg */
    padding: 2.5rem;
    border-radius: 14px;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    text-align: left;
}


.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-brand-primary);
}



.testimonial-card cite {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-brand-accent);
    font-style: normal;
}

/* --- RECONSTRUCTED MISSING STYLES (FOOTER & MOBILE MENU) --- */

/* Footer Styling */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem 0;
    /* margin-top: 4rem; */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer h4 {
    color: var(--color-brand-accent);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a:hover {
    color: var(--color-brand-accent);
}

.footer-logo-img {
    max-width: 180px;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.social-icon:hover {
    background-color: var(--color-brand-accent);
    border-color: var(--color-brand-accent);
    color: var(--color-text-main);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(254, 195, 138, 0.3);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Responsive / Mobile Menu */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: var(--color-bg-light);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 6rem;
        /* Space for top bar */
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .infographic-container {
        flex-direction: column;
        align-items: center;
    }

    .connector-line {
        display: none;
        /* Hide horizontal lines on mobile */
    }

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

    #uber-mich .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-title .line-inner {
        /* font-size: 3.5rem; */
        /* Ensure readable on mobile */
        line-height: normal;
    }
}

/* --- Updated Styles for 'Methoden' & 'Stimmen' Swap --- */

/* Light Mode Cards for Methoden */



.card-glass.light-mode {
    background: rgba(0, 0, 0, 0.5);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    backdrop-filter: blur(14px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 1.25rem;
    border-radius: 14px;
    color: var(--color-text-main);
    text-align: left;
    counter-increment: grid-counter;
}

.card-glass.light-mode h3 {
    color: var(--color-brand-primary);
}

.card-glass.light-mode h3::before {
    content: counter(grid-counter, decimal-leading-zero);
    display: block;
    color: var(--color-brand-accent);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.5;
}

.card-glass.light-mode p {
    color: var(--color-brand-primary);
}

/* Process Steps (Reconstructed/Ensured) */
.process-steps {
    margin: 4rem 0;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 1rem;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(212, 163, 115, 0.3);
    /* Brand accent faint */
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

/* Ensure testimonials look good on image bg */
.testimonial-card {
    /* background: rgba(0, 0, 0, 0.0); */
    background: rgba(0, 0, 0, 0.5);
    /* Darker semi-transparent for readability */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    backdrop-filter: blur(14px);
}





/* WhatsApp Floating Action Button */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #264c39;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(38, 76, 57, 0.4);
}

.whatsapp-fab svg {
    fill: white;
    width: 35px;
    height: 35px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(38, 76, 57, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(38, 76, 57, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(38, 76, 57, 0);
    }
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 0.8rem;
    color: #FFD700;
    /* Gold */
}

.star-rating svg {
    width: 20px;
    height: 20px;
}

/* Certificate Thumbnail & Lightbox */
.certificate-container {
    margin-top: 1.5rem;
}

.certificate-thumb {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Secondary Hero / Call to Action */
.hero-secondary {
    min-height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('../img/hero_videocall.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero-secondary .hero-content {
    max-width: 1000px;
    padding: 0 2rem;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-secondary h1,
.hero-secondary p {
    color: var(--color-white);
}

.hero-secondary .hero-title {
    margin-bottom: 2rem;
}

.hero-secondary .hero-subtitle {
    margin-bottom: 3rem;
    opacity: 1;
    /* Ensure visible */
    transform: translate(0);
}

/* Button Container Layout */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.button-container .btn-secondary {
    margin: 0;
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        gap: 1rem;
    }

    .button-container .btn-primary,
    .button-container .btn-secondary {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* Language Switcher */
.lang-switch-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-separator {
    color: var(--color-text-main);
    opacity: 0.5;
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-main);
    cursor: pointer;
    padding: 0;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    opacity: 1;
    color: var(--color-brand-accent);
}

.lang-btn.active {
    opacity: 1;
    font-weight: 700;
    color: var(--color-brand-accent);
    text-decoration: underline;
}