:root {
    /* Brand colors from moodboard */
    --color-navy: #2F4156;
    --color-navy-light: rgba(47, 65, 86, 0.6);
    --color-teal: #84BDC4;
    --color-sand: #FDF1EB;
    --color-tan: #D5B099;
    --color-terracotta: #A56754;
    --color-bg: #FFFFFF;
    --color-white: #FFFFFF;

    /* Typography — Moodboard fonts */
    --font-heading: 'Glacial Indifference', 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* UI */
    --radius-card: 20px;
    --radius-pill: 100px;
    --shadow-soft: 0 4px 24px rgba(47, 65, 86, 0.04);
    --shadow-hover: 0 12px 40px rgba(47, 65, 86, 0.08);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-navy);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--color-navy);
}

h1 { font-size: 3.5rem; letter-spacing: -0.03em; }
h2 { font-size: 2.5rem; letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; letter-spacing: -0.01em; }

p {
    margin-bottom: 1.5rem;
    color: var(--color-navy-light);
    line-height: 1.7;
}

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

ul { list-style: none; }

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

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

/* === Swoosh highlight === */
.swoosh {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    isolation: isolate;
}

.swoosh::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8%;
    right: -8%;
    height: 45%;
    z-index: -1;
    transform: rotate(-1.5deg);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 35' preserveAspectRatio='none'%3E%3Cpath d='M2,24 C15,8 50,5 100,15 C150,25 170,6 220,13 C260,18 285,10 298,16 L298,30 C285,26 260,33 220,28 C170,22 150,35 100,28 C50,21 15,30 2,28 Z' fill='%23D5B099' opacity='0.5'/%3E%3Cpath d='M10,22 C40,12 80,14 130,19 C180,24 210,10 260,17 L258,28 C210,24 180,33 130,27 C80,22 40,28 10,26 Z' fill='%23D5B099' opacity='0.3'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(165, 103, 84, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(165, 103, 84, 0.25);
    color: var(--color-white);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* === Header === */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(47, 65, 86, 0.04);
    transition: var(--transition);
    padding: 1rem 0;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-soft);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.logo a:hover {
    color: inherit;
}

.main-nav ul { display: flex; gap: 2rem; }
.main-nav a { font-weight: 500; font-size: 0.95rem; color: var(--color-navy-light); }
.main-nav a:hover, .main-nav a.active { color: var(--color-navy); }

/* === Sections === */
.section { padding: 10rem 0; }

.section-header {
    max-width: 560px;
    margin-bottom: 5rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 0;
    background: url('../images/hero-bg.png') right center / cover no-repeat;
    position: relative;
    overflow: visible;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.88) 35%,
            rgba(255, 255, 255, 0.4) 70%,
            rgba(255, 255, 255, 0.15) 100%
        ),
        linear-gradient(
            180deg,
            transparent 50%,
            var(--color-bg) 100%
        );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.overlap-box {
    max-width: 600px;
    padding: 3.5rem 0;
    transform: translateY(4rem);
    margin-bottom: 4rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--color-navy-light);
    max-width: 500px;
    line-height: 1.8;
}

/* ============================================
   PROBLEM SECTION — Cascading offset cards
   ============================================ */
.problem-section {
    background: var(--color-bg);
    padding-top: 12rem;
    position: relative;
    overflow: hidden;
}

