/*
Theme Name: Flavor Starter
Theme URI: https://dosigny.de
Author: DOSIGNY
Author URI: https://dosigny.de
Description: Ein modernes, flexibles WordPress Theme mit vollständigem CSS-Variablen-System für individuelle Farbsteuerung über den Customizer.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flavor-starter
Tags: custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES - VOLLSTÄNDIGES VARIABLEN-SYSTEM

   WICHTIG: Alle Farben werden hier als Variablen definiert.
   Der Customizer überschreibt diese Variablen in :root.
   Im CSS werden NUR Variablen verwendet - KEINE hardcoded Farben!
   ========================================================================== */

:root {
    /* ==========================================
       HAUPTFARBEN
       ========================================== */
    --fl-primary: #1a365d;
    --fl-primary-light: #2c5282;
    --fl-primary-dark: #0f2942;
    --fl-secondary: #4a5568;
    --fl-secondary-light: #718096;
    --fl-accent: #e67e22;
    --fl-accent-light: #f39c12;
    --fl-accent-dark: #d35400;

    /* ==========================================
       GRAUSTUFEN
       ========================================== */
    --fl-white: #ffffff;
    --fl-gray-50: #f9fafb;
    --fl-gray-100: #f3f4f6;
    --fl-gray-200: #e5e7eb;
    --fl-gray-300: #d1d5db;
    --fl-gray-400: #9ca3af;
    --fl-gray-500: #6b7280;
    --fl-gray-600: #4b5563;
    --fl-gray-700: #374151;
    --fl-gray-800: #1f2937;
    --fl-gray-900: #111827;
    --fl-black: #000000;

    /* ==========================================
       SEMANTISCHE FARBEN
       ========================================== */
    --fl-success: #10b981;
    --fl-warning: #f59e0b;
    --fl-error: #ef4444;
    --fl-info: #3b82f6;

    /* ==========================================
       BODY & TEXT
       ========================================== */
    --fl-body-bg: #ffffff;
    --fl-body-text: #1f2937;
    --fl-heading-color: #111827;
    --fl-text-muted: #6b7280;
    --fl-link-color: #1a365d;
    --fl-link-hover: #e67e22;

    /* ==========================================
       HEADER
       ========================================== */
    --fl-header-bg: #0f2942;
    --fl-header-text: #ffffff;

    /* ==========================================
       DESKTOP NAVIGATION
       ========================================== */
    --fl-nav-link: #ffffff;
    --fl-nav-link-hover: #e67e22;
    --fl-nav-active-bg: #e67e22;
    --fl-nav-active-text: #ffffff;
    --fl-nav-hover-bg: rgba(255, 255, 255, 0.1);

    /* Desktop Dropdown */
    --fl-dropdown-bg: #ffffff;
    --fl-dropdown-text: #374151;
    --fl-dropdown-hover-bg: #f9fafb;
    --fl-dropdown-hover-text: #1a365d;
    --fl-dropdown-border: #e5e7eb;

    /* ==========================================
       MOBILE NAVIGATION
       ========================================== */
    --fl-hamburger-color: #ffffff;
    --fl-mobile-menu-bg: #ffffff;
    --fl-mobile-menu-text: #111827;
    --fl-mobile-hover-bg: #f9fafb;
    --fl-mobile-hover-text: #e67e22;
    --fl-mobile-active-bg: #e67e22;
    --fl-mobile-active-text: #ffffff;
    --fl-mobile-submenu-bg: #f3f4f6;
    --fl-mobile-submenu-text: #4b5563;
    --fl-mobile-border: #e5e7eb;
    --fl-mobile-overlay: rgba(0, 0, 0, 0.5);

    /* ==========================================
       HERO
       ========================================== */
    --fl-hero-bg: #1a365d;
    --fl-hero-title: #ffffff;
    --fl-hero-text: #e5e7eb;
    --fl-hero-subtitle: #e67e22;

    /* ==========================================
       CTA SEKTION
       ========================================== */
    --fl-cta-bg: #1a365d;
    --fl-cta-title: #ffffff;
    --fl-cta-text: #e5e7eb;

    /* ==========================================
       FEATURE ICONS
       ========================================== */
    --fl-icon-bg: #e67e22;
    --fl-icon-bg-end: #d35400;
    --fl-icon-color: #ffffff;
    --fl-icon-shadow: rgba(230, 126, 34, 0.3);
    --fl-feature-title: #111827;
    --fl-feature-text: #4b5563;
    --fl-feature-link: #e67e22;

    /* ==========================================
       LISTEN
       ========================================== */
    --fl-list-icon-bg: #e67e22;
    --fl-list-icon-bg-end: #d35400;
    --fl-list-check-color: #ffffff;
    --fl-list-number-bg: #1a365d;
    --fl-list-number-bg-end: #0f2942;
    --fl-list-number-color: #ffffff;

    /* ==========================================
       TESTIMONIALS
       ========================================== */
    --fl-testimonial-bg: #ffffff;
    --fl-testimonial-quote: #d1d5db;
    --fl-testimonial-text: #374151;
    --fl-testimonial-name: #111827;
    --fl-testimonial-company: #6b7280;

    /* ==========================================
       BUTTONS
       ========================================== */
    --fl-btn-primary-bg: #1a365d;
    --fl-btn-primary-text: #ffffff;
    --fl-btn-primary-hover: #0f2942;

    --fl-btn-accent-bg: #e67e22;
    --fl-btn-accent-text: #ffffff;
    --fl-btn-accent-hover: #d35400;

    --fl-btn-outline-border: #1a365d;
    --fl-btn-outline-text: #1a365d;
    --fl-btn-outline-hover-bg: #1a365d;
    --fl-btn-outline-hover-text: #ffffff;

    --fl-btn-white-bg: #ffffff;
    --fl-btn-white-text: #1a365d;
    --fl-btn-white-hover: #f3f4f6;

    /* ==========================================
       CARDS
       ========================================== */
    --fl-card-bg: #ffffff;
    --fl-card-border: #e5e7eb;
    --fl-card-hover-border: #e67e22;
    --fl-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --fl-card-hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

    /* ==========================================
       FOOTER
       ========================================== */
    --fl-footer-bg: #111827;
    --fl-footer-text: #d1d5db;
    --fl-footer-heading: #ffffff;
    --fl-footer-link: #d1d5db;
    --fl-footer-link-hover: #e67e22;
    --fl-footer-border: rgba(255, 255, 255, 0.1);

    /* ==========================================
       KONTAKT
       ========================================== */
    --fl-contact-icon-bg: #e67e22;
    --fl-contact-icon-bg-end: #d35400;
    --fl-contact-icon-color: #ffffff;
    --fl-contact-label: #6b7280;
    --fl-contact-value: #111827;

    /* ==========================================
       FORMULARE
       ========================================== */
    --fl-input-bg: #ffffff;
    --fl-input-border: #d1d5db;
    --fl-input-focus: #1a365d;
    --fl-input-text: #111827;
    --fl-input-placeholder: #9ca3af;

    /* ==========================================
       SEKTIONEN
       ========================================== */
    --fl-section-light-bg: #f9fafb;
    --fl-section-dark-bg: #111827;
    --fl-section-dark-text: #f3f4f6;

    /* ==========================================
       TYPOGRAPHY
       ========================================== */
    --fl-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fl-font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fl-font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Font Sizes - Fluid Typography */
    --fl-text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --fl-text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --fl-text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --fl-text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --fl-text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --fl-text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --fl-text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
    --fl-text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);
    --fl-text-5xl: clamp(3rem, 2rem + 5vw, 5rem);

    /* Font Weights */
    --fl-font-light: 300;
    --fl-font-normal: 400;
    --fl-font-medium: 500;
    --fl-font-semibold: 600;
    --fl-font-bold: 700;

    /* Line Heights */
    --fl-leading-none: 1;
    --fl-leading-tight: 1.25;
    --fl-leading-snug: 1.375;
    --fl-leading-normal: 1.5;
    --fl-leading-relaxed: 1.625;
    --fl-leading-loose: 2;

    /* ==========================================
       SPACING
       ========================================== */
    --fl-space-1: 0.25rem;
    --fl-space-2: 0.5rem;
    --fl-space-3: 0.75rem;
    --fl-space-4: 1rem;
    --fl-space-5: 1.25rem;
    --fl-space-6: 1.5rem;
    --fl-space-8: 2rem;
    --fl-space-10: 2.5rem;
    --fl-space-12: 3rem;
    --fl-space-16: 4rem;
    --fl-space-20: 5rem;
    --fl-space-24: 6rem;
    --fl-space-32: 8rem;

    /* ==========================================
       CONTAINER
       ========================================== */
    --fl-container-sm: 640px;
    --fl-container-md: 768px;
    --fl-container-lg: 1024px;
    --fl-container-xl: 1280px;
    --fl-container-2xl: 1536px;
    --fl-container-padding: clamp(1rem, 5vw, 2rem);

    /* ==========================================
       BORDER RADIUS
       ========================================== */
    --fl-radius-sm: 0.25rem;
    --fl-radius-md: 0.5rem;
    --fl-radius-lg: 0.75rem;
    --fl-radius-xl: 1rem;
    --fl-radius-2xl: 1.5rem;
    --fl-radius-full: 9999px;

    /* ==========================================
       SHADOWS
       ========================================== */
    --fl-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --fl-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --fl-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --fl-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --fl-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --fl-shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);

    /* ==========================================
       TRANSITIONS
       ========================================== */
    --fl-transition-fast: 150ms ease;
    --fl-transition-normal: 300ms ease;
    --fl-transition-slow: 500ms ease;
    --fl-transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* ==========================================
       Z-INDEX
       ========================================== */
    --fl-z-dropdown: 100;
    --fl-z-sticky: 200;
    --fl-z-fixed: 300;
    --fl-z-modal-backdrop: 400;
    --fl-z-modal: 500;
    --fl-z-popover: 600;
    --fl-z-tooltip: 700;
}

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

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--fl-font-primary);
    font-size: var(--fl-text-base);
    line-height: var(--fl-leading-normal);
    color: var(--fl-body-text);
    background-color: var(--fl-body-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fl-font-secondary);
    color: var(--fl-heading-color);
    font-weight: var(--fl-font-bold);
    line-height: var(--fl-leading-tight);
    margin-bottom: var(--fl-space-4);
}

