:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(20, 20, 25, 0.7);
    --text-main: #f0f0f5;
    --text-muted: #a0a0b5;
    --accent-blue: #4f46e5;
    --accent-purple: #9333ea;
    --accent-gradient: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    --border-color: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo,
.hero-badge {
    font-family: 'Outfit', sans-serif;
}

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

/* Typography */
h1 span,
h2 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: padding 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--accent-purple);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-btn svg {
    pointer-events: none;
}

/* Buttons */
.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: 5rem;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(10, 10, 15, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
}

.glow-1 {
    top: -100px;
    left: -200px;
}

.glow-2 {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, rgba(10, 10, 15, 0) 70%);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 50px;
    color: #c084fc;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    animation: float 4s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.phone-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services */
.services {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(147, 51, 234, 0.4);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.1);
}

/* New Sections (Problems, Process, About, FAQ) */
.problem-section,
.process-section,
.about-section,
.faq-section {
    padding: 8rem 0;
    position: relative;
}

/* Pain Points Grid */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-point-card {
    background: rgba(255, 50, 50, 0.03);
    /* slight red tint for 'pain' */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.pain-point-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pain-point-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #ffd7d7;
    /* Soft reddish tint */
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(to right, rgba(79, 70, 229, 0.05), transparent);
    padding: 4rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.profile-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
    border: 4px solid var(--bg-dark);
}

.profile-name {
    font-weight: 600;
    font-size: 1.2rem;
}

.profile-name small {
    color: var(--text-muted);
    font-weight: 400;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-purple);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

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

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-muted);
}

/* Card Icon (moved) */
.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c084fc;
    margin-bottom: 1.5rem;
}



.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Footer & Contact */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 6rem 0 2rem;
    background: linear-gradient(to top, rgba(10, 10, 15, 1), rgba(10, 10, 15, 0));
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-info {
    width: 100%;
}

.booking-widget {
    margin: 2rem auto;
    width: 100%;
    max-width: 600px;
    /* Constraints width for a smaller, centered look */
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.booking-widget iframe {
    min-height: 550px;
    /* Ensure content is visible */
    border-radius: 12px;
}

.footer-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-email {
    font-size: 1.5rem;
    color: var(--accent-blue);
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    width: 100%;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 600px;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(147, 51, 234, 0.3);
    padding: 1.5rem;
    border-radius: 16px;
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(147, 51, 234, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translate(-50%, 150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translate(-50%, 0);
}

.cookie-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    word-break: break-word;
    /* Prevents long German words from breaking layout */
    hyphens: auto;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Utils */
.hidden {
    display: none !important;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }

    .about-grid h2 {
        text-align: center !important;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .cookie-banner {
        bottom: 1rem;
        width: calc(100% - 2rem);
        left: 50%;
        padding: 1.25rem;
        gap: 1rem;
        transform: translate(-50%, 200%);
    }

    .cookie-banner.show {
        transform: translate(-50%, 0);
    }

    .cookie-content h4 {
        font-size: 1rem;
    }

    .cookie-content p {
        font-size: 0.85rem;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cookie-actions button {
        width: 100%;
    }
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cookie-modal.show {
    opacity: 1;
    pointer-events: all;
}
.cookie-modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}
.cookie-modal.show .cookie-modal-content {
    transform: translateY(0);
}
.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}
.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}
.close-btn:hover {
    color: var(--text-main);
}
.cookie-modal-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-category-info {
    padding-right: 1rem;
}
.cookie-category-info strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}
.cookie-category-info p {
    margin: 0;
    font-size: 0.8rem;
}
.cookie-modal-footer {
    margin-top: 1.5rem;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider.round {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 24px;
}
.slider.round:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider.round {
    background-color: var(--accent-purple);
}
input:disabled + .slider.round {
    opacity: 0.5;
    cursor: not-allowed;
}
input:checked + .slider.round:before {
    transform: translateX(20px);
}