/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
    /* Brand Colors (from Logo) */
    --rosa: #E8B4C8;
    --rosa-light: #F5D9E6;
    --gelb: #F0D87A;
    --gelb-light: #F8ECBA;
    --blau: #8EC4E8;
    --blau-light: #C5E1F5;
    --gruen: #A8D8B8;
    --gruen-light: #D4EDD9;
    --lila: #C4A8D8;
    --lila-light: #E0D2EC;

    /* Neutrals */
    --bg: #FAFAF8;
    --bg-card: rgba(255, 255, 255, 0.85);
    --text: #3A3A4A;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --border: rgba(0, 0, 0, 0.06);

    /* Typography */
    --font-heading: 'Quicksand', 'Nunito', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Sizes */
    --nav-height: 72px;
    --max-width: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(58, 58, 74, 0.06);
    --shadow-md: 0 4px 20px rgba(58, 58, 74, 0.08);
    --shadow-lg: 0 8px 40px rgba(58, 58, 74, 0.1);
    --shadow-glow: 0 0 40px rgba(142, 196, 232, 0.15);

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 65ch;
}

.highlight {
    color: var(--blau);
}

.section-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blau);
    margin-bottom: var(--space-xs);
    display: inline-block;
}

.section-title {
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

section:nth-child(even) {
    background: var(--white);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blau), var(--lila));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(142, 196, 232, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 196, 232, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--blau);
    color: var(--blau);
    transform: translateY(-2px);
}

/* Accessibility Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--blau);
    outline-offset: 2px;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(250, 250, 248, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
    white-space: nowrap;
}

.nav-links {
    display: none;
    gap: 0.25rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    background: transparent;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(142, 196, 232, 0.1);
}

.nav-links a.active {
    color: var(--text);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(135deg, var(--blau), var(--lila));
    border-radius: 2px;
}

.nav-cta {
    display: none;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.active a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active a:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active a:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active a:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active a:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu.active a:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu a:hover {
    color: var(--blau);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + var(--space-lg));
    padding-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blau-light) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--rosa-light) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto var(--space-md);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lila);
    background: var(--lila-light);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 {
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--blau), var(--lila), var(--rosa));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    margin: 0 auto var(--space-lg);
    max-width: 540px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Decorative floating abstract shapes */
.deco-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .deco-shape {
        transform: scale(0.65) !important;
        opacity: 0.4;
    }
}

/* 15 Unique Shape Variations */
.shape-1 {
    width: 80px;
    height: 80px;
    background: var(--rosa);
    border-radius: var(--radius);
    opacity: 0.15;
    top: 15%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--gelb);
    border-radius: 50%;
    opacity: 0.15;
    top: 25%;
    right: 8%;
    animation: float-rev 7s ease-in-out infinite;
}

.shape-3 {
    width: 100px;
    height: 40px;
    background: var(--gruen);
    border-radius: 50px;
    opacity: 0.15;
    bottom: 20%;
    right: 12%;
    animation: float-x 8s ease-in-out infinite;
}

.shape-4 {
    width: 50px;
    height: 50px;
    background: var(--lila);
    border-radius: 50%;
    opacity: 0.15;
    bottom: 15%;
    left: 10%;
    animation: float 5s ease-in-out infinite;
}

.shape-5 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--blau), var(--lila));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(8px);
    opacity: 0.12;
    top: 5%;
    right: 20%;
    animation: float-blob 12s ease-in-out infinite;
}

.shape-6 {
    width: 70px;
    height: 70px;
    border: 6px solid var(--rosa);
    border-radius: 50%;
    opacity: 0.2;
    top: 40%;
    left: -2%;
    animation: float-rev 6s ease-in-out infinite;
}

.shape-7 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gelb), var(--gruen));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.15;
    bottom: 30%;
    right: 5%;
    animation: float 7s ease-in-out infinite;
    filter: blur(4px);
}