h1 { font-size: var(--fl-text-4xl); }
h2 { font-size: var(--fl-text-3xl); }
h3 { font-size: var(--fl-text-2xl); }
h4 { font-size: var(--fl-text-xl); }
h5 { font-size: var(--fl-text-lg); }
h6 { font-size: var(--fl-text-base); }

.fl-h1, .fl-heading-1 { font-size: var(--fl-text-4xl); }
.fl-h2, .fl-heading-2 { font-size: var(--fl-text-3xl); }
.fl-h3, .fl-heading-3 { font-size: var(--fl-text-2xl); }
.fl-h4, .fl-heading-4 { font-size: var(--fl-text-xl); }
.fl-h5, .fl-heading-5 { font-size: var(--fl-text-lg); }
.fl-h6, .fl-heading-6 { font-size: var(--fl-text-base); }

.fl-display-1 { font-size: var(--fl-text-5xl); line-height: 1.1; }
.fl-display-2 { font-size: var(--fl-text-4xl); line-height: 1.15; }

p {
    margin-bottom: var(--fl-space-4);
}

a {
    color: var(--fl-link-color);
    text-decoration: none;
    transition: color var(--fl-transition-fast);
}

a:hover {
    color: var(--fl-link-hover);
}

strong,
.fl-highlight {
    color: var(--fl-heading-color);
    font-weight: var(--fl-font-semibold);
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
.fl-sr-only,
.fl-sr-heading {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus {
    outline: 3px solid var(--fl-accent);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 3px solid var(--fl-accent);
    outline-offset: 2px;
    border-radius: var(--fl-radius-sm);
}

a:focus-visible {
    outline-color: var(--fl-accent);
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: var(--fl-radius-sm);
}

button:focus-visible,
.fl-btn:focus-visible {
    outline-color: var(--fl-accent);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.3);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline-color: var(--fl-input-focus);
    border-color: var(--fl-input-focus);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.2);
}

/* Skip Links */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fl-btn-primary-bg);
    color: var(--fl-btn-primary-text);
    padding: var(--fl-space-3) var(--fl-space-6);
    border-radius: 0 0 var(--fl-radius-lg) var(--fl-radius-lg);
    font-weight: var(--fl-font-semibold);
    text-decoration: none;
    z-index: 100000;
    transition: top 0.3s ease;
    box-shadow: var(--fl-shadow-lg);
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--fl-accent);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --fl-primary: #000080;
        --fl-accent: #cc5500;
    }

    a {
        text-decoration: underline;
    }

    .fl-btn {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Selection */
::selection {
    background-color: var(--fl-accent);
    color: var(--fl-white);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.fl-container {
    width: 100%;
    max-width: var(--fl-container-xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--fl-container-padding);
    padding-right: var(--fl-container-padding);
}

.fl-container--narrow {
    max-width: var(--fl-container-lg);
}

.fl-container--wide {
    max-width: var(--fl-container-2xl);
}

.fl-container--full {
    max-width: 100%;
}

/* === ENDE TEIL 1 === */
/* === TEIL 2 - Header & Navigation === */

/* ==========================================================================
   HEADER
   ========================================================================== */
.fl-header {
    background-color: var(--fl-header-bg);
    color: var(--fl-header-text);
    position: sticky;
    top: 0;
    z-index: var(--fl-z-sticky);
    box-shadow: var(--fl-shadow-md);
}

.fl-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--fl-space-4) 0;
    gap: var(--fl-space-8);
}

.fl-header__logo {
    flex-shrink: 0;
}

.fl-header__logo img {
    max-height: 60px;
    width: auto;
}

.fl-header__logo-text {
    font-size: var(--fl-text-xl);
    font-weight: var(--fl-font-bold);
    color: var(--fl-header-text);
}

.fl-header__logo-text:hover {
    color: var(--fl-header-text);
}

/* ==========================================================================
   DESKTOP NAVIGATION
   ========================================================================== */
.fl-nav {
    display: flex;
    align-items: center;
    gap: var(--fl-space-1);
}

.fl-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--fl-space-1);
}

.fl-nav__item {
    position: relative;
}

