/* ============================================================
   drozd.at — Modernes Responsive CSS
   Version: 2.0 | Redesign 2025
   Farbschema: Navy #0B2545 + Corporate Blue #1D6FA4
   Mobile-First, dokumentiert, alle Breakpoints
   ============================================================ */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
    --navy:        #0B2545;
    --navy-dark:   #071a35;
    --blue:        #1D6FA4;
    --blue-hover:  #2D8DC4;
    --blue-pale:   #EEF3F8;
    --gray:        #7A8FA6;
    --gray-mid:    #4A6070;
    --text:        #1e2d3d;
    --text-light:  #4a5568;
    --white:       #ffffff;
    --border:      #d8e3ed;

    --font:        'Inter', system-ui, -apple-system, sans-serif;
    --radius:      12px;
    --radius-sm:   8px;
    --shadow:      0 4px 24px rgba(11,37,69,0.10);
    --shadow-lg:   0 8px 48px rgba(11,37,69,0.16);

    --nav-height:  80px;
    --container:   1200px;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.65;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

address {
    font-style: normal;
    line-height: 1.8;
}
address a {
    color: var(--blue);
    transition: color 0.2s;
}
address a:hover { color: var(--blue-hover); }


/* ================================================================
   UTILITY
   ================================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-primary:hover {
    background: var(--blue-hover);
    border-color: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29,111,164,0.35);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    border-radius: 8px;
}

/* Section Labels & Headers */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.6rem;
}

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

.section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.section-header-light h2  { color: var(--white); }
.section-header-light .section-label { color: rgba(255,255,255,0.6); }


/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    height: var(--nav-height);
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(11,37,69,0.4);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-logo img {
    height: 54px;
    width: auto;
}

@media (max-width: 768px) {
    .nav-logo img { height: 40px; }
}

/* Desktop menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.nav-links a {
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.09);
}

.nav-phone {
    font-weight: 600 !important;
}

.nav-cta.btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.86rem;
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ================================================================
   HERO
   ================================================================ */
.hero {
    background-color: var(--navy);
    background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 24px 24px;
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

/* Radial glow oben links */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(29,111,164,0.28);
    filter: blur(90px);
    top: -150px;
    left: -100px;
    pointer-events: none;
}

.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero rechte Spalte */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Foto-Card */
.hero-image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

.hero-image img {
    display: block;
    width: 100%;
}

/* Trust-Badges: nebeneinander, kein Hintergrund */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.trust-divider { display: none; }

.badge-wko        { height: 50px; width: auto; flex-shrink: 0; background: #fff; padding: 3px; box-sizing: content-box; }
.badge-trustpilot { height: 58px; width: auto; flex-shrink: 0; }

.hero-title {
    font-size: clamp(1.35rem, 2.4vw, 2.05rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.hero-highlight { color: #5BB8E8; }

/* Pill-Badge über dem Titel */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 0.5px solid rgba(255,255,255,0.16);
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}

.hero-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5BB8E8;
    flex-shrink: 0;
}

.hero-text {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.72;
}

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

.hero-checklist {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hero-checklist li {
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.hc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    flex-shrink: 0;
    color: #5BB8E8;
}



/* ================================================================
   FALLSTUDIEN
   ================================================================ */
.fallstudien {
    padding: 5rem 0;
    background: var(--blue-pale);
}

/* Jede Fallstudie als eigene Card — schwebt auf dem blauen Hintergrund */
.fallstudie-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    padding: 3rem 3rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 16px rgba(11,37,69,0.07);
    margin-bottom: 2rem;
}

.fallstudie-card:last-of-type { margin-bottom: 0; }


/* Label über dem Titel */
.fallstudie-badge {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-pale);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 0.65rem;
}

.fallstudie-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.fallstudie-person {
    font-size: 0.83rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
}

.fallstudie-block {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.68;
}

.block-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.fallstudie-block strong { color: var(--text); }

.fallstudie-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s, transform 0.3s;
}

.fallstudie-image img:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.01);
}

/* CTA + Logo unter dem Bild */
.fallstudie-image {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Kontakt-Karte unter dem Bild */
.fallstudie-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.85rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue);
    border-radius: var(--radius-sm);
}

.fallstudie-contact-avatar {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.fallstudie-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.fallstudie-contact-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fallstudie-contact-role {
    font-size: 0.74rem;
    color: var(--gray-mid);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fallstudie-cta {
    margin-top: 0.75rem;
}

.fallstudie-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--blue);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.65rem 1.3rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}


.fallstudie-link:hover {
    background: var(--navy);
    transform: translateY(-1px);
}

/* Zahlen / Daten / Fakten Boxen unter jeder Fallstudie */
.fallstudie-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--blue-pale);
}

.fstat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--blue-pale);
    border-radius: var(--radius-sm);
    padding: 1rem 0.5rem;
    text-align: center;
}

