/* ═══════════════════════════════════════════════════════════════
   fabolution – style.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── Variables & Reset ──────────────────────────────────────── */
:root {
    --color-dark:      #0F2D4A;
    --color-ocean:     #0077B6;
    --color-ocean-dk:  #005a8e;
    --color-silver:    #8896A5;
    --color-platinum:  #F4F7FA;
    --color-white:     #ffffff;
    --color-red:       #c62828;
    --color-green:     #2e7d32;
    --color-bg-dark:   #0B1E2D;
    --color-text-dark: #DDE6EE;
    --color-gold:      #D4AF37;
    --color-gold-dk:   #C19B2A;
    --color-orange:    #E5A128;

    --font-heading: 'Montserrat', sans-serif;
    --font-text:    'Roboto', sans-serif;

    --transition-base: 0.3s ease;
    --shadow-card:     0 4px 20px rgba(0,0,0,0.05);
    --shadow-hover:    0 15px 30px rgba(0,0,0,0.1);
    --shadow-btn:      0 4px 14px rgba(0,119,182,0.3);
    --shadow-btn-hov:  0 6px 20px rgba(0,119,182,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-text); color: var(--color-dark); line-height: 1.6; background: var(--color-white); }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 1rem; color: var(--color-dark); }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--color-dark); }
a  { text-decoration: none; color: inherit; transition: color var(--transition-base); }
ul { list-style: none; }

p a { color: var(--color-ocean); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--transition-base); }
p a:hover { text-decoration-color: var(--color-ocean); }

.text-white  { color: white !important; }
.text-center { text-align: center; }
.text-danger { color: var(--color-red); }
.text-success { color: var(--color-green); }
strong       { font-weight: 700; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container          { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.narrow-container   { max-width: 800px;  margin: 0 auto; }
.section-padding    { padding: 80px 0; }
.section-intro      { max-width: 600px; margin: 0 auto; }
.section-intro-wide { max-width: 700px; margin: 0 auto 3rem auto; }
.opacity-90         { opacity: 0.9; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.bg-light { background-color: var(--color-platinum); }
.bg-ocean {
    background: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-ocean-dk) 100%);
    color: white;
}

/* ─── Farbliche Streifen (Links) ─────────────────────────────── */
.section-career {
    border-left: 8px solid var(--color-orange);
    padding-left: 2rem;
}

.section-entscheider {
    border-left: 8px solid var(--color-ocean);
    padding-left: 2rem;
}

/* ─── Section Badges ─────────────────────────────────────────── */
.section-badge {
    display: inline-block;
    background: var(--color-ocean);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 auto 1rem;
}

.section-badge-gold {
    background: var(--color-orange);
    color: white;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-ocean);
    color: white;
    border: 2px solid var(--color-ocean);
    box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
    background-color: var(--color-ocean-dk);
    border-color: var(--color-ocean-dk);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hov);
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%,-50%);
    transition: width 0.6s, height 0.6s;
}
.btn-primary:active::after { width: 300px; height: 300px; }

.btn-secondary {
    background: var(--color-orange);
    color: white;
    border: 2px solid var(--color-orange);
}
.btn-secondary:hover {
    background: #D89520;
    border-color: #D89520;
    transform: translateY(-2px);
}

.btn-white {
    background-color: white;
    color: var(--color-ocean);
    border: 2px solid white;
}
.btn-white:hover {
    background-color: var(--color-platinum);
    color: var(--color-ocean-dk);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-ocean);
    border: 2px solid var(--color-ocean);
}
.btn-outline:hover {
    background: var(--color-ocean);
    color: white;
    transform: translateY(-2px);
}

.btn:focus-visible,
.nav-link:focus-visible,
a:focus-visible {
    outline: 3px solid var(--color-ocean);
    outline-offset: 2px;
}

/* ─── Hero CTA Split ─────────────────────────────────────────── */
.hero-cta-split {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-cta-split .btn {
    min-width: 240px;
}

/* ─── Header ─────────────────────────────────────────────────── */
.sticky-header {
    position: sticky;
    top: 0;
    background-color: white;
    border-bottom: 1px solid #e8edf2;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-img { height: 50px; width: auto; display: block; }

/* ── Logo Shimmer (Header) ──────────────────────────────────── */
.logo-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 4px;
}
.logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.55) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}
.logo-container:hover::after {
    animation: shimmer-sweep 0.65s ease forwards;
}
.logo-container:hover .logo-shimmer {
    filter: drop-shadow(0 2px 8px rgba(0,119,182,0.25));
    transform: translateY(-1px);
    transition: filter 0.4s ease, transform 0.4s ease;
}

@keyframes shimmer-sweep {
    0%   { left: -75%; opacity: 1; }
    100% { left: 125%; opacity: 1; }
}

/* Nav */
.sticky-header nav ul { display: flex; gap: 25px; align-items: center; }
.sticky-header nav a  { font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--color-dark); }
.sticky-header nav a:hover { color: var(--color-ocean); }