.fl-nav__link {
    display: flex;
    align-items: center;
    gap: var(--fl-space-2);
    padding: var(--fl-space-3) var(--fl-space-4);
    color: var(--fl-nav-link);
    font-weight: var(--fl-font-medium);
    border-radius: var(--fl-radius-md);
    transition: all var(--fl-transition-fast);
    white-space: nowrap;
}

.fl-nav__link-text {
    display: inline;
}

/* Dropdown Icon */
.fl-nav__dropdown-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.fl-nav__dropdown-icon svg {
    display: block;
    width: 10px;
    height: 10px;
    stroke: currentColor;
}

.fl-nav__item:hover > .fl-nav__link .fl-nav__dropdown-icon,
.fl-nav__item--open > .fl-nav__link .fl-nav__dropdown-icon {
    transform: rotate(180deg);
}

.fl-nav__link:hover {
    color: var(--fl-nav-link-hover);
    background-color: var(--fl-nav-hover-bg);
}

/* Nav Active State */
.fl-nav__link--active,
.current-menu-item > .fl-nav__link,
.current_page_item > .fl-nav__link,
.current-menu-ancestor > .fl-nav__link {
    background-color: var(--fl-nav-active-bg);
    color: var(--fl-nav-active-text);
}

/* ==========================================================================
   DESKTOP DROPDOWN
   ========================================================================== */
.fl-nav__dropdown,
.fl-nav__item > .sub-menu,
.fl-nav__item > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: var(--fl-dropdown-bg);
    border-radius: var(--fl-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--fl-space-3);
    z-index: 9999;
    list-style: none;
    margin: 0;
    border: 1px solid var(--fl-dropdown-border);
}

/* Dropdown Arrow */
.fl-nav__dropdown::before,
.fl-nav__item > .sub-menu::before,
.fl-nav__item > ul::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 24px;
    width: 16px;
    height: 16px;
    background-color: var(--fl-dropdown-bg);
    border: 1px solid var(--fl-dropdown-border);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.fl-nav__item:hover > .fl-nav__dropdown,
.fl-nav__item:hover > .sub-menu,
.fl-nav__item:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

/* Dropdown Items */
.fl-nav__dropdown > li,
.fl-nav__item > .sub-menu > li,
.fl-nav__item > ul > li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fl-nav__dropdown-link,
.fl-nav__dropdown > li > a,
.fl-nav__item > .sub-menu > li > a,
.fl-nav__item > ul > li > a {
    display: flex;
    align-items: center;
    gap: var(--fl-space-3);
    padding: var(--fl-space-3) var(--fl-space-4);
    color: var(--fl-dropdown-text);
    border-radius: var(--fl-radius-md);
    transition: all 0.2s ease;
    font-weight: var(--fl-font-medium);
    font-size: var(--fl-text-sm);
    position: relative;
}

.fl-nav__dropdown-link::before,
.fl-nav__dropdown > li > a::before,
.fl-nav__item > .sub-menu > li > a::before,
.fl-nav__item > ul > li > a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--fl-accent);
    border-bottom: 1.5px solid var(--fl-accent);
    transform: translateX(-5px) rotate(-45deg);
    opacity: 0;
    transition: all 0.2s ease;
}

.fl-nav__dropdown-link:hover,
.fl-nav__dropdown > li > a:hover,
.fl-nav__item > .sub-menu > li > a:hover,
.fl-nav__item > ul > li > a:hover {
    background-color: var(--fl-dropdown-hover-bg);
    color: var(--fl-dropdown-hover-text);
    padding-left: var(--fl-space-5);
}

.fl-nav__dropdown-link:hover::before,
.fl-nav__dropdown > li > a:hover::before,
.fl-nav__item > .sub-menu > li > a:hover::before,
.fl-nav__item > ul > li > a:hover::before {
    opacity: 1;
    transform: translateX(0) rotate(-45deg);
}

/* ==========================================================================
   HAMBURGER TOGGLE
   ========================================================================== */
.fl-nav__toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--fl-space-3);
    cursor: pointer;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: var(--fl-radius-md);
    transition: background-color 0.2s ease;
}

.fl-nav__toggle:hover {
    background-color: var(--fl-nav-hover-bg);
}

.fl-nav__toggle-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--fl-hamburger-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.25s ease;
    border-radius: 1px;
}

.fl-nav__toggle-icon::before,
.fl-nav__toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--fl-hamburger-color);
    transition: all 0.25s ease;
    border-radius: 1px;
}

.fl-nav__toggle-icon::before {
    top: -7px;
}

.fl-nav__toggle-icon::after {
    bottom: -7px;
}

/* Open State - X */
.fl-nav--open .fl-nav__toggle-icon {
    background-color: transparent;
}

.fl-nav--open .fl-nav__toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.fl-nav--open .fl-nav__toggle-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */
@media (max-width: 1024px) {
    .fl-nav__toggle {
        display: block;
        z-index: 10001;
    }

    /* Mobile Menu Backdrop */
    .fl-nav::before {
        content: '';
        position: fixed;
        inset: 0;
        background: transparent;
        backdrop-filter: blur(0px);
        transition: all 0.4s ease;
        pointer-events: none;
        z-index: 9998;
    }

    .fl-nav--open::before {
        background: var(--fl-mobile-overlay);
        backdrop-filter: blur(4px);
        pointer-events: auto;
    }

    /* Mobile Menu Panel */
    .fl-nav__list {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background-color: var(--fl-mobile-menu-bg);
        flex-direction: column;
        align-items: stretch;
        padding: var(--fl-space-20) var(--fl-space-6) var(--fl-space-6);
        gap: var(--fl-space-1);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        overflow-y: auto;
    }

    .fl-nav--open .fl-nav__list {
        transform: translateX(0);
    }

    /* Staggered Animation */
    .fl-nav__list > .fl-nav__item {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
    }

    .fl-nav--open .fl-nav__list > .fl-nav__item {
        opacity: 1;
        transform: translateX(0);
    }

    .fl-nav--open .fl-nav__list > .fl-nav__item:nth-child(1) { transition-delay: 0.1s; }
    .fl-nav--open .fl-nav__list > .fl-nav__item:nth-child(2) { transition-delay: 0.15s; }
    .fl-nav--open .fl-nav__list > .fl-nav__item:nth-child(3) { transition-delay: 0.2s; }
    .fl-nav--open .fl-nav__list > .fl-nav__item:nth-child(4) { transition-delay: 0.25s; }
    .fl-nav--open .fl-nav__list > .fl-nav__item:nth-child(5) { transition-delay: 0.3s; }
    .fl-nav--open .fl-nav__list > .fl-nav__item:nth-child(6) { transition-delay: 0.35s; }
    .fl-nav--open .fl-nav__list > .fl-nav__item:nth-child(7) { transition-delay: 0.4s; }
    .fl-nav--open .fl-nav__list > .fl-nav__item:nth-child(8) { transition-delay: 0.45s; }

    /* Mobile Menu Links */
    .fl-nav__link {
        font-size: var(--fl-text-lg);
        padding: var(--fl-space-4);
        color: var(--fl-mobile-menu-text);
        border-radius: var(--fl-radius-md);
        border-left: 3px solid transparent;
        border-bottom: 1px solid var(--fl-mobile-border);
        transition: all 0.2s ease;
        background-color: transparent;
    }

    .fl-nav__link:hover {
        background-color: var(--fl-mobile-hover-bg);
        color: var(--fl-mobile-hover-text);
        border-left-color: var(--fl-accent);
        padding-left: var(--fl-space-5);
    }

    /* Mobile Active State */
    .fl-nav__link--active,
    .current-menu-item > .fl-nav__link,
    .current_page_item > .fl-nav__link,
    .current-menu-ancestor > .fl-nav__link {
        background-color: var(--fl-mobile-active-bg);
        color: var(--fl-mobile-active-text);
        border-left-color: var(--fl-accent);
        padding-left: var(--fl-space-5);
    }

    /* Mobile Dropdown */
    .fl-nav__dropdown,
    .fl-nav__item > .sub-menu,
    .fl-nav__item > ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--fl-mobile-submenu-bg);
        border: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin-top: var(--fl-space-2);
        margin-left: var(--fl-space-4);
        border-radius: var(--fl-radius-md);
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .fl-nav__dropdown::before,
    .fl-nav__item > .sub-menu::before,
    .fl-nav__item > ul::before {
        display: none;
    }

    .fl-nav__item--open > .fl-nav__dropdown,
    .fl-nav__item--open > .sub-menu,
    .fl-nav__item--open > ul {
        max-height: 500px;
        padding: var(--fl-space-2);
    }

    /* Mobile Dropdown Links */
    .fl-nav__dropdown-link,
    .fl-nav__dropdown > li > a,
    .fl-nav__item > .sub-menu > li > a {
        color: var(--fl-mobile-submenu-text);
        padding: var(--fl-space-3) var(--fl-space-4);
        border-bottom: 1px solid var(--fl-mobile-border);
    }

    .fl-nav__dropdown-link::before,
    .fl-nav__dropdown > li > a::before {
        display: none;
    }

    .fl-nav__dropdown-link:hover,
    .fl-nav__dropdown > li > a:hover {
        background-color: var(--fl-mobile-hover-bg);
        color: var(--fl-mobile-hover-text);
        padding-left: var(--fl-space-5);
    }

    /* Dropdown Icon Color in Mobile */
    .fl-nav__dropdown-icon svg {
        stroke: var(--fl-mobile-menu-text);
    }

    /* Body Scroll Lock */
    body.nav-open {
        overflow: hidden;
    }
}