.fstat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.fstat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.35rem;
}


/* ================================================================
   PARTNER LOGOS — 2-Zeilen Marquee
   ================================================================ */
.partner-logos {
    background: var(--blue-pale);
    padding: 3.5rem 0;
    overflow: hidden;
}

.partner-header {
    padding: 0 1.5rem;
}

.partner-title {
    text-align: center;
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.partner-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 0.88rem;
    margin-bottom: 2rem;
}

/* Marquee-Wrapper: beschneidet und enthält eine Scrollreihe */
.logos-marquee {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.logos-marquee:last-child { margin-bottom: 0; }

/* Track: enthält 2× logos-set nebeneinander */
.logos-track {
    display: flex;
    width: max-content;
}

/* Jedes Set: alle Logos einer Reihe in einer Flex-Row */
.logos-set {
    display: flex;
    gap: 0.75rem;
    padding-right: 0.75rem; /* Lücke zwischen den beiden Sätzen schließen */
}

/* Reihe 1 — scrollt nach links */
.logos-row-1 { animation: marquee-left 40s linear infinite; }
/* Reihe 2 — etwas langsamer für visuellen Tiefeneffekt */
.logos-row-2 { animation: marquee-left 52s linear infinite; }

/* Kein Pause-on-hover — Logos laufen immer durch */

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

/* Einzelne Logo-Karte */
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.9rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    height: 68px;
    width: 130px;
    flex-shrink: 0;
    transition: box-shadow 0.2s, transform 0.2s;
}

.logo-item:hover {
    box-shadow: 0 4px 14px rgba(11,37,69,0.12);
    transform: translateY(-2px);
}

.logo-item img {
    max-width: 100%;
    max-height: 42px;
    object-fit: contain;
    filter: grayscale(35%);
    transition: filter 0.2s;
}

.logo-item:hover img { filter: grayscale(0%); }


/* ================================================================
   MEDIA MENTIONS
   ================================================================ */
.media-section {
    padding: 5rem 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.media-sub {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.media-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.25s;
    background: var(--white);
}

.media-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Bildbereich — volles Bild, kein Beschneiden */
.media-img-wrap {
    position: relative;
    background: #f5f7fa;
}

.media-img-wrap img {
    width: 100%;
    height: auto;       /* natürliche Proportionen, kein Crop */
    display: block;
    transition: transform 0.35s ease;
}

.media-card:hover .media-img-wrap img {
    transform: scale(1.02);
}

/* Medienname-Badge oben links im Bild */
.media-outlet {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.media-outlet-name {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Text unter dem Bild */
.media-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.media-card-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
}

.media-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.01em;
}


/* ================================================================
   SAE METHODE
   ================================================================ */
.methode {
    background: var(--navy);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Decorative glow */
.methode::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 90% at 5% 50%, rgba(29,111,164,0.22) 0%, transparent 60%);
    pointer-events: none;
}

.methode-intro {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    max-width: 700px;
    margin: 1rem auto 0;
    text-align: center;
    line-height: 1.75;
}

.methode-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.methode-step {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: background 0.25s, border-color 0.25s;
}

.methode-step:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(29,111,164,0.5);
}

.step-icon {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.step-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--blue-hover);
    opacity: 0.65;
    line-height: 1;
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
}

.methode-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.methode-step p {
    color: rgba(255,255,255,0.68);
    font-size: 0.92rem;
    line-height: 1.72;
}

.methode-cta {
    text-align: center;
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
}

.methode-cta-text {
    color: rgba(255,255,255,0.78);
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
}


/* ================================================================
   NEXT STEPS
   ================================================================ */
.next-steps {
    padding: 5rem 0;
    background: var(--blue-pale);
}

.next-steps h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 2.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-card .step-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.step-card .step-content { padding: 1.5rem; }

.step-num {
    width: 34px;
    height: 34px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
}

.step-content h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}


/* ================================================================
   ÜBER IOAN DROZD
   ================================================================ */
.ueber-ioan {
    padding: 5rem 0;
    background: var(--blue-pale);
}

.ueber-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 16px rgba(11,37,69,0.07);
    overflow: hidden;
}

.ueber-image {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0;
    background: var(--blue-pale);
}

.ueber-image img {
    width: 100%;
    display: block;
}

.ueber-image .linkedin-btn {
    padding: 0 1.5rem 1.5rem;
}

.ueber-content {
    padding: 2.5rem 3rem;
}

.ueber-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.ueber-role {
    font-size: 0.95rem;
    color: var(--gray-mid);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--blue);
    display: block;
}

.ueber-content p {
    color: var(--text-light);
    line-height: 1.78;
    margin-bottom: 1rem;
    font-size: 0.96rem;
}

