/* Hochmodernes Darkmode Design für HolzWerk Meister */
/* Glassmorphism + Modern Animations */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@700;800;900&display=swap');

:root {
    --primary-bg: #0f0f0f;
    --secondary-bg: #1a1a1a;
    --tertiary-bg: #252525;
    --accent-orange: #ff5722;
    --accent-orange-light: #ff7043;
    --accent-gold: #ffb74d;
    --accent-magenta: #ff4081;
    --text-light: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;
    --shadow: rgba(255, 87, 34, 0.2);
    --shadow-deep: rgba(0, 0, 0, 0.5);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.04);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #1a1a2e 100%);
    background-attachment: fixed;
    color: var(--text-light);
    margin: 0;
    padding: 0;
    line-height: 1.8;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .modern-navbar > .container > .navbar-brand,
body.menu-open .modern-navbar > .container > .navbar-toggler {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 87, 34, 0.15), transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(255, 64, 129, 0.12), transparent 40%),
        radial-gradient(circle at 30% 80%, rgba(255, 183, 77, 0.12), transparent 45%);
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

a:hover {
    color: var(--accent-orange-light);
}

section {
    padding: 90px 0;
}

.container {
    max-width: 1180px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}


.btn {
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 700;
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.btn:hover::after {
    transform: translateX(120%);
}

.btn-outline-light {
    border-width: 2px;
    color: var(--text-light);
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: #111;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    border-radius: 12px;
    padding: 12px 14px;
    width: 100%;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    background-image: linear-gradient(45deg, transparent 50%, var(--accent-orange-light) 50%),
        linear-gradient(135deg, var(--accent-orange-light) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.form-select option {
    background: #1a1a1a;
    color: var(--text-light);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 87, 34, 0.2);
    color: var(--text-light);
}

.form-label {
    color: var(--text-secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.card,
.info-card,
.stat-card,
.material-card,
.faq-card,
.form-card,
.contact-card,
.legal-box,
.timeline-item,
.step-card {
    backdrop-filter: blur(14px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.card {
    border-radius: 18px;
    position: relative;
}

.card-body {
    padding: 32px;
}

.card-title {
    font-size: 1.4rem;
}

.card-text {
    color: var(--text-secondary);
}

.section-subtitle {
    font-size: 1.1rem;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    margin: 18px auto 0;
    opacity: 0.6;
}

.hero {
    padding: 160px 0 120px;
}

.hero h1 {
    line-height: 1.1;
}

.hero p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-primary {
    box-shadow: 0 18px 45px rgba(255, 87, 34, 0.45);
}

.hero .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
}

.modern-navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modern-navbar {
    will-change: transform, opacity;
}

.modern-navbar.is-hidden {
    transform: translateY(-120%);
    opacity: 0;
}

.modern-navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 87, 34, 0.5), transparent);
    opacity: 0.6;
}

.modern-nav .nav-link {
    font-size: 0.82rem;
    padding: 10px 14px;
}

/* Animationen */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 87, 34, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 87, 34, 0.4);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes ambientGlow {
    0%, 100% {
        opacity: 0.35;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-12px) translateX(6px);
    }
}

.modern-navbar {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(255, 87, 34, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.modern-navbar:hover {
    border-bottom: 2px solid var(--accent-orange);
    box-shadow: 0 8px 40px rgba(255, 87, 34, 0.2);
}

.modern-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.modern-logo {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
    animation: fadeInDown 0.6s ease;
}

.modern-logo {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
    animation: fadeInDown 0.6s ease;
}

.modern-logo:hover {
    transform: scale(1.05);
    color: var(--accent-orange) !important;
}

.modern-logo:active,
.modern-logo:focus {
    color: var(--text-light) !important;
    outline: none;
}

.css-logo {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 12px;
    margin-right: 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #fff;
    font-size: 26px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInDown 0.6s ease;
}

.brand-text {
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
}

.css-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 87, 34, 0.5);
}

.css-logo:active {
    transform: scale(1.05) rotate(2deg);
}

.css-logo::before {
    content: "H";
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 2;
    position: relative;
    letter-spacing: -1px;
}

.css-logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent);
    border-radius: 12px;
}

.modern-nav .nav-item {
    display: inline-block;
    margin: 0;
}