/* Mobile Nav - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .fl-nav__list,
    .fl-nav__list > .fl-nav__item,
    .fl-nav__toggle-icon,
    .fl-nav__toggle-icon::before,
    .fl-nav__toggle-icon::after,
    .fl-nav::before {
        transition: none;
        animation: none;
    }
}

/* === ENDE TEIL 2 === */
/* === TEIL 3 - Sections, Hero, CTA, Footer, Buttons, Cards === */

/* ==========================================================================
   SECTIONS SYSTEM
   ========================================================================== */
.fl-section {
    padding: var(--fl-space-16) 0;
    position: relative;
}

.fl-section--hero {
    padding: var(--fl-space-24) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.fl-section--small {
    padding: var(--fl-space-8) 0;
}

.fl-section--large {
    padding: var(--fl-space-24) 0;
}

/* Section Backgrounds */
.fl-section--bg-white {
    background-color: var(--fl-white);
}

.fl-section--bg-light {
    background-color: var(--fl-section-light-bg);
}

.fl-section--bg-dark {
    background-color: var(--fl-section-dark-bg);
    color: var(--fl-section-dark-text);
}

.fl-section--bg-dark h1,
.fl-section--bg-dark h2,
.fl-section--bg-dark h3,
.fl-section--bg-dark h4 {
    color: var(--fl-white);
}

.fl-section--bg-dark a:not(.fl-btn),
.fl-section--bg-primary a:not(.fl-btn) {
    color: var(--fl-accent-light);
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.fl-section--bg-dark a:not(.fl-btn):hover,
.fl-section--bg-primary a:not(.fl-btn):hover {
    color: var(--fl-white);
}

.fl-section--bg-dark strong,
.fl-section--bg-primary strong {
    color: var(--fl-accent-light);
}

.fl-section--bg-primary {
    background-color: var(--fl-cta-bg);
    color: var(--fl-white);
}

.fl-section--bg-primary h1,
.fl-section--bg-primary h2,
.fl-section--bg-primary h3,
.fl-section--bg-primary h4 {
    color: var(--fl-cta-title);
}

.fl-section--bg-primary p {
    color: var(--fl-cta-text);
}

/* Background Image */
.fl-section--bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fl-section--bg-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.fl-section--bg-overlay > * {
    position: relative;
    z-index: 2;
}

/* Section Header */
.fl-section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--fl-space-12);
}

.fl-section__subtitle {
    display: inline-block;
    color: var(--fl-accent);
    font-size: var(--fl-text-sm);
    font-weight: var(--fl-font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--fl-space-4);
}

.fl-section__title {
    margin-bottom: var(--fl-space-4);
}

.fl-section__description {
    color: var(--fl-text-muted);
    font-size: var(--fl-text-lg);
}

/* Section Headings with Underline */
.fl-section h2,
.fl-content h2 {
    position: relative;
    display: inline-block;
}

.fl-section h2::after,
.fl-content h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--fl-accent), transparent);
    border-radius: 2px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.fl-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-color: var(--fl-hero-bg);
    position: relative;
    overflow: hidden;
}

.fl-hero__content {
    position: relative;
    z-index: 2;
}

.fl-hero__subtitle {
    display: inline-block;
    padding: var(--fl-space-2) var(--fl-space-4);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--fl-radius-full);
    font-size: var(--fl-text-sm);
    font-weight: var(--fl-font-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--fl-space-4);
    color: var(--fl-hero-subtitle);
}

.fl-hero__title {
    color: var(--fl-hero-title);
    margin-bottom: var(--fl-space-6);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.fl-hero__text {
    color: var(--fl-hero-text);
    font-size: var(--fl-text-lg);
    margin-bottom: var(--fl-space-8);
    max-width: 600px;
}

.fl-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--fl-space-4);
}

.fl-section--hero h1,
.fl-section--hero .fl-hero__title {
    color: var(--fl-hero-title);
}

.fl-section--hero p {
    color: var(--fl-hero-text);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.fl-section--cta,
.fl-cta {
    background-color: var(--fl-cta-bg);
    text-align: center;
}

.fl-section--cta h2,
.fl-section--cta h3,
.fl-cta h2,
.fl-cta h3 {
    color: var(--fl-cta-title);
}

.fl-section--cta p,
.fl-cta p {
    color: var(--fl-cta-text);
}

.fl-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--fl-space-4);
    margin-top: var(--fl-space-8);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.fl-footer {
    background-color: var(--fl-footer-bg);
    color: var(--fl-footer-text);
    padding: var(--fl-space-16) 0 var(--fl-space-8);
    position: relative;
}

.fl-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fl-footer-border), transparent);
}

.fl-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--fl-space-12);
    margin-bottom: var(--fl-space-12);
}

.fl-footer__column h4 {
    color: var(--fl-footer-heading);
    font-size: var(--fl-text-lg);
    margin-bottom: var(--fl-space-6);
    position: relative;
    padding-bottom: var(--fl-space-3);
}

.fl-footer__column h4::after,
.fl-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--fl-accent);
    border-radius: 1px;
}

