/* ===== Coworking Meckenbeuren - Custom Styles ===== */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0F172A;
    --bg-surface: #1E293B;
    --color-primary: #481FFF;
    --color-secondary: #7C3AED;
    --color-accent: #06B6D4;
    --color-text: #F8FAFC;
    --color-muted: #94A3B8;
    --font-family: 'Mulish', sans-serif;
}

/* --- Base Reset & Styles --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #22D3EE;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-link {
    color: var(--color-muted);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* --- Mobile Navigation --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.open {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-nav-link {
    display: block;
    color: var(--color-muted);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--color-text);
    padding-left: 0.5rem;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links-desktop {
        display: none;
    }
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.hero-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72, 31, 255, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    z-index: 0;
    animation: pulseGlow 6s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-text);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(72, 31, 255, 0.4), 0 0 30px rgba(6, 182, 212, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(72, 31, 255, 0.6), 0 0 50px rgba(6, 182, 212, 0.3);
    color: var(--color-text);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--color-text);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(72, 31, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(72, 31, 255, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(72, 31, 255, 0.3);
    color: var(--color-text);
}

/* --- Cards --- */
.glass-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(72, 31, 255, 0.3);
    box-shadow: 0 0 20px rgba(72, 31, 255, 0.15), 0 8px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

/* Feature icon wrapper */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(72, 31, 255, 0.15), rgba(6, 182, 212, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-accent);
    font-size: 1.5rem;
    border: 1px solid rgba(72, 31, 255, 0.2);
}

/* --- Pricing Cards --- */
.pricing-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.pricing-card:hover {
    border-color: rgba(72, 31, 255, 0.3);
    box-shadow: 0 0 30px rgba(72, 31, 255, 0.2), 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px);
}

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

.pricing-card.featured {
    border-color: rgba(72, 31, 255, 0.4);
    box-shadow: 0 0 25px rgba(72, 31, 255, 0.15);
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Testimonial Cards --- */
.testimonial-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.testimonial-card:hover,
.reveal.revealed.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(72, 31, 255, 0.3);
    box-shadow: 0 0 24px rgba(72, 31, 255, 0.18), 0 8px 32px rgba(0, 0, 0, 0.25);
}

.testimonial-card .testimonial-quote {
    flex: 1;
}

.testimonial-card .testimonial-author {
    margin-top: auto;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
}

/* --- Section Backgrounds --- */
.section-surface {
    background: var(--bg-surface);
    position: relative;
}

.section-surface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(72, 31, 255, 0.3), transparent);
}

.section-surface::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(72, 31, 255, 0.3), transparent);
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72, 31, 255, 0.12) 0%, transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
}

/* --- Footer --- */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .gradient-divider {
    margin-bottom: 1.5rem;
}

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

.footer-link:hover {
    color: var(--color-text);
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Form Styles --- */
.form-input {
    width: 100%;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--color-text);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(72, 31, 255, 0.15);
}

.form-input::placeholder {
    color: var(--color-muted);
}

textarea.form-input {
    resize: vertical;
    min-height: 150px;
}

/* --- Map Container --- */
.map-container {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    filter: grayscale(0.3) brightness(0.8) contrast(1.1);
}

/* --- Partner Logos --- */
.partner-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid #481FFF;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.partner-card:hover,
.reveal.revealed.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(72, 31, 255, 0.3);
    border-left-color: #481FFF;
    box-shadow: 0 0 24px rgba(72, 31, 255, 0.18), 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* --- Image Styles --- */
@keyframes rotateBorder {
    to { transform: rotate(360deg); }
}

.shine-border-wrap {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    padding: 2px;
    background: var(--bg-primary);
}

.shine-border-wrap::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: conic-gradient(from 0deg, transparent 0deg, #481FFF 60deg, #06B6D4 120deg, transparent 180deg);
    animation: rotateBorder 6s linear infinite;
    z-index: 0;
}

.rounded-image {
    position: relative;
    z-index: 1;
    border-radius: calc(1rem - 2px);
    border: none;
    object-fit: cover;
    display: block;
    width: 100%;
    transition: transform 0.4s ease;
    cursor: default;
}