.navbar-toggler {
    display: none !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 10px 12px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon {
    width: 24px;
    height: 16px;
    position: relative;
    background-image: none;
    display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--text-light);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after,
.navbar-toggler:hover .navbar-toggler-icon span {
    background: var(--accent-orange-light);
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon span {
    top: 8px;
}

.navbar-toggler-icon::after {
    bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 87, 34, 0.2);
}

.navbar-toggler:hover {
    border-color: var(--accent-orange-light);
    background: rgba(20, 20, 20, 0.95);
    transform: translateY(-1px);
}

.navbar-collapse {
    transition: all 0.25s ease;
}

.mobile-menu-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-menu-header .modern-logo {
    margin: 0 auto;
}

.mobile-menu-header .css-logo::before {
    text-shadow: none;
}

.menu-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.menu-close span,
.menu-close span::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-light);
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.menu-close span {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-close:hover {
    border-color: var(--accent-orange-light);
    transform: translateY(-1px);
}

.modern-nav .nav-link {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin: 0 5px;
    padding: 10px 16px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text-muted) !important;
    position: relative;
    display: inline-block;
    border-radius: 8px;
    text-transform: uppercase;
}

.modern-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light));
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modern-nav .nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.modern-nav .nav-link:hover {
    color: var(--accent-orange) !important;
    transform: translateY(-2px);
}

.modern-nav .nav-link:hover::before {
    width: 100%;
}

.modern-nav .nav-link:hover::after {
    width: 100%;
    height: 100%;
}

.hero {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #1a1a2e 50%, var(--primary-bg) 100%);
    color: var(--text-light);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatSlow 10s ease-in-out infinite, ambientGlow 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.1) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: floatSlow 12s ease-in-out infinite, ambientGlow 7s ease-in-out infinite;
    animation-delay: 1s;
}

.hero .container {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 8px 30px rgba(255, 87, 34, 0.3);
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 0.8s ease;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.85;
    color: var(--text-secondary);
    animation: fadeInUp 0.8s ease 0.2s both;
    letter-spacing: 0.5px;
}

section h2 {
    text-align: center;
    margin-bottom: 70px;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    position: relative;
    letter-spacing: -1px;
    animation: fadeInDown 0.8s ease;
}

section h2::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    border-radius: 2px;
}

.hero .btn:hover::before {
    left: 100%;
}

.hero .btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 87, 34, 0.3);
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(37, 37, 37, 1) 0%, rgba(26, 26, 26, 1) 100%);
}

.blockquote {
    border-left: 4px solid var(--accent-orange);
    padding-left: 30px;
    font-style: italic;
    color: var(--text-secondary);
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.blockquote:hover {
    border-left-color: var(--accent-orange-light);
    transform: translateX(10px);
}

.blockquote::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 3rem;
    opacity: 0.1;
    color: var(--accent-orange);
}

footer {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 87, 34, 0.3);
    padding: 60px 0 30px;
    margin-top: 100px;
    position: relative;
    transition: all 0.3s ease;
}

footer:hover {
    border-top-color: var(--accent-orange);
    box-shadow: 0 -8px 40px rgba(255, 87, 34, 0.2);
}

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

.footer-content {
    animation: fadeInUp 0.8s ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 87, 34, 0.2);
}

.footer-column {
    animation: fadeInUp 0.8s ease;
    padding: 0;
    transition: transform 0.3s ease;
}

.footer-column:hover {
    transform: translateY(-3px);
}

.footer-column:nth-child(1) {
    animation-delay: 0s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.3s;
}

.footer-company-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.footer-company-title:hover {
    color: var(--accent-orange);
}

.footer-copyright-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-column:hover .footer-copyright-text {
    color: var(--accent-orange);
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-column:hover .footer-title::after {
    width: 100%;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.footer-nav li {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    position: relative;
}

.footer-link,
.footer-link-legal {
    letter-spacing: 0.2px;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light));
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-link:hover {
    color: var(--accent-orange);
    transform: translateY(-2px);
}

.footer-link:hover::before {
    width: 100%;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: rgba(255, 87, 34, 0.1);
    border: 2px solid rgba(255, 87, 34, 0.3);
    border-radius: 50%;
    color: var(--accent-orange);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.social-link:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.footer-bottom {
    text-align: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.footer-legal {
    margin-bottom: 15px;
}

.footer-link-legal {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link-legal::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.footer-link-legal:hover {
    color: var(--accent-orange);
}

.footer-link-legal:hover::before {
    width: 100%;
}

.divider {
    color: var(--text-muted);
    margin: 0 10px;
    opacity: 0.5;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* Zusätzliche Inhaltsbereiche */
.section-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    opacity: 0.9;
}

.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.95));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    right: -120px;
    top: -120px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.12) 0%, transparent 70%);
    animation: floatSlow 10s ease-in-out infinite, ambientGlow 6s ease-in-out infinite;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.page-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.page-hero-tags span {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.35);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.list-check {
    list-style: none;
    padding-left: 0;
}