.burger-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-dark);
    background: transparent;
    border: 0;
    padding: 0.25rem;
    line-height: 1;
}
.burger-menu:focus-visible { outline: 3px solid var(--color-ocean); outline-offset: 2px; border-radius: 6px; }
.mobile-only { display: none; }

/* ─── Hero & CTA Background ──────────────────────────────────── */
.hero, #cta-klick {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,45,74,0.72);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.4s ease, text-shadow 0.4s ease;
    cursor: default;
}
.hero-content h1:hover {
    transform: scale(1.03);
    text-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.hero-content .subline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: white !important;
}

/* ─── Hero Eyebrow ───────────────────────────────────────────── */
.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
    display: block;
}

/* ─── CTA Sections ───────────────────────────────────────────── */
.cta-section {
    min-height: 60vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 60px 20px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: white;
}

.subline-white {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-element.fade-in { opacity: 1; transform: translateY(0); }

/* ─── Pain Cards ─────────────────────────────────────────────── */
.card-icon-ocean { font-size: 3rem; color: var(--color-ocean); margin-bottom: 15px; }

/* ─── Comparison Grid (Career Transition) ────────────────────── */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.comparison-grid {
    max-width: 900px;
    margin: 0 auto;
}

.problem-col, .solution-col {
    padding: 2rem;
    border-radius: 8px;
}

.problem-col {
    background: #fff5f5;
    border-left: 4px solid var(--color-red);
}

.solution-col {
    background: #f0fdf4;
    border-left: 4px solid var(--color-green);
}

.problem-col h4, .solution-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li, .solution-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.problem-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--color-red);
    font-weight: bold;
}

.solution-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
}

/* ─── Package Cards ──────────────────────────────────────────── */
.package-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.package-featured {
    border: 3px solid var(--color-ocean);
    transform: scale(1.02);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
}

.package-header {
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.package-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-ocean);
}

.package-duration {
    color: #666;
    font-size: 0.875rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--color-green);
    margin-right: 0.5rem;
}

.package-card .btn {
    margin-top: auto;
}

/* ─── B2B Box ────────────────────────────────────────────────── */
.b2b-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--color-orange);
    padding: 2rem;
    border-radius: 8px;
}

.b2b-box h4 {
    margin-bottom: 1rem;
}

/* ─── Pricing Info (Entscheider) ─────────────────────────────── */
.pricing-info {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-box {
    background: linear-gradient(135deg, rgba(0,119,182,0.05) 0%, white 100%);
    border: 2px solid var(--color-ocean);
    border-radius: 12px;
    padding: 2rem;
}

.pricing-box h4 {
    color: var(--color-ocean);
    margin-bottom: 1rem;
}

.highlight-text {
    color: var(--color-ocean);
    font-weight: 600;
}

/* ─── Methode / Parallax (UNTEREINANDER) ─────────────────────── */
.parallax-bg {
    position: relative;
    background-image: url('../images/mountains.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.parallax-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11,30,45,0.90);
    z-index: 1;
}
.relative-content { position: relative; z-index: 2; }

/* Process Stack (Untereinander) */
.process-stack {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step-vertical {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition-base);
}

.process-step-vertical:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateX(8px);
}

.step-icon-vertical {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #38BDF8;
    font-size: 1.8rem;
    transition: all var(--transition-base);
}

.process-step-vertical:hover .step-icon-vertical {
    transform: scale(1.1) rotate(5deg);
    background-color: white;
    color: var(--color-ocean);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.step-content-vertical {
    flex: 1;
    text-align: left;
}

.step-content-vertical h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.step-content-vertical p {
    margin: 0;
}

.process-arrow-down {
    text-align: center;
    padding: 20px 0;
    color: rgba(255,255,255,0.4);
    font-size: 2rem;
}

.text-white-50 {
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ─── Cards (Pain + Tech) ────────────────────────────────────── */
.grid-3-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }

.pain-card, .tech-card {
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e8edf2;
    box-shadow: var(--shadow-card);
    text-align: left;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    height: 100%;
}
.pain-card { text-align: center; }

.pain-card:hover, .tech-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-ocean);
}

.icon-box {
    background-color: var(--color-dark);
    width: 60px; height: 60px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
    transition: background-color var(--transition-base), transform var(--transition-base);
}
.icon-box i { color: white; font-size: 1.5rem; }
.tech-card:hover .icon-box {
    background-color: var(--color-ocean);
    transform: rotate(5deg) scale(1.05);
}

.tech-card h3, .pain-card h3 { color: var(--color-dark); font-size: 1.3rem; margin-bottom: 20px; font-weight: 700; }

.tech-list { list-style: none; padding: 0; margin: 0; }
.tech-list li {
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-dark);
}
.tech-list li::before {
    content: "•";
    position: absolute; left: 0;
    color: var(--color-ocean);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.2rem;
}