.shape-8 {
    width: 40px;
    height: 40px;
    background: var(--blau);
    border-radius: 4px;
    opacity: 0.2;
    top: 60%;
    right: 15%;
    animation: float-x 5s ease-in-out infinite;
    transform: rotate(45deg);
}

.shape-9 {
    width: 220px;
    height: 220px;
    background: var(--lila);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    top: 50%;
    left: -10%;
    animation: pulse-soft 8s ease-in-out infinite;
}

.shape-10 {
    width: 60px;
    height: 15px;
    background: var(--rosa);
    border-radius: 10px;
    opacity: 0.2;
    top: 85%;
    left: 20%;
    animation: float 6s ease-in-out infinite;
}

.shape-11 {
    width: 80px;
    height: 80px;
    border: 4px dashed var(--gruen);
    border-radius: 50%;
    opacity: 0.2;
    bottom: 10%;
    left: 30%;
    animation: spin 20s linear infinite;
}

.shape-12 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--blau), transparent);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(12px);
    opacity: 0.15;
    top: 20%;
    left: 40%;
    animation: float-blob 14s ease-in-out infinite reverse;
}

.shape-13 {
    width: 45px;
    height: 45px;
    background: var(--gelb);
    border-radius: 12px;
    opacity: 0.2;
    bottom: 40%;
    left: 5%;
    animation: float 5s ease-in-out infinite;
    transform: rotate(20deg);
}

.shape-14 {
    width: 180px;
    height: 180px;
    background: var(--rosa);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.15;
    top: -5%;
    left: 45%;
    animation: pulse-soft 10s ease-in-out infinite;
}

.shape-15 {
    width: 70px;
    height: 70px;
    border: 6px solid var(--blau);
    border-radius: 50%;
    opacity: 0.25;
    bottom: -2%;
    right: 15%;
    animation: float-x 7s ease-in-out infinite reverse;
}

.shape-16 {
    width: 35px;
    height: 35px;
    background: var(--lila);
    border-radius: 2px;
    opacity: 0.2;
    top: 10%;
    right: 40%;
    animation: spin 15s linear infinite;
}

.shape-17 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--gruen), var(--blau));
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.15;
    bottom: -5%;
    left: 20%;
    animation: pulse-soft 12s ease-in-out infinite;
}

.shape-18 {
    width: 90px;
    height: 90px;
    border: 3px dotted var(--gelb);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.25;
    top: 45%;
    right: 35%;
    animation: float-blob 15s ease-in-out infinite;
}

/* ========================================
   PROBLEM SECTION ("Kennen Sie das?")
   ======================================== */
.problem {
    padding: var(--space-xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.problem-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.problem-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.problem-icon.rosa {
    background: var(--rosa-light);
}

.problem-icon.gelb {
    background: var(--gelb-light);
}

.problem-icon.blau {
    background: var(--blau-light);
}

.problem-icon.lila {
    background: var(--lila-light);
}

.problem-card h4,
.problem-card h3 {
    margin-bottom: 0.25rem;
    overflow-wrap: anywhere;
    hyphens: auto;
    font-size: 1.125rem;
}

/* Prevent flex child from expanding beyond parent due to long text */
.problem-card>div:last-child {
    min-width: 0;
}

.problem-card p {
    font-size: 0.9rem;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution {
    padding: var(--space-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(197, 225, 245, 0.15) 50%, var(--bg) 100%);
}

.solution-statement {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    line-height: 1.6;
}

.solution-statement em {
    font-style: normal;
    background: linear-gradient(120deg, var(--gelb-light) 0%, var(--gelb-light) 100%);
    background-size: 100% 40%;
    background-repeat: no-repeat;
    background-position: 0 90%;
    padding: 0 4px;
}

.teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.teaser-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.teaser-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.teaser-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    font-size: 1.8rem;
}

.teaser-card:nth-child(1) .teaser-icon {
    background: var(--blau-light);
}

.teaser-card:nth-child(2) .teaser-icon {
    background: var(--rosa-light);
}

.teaser-card:nth-child(3) .teaser-icon {
    background: var(--gruen-light);
}

.teaser-card h4,
.teaser-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.teaser-card p {
    font-size: 0.9rem;
    margin: 0 auto;
}

/* ========================================
   KONZEPT SECTION
   ======================================== */
.konzept {
    padding: var(--space-2xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.konzept::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--lila-light) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.konzept-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.konzept-header .section-subtitle {
    margin: 0 auto;
}

/* Leitbild Quote */
.leitbild {
    background: linear-gradient(135deg, var(--blau-light), var(--lila-light));
    border-radius: var(--radius);
    padding: var(--space-lg);
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.leitbild::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
}

.leitbild blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.leitbild p {
    margin-top: var(--space-xs);
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* 5-Schritte Steps */
.steps-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    padding-left: 40px;
}

.steps::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--blau), var(--lila), var(--rosa));
    border-radius: 2px;
}