.problem-stack {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

.problem-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem 3rem;
    background: var(--color-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

/* Cascading offsets — visual rhythm */
.problem-item:nth-child(1) {
    max-width: 72%;
    margin-left: 0;
}

.problem-item:nth-child(2) {
    max-width: 65%;
    margin-left: auto;
}

.problem-item:nth-child(3) {
    max-width: 78%;
    margin-left: 6%;
}

.problem-marker {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(47, 65, 86, 0.05);
    line-height: 1;
    flex-shrink: 0;
    min-width: 4rem;
}

.problem-item h3 { margin-bottom: 0.5rem; color: var(--color-navy); }
.problem-item p { margin-bottom: 0; }

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
    background-color: var(--color-white);
    position: relative;
}

.solution-container {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.solution-text {
    flex: 1;
}

.solution-text h2 {
    max-width: 16ch;
}

.solution-image-placeholder {
    flex: 1;
    position: relative;
}

.floating-image {
    transform: translateY(-1rem);
    transition: var(--transition);
}

.floating-image:hover {
    transform: translateY(-2rem);
}

.image-box {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: var(--color-bg);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.check-list { margin-top: 2rem; }

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--color-navy);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background-color: var(--color-terracotta);
    border-radius: 50%;
}

/* ============================================
   SERVICES — Editorial divider list
   ============================================ */
.services-section {
    background-color: var(--color-bg);
    position: relative;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.services-header {
    position: sticky;
    top: 6rem;
    margin-bottom: 0;
}

.feature-stack {
    display: flex;
    flex-direction: column;
    max-width: 860px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 2rem;
    align-items: baseline;
    padding: 3rem 0;
    border-top: 1px solid rgba(47, 65, 86, 0.1);
}

.feature-item:last-child {
    border-bottom: 1px solid rgba(47, 65, 86, 0.1);
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-terracotta);
    letter-spacing: 0.05em;
}

.feature-content h3 { margin-bottom: 0.5rem; color: var(--color-navy); }
.feature-content p { margin-bottom: 0; max-width: 55ch; }
.feature-content .btn { margin-top: 1.5rem; }

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--color-terracotta);
    font-size: 0.95rem;
}

.link-arrow:hover {
    color: var(--color-navy);
}

/* ============================================
   TRUST / AUTHORITY SECTION
   ============================================ */
.trust-section {
    background: var(--color-white);
    overflow: hidden;
}

.trust-container {
    display: flex;
    align-items: stretch;
    gap: 5rem;
}

.trust-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: var(--radius-card);
}

.trust-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-hover);
    min-height: 500px;
}

.floating-badge {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background-color: var(--color-terracotta);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 24px rgba(165, 103, 84, 0.25);
    font-size: 1.1rem;
    z-index: 2;
}

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.credential-item {
    padding-left: 1.5rem;
    border-left: 2px solid rgba(47, 65, 86, 0.08);
    transition: var(--transition);
}

.credential-item:hover {
    border-left-color: var(--color-terracotta);
}

.credential-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.credential-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background-color: var(--color-bg);
    border-top: 1px solid rgba(47, 65, 86, 0.06);
    padding: 8rem 0;
}