/* ─── Über Mich ──────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    width: 100%;
}
.about-visuals { display: flex; flex-direction: column; gap: 20px; width: 100%; }

.about-img {
    display: block; width: 100%; max-width: 100%; height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.story-img { height: 200px; object-fit: cover; }
.about-highlight { color: var(--color-ocean); margin-bottom: 20px; }
.stars-ocean     { color: var(--color-ocean); margin-bottom: 15px; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--color-silver);
    border-left: 5px solid var(--color-ocean);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}
.faq-item:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.06); }

.faq-item summary {
    padding: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-dark);
    transition: color var(--transition-base);
}
.faq-item summary:hover { color: var(--color-ocean); }
.faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--color-ocean);
    transition: transform 0.4s ease;
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary::-webkit-details-marker { display: none; }

/* Smooth open/close via grid-template-rows */
.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
}
.faq-item[open] .faq-content { grid-template-rows: 1fr; }

.faq-inner { overflow: hidden; padding: 0 20px 20px 20px; }
.faq-inner p {
    margin: 0;
    opacity: 0;
    transform: translateY(-8px);
    animation: faqFadeIn 0.35s 0.05s ease forwards;
    color: var(--color-dark);
}

@keyframes faqFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   ICON-SPACING IN BUTTONS (KORRIGIERT)
   ═══════════════════════════════════════════════════════════ */

/* Alle Buttons: Text mittig, Icon-Abstand */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem; /* Abstand zwischen Icon und Text */
}

/* Hero CTA Split: Buttons zentriert */
.hero-cta-split {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta-split .btn {
    min-width: 200px;
    gap: 0.6rem; /* Etwas mehr Abstand im Hero */
}

/* Package Cards: Buttons zentriert */
.package-card .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* B2B Box: Button zentriert */
.b2b-box .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* CTA Sections: Buttons zentriert */
.cta-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    gap: 0.5rem;
}

/* About Section: Button zentriert */
.about-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer: Link als Button */
.footer-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Mobile: Volle Breite, zentriert */
@media (max-width: 768px) {
    .hero-cta-split {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-split .btn {
        width: 100%;
        max-width: 350px;
    }

    .cta-section .btn {
        width: 100%;
        max-width: 350px;
    }
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
    background-color: var(--color-platinum);
    color: var(--color-dark);
    padding: 60px 0 20px;
    border-top: 1px solid var(--color-silver);
}

/* Footer Logo – Glow-Pulse statt Rotation */
.footer-logo-wrap { overflow: visible; }
.footer-logo-pulse {
    height: 100px;
    margin: 0 auto 15px auto;
    display: block;
    transition: filter 0.4s ease, transform 0.4s ease;
}
.footer-logo-pulse:hover {
    filter: drop-shadow(0 0 10px rgba(0,119,182,0.5))
            drop-shadow(0 0 20px rgba(0,119,182,0.25));
    transform: scale(1.06);
}

.footer-sub     { opacity: 0.75; margin-bottom: 20px; }
.footer-contact { margin: 20px 0; font-weight: 500; }
.footer-contact a { color: var(--color-dark); }

.social-icon {
    font-size: 2.2rem;
    color: #0077b5 !important;
    transition: transform var(--transition-base), filter var(--transition-base);
    display: inline-block;
    margin-top: 10px;
}
.social-icon:hover {
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0,119,182,0.35));
}

.footer-links a { margin: 0 10px; font-size: 0.9rem; color: var(--color-dark); }
.footer-links a:hover { color: var(--color-ocean); }

.copyright { margin-top: 40px; font-size: 0.8rem; opacity: 0.7; }
.copyright hr { border: 0; border-top: 1px solid var(--color-silver); margin-bottom: 20px; }

/* ─── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .header-content { justify-content: space-between; }
    .burger-menu    { display: block; }
    .desktop-btn    { display: none; }
    .mobile-only    { display: block; margin-top: 20px; }

    #nav-menu {
        position: absolute;
        top: 70px; left: 0; width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
    }
    #nav-menu.nav-active { transform: translateY(0); }

    .sticky-header nav ul { flex-direction: column; gap: 20px; align-items: center; text-align: center; }
    .sticky-header nav a  { font-size: 1.2rem; }

    h1 { font-size: 2rem; }
    .hero { height: auto; min-height: 60vh; padding: 80px 0 60px; }
    .hero-content h1    { font-size: 2.2rem; }
    .hero-content .subline { font-size: 1.1rem; }

    .hero-cta-split { flex-direction: column; }
    .hero-cta-split .btn { width: 100%; }

    .parallax-bg { background-attachment: scroll; }

    .cta-section { min-height: 50vh; padding: 60px 20px; }
    .cta-title { font-size: 2rem; }
    .subline-white { font-size: 1.1rem; }

    .grid-3-col, .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .grid-2-col { grid-template-columns: 1fr; }

    .section-career, .section-entscheider {
        border-left: 4px solid;
        padding-left: 1rem;
    }

    .package-featured { transform: scale(1); }

    .process-step-vertical {
        flex-direction: column;
        text-align: center;
    }

    .step-content-vertical {
        text-align: center;
    }

    .process-arrow-down {
        padding: 15px 0;
    }
}

@media (max-width: 600px) {
    .cta-title { font-size: 1.8rem; }
}