.fl-footer h4 {
    position: relative;
    padding-bottom: var(--fl-space-3);
    margin-bottom: var(--fl-space-4);
}

.fl-footer__column ul {
    list-style: none;
}

.fl-footer__column li {
    margin-bottom: var(--fl-space-3);
}

.fl-footer__column a,
.fl-footer a {
    color: var(--fl-footer-link);
    transition: color var(--fl-transition-fast);
}

.fl-footer__column a:hover,
.fl-footer a:hover {
    color: var(--fl-footer-link-hover);
}

.fl-footer p,
.fl-footer li {
    color: var(--fl-footer-text);
}

.fl-footer__bottom {
    padding-top: var(--fl-space-8);
    border-top: 1px solid var(--fl-footer-border);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--fl-space-4);
}

.fl-footer__copyright {
    font-size: var(--fl-text-sm);
    color: var(--fl-footer-text);
}

.fl-footer__legal {
    display: flex;
    gap: var(--fl-space-6);
    font-size: var(--fl-text-sm);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.fl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--fl-space-2);
    padding: var(--fl-space-3) var(--fl-space-6);
    font-weight: var(--fl-font-semibold);
    font-size: var(--fl-text-base);
    line-height: 1.5;
    border-radius: var(--fl-radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--fl-transition-fast);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

.fl-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Button Primary */
.fl-btn--primary {
    background-color: var(--fl-btn-primary-bg);
    color: var(--fl-btn-primary-text);
    border-color: var(--fl-btn-primary-bg);
}

.fl-btn--primary:hover {
    background-color: var(--fl-btn-primary-hover);
    border-color: var(--fl-btn-primary-hover);
    color: var(--fl-btn-primary-text);
    transform: translateY(-2px);
    box-shadow: var(--fl-shadow-lg);
}

/* Button Accent */
.fl-btn--accent {
    background-color: var(--fl-btn-accent-bg);
    color: var(--fl-btn-accent-text);
    border-color: var(--fl-btn-accent-bg);
}

.fl-btn--accent:hover {
    background-color: var(--fl-btn-accent-hover);
    border-color: var(--fl-btn-accent-hover);
    color: var(--fl-btn-accent-text);
    transform: translateY(-2px);
    box-shadow: var(--fl-shadow-lg);
}

/* Button Secondary/Outline */
.fl-btn--secondary,
.fl-btn--outline {
    background-color: transparent;
    border-color: var(--fl-btn-outline-border);
    color: var(--fl-btn-outline-text);
}

.fl-btn--secondary:hover,
.fl-btn--outline:hover {
    background-color: var(--fl-btn-outline-hover-bg);
    border-color: var(--fl-btn-outline-hover-bg);
    color: var(--fl-btn-outline-hover-text);
}

/* Button White */
.fl-btn--white {
    background-color: var(--fl-btn-white-bg);
    color: var(--fl-btn-white-text);
    border-color: var(--fl-btn-white-bg);
}

.fl-btn--white:hover {
    background-color: var(--fl-btn-white-hover);
    border-color: var(--fl-btn-white-hover);
    color: var(--fl-btn-white-text);
}

/* Button Ghost (for dark backgrounds) */
.fl-btn--ghost {
    background-color: transparent;
    border-color: var(--fl-white);
    color: var(--fl-white);
}

.fl-btn--ghost:hover {
    background-color: var(--fl-white);
    color: var(--fl-btn-primary-bg);
}

/* Button Sizes */
.fl-btn--lg {
    padding: var(--fl-space-4) var(--fl-space-8);
    font-size: var(--fl-text-lg);
}

.fl-btn--sm {
    padding: var(--fl-space-2) var(--fl-space-4);
    font-size: var(--fl-text-sm);
}

.fl-btn--full {
    width: 100%;
}

/* Button with Icon */
.fl-btn-icon {
    padding: var(--fl-space-3);
    aspect-ratio: 1;
}

/* ==========================================================================
   GRID SYSTEM
   ========================================================================== */
.fl-grid {
    display: grid;
    gap: var(--fl-space-8);
}

.fl-grid--1 { grid-template-columns: 1fr; }
.fl-grid--2 { grid-template-columns: repeat(2, 1fr); }
.fl-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fl-grid--4 { grid-template-columns: repeat(4, 1fr); }
.fl-grid--5 { grid-template-columns: repeat(5, 1fr); }
.fl-grid--6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
    .fl-grid--4,
    .fl-grid--5,
    .fl-grid--6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fl-grid--2,
    .fl-grid--3,
    .fl-grid--4,
    .fl-grid--5,
    .fl-grid--6 {
        grid-template-columns: 1fr;
    }

    .fl-btn--full-mobile {
        width: 100%;
    }
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.fl-card {
    background-color: var(--fl-card-bg);
    border-radius: var(--fl-radius-xl);
    padding: var(--fl-space-8);
    box-shadow: var(--fl-card-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--fl-card-border);
    height: 100%;
}

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

.fl-card--gradient {
    background: linear-gradient(135deg, var(--fl-white), var(--fl-gray-50));
}

.fl-card--flat {
    box-shadow: none;
}

.fl-card--flat:hover {
    box-shadow: var(--fl-card-shadow);
}

/* === ENDE TEIL 3 === */
/* === TEIL 4 - Features, Listen, Testimonials, Contact, Forms, Utilities === */

/* ==========================================================================
   FEATURE BOXES
   ========================================================================== */
.fl-features {
    display: grid;
    gap: var(--fl-space-8);
}

.fl-feature {
    text-align: left;
    padding: var(--fl-space-6);
    background-color: var(--fl-card-bg);
    border-radius: var(--fl-radius-xl);
    border: 1px solid var(--fl-card-border);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fl-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--fl-card-hover-shadow);
    border-color: var(--fl-card-hover-border);
}

.fl-feature.fl-card {
    display: flex;
    flex-direction: column;
    gap: var(--fl-space-4);
}

.fl-feature__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fl-icon-bg), var(--fl-icon-bg-end));
    color: var(--fl-icon-color);
    border-radius: var(--fl-radius-xl);
    box-shadow: 0 4px 15px var(--fl-icon-shadow);
    transition: all 0.3s ease;
    margin-bottom: var(--fl-space-4);
}

.fl-feature__icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.fl-feature:hover .fl-feature__icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--fl-icon-shadow);
}

.fl-feature__title {
    font-size: var(--fl-text-lg);
    font-weight: var(--fl-font-semibold);
    margin-bottom: var(--fl-space-2);
    color: var(--fl-feature-title);
}

.fl-feature__text {
    color: var(--fl-feature-text);
    margin-bottom: var(--fl-space-4);
    line-height: 1.6;
    flex-grow: 1;
}

.fl-feature__link {
    display: inline-flex;
    align-items: center;
    gap: var(--fl-space-2);
    color: var(--fl-feature-link);
    font-weight: var(--fl-font-medium);
    font-size: var(--fl-text-sm);
    transition: all 0.2s ease;
    margin-top: auto;
}

.fl-feature__link:hover {
    color: var(--fl-accent-dark);
    gap: var(--fl-space-3);
}

.fl-feature__link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.fl-feature__link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   LISTS - UNORDERED (Checkmarks)
   ========================================================================== */