.cta-section h2 {
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--color-navy-light);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-container {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer .logo { color: var(--color-white); margin-bottom: 1rem; }
.footer p { color: rgba(255, 255, 255, 0.5); }
.footer-col h4 { color: var(--color-white); margin-bottom: 1.5rem; }
.footer-col a { color: rgba(255, 255, 255, 0.5); }
.footer-col a:hover { color: var(--color-white); }

/* ============================================
   AMBIENT BLOBS
   ============================================ */
.ambient-blob {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.blob-problem {
    top: 5%;
    right: -50px;
    width: 600px;
    height: 600px;
    border-radius: 40% 60% 55% 45%;
    background: rgba(165, 103, 84, 0.14);
    box-shadow:
        0 0 80px 40px rgba(165, 103, 84, 0.1),
        0 0 160px 80px rgba(132, 189, 196, 0.06);
    animation: morph-right 20s ease-in-out infinite;
}

.blob-services {
    top: 15%;
    left: -50px;
    width: 550px;
    height: 550px;
    border-radius: 55% 45% 40% 60%;
    background: rgba(132, 189, 196, 0.16);
    box-shadow:
        0 0 80px 40px rgba(132, 189, 196, 0.1),
        0 0 160px 80px rgba(165, 103, 84, 0.05);
    animation: morph-left 24s ease-in-out infinite;
}

/* ============================================
   AMBIENT ANIMATIONS
   ============================================ */
@keyframes morph-right {
    0% {
        transform: translate(0, 0) scale(1);
        border-radius: 40% 60% 55% 45%;
    }
    33% {
        transform: translate(30px, 20px) scale(1.1);
        border-radius: 55% 45% 60% 40%;
    }
    66% {
        transform: translate(-10px, 35px) scale(0.95);
        border-radius: 45% 55% 40% 60%;
    }
    100% {
        transform: translate(0, 0) scale(1);
        border-radius: 40% 60% 55% 45%;
    }
}

@keyframes morph-left {
    0% {
        transform: translate(0, 0) scale(1);
        border-radius: 55% 45% 40% 60%;
    }
    33% {
        transform: translate(-25px, -15px) scale(1.08);
        border-radius: 40% 60% 50% 50%;
    }
    66% {
        transform: translate(15px, -30px) scale(0.96);
        border-radius: 60% 40% 55% 45%;
    }
    100% {
        transform: translate(0, 0) scale(1);
        border-radius: 55% 45% 40% 60%;
    }
}

/* ============================================
   PAGE HERO (Subpages)
   ============================================ */
.page-hero {
    padding: 0;
    position: relative;
    min-height: 45dvh;
    display: flex;
    align-items: flex-end;
    background-color: var(--color-bg);
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-about {
    background-image: url('../images/hero-about.png');
}

.hero-angebot {
    background-image: url('../images/hero-angebot.png');
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.88) 35%,
            rgba(255, 255, 255, 0.4) 70%,
            rgba(255, 255, 255, 0.15) 100%
        ),
        linear-gradient(
            180deg,
            transparent 50%,
            var(--color-bg) 100%
        );
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 8rem;
    padding-bottom: 3rem;
}

.page-hero h2 {
    font-size: 2.5rem;
    max-width: 36ch;
    margin-bottom: 0;
}

/* ============================================
   ÜBER MICH — AHA Section
   ============================================ */
.aha-section {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.blob-aha {
    top: -10%;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 45% 55% 50% 50%;
    background: rgba(132, 189, 196, 0.12);
    box-shadow:
        0 0 80px 40px rgba(132, 189, 196, 0.08),
        0 0 160px 80px rgba(165, 103, 84, 0.04);
    animation: morph-right 22s ease-in-out infinite;
}

.aha-container {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.aha-image-wrapper {
    flex: 0 0 380px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.aha-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.aha-content {
    flex: 1;
}

/* ============================================
   ÜBER MICH — Werkzeugkoffer
   ============================================ */
.werkzeug-section {
    background: var(--color-bg);
}

.werkzeug-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.werkzeug-card {
    padding: 2.5rem;
    padding-left: 2.5rem;
    background: var(--color-sand);
    border-radius: var(--radius-card);
    border-left: 3px solid var(--color-terracotta);
    transition: var(--transition);
    position: relative;
}

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

.werkzeug-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-terracotta);
    letter-spacing: 0.05em;
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.werkzeug-card h3 {
    margin-bottom: 0.5rem;
}

.werkzeug-card p {
    margin-bottom: 0;
}

/* ============================================
   ÜBER MICH — Individueller Ansatz
   ============================================ */
.ansatz-section {
    background: var(--color-white);
}

.ansatz-container {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.ansatz-text {
    flex: 1;
}

.ansatz-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ansatz-quote {
    position: relative;
    padding: 2.5rem 0 2.5rem 2.5rem;
    border-left: 3px solid var(--color-terracotta);
}

.ansatz-quote::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: var(--color-tan);
    opacity: 0.5;
    pointer-events: none;
}

.ansatz-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--color-navy);
    font-weight: 600;
    font-style: normal;
    position: relative;
    z-index: 1;
}

/* ============================================
   ANGEBOT — Konzept
   ============================================ */
.konzept-section {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.blob-konzept {
    top: 10%;
    right: -60px;
    width: 500px;
    height: 500px;
    border-radius: 50% 50% 40% 60%;
    background: rgba(165, 103, 84, 0.1);
    box-shadow:
        0 0 80px 40px rgba(165, 103, 84, 0.08),
        0 0 160px 80px rgba(132, 189, 196, 0.04);
    animation: morph-right 20s ease-in-out infinite;
}

.konzept-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.konzept-text {
    flex: 1;
}

.konzept-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.konzept-highlight-card {
    background: var(--color-sand);
    border-radius: var(--radius-card);
    padding: 3rem;
    max-width: 400px;
    box-shadow: var(--shadow-soft);
}

.konzept-highlight-card h3 {
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.konzept-highlight-card p {
    margin-bottom: 0;
    color: var(--color-navy-light);
}

/* ============================================
   ANGEBOT — Ablauf
   ============================================ */
.ablauf-section {
    background: var(--color-bg);
}

.ablauf-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.ablauf-header {
    position: sticky;
    top: 6rem;
    margin-bottom: 0;
}

.ablauf-steps {
    display: flex;
    flex-direction: column;
}

.ablauf-step {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 2rem;
    align-items: baseline;
    padding: 3rem 0;
    border-top: 1px solid rgba(47, 65, 86, 0.1);
}

.ablauf-step:last-child {
    border-bottom: 1px solid rgba(47, 65, 86, 0.1);
}

.ablauf-step-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-terracotta);
    letter-spacing: 0.05em;
}

.ablauf-step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--color-navy);
}