.step {
    position: relative;
    padding: var(--space-md);
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.step:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.step-number {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    z-index: 1;
}

.step:nth-child(1) .step-number {
    background: var(--blau);
}

.step:nth-child(2) .step-number {
    background: var(--gruen);
}

.step:nth-child(3) .step-number {
    background: var(--gelb);
}

.step:nth-child(4) .step-number {
    background: var(--rosa);
}

.step:nth-child(5) .step-number {
    background: var(--lila);
}

.step h4,
.step h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.step p {
    font-size: 0.9rem;
}

/* Wissenschaft (Theory) */
.wissenschaft {
    margin-top: var(--space-xl);
}

.wissenschaft-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.wissenschaft-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

.wissenschaft-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius);
    background: var(--bg);
    border-left: 4px solid;
    transition: var(--transition);
}

.wissenschaft-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.wissenschaft-card:nth-child(1) {
    border-left-color: var(--blau);
}

.wissenschaft-card:nth-child(2) {
    border-left-color: var(--gruen);
}

.wissenschaft-card:nth-child(3) {
    border-left-color: var(--lila);
}

.wissenschaft-card h4,
.wissenschaft-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.wissenschaft-card p {
    font-size: 0.85rem;
}

/* ========================================
   ANGEBOT SECTION
   ======================================== */
.angebot {
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(168, 216, 184, 0.08) 30%, rgba(232, 180, 200, 0.08) 70%, var(--bg) 100%);
}

.angebot::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gruen-light) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.angebot-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.angebot-header .section-subtitle {
    margin: 0 auto;
}

/* Session Timeline */
.timeline-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    display: flex;
    align-items: stretch;
    gap: var(--space-sm);
}

.timeline-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    min-width: 50px;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 18px;
}

.timeline-line {
    width: 2px;
    flex: 1;
    background: var(--border);
}

.timeline-item:nth-child(1) .timeline-dot {
    background: var(--blau);
}

.timeline-item:nth-child(2) .timeline-dot {
    background: var(--gruen);
}

.timeline-item:nth-child(3) .timeline-dot {
    background: var(--gelb);
}

.timeline-item:nth-child(4) .timeline-dot {
    background: var(--lila);
}

.timeline-item:nth-child(5) .timeline-dot {
    background: var(--rosa);
}