.fl-content ul,
.fl-section ul:not(.fl-nav__list):not(.fl-nav__dropdown):not(.sub-menu),
.entry-content ul,
article ul,
.page-content ul {
    list-style: none;
    padding-left: 0;
    margin: var(--fl-space-6) 0;
}

.fl-content ul li,
.fl-section ul:not(.fl-nav__list):not(.fl-nav__dropdown):not(.sub-menu) li,
.entry-content ul li,
article ul li,
.page-content ul li {
    position: relative;
    padding-left: 2.25rem;
    margin-bottom: var(--fl-space-4);
    line-height: 1.6;
}

/* Checkmark Circle */
.fl-content ul li::before,
.fl-section ul:not(.fl-nav__list):not(.fl-nav__dropdown):not(.sub-menu) li::before,
.entry-content ul li::before,
article ul li::before,
.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3em;
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, var(--fl-list-icon-bg), var(--fl-list-icon-bg-end));
    border-radius: 50%;
}

/* Checkmark */
.fl-content ul li::after,
.fl-section ul:not(.fl-nav__list):not(.fl-nav__dropdown):not(.sub-menu) li::after,
.entry-content ul li::after,
article ul li::after,
.page-content ul li::after {
    content: '';
    position: absolute;
    left: 0.45rem;
    top: 0.55em;
    width: 0.35rem;
    height: 0.6rem;
    border: solid var(--fl-list-check-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ==========================================================================
   LISTS - ORDERED (Numbers)
   ========================================================================== */
.fl-content ol,
.fl-section ol,
.entry-content ol,
article ol,
.page-content ol {
    list-style: none;
    padding-left: 0;
    margin: var(--fl-space-6) 0;
    counter-reset: item;
}

.fl-content ol li,
.fl-section ol li,
.entry-content ol li,
article ol li,
.page-content ol li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: var(--fl-space-4);
    counter-increment: item;
    line-height: 1.6;
}

.fl-content ol li::before,
.fl-section ol li::before,
.entry-content ol li::before,
article ol li::before,
.page-content ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: linear-gradient(135deg, var(--fl-list-number-bg), var(--fl-list-number-bg-end));
    color: var(--fl-list-number-color);
    font-weight: var(--fl-font-bold);
    font-size: var(--fl-text-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* List Variants */
.fl-list-cards li,
.fl-content .fl-list-cards li {
    background: var(--fl-card-bg);
    padding: var(--fl-space-4) var(--fl-space-4) var(--fl-space-4) 3rem;
    border-radius: var(--fl-radius-lg);
    box-shadow: var(--fl-shadow-sm);
    margin-bottom: var(--fl-space-3);
    border: 1px solid var(--fl-card-border);
    transition: all 0.2s ease;
}

.fl-list-cards li:hover {
    transform: translateX(5px);
    box-shadow: var(--fl-shadow-md);
    border-color: var(--fl-accent);
}

/* Branchen Liste */
.branchen-liste,
.fl-branchen {
    list-style: none;
    padding-left: 0;
}

.branchen-liste li,
.fl-branchen li {
    padding-left: 2.5rem;
    margin-bottom: var(--fl-space-4);
    font-size: var(--fl-text-lg);
    position: relative;
}

.branchen-liste li::before,
.fl-branchen li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, var(--fl-accent), var(--fl-accent-dark));
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.branchen-liste li::after,
.fl-branchen li::after {
    content: '';
    position: absolute;
    left: 0.55rem;
    top: 0.65em;
    width: 0.4rem;
    height: 0.4rem;
    background: var(--fl-white);
    border-radius: 50%;
}

/* Arrow Style List */
.fl-list-arrows li::before {
    background: var(--fl-btn-primary-bg);
    clip-path: polygon(40% 0%, 100% 50%, 40% 100%, 0% 100%, 60% 50%, 0% 0%);
    border-radius: 0;
}

.fl-list-arrows li::after {
    content: none;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.fl-testimonials {
    display: grid;
    gap: var(--fl-space-8);
}

.fl-testimonial {
    background-color: var(--fl-testimonial-bg);
    padding: var(--fl-space-8);
    border-radius: var(--fl-radius-xl);
    box-shadow: var(--fl-card-shadow);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fl-testimonial__quote-icon {
    color: var(--fl-testimonial-quote);
    margin-bottom: var(--fl-space-4);
}

.fl-testimonial__quote-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.fl-testimonial__content {
    flex-grow: 1;
}

.fl-testimonial__text {
    color: var(--fl-testimonial-text);
    font-style: italic;
    font-size: var(--fl-text-lg);
    line-height: 1.7;
    margin-bottom: var(--fl-space-6);
}

.fl-testimonial__author {
    margin-top: auto;
    padding-top: var(--fl-space-4);
    border-top: 1px solid var(--fl-card-border);
}

.fl-testimonial__name {
    display: block;
    color: var(--fl-testimonial-name);
    font-weight: var(--fl-font-semibold);
    margin-bottom: var(--fl-space-1);
}

.fl-testimonial__company {
    color: var(--fl-testimonial-company);
    font-size: var(--fl-text-sm);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.fl-contact {
    display: grid;
    gap: var(--fl-space-8);
}

.fl-contact-item {
    display: flex;
    gap: var(--fl-space-4);
    align-items: flex-start;
}

.fl-contact-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fl-contact-icon-bg), var(--fl-contact-icon-bg-end));
    color: var(--fl-contact-icon-color);
    border-radius: var(--fl-radius-lg);
    box-shadow: 0 4px 12px var(--fl-icon-shadow);
}

.fl-contact-item__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.fl-contact-item__content {
    flex: 1;
}

.fl-contact-item__label {
    display: block;
    color: var(--fl-contact-label);
    font-size: var(--fl-text-sm);
    font-weight: var(--fl-font-medium);
    margin-bottom: var(--fl-space-1);
}

.fl-contact-item__value {
    color: var(--fl-contact-value);
    font-size: var(--fl-text-base);
    line-height: 1.5;
}

.fl-contact-item__value a {
    color: var(--fl-contact-value);
}

.fl-contact-item__value a:hover {
    color: var(--fl-accent);
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.fl-form {
    max-width: 600px;
}

.fl-form--full {
    max-width: 100%;
}

.fl-form__group {
    margin-bottom: var(--fl-space-6);
}

.fl-form__label {
    display: block;
    margin-bottom: var(--fl-space-2);
    font-weight: var(--fl-font-medium);
    color: var(--fl-heading-color);
}

.fl-form__label--required::after {
    content: ' *';
    color: var(--fl-error);
}

.fl-form__input,
.fl-form__textarea,
.fl-form__select {
    width: 100%;
    padding: var(--fl-space-3) var(--fl-space-4);
    background-color: var(--fl-input-bg);
    border: 1px solid var(--fl-input-border);
    border-radius: var(--fl-radius-md);
    font-size: var(--fl-text-base);
    color: var(--fl-input-text);
    transition: border-color var(--fl-transition-fast), box-shadow var(--fl-transition-fast);
}

.fl-form__input::placeholder,
.fl-form__textarea::placeholder {
    color: var(--fl-input-placeholder);
}

.fl-form__input:focus,
.fl-form__textarea:focus,
.fl-form__select:focus {
    border-color: var(--fl-input-focus);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
    outline: none;
}

.fl-form__textarea {
    min-height: 120px;
    resize: vertical;
}

.fl-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--fl-space-3) center;
    padding-right: var(--fl-space-10);
}