.ueber-badges {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    font-size: 0.87rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.linkedin-btn:hover {
    color: var(--blue);
}

.linkedin-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline;
}

/* WKO Trust-Block — eigene Card unter dem LinkedIn-Button */
.wko-trust-block {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1rem;
    padding: 0.75rem 1.1rem;
    background: var(--blue-pale);
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.wko-trust-block:hover {
    box-shadow: var(--shadow);
    border-left-color: var(--blue-hover);
}

.wko-trust-block span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

.wko-badge-small {
    height: 48px;
    width: auto;
    border-radius: 4px;
    flex-shrink: 0;
}


/* ================================================================
   STANDORT
   ================================================================ */
.standort {
    padding: 5rem 0;
    background: var(--blue-pale);
}

.standort-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.standort-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.standort-content p {
    color: var(--text-light);
    line-height: 1.78;
    margin-bottom: 1rem;
    font-size: 0.96rem;
}

.standort-info {
    margin-top: 1.75rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--blue);
    box-shadow: var(--shadow);
}

.standort-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.standort-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}


/* ================================================================
   FAQ  (natives <details> Element)
   ================================================================ */
.faq {
    padding: 5rem 0;
    background: var(--white);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] { border-color: var(--blue); }

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    gap: 1rem;
    background: var(--white);
    transition: background 0.2s;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--blue);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { background: var(--blue-pale); }

.faq-answer {
    padding: 1rem 1.25rem 1.3rem;
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.78;
    border-top: 1px solid var(--border);
}


/* ================================================================
   EINBLICKE — Büro-Impressionen Marquee (einzeilig)
   ================================================================ */
.einblicke {
    padding: 5rem 0;
    background: var(--blue-pale);
    overflow: hidden;
}

.einblicke-sub {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 0.4rem;
}

/* Scrollender Streifen — volle Fensterbreite */
.einblicke-marquee-wrap {
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

.einblicke-track {
    display: flex;
    width: max-content;
    animation: marquee-left 36s linear infinite;
}

/* Jeder Satz enthält alle 9 Fotos */
.einblicke-set {
    display: flex;
    gap: 0.65rem;
    padding-right: 0.65rem;
}

/* Einzelnes Foto */
.einblicke-photo {
    width: 360px;
    height: 260px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.einblicke-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.einblicke-photo:hover img { transform: scale(1.04); }


/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, #1458A0 100%);
    padding: 5.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(29,111,164,0.25), transparent 60%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.final-cta p {
    color: rgba(255,255,255,0.80);
    font-size: 1rem;
    line-height: 1.72;
    max-width: 580px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.final-cta .btn { position: relative; z-index: 1; }


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--navy-dark);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.09);
    flex-wrap: wrap;
}

.footer-logo {
    height: 36px;
    width: auto;
    opacity: 0.88;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255,255,255,0.6);
    font-size: 0.87rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav a:hover { color: var(--white); }

.footer-disclaimer {
    color: rgba(255,255,255,0.35);
    font-size: 0.76rem;
    margin-top: 1.5rem;
    line-height: 1.65;
}

.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.76rem;
    margin-top: 0.4rem;
}


/* ================================================================
   RESPONSIVE — TABLET  ≤ 1024px
   ================================================================ */
@media (max-width: 1024px) {

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-checklist  { align-items: flex-start; text-align: left; max-width: 480px; margin-left: auto; margin-right: auto; }
    .hero-actions    { display: flex; justify-content: center; }
    .hero-right      { order: 1; }
    .hero-image img  { height: auto; object-fit: unset; }

    .fallstudie-card {
        grid-template-columns: 1fr;
    }

    .methode-steps   { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }

    .steps-grid      { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }

    .ueber-grid      { grid-template-columns: 1fr; }
    .ueber-image .linkedin-btn { padding: 0 1rem 1rem; }
    .ueber-content   { padding: 2rem; }

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

    .media-grid      { grid-template-columns: repeat(2, 1fr); }
    .einblicke-photo { width: 280px; height: 210px; }
}


/* ================================================================
   RESPONSIVE — MOBILE  ≤ 768px
   ================================================================ */