.timeline-item:nth-child(6) .timeline-dot {
    background: var(--blau);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.timeline-item:hover .timeline-content {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Base Timeline Content Colors Setup */
.timeline-item:nth-child(1) .timeline-content {
    border-left: 4px solid var(--blau);
}

.timeline-item:nth-child(2) .timeline-content {
    border-left: 4px solid var(--gruen);
}

.timeline-item:nth-child(3) .timeline-content {
    border-left: 4px solid var(--gelb);
}

.timeline-item:nth-child(4) .timeline-content {
    border-left: 4px solid var(--lila);
}

.timeline-item:nth-child(5) .timeline-content {
    border-left: 4px solid var(--rosa);
}

.timeline-item:nth-child(6) .timeline-content {
    border-left: 4px solid var(--blau);
}

.timeline-item:nth-child(1):hover .timeline-content {
    box-shadow: 0 8px 30px rgba(142, 196, 232, 0.15);
}

.timeline-item:nth-child(2):hover .timeline-content {
    box-shadow: 0 8px 30px rgba(168, 216, 184, 0.15);
}

.timeline-item:nth-child(3):hover .timeline-content {
    box-shadow: 0 8px 30px rgba(240, 216, 122, 0.15);
}

.timeline-item:nth-child(4):hover .timeline-content {
    box-shadow: 0 8px 30px rgba(196, 168, 216, 0.15);
}

.timeline-item:nth-child(5):hover .timeline-content {
    box-shadow: 0 8px 30px rgba(232, 180, 200, 0.15);
}

.timeline-time {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--bg);
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

.timeline-content h4,
.timeline-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Packages */
.pakete-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.pakete-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.paket-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.paket-card.featured {
    border-color: var(--blau);
    box-shadow: var(--shadow-glow);
}

.paket-card.featured::before {
    content: 'Beliebt';
    position: absolute;
    top: 16px;
    right: -30px;
    background: linear-gradient(135deg, var(--blau), var(--lila));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 40px;
    transform: rotate(45deg);
}

.paket-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.paket-sessions {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.paket-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.paket-card ul {
    text-align: left;
    margin-bottom: var(--space-md);
}

.paket-card li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.paket-card li::before {
    content: '✓';
    color: var(--gruen);
    font-weight: 700;
}

.paket-hinweis {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    max-width: 800px;
    margin: 0 auto;
}

.hinweis-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hinweis-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.hinweis-item .icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hinweis-item:hover .icon {
    transform: scale(1.15) rotate(5deg);
}

/* Specific colors for hinweis */
.hinweis-item:nth-child(1) {
    border-left: 4px solid var(--blau);
}

.hinweis-item:nth-child(1) .icon {
    background: var(--blau-light);
    border-radius: 12px;
}

.hinweis-item:nth-child(1):hover {
    box-shadow: 0 8px 30px rgba(142, 196, 232, 0.2);
}

.hinweis-item:nth-child(2) {
    border-left: 4px solid var(--lila);
}

.hinweis-item:nth-child(2) .icon {
    background: var(--lila-light);
    border-radius: 12px;
}

.hinweis-item:nth-child(2):hover {
    box-shadow: 0 8px 30px rgba(196, 168, 216, 0.2);
}

.hinweis-item:nth-child(3) {
    border-left: 4px solid var(--gelb);
}

.hinweis-item:nth-child(3) .icon {
    background: var(--gelb-light);
    border-radius: 12px;
}

.hinweis-item:nth-child(3):hover {
    box-shadow: 0 8px 30px rgba(240, 216, 122, 0.2);
}

.hinweis-item:nth-child(4) {
    border-left: 4px solid var(--gruen);
}

.hinweis-item:nth-child(4) .icon {
    background: var(--gruen-light);
    border-radius: 12px;
}

.hinweis-item:nth-child(4):hover {
    box-shadow: 0 8px 30px rgba(168, 216, 184, 0.2);
}

/* ========================================
   ÜBER MICH SECTION
   ======================================== */
.ueber-mich {
    padding: var(--space-2xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.ueber-mich::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--blau-light) 0%, transparent 70%);
    opacity: 0.25;
    pointer-events: none;
}

.ueber-mich::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--rosa-light) 0%, transparent 70%);
    opacity: 0.25;
    pointer-events: none;
}

.ueber-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.ueber-content {
    order: 2;
}

.ueber-image-area {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Michelle Photo Styling */
.ueber-photo {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 40px rgba(142, 196, 232, 0.2), 0 0 0 6px var(--white), 0 0 0 8px var(--blau-light);
    transition: var(--transition-slow);
}

.ueber-photo:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 50px rgba(196, 168, 216, 0.25), 0 0 0 6px var(--white), 0 0 0 10px var(--lila-light);
}

/* Keep old avatar as fallback */
.ueber-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--rosa-light), var(--blau-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.ueber-avatar::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px dashed var(--lila-light);
    animation: spin 20s linear infinite;
}