.list-check li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-orange-light);
    font-weight: 700;
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 0.8s ease;
}

.timeline-year {
    font-weight: 800;
    color: var(--accent-orange-light);
    font-size: 1.2rem;
}

.timeline-text {
    color: var(--text-secondary);
}

.team-card {
    height: 100%;
}

.team-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-role {
    color: var(--accent-orange-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
    color: var(--text-secondary);
}

.service-list li {
    margin-bottom: 8px;
}

.portfolio-card img {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.04);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag-list span {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.35);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.tag-list span:hover {
    color: var(--text-light);
    border-color: var(--accent-orange-light);
}

.service-list li,
.material-list li,
.legal-list li {
    line-height: 1.7;
}

.form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
    height: 100%;
}

.contact-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 20px 0;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.legal-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 24px;
}

.legal-list {
    padding-left: 20px;
    color: var(--text-secondary);
}

.legal-note {
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.35);
    border-radius: 999px;
    color: var(--accent-orange-light);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hero-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: shimmer 6s linear infinite;
    background-size: 200% 100%;
}

.service-card {
    height: 100%;
}

.section-glow {
    background: radial-gradient(circle at top, rgba(255, 87, 34, 0.12), transparent 65%);
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: 18px;
    padding: 25px 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.8s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(255, 87, 34, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(255, 87, 34, 0.2);
}

.stat-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent-orange-light);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

.section-dark {
    background: var(--secondary-bg);
}

.step-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: left;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-orange);
}

.step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.material-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
    height: 100%;
    animation: fadeInUp 0.8s ease;
}

.material-card-highlight {
    position: relative;
    overflow: hidden;
}

.material-card-highlight::after {
    content: '';
    position: absolute;
    inset: -120px;
    background: conic-gradient(from 180deg, transparent, rgba(255, 87, 34, 0.15), transparent);
    animation: float 10s ease-in-out infinite;
}

.material-card-highlight > * {
    position: relative;
    z-index: 1;
}

.material-list {
    padding-left: 20px;
    color: var(--text-secondary);
}

.material-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.material-badges span {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.35);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.section-faq {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1), rgba(26, 26, 26, 0.9));
}

.faq-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 25px;
    height: 100%;
    animation: fadeInUp 0.8s ease;
}

/* Buttons generell */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light)) !important;
    border: none !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3) !important;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5) !important;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 6px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange-light);
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
}

.card .btn {
    margin-top: 25px;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    color: white;
}

.card .btn:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.hero .btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

section {
    padding: 80px 0;
    background: var(--primary-bg);
}

section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--accent-orange);
}

.card-body {
    padding: 30px;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-muted);
    font-size: 1rem;
}

.blockquote {
    border-left: 5px solid var(--accent-orange);
    padding-left: 20px;
    font-style: italic;
    color: var(--text-muted);
}

footer {
    background: var(--secondary-bg);
    padding: 40px 0;
    border-top: 1px solid #333;
}

footer a {
    color: var(--text-muted);
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-orange);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar-toggler {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .modern-navbar .container {
        justify-content: space-between;
        gap: 12px;
    }

    .modern-logo {
        font-size: 1.35rem;
    }

    .brand-text {
        letter-spacing: -0.3px;
    }

    .navbar-collapse {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.96);
        border: none;
        border-radius: 0;
        padding: 110px 24px 40px;
        margin-top: 0;
        box-shadow: none;
        backdrop-filter: blur(24px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
    }

    .navbar-collapse.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-menu-header {
        display: flex;
        width: 100%;
        position: relative;
        justify-content: center;
        padding-right: 54px;
        padding-left: 54px;
    }

    .mobile-menu-header .modern-logo {
        margin: 0 auto;
    }

    .menu-close {
        position: absolute;
        top: 0;
        right: 0;
    }

    .modern-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
        align-items: center;
    }

    .modern-nav .nav-item {
        width: 100%;
    }

    .modern-nav .nav-link {
        width: 100%;
        text-align: center;
        padding: 16px 18px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .modern-nav .nav-link {
        font-size: 0.78rem;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .modern-nav .nav-link {
        margin: 0 5px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-chip {
        font-size: 0.85rem;
    }

    section {
        padding: 70px 0;
    }

    .step-card,
    .stat-card,
    .faq-card,
    .material-card {
        margin-bottom: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .contact-card,
    .form-card {
        margin-top: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 130px 0 90px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .modern-nav .nav-link {
        font-size: 0.72rem;
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    section {
        padding: 60px 0;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .page-hero-tags span,
    .tag-list span {
        font-size: 0.75rem;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}