@media (max-width: 768px) {

    :root { --nav-height: 64px; }

    /* Show hamburger, hide desktop menu */
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem 1.75rem;
        gap: 0.25rem;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.32s ease, opacity 0.32s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-links a {
        display: block;
        padding: 0.85rem 0.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        border-radius: 0;
    }

    .nav-cta.btn {
        margin-top: 0.75rem;
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
    }

    /* Hero */
    .hero { padding-top: calc(var(--nav-height) + 2.5rem); padding-bottom: 3rem; }
    .hero-image img { height: auto; object-fit: unset; }
    .hero-title { word-break: break-word; }

    /* Section spacing */
    .fallstudien { padding: 3rem 0.75rem; }
    .methode     { padding: 3.5rem 0; }
    .next-steps  { padding: 3.5rem 0; }
    .ueber-Ioan  { padding: 3.5rem 0; }
    .standort    { padding: 3.5rem 0; }
    .faq         { padding: 3.5rem 0; }
    .einblicke   { padding: 3rem 0; }
    .final-cta   { padding: 3.5rem 1.25rem; }

    /* Fallstudien */
    .fallstudie-card { padding: 1.5rem 1rem; gap: 1.5rem; margin-bottom: 1rem; }
    .fallstudie-stats { flex-wrap: wrap; gap: 0.6rem; }
    .fstat { min-width: calc(33% - 0.6rem); }

    /* Kontaktkarte — nowrap entfernen auf Mobile */
    .fallstudie-contact-name,
    .fallstudie-contact-role { white-space: normal; overflow: visible; text-overflow: clip; }


    /* Media: 2 Spalten auf Mobile */
    .media-grid  { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

    /* Logos Marquee: einfach weniger sichtbar auf Mobile */
    .logo-item        { width: 110px; height: 60px; }
    .einblicke-photo  { width: 220px; height: 170px; }

    /* WKO Hero-Trust */
    .hero-trust { gap: 1.5rem; justify-content: center; }

    /* Footer */
    .footer-grid { flex-direction: column; align-items: flex-start; }
    .footer-nav  { gap: 1rem; flex-wrap: wrap; }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE  ≤ 480px
   ================================================================ */
@media (max-width: 480px) {

    .container { padding-left: 1rem; padding-right: 1rem; }

    /* Hero */
    .hero-container { gap: 2rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; justify-content: center; }

    /* Fallstudien Card vollständig einspaltig */
    .fallstudie-card { padding: 1.25rem 1rem; }
    .fallstudie-stats { gap: 0.5rem; }
    .fstat { flex: 1 1 calc(33% - 0.5rem); }
    .fstat-num { font-size: 1.6rem; }

    /* Kontaktkarte kompakter */
    .fallstudie-contact { flex-wrap: wrap; }
    .fallstudie-contact-avatar { font-size: 1.2rem; }

    /* Button volle Breite */
    .fallstudie-link { width: 100%; justify-content: center; }

    /* Standort */
    .standort-info { padding: 1.25rem; }

    /* Trust-Card auf Mobile kompakter */
    .trust-badge-item { padding: 0.6rem 0.75rem; gap: 0.5rem; }
    .badge-wko         { height: 28px; padding: 5px; }
    .badge-trustpilot  { height: 32px; }
    .trust-badge-item span { font-size: 0.68rem; }

    /* FAQ */
    .faq-item summary { font-size: 0.9rem; padding: 1rem; }

    /* Section Headers */
    .section-header h2 { font-size: 1.5rem; }

    /* Methode Steps */
    .methode-step { padding: 1.25rem; }
}


/* ================================================================
   RESPONSIVE — SMALL MOBILE  ≤ 480px
   ================================================================ */
@media (max-width: 480px) {

    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.97rem;
    }

    .hero-actions  { width: 100%; }
    .methode-cta .btn-large { display: block; }

    .media-grid       { grid-template-columns: 1fr; }
    .logo-item        { width: 100px; height: 56px; }
    .einblicke-photo  { width: 180px; height: 140px; }

    .ueber-badges { flex-direction: column; align-items: flex-start; }

    .fallstudie-content h3 { font-size: 1.2rem; }
    .methode-step  { padding: 1.5rem; }
}


/* ================================================================
   UNTERSEITEN (Impressum, Datenschutz, etc.)
   ================================================================ */
.page-hero {
    background-color: var(--navy);
    padding-top: calc(var(--nav-height) + 2.5rem);
    padding-bottom: 2.5rem;
}

.page-hero h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.page-content {
    background: #fff;
    padding: 4rem 0 5rem;
}

.page-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2rem 0 0.5rem;
}

.page-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 1.5rem 0 0.4rem;
}

.page-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.page-content a {
    color: var(--blue);
    text-decoration: underline;
}

/* Buttons innerhalb page-content nicht mit Link-Styles überschreiben */
.page-content a.btn {
    text-decoration: none;
    color: inherit;
}
.page-content a.btn-primary,
.page-content a.btn-primary:hover {
    color: var(--white);
}
.page-content a.btn-white,
.page-content a.btn-white:hover {
    color: var(--navy);
}

.page-content .info-block {
    background: var(--blue-pale);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
}

.page-content .info-block p {
    margin: 0.3rem 0;
}

.page-content .info-block strong {
    color: var(--navy);
}

@media (max-width: 768px) {
    .page-hero h1 { font-size: 1.5rem; }
    .page-content { padding: 2.5rem 0 3.5rem; }
    .page-content .info-block { padding: 1.25rem 1.25rem; }
}