.ueber-content h3 {
    margin-bottom: var(--space-sm);
}

.ueber-content p {
    margin-bottom: var(--space-sm);
}

.ueber-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--space-md);
}

.tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(142, 196, 232, 0.15), rgba(196, 168, 216, 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.tag span {
    position: relative;
    z-index: 1;
}

.tag:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--lila);
    box-shadow: 0 6px 20px rgba(196, 168, 216, 0.25);
    color: var(--lila);
}

.tag:hover::before {
    opacity: 1;
}

/* Distinct hover colors for tags via nth-child to make it playful */
.tag:nth-child(1):hover {
    border-color: var(--blau);
    color: var(--blau);
    box-shadow: 0 6px 20px rgba(142, 196, 232, 0.25);
}

.tag:nth-child(2):hover {
    border-color: var(--gruen);
    color: var(--gruen);
    box-shadow: 0 6px 20px rgba(168, 216, 184, 0.25);
}

.tag:nth-child(3):hover {
    border-color: var(--gelb);
    color: var(--gelb);
    box-shadow: 0 6px 20px rgba(240, 216, 122, 0.25);
}

.tag:nth-child(4):hover {
    border-color: var(--lila);
    color: var(--lila);
    box-shadow: 0 6px 20px rgba(196, 168, 216, 0.25);
}

.tag:nth-child(5):hover {
    border-color: var(--rosa);
    color: var(--rosa);
    box-shadow: 0 6px 20px rgba(232, 180, 200, 0.25);
}

.tag:nth-child(6):hover {
    border-color: var(--blau);
    color: var(--blau);
    box-shadow: 0 6px 20px rgba(142, 196, 232, 0.25);
}

/* Umgebung */
.umgebung {
    margin-top: var(--space-xl);
    position: relative;
    z-index: 1;
}

.umgebung-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.umgebung-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

.umgebung-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-left: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.umgebung-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: var(--radius);
}

.umgebung-item:hover::before {
    opacity: 1;
}

.umgebung-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.umgebung-item .icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.umgebung-item:hover .icon {
    transform: scale(1.15) rotate(-5deg);
}

.umgebung-item span:not(.icon) {
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.umgebung-item:hover span:not(.icon) {
    color: var(--text);
}

/* Color variants */
.umgebung-item.blau {
    border-left-color: var(--blau);
}

.umgebung-item.blau .icon {
    background: var(--blau-light);
}

.umgebung-item.blau::before {
    background: linear-gradient(135deg, rgba(142, 196, 232, 0.06) 0%, transparent 60%);
}

.umgebung-item.blau:hover {
    border-left-color: var(--blau);
    box-shadow: 0 8px 30px rgba(142, 196, 232, 0.15);
}

.umgebung-item.rosa {
    border-left-color: var(--rosa);
}

.umgebung-item.rosa .icon {
    background: var(--rosa-light);
}

.umgebung-item.rosa::before {
    background: linear-gradient(135deg, rgba(232, 180, 200, 0.06) 0%, transparent 60%);
}

.umgebung-item.rosa:hover {
    border-left-color: var(--rosa);
    box-shadow: 0 8px 30px rgba(232, 180, 200, 0.15);
}

.umgebung-item.gelb {
    border-left-color: var(--gelb);
}

.umgebung-item.gelb .icon {
    background: var(--gelb-light);
}

.umgebung-item.gelb::before {
    background: linear-gradient(135deg, rgba(240, 216, 122, 0.06) 0%, transparent 60%);
}

.umgebung-item.gelb:hover {
    border-left-color: var(--gelb);
    box-shadow: 0 8px 30px rgba(240, 216, 122, 0.15);
}

.umgebung-item.gruen {
    border-left-color: var(--gruen);
}

.umgebung-item.gruen .icon {
    background: var(--gruen-light);
}

.umgebung-item.gruen::before {
    background: linear-gradient(135deg, rgba(168, 216, 184, 0.06) 0%, transparent 60%);
}

.umgebung-item.gruen:hover {
    border-left-color: var(--gruen);
    box-shadow: 0 8px 30px rgba(168, 216, 184, 0.15);
}

.umgebung-item.lila {
    border-left-color: var(--lila);
}

.umgebung-item.lila .icon {
    background: var(--lila-light);
}

.umgebung-item.lila::before {
    background: linear-gradient(135deg, rgba(196, 168, 216, 0.06) 0%, transparent 60%);
}

.umgebung-item.lila:hover {
    border-left-color: var(--lila);
    box-shadow: 0 8px 30px rgba(196, 168, 216, 0.15);
}

/* ========================================
   KONTAKT SECTION (FAQ + Form)
   ======================================== */
.kontakt {
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(232, 180, 200, 0.06) 30%, rgba(196, 168, 216, 0.08) 70%, var(--bg) 100%);
}

