/* ===========================================
   WEBWERK AI - Global Styles
   =========================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    font-size: 90%;
}

body.menu-open {
    overflow: hidden;
}

/* ===========================================
   HEADER & NAVIGATION
   =========================================== */

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    overflow: visible;
    position: relative;
}

/* Logo (left column) */
.logo {
    background: #1a1a1a;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-left {
    grid-column: 1;
    display: flex;
    align-items: center;
}

.logo:hover {
    transform: scale(1.02);
}

.logo .ai {
    background: linear-gradient(90deg, #6366f1, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation (center column) */
.nav-menu {
    grid-column: 2;
    justify-self: center;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Right column */
.nav-right {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.nav-item {
    display: flex;
    align-items: center;
    position: static;
    /* Allows mega-dropdown to be full width relative to container */
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    border-radius: 8px;
    position: relative;
    z-index: 1001;
}

.nav-link:hover {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .dropdown-arrow,
.nav-item.has-dropdown.is-hovered .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    margin-top: 8px;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 998;
    overflow: visible;
}

/* Invisible bridge to close the hover gap between nav-item and dropdown */
.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 0;
    right: 0;
    height: 1.5rem;
}

.nav-item.has-dropdown:hover .mega-dropdown,
.nav-item.has-dropdown.is-hovered .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 1000;
}

.mega-dropdown-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    padding: 1.5rem 2rem 2rem;
}

/* Dropdown Main (left column) */
.dropdown-main {
    display: flex;
    flex-direction: column;
}

.dropdown-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #f5f3f0;
}

.dropdown-item:hover .item-arrow {
    transform: translateX(5px);
    opacity: 1;
}

.dropdown-item-icon {
    width: 44px;
    height: 44px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dropdown-item:hover .dropdown-item-icon {
    background: #1a1a1a;
}

.dropdown-item:hover .dropdown-item-icon i {
    color: white;
}

.dropdown-item-icon i {
    font-size: 1.3rem;
    color: #333;
    transition: color 0.2s ease;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.dropdown-title {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
}

.dropdown-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.item-arrow {
    width: 20px;
    height: 20px;
    color: #999;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
}

/* "Alle Leistungen" Link */
.dropdown-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    margin-top: 0.75rem;
    color: #1a1a1a;
    background: transparent;
    border: 1.5px solid #e0e0e0;
    font-weight: 500;
    font-size: 0.88rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.25s ease;
    align-self: flex-start;
}

.dropdown-all-link:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: white;
}

.dropdown-all-link:hover .link-arrow {
    transform: translateX(3px);
}

.link-arrow {
    font-size: 1rem;
    transition: transform 0.25s ease;
    display: inline-block;
    line-height: 1;
}

/* Dropdown Sidebar (right column) */
.dropdown-sidebar {
    background: #f5f3f0;
    border-radius: 16px;
    padding: 2rem;
    min-width: 280px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(99, 102, 241, 0.18), inset 0 0 80px rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.dropdown-sidebar::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.dropdown-sidebar::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* Promo Box */
.dropdown-promo {
    display: flex;
    flex-direction: column;
}

.promo-icon {
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.promo-icon i {
    font-size: 1.4rem;
    color: white;
}

.promo-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.promo-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(26, 26, 26, 0.06);
    transition: all 0.25s ease;
}

.promo-link:hover {
    background: #1a1a1a;
    color: white;
}

.promo-link:hover .link-arrow {
    transform: translateX(3px);
}

/* Über uns Dropdown */
.dropdown-about-section {
    padding: 0.5rem 1.25rem;
}

.dropdown-about-link {
    display: block;
    text-decoration: none;
    margin-bottom: 0.8rem;
}

.dropdown-about-title {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.dropdown-about-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.dropdown-section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    background: #1a1a1a;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.dropdown-section-link:hover {
    background: #333;
    gap: 0.8rem;
}

.dropdown-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 0.5rem 1.25rem;
}