.fl-form__checkbox,
.fl-form__radio {
    display: flex;
    align-items: flex-start;
    gap: var(--fl-space-3);
    cursor: pointer;
}

.fl-form__checkbox input,
.fl-form__radio input {
    margin-top: 0.25em;
    accent-color: var(--fl-accent);
}

.fl-form__error {
    color: var(--fl-error);
    font-size: var(--fl-text-sm);
    margin-top: var(--fl-space-2);
}

.fl-form__success {
    color: var(--fl-success);
    font-size: var(--fl-text-sm);
    margin-top: var(--fl-space-2);
}

/* ==========================================================================
   BLOCKQUOTE
   ========================================================================== */
blockquote,
.fl-blockquote,
.fl-content blockquote {
    position: relative;
    padding: var(--fl-space-8) var(--fl-space-8) var(--fl-space-6);
    padding-left: var(--fl-space-12);
    margin: var(--fl-space-8) 0;
    background: var(--fl-card-bg);
    border: none;
    border-radius: var(--fl-radius-xl);
    font-style: italic;
    font-size: var(--fl-text-lg);
    color: var(--fl-gray-700);
    box-shadow: var(--fl-card-shadow);
}

/* SVG Quote Icon */
blockquote::before,
.fl-blockquote::before,
.fl-content blockquote::before {
    content: '';
    position: absolute;
    top: var(--fl-space-6);
    left: var(--fl-space-6);
    width: 32px;
    height: 24px;
    background-color: var(--fl-accent);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

blockquote cite,
.fl-blockquote cite {
    display: block;
    margin-top: var(--fl-space-4);
    font-style: normal;
    font-size: var(--fl-text-sm);
    color: var(--fl-text-muted);
}

/* ==========================================================================
   BADGES & ICONS
   ========================================================================== */
.fl-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--fl-space-2);
    padding: var(--fl-space-1) var(--fl-space-3);
    background-color: var(--fl-accent);
    color: var(--fl-white);
    font-size: var(--fl-text-xs);
    font-weight: var(--fl-font-semibold);
    border-radius: var(--fl-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fl-badge--primary {
    background-color: var(--fl-btn-primary-bg);
}

.fl-badge--success {
    background-color: var(--fl-success);
}

.fl-badge--warning {
    background-color: var(--fl-warning);
}

.fl-badge--error {
    background-color: var(--fl-error);
}

.fl-badge--outline {
    background-color: transparent;
    border: 2px solid var(--fl-btn-primary-bg);
    color: var(--fl-btn-primary-bg);
}

.fl-icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--fl-icon-bg), var(--fl-icon-bg-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fl-icon-color);
    font-size: 1.5rem;
    margin-bottom: var(--fl-space-4);
    box-shadow: 0 8px 20px var(--fl-icon-shadow);
}

.fl-icon-circle--primary {
    background: linear-gradient(135deg, var(--fl-btn-primary-bg), var(--fl-btn-primary-hover));
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
}

.fl-icon-circle--sm {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
}

.fl-icon-circle--lg {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
/* Text Alignment */
.fl-text-center { text-align: center; }
.fl-text-left { text-align: left; }
.fl-text-right { text-align: right; }

/* Margins */
.fl-mb-0 { margin-bottom: 0; }
.fl-mb-2 { margin-bottom: var(--fl-space-2); }
.fl-mb-4 { margin-bottom: var(--fl-space-4); }
.fl-mb-6 { margin-bottom: var(--fl-space-6); }
.fl-mb-8 { margin-bottom: var(--fl-space-8); }
.fl-mb-12 { margin-bottom: var(--fl-space-12); }

.fl-mt-0 { margin-top: 0; }
.fl-mt-2 { margin-top: var(--fl-space-2); }
.fl-mt-4 { margin-top: var(--fl-space-4); }
.fl-mt-6 { margin-top: var(--fl-space-6); }
.fl-mt-8 { margin-top: var(--fl-space-8); }
.fl-mt-12 { margin-top: var(--fl-space-12); }

/* Padding */
.fl-p-0 { padding: 0; }
.fl-p-4 { padding: var(--fl-space-4); }
.fl-p-8 { padding: var(--fl-space-8); }

.fl-py-4 { padding-top: var(--fl-space-4); padding-bottom: var(--fl-space-4); }
.fl-py-8 { padding-top: var(--fl-space-8); padding-bottom: var(--fl-space-8); }
.fl-py-16 { padding-top: var(--fl-space-16); padding-bottom: var(--fl-space-16); }

.fl-px-4 { padding-left: var(--fl-space-4); padding-right: var(--fl-space-4); }
.fl-px-8 { padding-left: var(--fl-space-8); padding-right: var(--fl-space-8); }

/* Display */
.fl-hidden { display: none; }
.fl-block { display: block; }
.fl-flex { display: flex; }
.fl-inline-flex { display: inline-flex; }
.fl-grid { display: grid; }

/* Flex */
.fl-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.fl-flex-wrap { flex-wrap: wrap; }
.fl-flex-col { flex-direction: column; }
.fl-gap-2 { gap: var(--fl-space-2); }
.fl-gap-4 { gap: var(--fl-space-4); }
.fl-gap-8 { gap: var(--fl-space-8); }

/* Width */
.fl-w-full { width: 100%; }
.fl-max-w-sm { max-width: var(--fl-container-sm); }
.fl-max-w-md { max-width: var(--fl-container-md); }
.fl-max-w-lg { max-width: var(--fl-container-lg); }
.fl-max-w-xl { max-width: var(--fl-container-xl); }

/* Responsive */
@media (max-width: 768px) {
    .fl-hide-mobile { display: none; }
}

@media (min-width: 769px) {
    .fl-hide-desktop { display: none; }
}

/* Hover Effects */
.fl-hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fl-hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.fl-hover-glow:hover {
    box-shadow: 0 0 30px var(--fl-icon-shadow);
}

/* Typography Helpers */
.fl-text-muted {
    color: var(--fl-text-muted);
}

.fl-text-accent {
    color: var(--fl-accent);
}

.fl-text-primary {
    color: var(--fl-btn-primary-bg);
}

/* === ENDE TEIL 4 === */
/* === TEIL 5 - Alerts, Animationen, Breadcrumb, Card Details, Tables, Print === */

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes fl-spin {
    to { transform: rotate(360deg); }
}

@keyframes fl-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fl-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fl-scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   ANIMATION CLASSES
   ========================================================================== */
.fl-animate-fade-in {
    animation: fl-fade-in var(--fl-transition-normal) ease-out forwards;
}

.fl-animate-slide-up {
    animation: fl-slide-up var(--fl-transition-normal) ease-out forwards;
}

.fl-animate-scale-in {
    animation: fl-scale-in var(--fl-transition-normal) ease-out forwards;
}

/* Staggered Animation Delays */
.fl-animate-delay-1 { animation-delay: 100ms; }
.fl-animate-delay-2 { animation-delay: 200ms; }
.fl-animate-delay-3 { animation-delay: 300ms; }
.fl-animate-delay-4 { animation-delay: 400ms; }
.fl-animate-delay-5 { animation-delay: 500ms; }

/* ==========================================================================
   ALERTS
   ========================================================================== */
.fl-alert {
    padding: var(--fl-space-4) var(--fl-space-6);
    border-radius: var(--fl-radius-lg);
    margin-bottom: var(--fl-space-4);
    display: flex;
    align-items: flex-start;
    gap: var(--fl-space-3);
}

.fl-alert-success {
    background-color: #ecfdf5;
    border: 1px solid var(--fl-success);
    color: #065f46;
}

.fl-alert-error {
    background-color: #fef2f2;
    border: 1px solid var(--fl-error);
    color: #991b1b;
}

.fl-alert-warning {
    background-color: #fffbeb;
    border: 1px solid var(--fl-warning);
    color: #92400e;
}

.fl-alert-info {
    background-color: #eff6ff;
    border: 1px solid var(--fl-info);
    color: #1e40af;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.fl-breadcrumb {
    padding: var(--fl-space-4) 0;
    font-size: var(--fl-text-sm);
}

.fl-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--fl-space-2);
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Reset list styles for breadcrumb */
.fl-breadcrumb ol li {
    padding-left: 0;
    margin-bottom: 0;
}