.rounded-image:hover {
    transform: scale(1.05);
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(72, 31, 255, 0.3);
    box-shadow: 0 0 20px rgba(72, 31, 255, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.team-image:hover {
    transform: scale(1.07);
    box-shadow: 0 0 30px rgba(72, 31, 255, 0.5), 0 0 60px rgba(6, 182, 212, 0.25);
    border-color: rgba(6, 182, 212, 0.7);
}

/* --- Lightbox --- */
.lightbox-trigger {
    cursor: zoom-in;
}

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 20000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

#lightbox.open {
    display: flex;
    animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 1rem;
    border: 1px solid rgba(72, 31, 255, 0.4);
    box-shadow: 0 0 40px rgba(72, 31, 255, 0.35), 0 0 80px rgba(6, 182, 212, 0.15);
    animation: lightboxImgIn 0.35s ease;
}

@keyframes lightboxImgIn {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

#lightbox-caption {
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    font-size: 1.75rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: var(--font-family);
}

#lightbox-close:hover {
    background: rgba(72, 31, 255, 0.3);
    border-color: rgba(72, 31, 255, 0.6);
    transform: scale(1.1);
}

/* --- Gradient Divider --- */
.gradient-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(72, 31, 255, 0.4), var(--color-accent), rgba(72, 31, 255, 0.4), transparent);
    border: none;
    margin: 0;
}

/* --- Utility Classes --- */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(72, 31, 255, 0.4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(72, 31, 255, 0.6);
}

/* --- Selection --- */
::selection {
    background: rgba(72, 31, 255, 0.3);
    color: var(--color-text);
}

/* --- Legal Pages --- */

/* Cookie-Übersicht: Card-Layout (mobile-first, kein horizontales Scrollen) */
.cookie-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.cookie-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
}

.cookie-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.375rem;
}

.cookie-name {
    color: var(--color-accent);
    font-size: 0.85rem;
    font-family: monospace;
    word-break: break-all;
}

.cookie-meta {
    font-size: 0.8rem;
    color: #94A3B8;
    line-height: 1.5;
    margin: 0;
}

.cookie-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-badge--required {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.cookie-badge--optional {
    background: rgba(6, 182, 212, 0.12);
    color: #67e8f9;
    border: 1px solid rgba(6, 182, 212, 0.25);
}

.legal-content h2 {
    margin-top: 2rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-weight: 700;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
}

/* --- Cookie Consent Banner --- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 1rem 1rem;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(72, 31, 255, 0.3);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(72, 31, 255, 0.15);
}

.cookie-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookie-banner-text p {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-banner-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-text);
    box-shadow: 0 0 10px rgba(72, 31, 255, 0.4);
}

.cookie-btn-accept:hover {
    box-shadow: 0 0 20px rgba(72, 31, 255, 0.6);
    transform: translateY(-1px);
}

.cookie-btn-necessary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-necessary:hover {
    border-color: rgba(72, 31, 255, 0.5);
    background: rgba(72, 31, 255, 0.1);
}

.cookie-btn-settings {
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--color-muted);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.cookie-btn-settings:hover {
    color: var(--color-text);
    border-color: rgba(148, 163, 184, 0.6);
}

/* --- Cookie Settings Modal --- */
#cookie-settings-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
}

#cookie-settings-modal.visible {
    display: block;
}

.cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.cookie-modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-surface);
    border: 1px solid rgba(72, 31, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0 60px rgba(72, 31, 255, 0.2);
}

.cookie-modal-box h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.cookie-modal-intro {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.cookie-category {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(15, 23, 42, 0.4);
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-category strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.cookie-category p {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin: 0;
}

.cookie-toggle-always {
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 600;
    white-space: nowrap;
    margin-top: 0.25rem;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.125rem;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(148, 163, 184, 0.3);
    border-radius: 24px;
    transition: background 0.3s ease;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}

.cookie-modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cookie-modal-actions .cookie-btn {
    flex: 1;
}

/* --- Form Message --- */
.form-message {
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-message-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.form-message-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

/* --- Google Maps Consent Placeholder --- */
.map-consent-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    text-align: center;
    padding: 2rem;
}

.map-consent-placeholder p {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    max-width: 300px;
}

.map-consent-placeholder button {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-text);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(72, 31, 255, 0.3);
}

.map-consent-placeholder button:hover {
    box-shadow: 0 0 20px rgba(72, 31, 255, 0.5);
    transform: translateY(-1px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 640px) {
    .hero {
        min-height: 90vh;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .team-image {
        width: 150px;
        height: 150px;
    }

    .cookie-banner-inner {
        padding: 1.25rem 1.25rem;
    }

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

    .cookie-btn {
        width: 100%;
        text-align: center;
    }

    /* --- Contact Info Mobile --- */
    .contact-info-block {
        text-align: center;
    }

    .contact-info-block .space-y-6 {
        display: inline-block;
        text-align: left;
    }

    /* --- Footer Mobile --- */
    footer .grid > div {
        text-align: center;
    }

    footer ul {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    footer ul li {
        justify-content: flex-start;
    }

    .footer-link {
        font-size: 1rem;
    }

    footer p {
        font-size: 0.95rem;
    }

    footer h4 {
        font-size: 0.9rem;
    }
}