/* Cards in Sidebar */
.dropdown-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.dropdown-card:hover {
    background: rgba(0, 0, 0, 0.05);
}

.dropdown-card-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-card-icon i {
    font-size: 1.3rem;
    color: #333;
}

.dropdown-card-content {
    flex: 1;
}

.dropdown-card-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.dropdown-card-desc {
    display: block;
    font-size: 0.82rem;
    color: #666;
    line-height: 1.4;
}

/* CTA Button */
.cta-button {
    background: #1a1a1a;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1.5px solid #1a1a1a;
}

.cta-button:hover {
    background: transparent;
    color: #1a1a1a !important;
    border-color: #1a1a1a;
    transform: translateY(-1px);
}

.cta-button-light {
    background: #fff;
    color: #1a1a1a !important;
    border-color: #d0d0d0;
}

.cta-button-light:hover {
    background: #1a1a1a;
    color: #fff !important;
    border-color: #1a1a1a;
}

.cta-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .bar-top {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .bar-middle {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .bar-bottom {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 100px 1.5rem 2rem;
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.is-open {
    transform: translateX(0);
}

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

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

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

.mobile-nav-item {
    border-bottom: 1px solid #eee;
}

.mobile-nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    text-align: left;
}

.mobile-nav-link.has-submenu .mobile-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.mobile-nav-link.is-active .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.is-open {
    max-height: 500px;
}

.mobile-submenu li a {
    display: block;
    padding: 0.9rem 0 0.9rem 1rem;
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    border-left: 2px solid #eee;
    transition: all 0.3s ease;
}

.mobile-submenu li a:hover {
    color: #6366f1;
    border-left-color: #6366f1;
    padding-left: 1.25rem;
}

.mobile-cta-button {
    display: block;
    background: #1a1a1a;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
}

.mobile-cta-button:hover {
    background: #333;
}

/* ===========================================
   HERO SECTION (Service Pages)
   =========================================== */

.hero {
    background: #f5f3f0;
    padding: 180px 2rem 120px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-button {
    background: #1a1a1a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

/* ===========================================
   CONTENT SECTIONS
   =========================================== */

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 2rem 80px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: #888;
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Feature Cards */
.design-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.design-card {
    background: #f7f6f4;
    border: 1px solid #e8e5e0;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.design-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #d0ccc7;
}

.design-icon i {
    color: #6366f1;
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.design-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.design-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

/* ===========================================
   PROCESS SECTION
   =========================================== */

.process-section {
    background: #f5f3f0;
    padding: 100px 2rem;
}

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

.process-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

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

.process-step {
    background: #f7f6f4;
    border: 1px solid #e8e5e0;
    padding: 2rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #d0ccc7;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #e8e5e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 auto 1.25rem;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
    font-weight: 600;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===========================================
   BENEFITS SECTION
   =========================================== */

.benefits-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 2rem 80px;
}

.benefits-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

.benefits-section .section-subtitle {
    font-size: 1rem;
    color: #888;
    margin-bottom: 2.5rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-card {
    background: #f7f6f4;
    border: 1px solid #e8e5e0;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #d0ccc7;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: #6366f1;
}

.benefit-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.benefit-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===========================================
   CTA SECTION
   =========================================== */

.cta-section {
    background: #3a4554;
    padding: 80px 2rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff;
}

.cta-section p {
    font-size: 1rem;
    color: #c5d0db;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ===========================================
   LEGAL PAGES (Impressum, Datenschutz)
   =========================================== */

.legal-hero {
    background: #f5f3f0;
    padding: 180px 2rem 80px;
    text-align: center;
}

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

.legal-hero h1 {
    font-size: 3em;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.legal-hero p {
    font-size: 1.1rem;
    color: #666;
}

.legal-content {
    padding: 60px 2rem 100px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.legal-container h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-container p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container a {
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.legal-container a:hover {
    color: #6366f1;
}

.legal-container strong {
    color: #1a1a1a;
}


.legal-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f5f3f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #666;
}

/* ===========================================
   FOOTER
   =========================================== */

footer {
    background: #1a1a1a;
    color: #999;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.footer-middle {
    display: flex;
    flex-direction: column;
}

.footer-middle-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links--text li {
    color: #999;
    font-size: 0.95rem;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-logo {
    background: #fff;
    color: #1a1a1a;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo .ai {
    background: linear-gradient(90deg, #6366f1, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* Footer Demo CTA */
.footer-demo-cta {
    display: block;
    margin-top: 1.2rem;
    padding: 0.6rem 1.2rem;
    text-align: center;
    background: linear-gradient(90deg, #6366f1, #22d3ee);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer-demo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.footer-bottom {
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: #666;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: #fff;
}

.footer-legal-links span {
    color: #666;
}

/* ===========================================
   COOKIE CONSENT BANNER
   =========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text strong {
    display: block;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-text a {
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #6366f1;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #1a1a1a;
    background: #1a1a1a;
    color: #fff;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #333;
    border-color: #333;
}

/* Kategorie-Auswahl (eingeklappt) */

.cookie-details {
    max-width: 1400px;
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.cookie-details.is-open {
    max-height: 400px;
    padding-top: 1.25rem;
}

.cookie-details-content {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-category {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    flex: 1 1 200px;
    padding: 0.75rem 1rem;
    background: #f5f3f0;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.cookie-category:hover {
    background: #eceae6;
}

.cookie-category input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: #1a1a1a;
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.cookie-category-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cookie-category-info strong {
    font-size: 0.85rem;
    color: #1a1a1a;
}

.cookie-category-info span {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.cookie-details-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-top: 0.5rem;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-category {
        flex: 1 1 100%;
    }

    .cookie-details-actions {
        justify-content: center;
    }
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .nav-right .cta-button {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu,
    .mobile-menu-overlay {
        display: block;
    }

    .hero {
        padding: 130px 1.5rem 70px;
        min-height: auto;
    }

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

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

    .legal-hero {
        padding: 140px 1.5rem 60px;
    }

    .legal-hero h1 {
        font-size: 2.5rem;
    }

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

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

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .content-section h2,
    .process-container h2,
    .benefits-section h2,
    .cta-section h2 {
        font-size: 1.85rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.75rem 1rem;
    }

    /* Hero */
    .hero {
        padding: 110px 1.5rem 60px;
    }

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

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-button {
        font-size: 0.95rem;
        padding: 0.9rem 1.75rem;
    }

    .legal-hero {
        padding: 120px 1.5rem 50px;
    }

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

    /* Sections */
    .content-section {
        padding: 40px 1.5rem 50px;
        margin: 0 auto;
    }

    .benefits-section {
        padding: 40px 1.5rem 50px;
        margin: 0 auto;
    }

    .about-section {
        margin: 60px auto;
    }

    .process-section {
        padding: 40px 1.5rem 50px;
    }

    .faq-section {
        padding: 40px 1.5rem;
    }

    .cta-section {
        padding: 50px 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .content-section h2,
    .process-container h2,
    .benefits-section h2,
    .cta-section h2 {
        font-size: 1.75rem;
    }

    /* Design Cards – Slider */
    .design-features {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        padding-bottom: 1rem;
        margin-bottom: 2rem;
    }

    .design-features::-webkit-scrollbar {
        display: none;
    }

    .design-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
        padding: 1.75rem 1.5rem;
    }

    .design-card h3 {
        font-size: 1.2rem;
    }

    .design-icon i {
        font-size: 1.75rem;
        margin-bottom: 0.9rem;
    }

    /* Process Steps – Slider */
    .process-steps {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .process-steps::-webkit-scrollbar {
        display: none;
    }

    .process-step {
        flex: 0 0 72%;
        scroll-snap-align: start;
    }

    /* Benefits Slider */
    .benefits-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .benefits-grid::-webkit-scrollbar {
        display: none;
    }

    .benefit-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .benefit-content h3 {
        font-size: 1rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-middle-columns {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0.7rem 0.75rem;
    }

    .hero {
        padding: 95px 1rem 50px;
    }

    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.2;
    }

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

    .hero-cta-button {
        font-size: 0.9rem;
        padding: 0.85rem 1.5rem;
    }

    .legal-hero {
        padding: 95px 1rem 45px;
    }

    .legal-hero h1 {
        font-size: 1.75rem;
    }

    .content-section {
        padding: 30px 1rem 40px;
        margin: 0 auto;
    }

    .benefits-section {
        padding: 30px 1rem 40px;
        margin: 0 auto;
    }

    .about-section {
        padding: 0 1rem;
        margin: 40px auto;
    }

    .process-section {
        padding: 30px 1rem 40px;
    }

    .faq-section {
        padding: 30px 1rem 40px;
    }

    .cta-section {
        padding: 40px 1rem;
    }

    .content-section h2,
    .process-container h2,
    .benefits-section h2,
    .cta-section h2 {
        font-size: 1.75rem;
    }

    .design-card {
        flex: 0 0 88%;
        padding: 1.5rem 1.25rem;
    }

    .process-step {
        flex: 0 0 80%;
        padding: 1.5rem 1.25rem;
    }

    .about-card {
        padding: 2rem 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
        padding: 0.5rem 0.9rem;
    }

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

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

    .hero-cta-button {
        font-size: 0.95rem;
        padding: 0.85rem 1.5rem;
        gap: 0.5rem;
    }

    .legal-hero h1 {
        font-size: 1.6rem;
    }

    .design-card {
        padding: 1.5rem 1.25rem;
    }

    .design-card h3 {
        font-size: 1.3rem;
    }

    .benefit-card {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    .benefit-icon {
        font-size: 2.2rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .faq-answer-inner {
        padding: 0 1rem 1.25rem;
        padding-top: 0.75rem;
        font-size: 0.9rem;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* ===========================================
   ABOUT / VORSTELLUNG
   =========================================== */

.about-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 2rem;
}

.about-card {
    background: #3a4554;
    border-radius: 20px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-photo {
    width: 280px;
    height: 280px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center 20%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.3rem;
}

.about-text .about-role {
    font-size: 1.1rem;
    color: #8b96a3;
    margin-bottom: 1.5rem;
}

.about-text .about-role span {
    background: linear-gradient(90deg, #6366f1, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.about-text p {
    color: #c5d0db;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.brand-highlight {
    background: linear-gradient(90deg, #6366f1, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.about-text .about-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b96a3;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text .about-location i {
    color: #22d3ee;
    font-size: 1.1rem;
}

/* ===========================================
   FAQ SECTION
   =========================================== */

.faq-section {
    background: #f5f3f0;
    padding: 100px 2rem;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 3rem;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    gap: 1rem;
    transition: color 0.2s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: #6366f1;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: #f0f0f0;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
    user-select: none;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #555;
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transition: background 0.3s ease;
}

.faq-icon::before {
    width: 11px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.5px;
    height: 11px;
    transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-icon {
    background: #1a1a1a;
    transform: rotate(45deg);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
    background: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 2rem 1.75rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.85;
    border-top: 1px solid #f0f0f0;
    padding-top: 1.25rem;
}

.faq-item.is-open .faq-answer {
    max-height: 400px;
}

@media (max-width: 768px) {
    .faq-container h2 {
        font-size: 1.75rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1.25rem 1.25rem;
    }

    .faq-answer-inner {
        padding: 0 1.25rem 1.5rem;
        padding-top: 1rem;
    }
}

@media (max-width: 968px) {
    .about-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .about-photo {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .about-text .about-location {
        justify-content: center;
    }
}