.kontakt::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--lila-light) 0%, transparent 70%);
    opacity: 0.25;
    pointer-events: none;
}

.kontakt-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.kontakt-header .section-subtitle {
    margin: 0 auto;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

/* FAQ Accordion */
.faq {
    order: 2;
}

.faq h3 {
    margin-bottom: var(--space-md);
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--blau-light);
}

.faq-question {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--white);
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg);
}

.faq-question .icon {
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    font-size: 0.9rem;
    color: var(--text-body);
}

/* Contact Form */
.form-area {
    order: 1;
}

.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.form-card h3 {
    margin-bottom: 0.5rem;
}

.form-card>p {
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blau);
    box-shadow: 0 0 0 4px var(--blau-light);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B0B0B8;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

.form-submit {
    margin-top: var(--space-md);
}

.form-submit .btn {
    width: 100%;
}

.form-privacy {
    margin-top: var(--space-xs);
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
}

/* Contact Info */
.contact-info {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-item .icon {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 10px;
    flex-shrink: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-lg) 0;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes float-rev {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(-3deg);
    }
}

@keyframes float-x {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    50% {
        transform: translateX(20px) rotate(2deg);
    }
}

@keyframes pulse-soft {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.12;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

@keyframes float-blob {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    50% {
        transform: translate(-10px, 15px) scale(1.05) rotate(5deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Scroll-based reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE: TABLET (768px+)
   ======================================== */
@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }

    .teaser-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .wissenschaft-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pakete-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .umgebung-features {
        grid-template-columns: 1fr 1fr;
    }

    .kontakt-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq {
        order: 2;
    }

    .form-area {
        order: 1;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-logo {
        max-width: 340px;
    }
}

/* ========================================
   RESPONSIVE: DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .nav-cta {
        display: inline-flex;
    }

    section {
        padding: var(--space-2xl) 0;
    }

    .hero-logo {
        max-width: 380px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .pakete-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ueber-grid {
        grid-template-columns: 1fr 1.5fr;
        align-items: center;
    }

    .ueber-content {
        order: 2;
    }

    .ueber-image-area {
        order: 1;
    }

    .steps {
        flex-direction: row;
        padding-left: 0;
        gap: 0;
    }

    .steps::before {
        top: 24px;
        bottom: auto;
        left: 0;
        right: 0;
        width: auto;
        height: 3px;
    }

    .step {
        flex: 1;
        text-align: center;
        padding-top: var(--space-xl);
    }

    .step-number {
        left: 50%;
        top: -16px;
        transform: translateX(-50%);
    }

    .step:hover {
        transform: translateY(-5px);
    }

    .hero-content {
        max-width: 700px;
        margin: 0 auto;
    }
}

/* ========================================
   RESPONSIVE: LARGE DESKTOP (1440px+)
   ======================================== */
@media (min-width: 1440px) {
    :root {
        --max-width: 1300px;
    }

    .hero-logo {
        max-width: 420px;
    }
}

/* --- Accessibility & Print --- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

@media print {

    .navbar,
    .hamburger,
    .mobile-menu,
    .deco-shape {
        display: none !important;
    }

    section {
        page-break-inside: avoid;
    }
}