:root {
    --primary-color: #004F82;
    --primary-dark: #003D66;
    --primary-soft: #E6F4FF;
    --secondary-color: #1a1a1a;
    --text-color: #444444;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --whatsapp-green: #25D366;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

img,
video,
iframe,
canvas {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--secondary-color);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(145, 17, 17, 0.3);
}

.section-padding {
    padding: 80px 0;
}

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

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--bg-light);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

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

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

/* Dropdown Menus */
.nav-links>li {
    position: relative;
    padding: 10px 0;
}

.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.has-dropdown>a::after {
    content: '\f107';
    /* FontAwesome angle-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover>a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid #f0f0f0;
}

.nav-links li:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 8px 20px;
    display: block;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
    background: var(--primary-soft);
    color: var(--primary-color);
}

/* Sub-Dropdown (Downward expansion instead of flyout) */
.has-sub-dropdown {
    position: relative;
    background: #fff;
}

.has-sub-dropdown>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

.has-sub-dropdown>a::after {
    content: '\f107';
    /* FontAwesome angle-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.has-sub-dropdown:hover>a::after {
    transform: rotate(180deg);
}

.sub-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border-top: none;
    background: #fdfdfd;
    padding-left: 15px;
    /* Indent sub-items */
    width: 100%;
}

.has-sub-dropdown:hover>.sub-dropdown-menu {
    display: block;
}

/* --- Mobile Hamburger & Off-Canvas Menu --- */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 1050;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.offcanvas-menu.active {
    right: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.offcanvas-header img {
    height: 40px;
}

.offcanvas-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

.offcanvas-body {
    padding: 20px 0;
}

.offcanvas-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offcanvas-nav li {
    border-bottom: 1px solid #f9f9f9;
}

.offcanvas-nav>li>a,
.offcanvas-nav .offcanvas-accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
}

.offcanvas-accordion-toggle i {
    transition: transform 0.3s ease;
}

.offcanvas-accordion-toggle.active i {
    transform: rotate(180deg);
}

.offcanvas-submenu {
    display: none;
    background: var(--bg-light);
    border-top: 1px solid #eee;
    list-style: none;
    margin: 0;
    padding: 0;
}

.offcanvas-submenu.open {
    display: block;
}

.offcanvas-submenu li a,
.offcanvas-submenu .offcanvas-accordion-toggle {
    display: block;
    padding: 15px 20px 15px 40px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
}

.offcanvas-submenu .offcanvas-accordion-toggle {
    display: flex;
}

.offcanvas-submenu .offcanvas-submenu li a {
    padding-left: 60px;
    font-size: 0.9rem;
    font-weight: 400;
}

@media (max-width: 992px) {
    .nav-links {
        display: none !important;
    }

    .hamburger {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    background: url('images/hero.webp') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.hero-container-wide {
    max-width: 1400px !important;
    margin: 0 auto;
}

.hero-card-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 0 20px;
}

.brand-tag {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.badge-tag {
    background-color: #eee2e1;
    border-radius: 14px;
    text-transform: uppercase;
    padding: 12px 20px;
    letter-spacing: 1px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
}

.badge-tag i {
    margin-right: 8px;
    color: var(--primary-color);
}

.hero-inner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.hero-text-col h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.hero-description p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-description ul {
    margin-top: 15px;
}

.hero-description ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.hero-description ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.hero-advantages-col .trust-label {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
    color: #888;
}

.advantage-pill {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.advantage-pill:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.advantage-pill i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.advantage-pill span {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Services Section */
.services-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.service-item {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

/* Process Section */
.process-section {
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

/* Footer & Floating Buttons */
footer {
    background: #1a1a1a;
    color: #cccccc;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btns a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
}

.floating-btns a:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hero .container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-inner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-glass-card {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .hero-text-col h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .services-row {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .top-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .top-info span {
        margin-left: 0 !important;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Redesign - Liquid Glass & Kubio Styles */
.wfg-hero-shell {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
    background: url('images/hero.webp') center/cover no-repeat;
    background-attachment: scroll;
    overflow: hidden;
}

.wfg-hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.wfg-hero-shell .container {
    position: relative;
    z-index: 2;
    padding-block: clamp(80px, 12vw, 160px);
}

.wfg-hero-glass {
    position: relative;
    border-radius: 28px;
    padding: clamp(24px, 4vw, 50px);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.wfg-hero-glass::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.95));
    opacity: 0.98;
    pointer-events: none;
}

.wfg-hero-card {
    position: relative;
    z-index: 2;
}

.wfg-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.wfg-hero-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5e6068;
    margin-bottom: 12px;
}

.wfg-hero-label-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background-color: #E6F4FF;
    color: #004F82;
    font-size: 11px;
    font-weight: 700;
}

.wfg-hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.1;
    margin: 15px 0;
    color: #16171c;
}

.wfg-hero-subline {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #004F82;
    margin-bottom: 25px;
}

.wfg-hero-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5e6068;
    margin-bottom: 35px;
}

.wfg-hero-cta-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wfg-hero-btn {
    padding: 16px 36px;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.wfg-hero-btn-primary {
    background: #004F82;
    color: white;
}

.wfg-hero-btn-primary:hover {
    background: #003D66;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 79, 130, 0.2);
}

.wfg-hero-btn-secondary {
    background: white;
    color: #004F82;
    border: 1px solid #004F82;
}

.wfg-hero-btn-secondary:hover {
    background: #E6F4FF;
    transform: translateY(-3px);
}

.wfg-trust-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.wfg-trust-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.wfg-trust-title {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
}

.wfg-trust-rating {
    color: #f5a623;
    font-size: 14px;
    font-weight: 700;
}

.wfg-trust-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.wfg-trust-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
}

.wfg-trust-icon {
    color: #004F82;
    font-size: 1.2rem;
}

.wfg-trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.wfg-trust-stat {
    text-align: center;
    padding: 12px;
    background: #f8f8f9;
    border-radius: 12px;
    transition: var(--transition);
}

.wfg-trust-stat:hover {
    background: #E6F4FF;
}

.wfg-trust-stat-strong {
    color: #004F82;
    font-weight: 800;
    font-size: 18px;
    display: block;
}

.wfg-trust-stat-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

#wfg-vorteile {
    padding: 100px 0;
    background: #fff;
}

.wfg-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wfg-benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wfg-benefit-card:hover {
    transform: translateY(-12px);
    border-color: #004F82;
    box-shadow: 0 20px 50px rgba(0, 79, 130, 0.1);
}

.wfg-benefit-icon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.wfg-benefit-icon {
    font-size: 28px;
    color: #004F82;
}

.wfg-benefit-tag {
    font-size: 10px;
    padding: 5px 12px;
    background: #E6F4FF;
    color: #004F82;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.wfg-benefit-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #16171c;
}

.wfg-benefit-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

#ueber-uns {
    padding: 100px 0 160px 0;
    background: #fbfbfc;
}

.wfg-intro-shell {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wfg-intro-panel {
    background: white;
    padding: 50px;
    border-radius: 32px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.wfg-intro-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    color: #004F82;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.wfg-intro-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #16171c;
}

.wfg-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.wfg-intro-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.wfg-intro-item {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.wfg-intro-item i {
    color: #004F82;
    font-size: 1.1rem;
}

.wfg-crossfade {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    position: relative;
    aspect-ratio: 4 / 5;
    background: #f0f0f0;
}

.wfg-crossfade img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.wfg-crossfade img.active {
    opacity: 1;
}

#wfg-ablauf {
    padding: 100px 0;
    background: #004F82;
    color: white;
    position: relative;
    overflow: hidden;
}

.wfg-ablauf-inner {
    position: relative;
    z-index: 2;
}

.wfg-ablauf-title {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: white;
}

.wfg-ablauf-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wfg-ablauf-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    padding: 40px 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.wfg-ablauf-card:hover {
    background: white;
    color: #16171c;
    transform: translateY(-10px);
}

.wfg-ablauf-step-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.wfg-ablauf-step-badge {
    width: 44px;
    height: 44px;
    background: #E6F4FF;
    color: #004F82;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.wfg-ablauf-step-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.wfg-ablauf-step-text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

.wfg-ablauf-card:hover .wfg-ablauf-step-text {
    opacity: 1;
    color: #666;
}

@media (max-width: 992px) {

    .wfg-hero-grid,
    .wfg-intro-shell {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wfg-benefits-grid,
    .wfg-ablauf-steps {
        grid-template-columns: 1fr;
    }

    .wfg-intro-panel {
        padding: 30px;
    }

    .wfg-trust-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .wfg-trust-stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 10px 15px;
    }

    .wfg-trust-stat-strong {
        font-size: 16px;
    }
}

/* Services Tabs */
#gutachten {
    padding: 100px 0;
    background: #fff;
}

.wfg-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.wfg-section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.wfg-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.wfg-tab-btn {
    padding: 12px 25px;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    background: #f8f8f9;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
}

.wfg-tab-btn.active {
    background: #004F82;
    color: white;
}

.wfg-tab-content {
    display: none;
}

.wfg-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.wfg-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wfg-service-card {
    background: #fbfbfc;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.wfg-service-card:hover {
    transform: translateY(-8px);
    border-color: #004F82;
    box-shadow: 0 15px 35px rgba(0, 79, 130, 0.06);
}

.wfg-service-icon {
    font-size: 2rem;
    color: #004F82;
    margin-bottom: 20px;
}

.wfg-service-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.wfg-service-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media (max-width: 992px) {
    .wfg-services-grid {
        grid-template-columns: 1fr;
    }

    .wfg-tabs-nav {
        flex-wrap: wrap;
    }
}

/* Subpage Styles */
.wfg-sub-hero {
    width: 100%;
    padding: 100px 0;
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wfg-sub-hero h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.wfg-sub-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.wfg-compact-contact {
    background: var(--bg-light);
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.wfg-compact-contact-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.wfg-compact-contact-text h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.wfg-compact-contact-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .wfg-compact-contact-inner {
        flex-direction: column;
        text-align: center;
    }

    .wfg-compact-contact-btns {
        justify-content: center;
    }
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.22rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.content-section h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.content-section ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.content-section li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.content-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Specific Sub Heroes (Overlays) */
.wfg-sub-hero.unfall {
    background-image: linear-gradient(rgba(0, 79, 130, 0.7), rgba(0, 79, 130, 0.7)), url('images/gutachter-about.avif');
}

.wfg-sub-hero.schaden {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/gutachter-about.avif');
}

.wfg-sub-hero.wert {
    background-image: linear-gradient(rgba(0, 79, 130, 0.7), rgba(0, 79, 130, 0.7)), url('images/hero.webp');
}

.wfg-sub-hero.city {
    background-position: center 30%;
}

.wfg-contact-section {
    padding: 80px 0;
    background-color: #f8f8f9;
}

.wfg-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.wfg-contact-eyebrow {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.wfg-contact-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.wfg-contact-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.wfg-contact-form-shell {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.wfg-contact-form-hint {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

@media (max-width: 992px) {
    .wfg-contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wfg-contact-title {
        font-size: 2rem;
    }

    .wfg-contact-form-shell {
        padding: 25px;
    }
}