.fl-breadcrumb ol li::before,
.fl-breadcrumb ol li::after {
    display: none;
}

.fl-breadcrumb li:not(:last-child)::after {
    display: inline;
    content: '›';
    margin-left: var(--fl-space-2);
    color: var(--fl-gray-400);
}

.fl-breadcrumb a {
    color: var(--fl-gray-600);
}

.fl-breadcrumb a:hover {
    color: var(--fl-link-color);
    text-decoration: underline;
}

.fl-breadcrumb [aria-current="page"] {
    color: var(--fl-heading-color);
    font-weight: var(--fl-font-medium);
}

/* ==========================================================================
   CARD DETAILS (Image Cards)
   ========================================================================== */
.fl-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--fl-radius-xl) var(--fl-radius-xl) 0 0;
    margin: calc(var(--fl-space-8) * -1);
    margin-bottom: 0;
}

.fl-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--fl-transition-slow);
}

.fl-card:hover .fl-card__image img {
    transform: scale(1.05);
}

.fl-card__content {
    padding: var(--fl-space-6);
}

.fl-card__title {
    font-size: var(--fl-text-xl);
    margin-bottom: var(--fl-space-3);
    color: var(--fl-heading-color);
}

.fl-card__text {
    color: var(--fl-feature-text);
    margin-bottom: var(--fl-space-4);
}

/* Icon Card */
.fl-card--icon {
    text-align: center;
}

.fl-card--icon .fl-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--fl-space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fl-icon-bg), var(--fl-icon-bg-end));
    border-radius: 50%;
    color: var(--fl-icon-color);
    box-shadow: 0 8px 20px var(--fl-icon-shadow);
}

.fl-card--icon .fl-card__icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ==========================================================================
   TEAM MEMBER
   ========================================================================== */
.fl-team-member {
    text-align: center;
}

.fl-team-member__image {
    margin-bottom: var(--fl-space-4);
}

.fl-team-member__image img {
    border-radius: var(--fl-radius-full);
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: var(--fl-shadow-lg);
}

.fl-team-member__name {
    margin-bottom: var(--fl-space-1);
    color: var(--fl-heading-color);
}

.fl-team-member__position {
    color: var(--fl-text-muted);
    margin-bottom: 0;
    font-size: var(--fl-text-sm);
}

.fl-team-member__bio {
    margin-top: var(--fl-space-4);
    color: var(--fl-feature-text);
    font-size: var(--fl-text-sm);
}

/* ==========================================================================
   TABLES
   ========================================================================== */
.fl-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: var(--fl-space-6) 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fl-text-sm);
}

th, td {
    padding: var(--fl-space-3) var(--fl-space-4);
    text-align: left;
    border-bottom: 1px solid var(--fl-card-border);
}

th {
    background-color: var(--fl-section-light-bg);
    font-weight: var(--fl-font-semibold);
    color: var(--fl-heading-color);
}

/* Striped rows */
tbody tr:nth-child(even) {
    background-color: var(--fl-section-light-bg);
}

/* Row hover */
tbody tr:hover {
    background-color: var(--fl-gray-100);
}

/* ==========================================================================
   LOADING SPINNER
   ========================================================================== */
.fl-loading {
    display: inline-flex;
    align-items: center;
    gap: var(--fl-space-2);
}

.fl-loading::before {
    content: '';
    width: 1em;
    height: 1em;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: fl-spin 0.75s linear infinite;
}

.fl-loading--lg::before {
    width: 1.5em;
    height: 1.5em;
    border-width: 3px;
}

.fl-loading--center {
    justify-content: center;
    width: 100%;
    padding: var(--fl-space-8);
}

/* ==========================================================================
   GRID MODIFIERS
   ========================================================================== */
.fl-grid--gap-sm { gap: var(--fl-space-4); }
.fl-grid--gap-lg { gap: var(--fl-space-12); }
.fl-grid--gap-xl { gap: var(--fl-space-16); }
.fl-grid--center { align-items: center; }
.fl-grid--start { align-items: start; }
.fl-grid--end { align-items: end; }

/* ==========================================================================
   ADDITIONAL UTILITIES
   ========================================================================== */
/* Width */
.fl-max-w-2xl { max-width: 42rem; }
.fl-max-w-prose { max-width: 65ch; }
.fl-mx-auto { margin-left: auto; margin-right: auto; }

/* Visibility */
.fl-sr-only-focusable:not(:focus):not(:focus-within) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fl-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Form States */
.fl-input-error {
    border-color: var(--fl-error) !important;
}

.fl-input-success {
    border-color: var(--fl-success) !important;
}

.fl-error-message {
    color: var(--fl-error);
    font-size: var(--fl-text-sm);
    margin-top: var(--fl-space-2);
}

.fl-required {
    color: var(--fl-error);
}

.fl-required-asterisk::after {
    content: ' *';
    color: var(--fl-error);
}

/* Status Messages */
[role="status"],
[role="alert"] {
    padding: var(--fl-space-4);
    border-radius: var(--fl-radius-md);
}

/* ==========================================================================
   CONTACT GRID - BOX LAYOUT
   ========================================================================== */
.fl-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--fl-space-6);
}

.fl-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--fl-space-6);
}

/* Contact Items als Boxen */
.fl-contact-item {
    display: flex;
    gap: var(--fl-space-4);
    align-items: flex-start;
    background-color: var(--fl-card-bg);
    padding: var(--fl-space-6);
    border-radius: var(--fl-radius-xl);
    border: 1px solid var(--fl-card-border);
    box-shadow: var(--fl-card-shadow);
    transition: all 0.3s ease;
}

.fl-contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--fl-card-hover-shadow);
    border-color: var(--fl-card-hover-border);
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .fl-header,
    .fl-footer,
    .fl-nav__toggle,
    .fl-btn,
    .skip-link {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        color: #000;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    .fl-section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }

    .fl-card {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}

/* ==========================================================================
   FEATURE ARROW (Alternative zu ::after)
   ========================================================================== */
.fl-feature__arrow {
    display: inline-flex;
    transition: transform 0.2s ease;
}

.fl-feature__arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.fl-feature__link:hover .fl-feature__arrow {
    transform: translateX(4px);
}

/* === ENDE TEIL 5 === */