.ablauf-step-content p {
    margin-bottom: 0;
    max-width: 55ch;
}

/* ============================================
   ANGEBOT — Ziel
   ============================================ */
.ziel-section {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.blob-ziel {
    bottom: -10%;
    left: -60px;
    width: 450px;
    height: 450px;
    border-radius: 55% 45% 50% 50%;
    background: rgba(132, 189, 196, 0.14);
    box-shadow:
        0 0 80px 40px rgba(132, 189, 196, 0.08),
        0 0 160px 80px rgba(165, 103, 84, 0.04);
    animation: morph-left 24s ease-in-out infinite;
}

.ziel-container {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.ziel-content {
    flex: 1;
}

.ziel-visual {
    flex: 1;
}

.ziel-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ziel-card {
    padding: 2rem 2.5rem;
    background: var(--color-bg);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.ziel-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.ziel-card h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: var(--color-terracotta);
}

.ziel-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ============================================
   LEGAL PAGES (Impressum, Datenschutz)
   ============================================ */
.legal-section {
    background: var(--color-white);
    padding: 4rem 0 6rem;
}

.legal-content {
    max-width: 720px;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    font-size: 1.05rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--color-terracotta);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: var(--color-navy);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    color: var(--color-navy-light);
    line-height: 1.7;
}

.legal-content .legal-address {
    font-style: normal;
    line-height: 1.8;
}

.legal-content .legal-caps {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .solution-container,
    .trust-container { flex-direction: column; }

    .overlap-box { transform: translateY(3rem); margin-bottom: 3rem; }
    .problem-section { padding-top: 8rem; }

    .problem-item:nth-child(1),
    .problem-item:nth-child(2),
    .problem-item:nth-child(3) {
        max-width: 100%;
        margin-left: 0;
    }

    .feature-stack { max-width: 100%; }
    .services-container { grid-template-columns: 1fr; gap: 3rem; }
    .services-header { position: static; }

    .floating-badge { right: 2rem; }
    .footer-container { flex-direction: column; gap: 2rem; text-align: center; }

    /* Über Mich */
    .aha-container { flex-direction: column; }
    .aha-image-wrapper { flex: none; width: 100%; }
    .aha-image { height: 350px; }
    .ansatz-container { flex-direction: column; }
    .werkzeug-grid { grid-template-columns: 1fr; }

    /* Angebot */
    .konzept-container { flex-direction: column; }
    .ziel-container { flex-direction: column; }
    .ablauf-container { grid-template-columns: 1fr; gap: 3rem; }
    .ablauf-header { position: static; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    .section { padding: 5rem 0; }

    /* Header */
    .header-container { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .main-nav ul { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .nav-cta { display: none; }
    .header { position: relative; padding: 1rem 0; }

    /* Hero */
    .hero { height: auto; min-height: auto; padding: 4rem 0; }
    .overlap-box { padding: 2rem 0; transform: translateY(0); margin-bottom: 0; }

    /* Problem */
    .problem-section { padding-top: 4rem; }
    .problem-item {
        flex-direction: column;
        gap: 0.75rem;
        padding: 2rem;
    }

    /* Features */
    .feature-item {
        grid-template-columns: 3rem 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }

    /* Trust */
    .trust-container { gap: 3rem; }

    /* Solution */
    .solution-container { gap: 3rem; }

    /* Page Hero (subpages) */
    .page-hero { min-height: 35dvh; }
    .page-hero .container { padding-top: 5rem; padding-bottom: 2rem; }
    .page-hero h2 { font-size: 1.75rem; }

    /* Über Mich */
    .aha-image { height: 280px; }
    .ansatz-quote { padding: 2rem 0 2rem 2rem; }
    .ansatz-quote::before { font-size: 4rem; left: 1rem; }
    .ansatz-quote blockquote { font-size: 1.15rem; }

    /* Angebot */
    .ablauf-step {
        grid-template-columns: 3rem 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }
    .konzept-highlight-card { padding: 2rem; }
}
