/* Font Face Declarations */
@font-face {
    font-family: 'CustomSans';
    src: url('./assets/fonts/medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'CustomBold';
    src: url('./assets/fonts/bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'CustomItalic';
    src: url('./assets/fonts/italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'CustomSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* Desktop Navigation Bar */
.navbar.desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

/* Legacy support for existing .navbar class */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

/* Mobile Navigation Bar */
.mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1001;
    padding: 0.5rem 0 0 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 60px;
}

.mobile-navbar.expanded {
    max-height: 500px;
    background-color: rgba(0, 0, 0, 0.1);
}

.mobile-nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-logo {
    flex-shrink: 0;
}

.mobile-logo-img {
    height: 28px;
    width: auto;
    display: block;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.mobile-menu-content {
    padding: 1rem 1rem 2rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
}

.mobile-navbar.expanded .mobile-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 400px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-nav-link {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    text-align: center;
}

.mobile-nav-link:hover {
    color: #ffffff;
    transform: translateX(10px);
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.mobile-btn {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-btn-signin {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgb(255, 255, 255);
}

.mobile-btn-signin:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-btn-nav {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: 1px solid rgb(255, 255, 255);
}

.mobile-btn-nav:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.nav-container {
    max-width: 1102px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 34px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #ffffff;
}

.nav-buttons {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav {
    padding: 0.625rem 1.25rem !important;
    border-radius: 64px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    font-family: "Geist", "Geist Placeholder", sans-serif !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    text-decoration: none !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    min-width: auto !important;
    display: inline-block !important;
    cursor: pointer !important;
    will-change: auto !important;
}

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

.btn-signin {
    padding: 0.625rem 1.25rem !important;
    border-radius: 64px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    font-family: "Geist", "Geist Placeholder", sans-serif !important;
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    text-decoration: none !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: all 0.2s ease !important;
    min-width: auto !important;
    display: inline-block !important;
    cursor: pointer !important;
    will-change: auto !important;
}

.btn-signin:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    background-color: transparent;
    margin: 0;
    z-index: 1;
}

.hero-container {
    max-width: 1102px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Announcement Banner */
.announcement-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 64px;
    padding: 0.5rem 1rem;
    margin-bottom: 3rem;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 1;
    transform: none;
    will-change: transform;
    animation: fadeInBlur 0.6s ease-out;
}

.star-icon {
    font-size: 0.75rem;
    color: #ffffff;
}

/* Main Headline */
.main-headline {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 2rem;
    width: 800px;
    opacity: 1;
    transform: none;
    will-change: transform;
    animation: fadeInBlur 0.8s ease-out 0.2s both;
}

.headline-line {
    font-family: 'CustomSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    display: block;
    color: #ffffff;
    line-height: 1.2;
    opacity: 1;
    filter: blur(0px);
    transform: none;
    will-change: transform;
}

.headline-emphasis {
    font-family: 'CustomItalic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: italic;
    font-size: 54px;
    font-weight: 400;
    color: #ffffff;
    opacity: 1;
    filter: blur(0px);
    transform: none;
    will-change: transform;
}

/* Description */
.description {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 18px;
    font-weight: 200;
    letter-spacing: 0em;
    line-height: 1.4em;
    width: 600px;
    margin-bottom: 3rem;
    color: #ffffff;
    opacity: 1;
    filter: blur(0px);
    transform: none;
    will-change: transform;
    animation: fadeInBlur 1s ease-out 0.4s both;
}

/* German Heading Section */
.german-heading-section {
    background-color: #000000;
    padding: 4rem 0;
    text-align: center;
    margin-top: 6rem;
}

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

    /* Cards Section */
    .cards-section {
        background-color: #000000;
        padding: 0;
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
    }

    .cards-container {
        max-width: 1102px;
        margin: 0 auto;
        padding: 40px 40px;
        display: flex;
        flex-direction: column;
    }

    .cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 1rem;
    }

    .card {
        background-color: rgb(0, 0, 0);
        border: 1px solid rgb(26, 26, 26);
        transition: all 0.3s ease;
    }

    .card {
        border-radius: 8px;
    }

    .card:hover {
        background-color: rgb(10, 10, 10);
    }

    .card-link {
        display: block;
        height: 100%;
        width: 100%;
        text-decoration: none;
        color: inherit;
    }

    .card-content {
        padding: 2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .card-icon {
        width: 150px;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .icon-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-icon-svg {
        width: 100%;
        height: 100%;
    }

    .icon-path {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        transition: stroke-dashoffset 2s ease-in-out;
    }

    .icon-path.animate {
        stroke-dashoffset: 0;
    }

    .card-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .card-title {
        font-family: "Geist", "Geist Placeholder", sans-serif;
        font-size: 24px;
        font-weight: 500;
        color: rgb(255, 255, 255);
        margin: 0;
        line-height: 1.2;
    }

    .card-description {
        font-family: "Geist", "Geist Placeholder", sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
        line-height: 1.5;
    }


/* AI Chat Section */
.ai-chat-section {
    background-color: #000000;
    padding: 6rem 0 4rem 0;
    margin-top: 6rem;
}

.ai-chat-container {
    max-width: 1102px;
    margin: 0 auto;
    padding: 40px 40px;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.ai-chat-content-left {
    flex: 1;
    max-width: 600px;
}

.ai-chat-content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-chat-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.ai-chat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.ai-chat-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.ai-chat-pill span {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.ai-chat-title {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.ai-chat-description {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

.ai-chat-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 64px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.2s ease;
}

.ai-chat-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Analytics Section */
.analytics-section {
    padding: 6rem 0;
    background-color: #000000;
}

/* Show mobile pie chart on mobile */
.mobile-pie-chart {
    display: none;
}

/* Disable animations on mobile pie chart but keep visual styling */
.mobile-pie-chart,
.mobile-pie-chart *,
.pie-chart-container,
.pie-chart {
    animation: none !important;
    transition: none !important;
}

.mobile-pie-chart .pie-chart {
    background: conic-gradient(
        rgb(255, 255, 255) 0deg 277.2deg,
        rgb(156, 163, 175) 277.2deg 349.2deg,
        rgb(75, 85, 99) 349.2deg 360deg
    );
    transform: rotate(-90deg);
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-pie-chart {
        display: block !important;
    }
}

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

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.bg-black\/80 {
    background-color: rgba(0, 0, 0, 0.8);
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.p-6 {
    padding: 1.5rem;
}

.text-white {
    color: #ffffff;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.recharts-responsive-container {
    width: 100%;
    height: 350px;
    min-width: 0px;
}

.recharts-wrapper {
    position: relative;
    cursor: default;
    width: 100%;
    height: 100%;
    max-height: 350px;
    max-width: 1102px;
    pointer-events: none;
}

.recharts-surface {
    width: 100%;
    height: 100%;
}

.mt-6 {
    margin-top: 1.5rem;
}

.flex {
    display: flex;
}

.gap-4 {
    gap: 1rem;
}

.flex-1 {
    flex: 1 1 0%;
}

.p-4 {
    padding: 1rem;
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.border {
    border-width: 1px;
}

.border-violet-500\/10 {
    border-color: rgba(139, 92, 246, 0.1);
}

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

.flex-col {
    flex-direction: column;
}

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

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.w-2 {
    width: 0.5rem;
}

.h-2 {
    height: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.leading-none {
    line-height: 1;
}

.text-gray-500 {
    color: #6b7280;
}

.mt-1 {
    margin-top: 0.25rem;
}

.p-6 {
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.md\:p-7 {
    padding: 1.75rem;
    border-radius: 0.5rem;
}

.leading-relaxed {
    line-height: 1.625;
}

.text-gray-200 {
    color: #e5e7eb;
}

/* Bar animation classes - Animation handled by JavaScript */

/* Features Heading Section */
.features-heading-section {
    background-color: #000000;
    padding: 6rem 0 4rem 0;
    text-align: center;
    margin-top: 6rem;
}

/* Features Grid Section */
.features-grid-section {
    background-color: #000000;
    padding: 0 0 6rem 0;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    max-width: 1102px;
    margin: 0 auto;
}

.feature-card {
    background-color: #000000;
    border: 1px solid #1a1a1a;
    height: 100%;
    width: 100%;
    position: relative;
    min-height: 200px;
}

.feature-card-1 {
    border-radius: 16px 0 0 0;
    border-right: 0;
    border-bottom: 0;
}

.feature-card-2 {
    border-radius: 0 16px 0 0;
    border-bottom: 0;
}

.feature-card-3 {
    border-radius: 0;
    border-right: 0;
}

.feature-card-4 {
    border-radius: 0;
}

.feature-card-5 {
    border-radius: 0 0 0 16px;
    border-right: 0;
    border-top: 0;
}

.feature-card-6 {
    border-radius: 0 0 16px 0;
    border-top: 0;
}

.feature-content {
    padding: 2rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
}

.feature-title {
    text-align: left;
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 1rem;
    opacity: 1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-title h3 {
    color: #ffffff;
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.feature-title p {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

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

.features-heading {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin: 0;
    line-height: 1.2;
    opacity: 1;
    transform: none;
}

.framer-1upyy79 {
    flex: 1;
    max-width: 600px;
}

.framer-ld3ic5 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.framer-ou2qqu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.framer-764fn8 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.framer-14w14kd {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.framer-gx1wgj p {
    font-size: 14px;
    font-weight: 500;
    color: rgb(242, 183, 108);
    margin: 0;
}

.framer-o39chz {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.framer-ciyu41 h2 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.framer-1i3eh7t p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.framer-zmx4xm-container {
    margin-top: 1.5rem;
}

.framer-rm7Dr {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 64px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.framer-rm7Dr:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.framer-9up707 div {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
}

/* Review Demo Card */
.review-demo-card {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #333333;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 18px;
    color: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-text-stroke: 1px #666666;
}

.star.filled {
    color: #ffffff;
    -webkit-text-stroke: 1px #ffffff;
}

.star:hover {
    color: #fbbf24;
}

.rating-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-left: 0.5rem;
}

.review-input-section {
    margin-top: 1rem;
}

.review-display {
    width: 100%;
    min-height: 120px;
    background: #0a0a0a;
    border: 1px solid #333333;
    border-radius: 6px;
    padding: 1rem;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    font-family: inherit;
    cursor: default;
    user-select: text;
}

/* AI Response Card */
.ai-response-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #333333;
}

.ai-response-header {
    margin-bottom: 1rem;
}

.ai-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
    color: #888888;
    font-weight: 500;
}

.ai-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.ai-response-content {
    margin-bottom: 1.5rem;
    min-height: 120px;
    display: flex;
    align-items: flex-start;
}

.ai-response-content p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ai-response-content p.typing {
    opacity: 1;
    transform: translateX(0);
}

.ai-response-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.approve-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.75rem 1.25rem;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    order: 2;
}

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

.approve-btn.approved {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    cursor: default;
    pointer-events: none;
}

.approve-btn.approved .approve-text {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.approve-btn.approved .check-icon {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.approve-btn.approved:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.refresh-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #2a2a2a;
    color: #cccccc;
    border: 1px solid #444444;
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    order: 1;
}

.refresh-btn:hover {
    background: #333333;
    border-color: #555555;
}

.check-icon,
.edit-icon,
.refresh-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.german-heading {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin: 0;
    opacity: 1;
    transform: none;
    animation: fadeInBlur 1.2s ease-out 0.8s both;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 64px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'CustomSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 140px;
    opacity: 1;
    transform: none;
    will-change: transform;
    animation: fadeInBlur 1.2s ease-out 0.6s both;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.btn-primary:hover {
    background-color: #f5f5f5;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

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

    /* English Text Section */
    .english-text-section {
        position: relative;
        padding: 4rem 0;
        background-color: #000000;
        z-index: 1;
        margin-top: 2rem;
    }

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

    .english-text-content {
        position: relative;
        display: block;
        text-align: justify;
        line-height: 1.2em;
    }

    .english-word {
        position: relative;
        font-family: "Geist", "Geist Placeholder", sans-serif;
        font-size: 36px;
        font-style: normal;
        font-weight: 500;
        letter-spacing: 0px;
        line-height: 1.2em;
        text-align: left;
        color: rgb(255, 255, 255);
        opacity: 0.2;
        transition: opacity 0.3s ease-out;
    }

    .line-break {
        width: 100%;
        height: 1.4em;
    }

    .review-icon {
        height: 1.2em;
        width: auto;
        vertical-align: middle;
        margin: 0 0.2em;
    }

    .human-icon {
        height: 1.2em;
        width: 1.2em;
        vertical-align: middle;
        margin: 0 0.2em;
        display: inline-block;
    }

/* Background Video */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
    background-color: #000000;
    pointer-events: none;
}

/* Animations */
@keyframes fadeInBlur {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .btn-signin,
    .btn-nav {
        padding: 0.5rem 1rem !important;
        font-size: 14px !important;
    }
    
    .main-headline {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
    
    .headline-emphasis {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }
    
    .description {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Customer Relations Section */
.customer-relations-section {
    width: 100%;
    padding: 100px 0;
}

.customer-relations-container {
    max-width: 1102px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 124px;
}

.customer-relations-left {
    flex: 1;
    max-width: 588px;
    padding-right: 48px;
}

.customer-relations-left h2 {
    font-family: 'CustomBold', sans-serif;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}

.customer-relations-left p {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.customer-relations-right {
    display: flex;
    gap: 20px;
    height: 400px;
}

/* Logo Columns */
.logo-column {
    width: 84px;
    height: 400px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
}

.logo-column img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Customer Relations Section - Platform Integrations */
.logos-slide-wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    animation: 10s slide-vertical infinite linear;
}

.logos-slide-wrapper-reverse {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    animation: 10s slide-vertical infinite linear reverse;
}

@keyframes slide-vertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* FAQ Section */
.faq-section {
    width: 100%;
    padding: 160px 0 100px 0;
}

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

.faq-title {
    font-family: 'CustomBold', sans-serif;
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
}

.faq-list {
    width: 100%;
}

.faq-item {
    background-color: #000000;
    border: 1px solid rgb(26, 26, 26);
    border-bottom: 0;
    border-top: 1px solid rgb(26, 26, 26);
    width: 100%;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.faq-item:first-child {
    border-radius: 16px 16px 0 0;
}

.faq-item-last {
    border-bottom: 1px solid rgb(17, 17, 17);
    border-radius: 0 0 16px 16px;
}

.faq-item:hover {
    background-color: rgb(10, 10, 10);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
}

.faq-question p {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px 32px;
}

.faq-answer p {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    background-color: transparent;
    margin: 0;
    z-index: 1;
}

.cta-container {
    max-width: 1102px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.cta-title {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.04em;
    text-align: center;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    margin: 0;
}

.cta-word {
    display: inline-block;
    opacity: 1;
    filter: blur(0px);
    transform: none;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
}

.cta-button {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 16px 32px;
    border-radius: 64px;
    text-decoration: none;
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.1s ease-in-out;
    cursor: pointer;
    display: inline-block;
}

.cta-button:hover {
    opacity: 0.8;
}

.cta-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
    background-color: #000000;
    pointer-events: none;
}

/* Footer */
.footer {
    width: 100%;
    background-color: rgb(0, 0, 0);
    padding: 60px 0 40px 0;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 34px;
    height: 34px;
    object-fit: cover;
}

.footer-tagline {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column h3 {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    margin: 0;
    margin-bottom: 4px;
}

.footer-column a {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: rgb(255, 255, 255);
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin: 0 0 12px 0;
    text-align: left;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-copyright {
    padding-top: 20px;
}

.footer-copyright p {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
    opacity: 0.63;
}


/* Platform Integrations Section */
.platforms-section {
    width: 100%;
    padding: 40px 0 140px 0;
    background-color: #000000;
}

.platforms-container {
    max-width: 1102px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.platforms-title {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    margin: 0;
}

.platforms-carousel {
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.platforms-track {
    display: flex;
    gap: 50px;
    align-items: center;
    animation: scroll-horizontal 15s linear infinite;
}

.platforms-track img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Features Walkthrough Section */
.features-walkthrough {
    width: 100%;
    padding: 140px 0 180px 0;
    background-color: #000000;
}

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

.features-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.features-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-text h2 {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    margin: 0;
    text-align: left;
}

.features-text p {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.features-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}


/* Mission & Vision Section */
.mission-vision-section {
    width: 100%;
    padding: 140px 0;
    background-color: #000000;
}

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

.mission-vision-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.mission-content,
.vision-content {
    flex: 1;
    text-align: justify;
}

.mission-content h2,
.vision-content h2 {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    margin: 0 0 40px 0;
    text-align: left;
}

.mission-content p,
.vision-content p {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 24px 0;
    text-align: justify;
}

.mission-content p:last-child,
.vision-content p:last-child {
    margin-bottom: 0;
}

.mission-content strong {
    color: rgb(255, 255, 255);
    font-weight: 500;
}

/* Team Section */
.team-section {
    width: 100%;
    padding: 140px 0;
    background-color: #000000;
}

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

.team-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team-title-wrapper {
    text-align: center;
}

.team-title-wrapper h2 {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    margin: 0;
}

.team-grid {
    display: flex;
    gap: 200px;
    justify-content: center;
    align-items: flex-start;
}

.team-member {
    flex: 0 0 auto;
}

.team-card {
    position: relative;
    background-color: rgb(0, 0, 0);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.team-fade-overlay {
    display: none;
}

.team-avatar {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 100%;
    overflow: hidden;
}

.team-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.team-name {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: rgb(250, 250, 250);
    line-height: 1.4;
    margin: 0;
}

.team-role {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}


/* Pricing Hero Section */
.pricing-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px 20px;
}

.pricing-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.pricing-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.pricing-hero-title {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 500;
    color: rgb(255, 255, 255);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.pricing-hero-description {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.pricing-hero-title .hero-word,
.pricing-hero-description .hero-word {
    display: inline-block;
    margin-right: 0.05em;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
}


/* Pricing Table Section */
.pricing-table-section {
    width: 100%;
    padding: 100px 0;
    background-color: #000000;
}

.pricing-table-container {
    max-width: 1102px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: border-color 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card-featured {
    border-color: rgba(255, 255, 255, 0.25);
}

.pricing-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.pricing-card-icon svg {
    width: 32px;
    height: 32px;
}

.pricing-card-title {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    margin: 0;
}

.pricing-card-description {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
    min-height: 72px;
    display: flex;
    align-items: flex-start;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 16px;
}

.pricing-card-price .price {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    line-height: 1;
}

.pricing-card-price .period {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card-tax {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: -12px 0 0 0;
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.pricing-card-features li {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    padding-left: 28px;
    position: relative;
}

.pricing-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 16px;
}

.pricing-card-button {
    width: auto;
    padding: 12px 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
    align-self: flex-start;
}

.pricing-card-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card-featured .pricing-card-button {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-color: rgb(255, 255, 255);
}

.pricing-card-featured .pricing-card-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}


/* Comparison Table Section */
.comparison-section {
    width: 100%;
    padding: 200px 0 100px 0;
    background-color: #000000;
}

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

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-header h2 {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.comparison-header p {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
}

.comparison-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
}

.comparison-header-cell {
    padding: 32px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header-cell.feature-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header-cell.plan-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header-cell.plan-cell:last-child {
    border-right: none;
}

.comparison-header-cell.plan-cell h3 {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    margin: 0;
}

.comparison-header-cell .plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.comparison-header-cell .plan-price .price {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: rgb(255, 255, 255);
}

.comparison-header-cell .plan-price .period {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.comparison-header-cell .plan-button {
    padding: 10px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: all 0.2s ease;
}

.comparison-header-cell .plan-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.comparison-header-cell .plan-button.featured {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-color: rgb(255, 255, 255);
}

.comparison-header-cell .plan-button.featured:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
}

.comparison-cell {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.comparison-cell.feature-name {
    justify-content: flex-start;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-cell:not(.feature-name) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell .checkmark {
    font-size: 18px;
    color: rgb(255, 255, 255);
}


/* Legal Content Section */
.legal-content-section {
    width: 100%;
    padding: 100px 0;
    background-color: #000000;
}

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

.legal-text {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    color: rgb(255, 255, 255);
}

.legal-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0 0 24px 0;
    text-align: justify;
    color: rgba(255, 255, 255, 0.8);
}

/* Override browser default link styling for phone numbers in legal content */
.legal-text p a,
.legal-text p a:link,
.legal-text p a:visited,
.legal-text p a:hover,
.legal-text p a:active {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
}

.legal-subheading {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 32px !important;
}

.legal-text h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 16px 0;
    color: rgb(255, 255, 255);
}

.legal-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 48px 0;
}


/* Contact Form Section */
.contact-form-section {
    width: 100%;
    padding: 200px 0 100px 0;
    background-color: #000000;
}

.contact-form-container {
    max-width: 1102px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 48px;
    max-width: 600px;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    line-height: 1.4;
}

.form-group input,
.form-group textarea {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 150px;
    max-height: 150px;
    resize: none;
    overflow-y: auto;
}

.form-group textarea::-webkit-scrollbar {
    width: 6px;
}

.form-group textarea::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.form-group textarea::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.form-group textarea::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.contact-submit-btn {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    cursor: pointer;
    transition: opacity 0.1s ease-in-out;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    opacity: 0.8;
}


/* Image Loading States */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Page Loading Overlay */
.page-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.page-loading-content {
    text-align: center;
    color: white;
}

.page-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 1rem;
}

/* Error States */
.error-state {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.error-message {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.error-retry {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.error-retry:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus indicators */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    img[loading="lazy"] {
        opacity: 1;
    }
}
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-icon {
    width: 32px;
    height: 32px;
    color: rgb(255, 255, 255);
    margin-bottom: 2px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info-card h3 {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    line-height: 1.4;
    margin: 0;
}

.contact-info-card p {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.5;
    margin: 0;
}

/* Override browser default link styling for phone numbers */
.contact-info-card p a,
.contact-info-card p a:link,
.contact-info-card p a:visited,
.contact-info-card p a:hover,
.contact-info-card p a:active {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
}

/* Desktop Navigation - Show desktop nav, hide mobile nav */
@media (min-width: 769px) {
    .navbar.desktop-nav {
        display: block;
    }
    
    .mobile-navbar {
        display: none;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Navigation - Show mobile nav, hide desktop nav */
    .navbar.desktop-nav {
        display: none;
    }
    
    .mobile-navbar {
        display: block;
    }
    
    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
    
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    * {
        box-sizing: border-box;
    }
    
    /* Ensure all containers don't exceed viewport width */
    .nav-container,
    .hero-container,
    .german-heading-container,
    .cards-container,
    .ai-chat-container,
    .features-grid-container,
    .features-heading-container,
    .english-text-container,
    .customer-relations-container,
    .faq-container,
    .cta-container,
    .footer-container,
    .platforms-container,
    .features-container,
    .mission-vision-container,
    .team-container,
    .pricing-hero-container,
    .pricing-table-container,
    .legal-content-container,
    .contact-form-container {
        max-width: 100vw;
    }
    
    /* Analytics container - allow full width */
    .analytics-container {
        max-width: 100%;
        width: 100%;
        overflow-x: visible;
    }
    
    /* Comparison container - allow horizontal scrolling for table only */
    .comparison-container {
        max-width: 100vw !important;
        width: 100% !important;
        overflow-x: hidden !important;
        padding: 0 1rem !important;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .btn-signin,
    .btn-nav {
        padding: 0.5rem 1rem !important;
        font-size: 14px !important;
        min-height: 44px;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Typography */
    .main-headline {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .description {
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    /* Hero section */
    .hero-section {
        padding: 4rem 0 2rem 0;
        min-height: 80vh;
        margin-top: 2rem;
    }
    
    .hero-container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    .main-headline {
        padding: 0 1rem;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .headline-line {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
    }
    
    .description {
        padding: 0 1rem;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Layout adjustments */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        min-height: 48px;
        padding: 1rem 2rem;
        font-size: 16px;
    }
    
    /* Grid layouts */
    .cards-grid,
    .features-grid,
    .pricing-table-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-vision-content,
    .features-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Cards */
    .card-content {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .card-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Features */
    .feature-content {
        padding: 1.5rem;
    }
    
    .feature-title h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-title p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* Team section */
    .team-grid {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }
    
    .team-card {
        max-width: 280px;
    }
    
    .team-avatar {
        max-width: 280px;
        height: 280px;
    }
    
    /* Mission & Vision */
    .mission-content h2,
    .vision-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .mission-content p,
    .vision-content p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card-title {
        font-size: 1.5rem;
    }
    
    .pricing-card-price .price {
        font-size: 2.5rem;
    }
    
    .pricing-card-features {
        gap: 0.75rem;
    }
    
    .pricing-card-features li {
        font-size: 1rem;
    }
    
    /* Contact form */
    .contact-form-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        max-width: 600px;
        width: 100%;
    }
    
    .form-group input,
    .form-group textarea {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
    }
    
    .contact-submit-btn {
        min-height: 48px;
        padding: 1rem 2rem;
        font-size: 16px;
    }
    
    /* FAQ */
    .faq-question {
        min-height: 60px;
        padding: 1rem 1.5rem;
    }
    
    .faq-question p {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-column {
        gap: 1rem;
    }
    
    .footer-column h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-column a {
        font-size: 1rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Customer relations */
    .customer-relations-right {
        margin-left: 0;
        height: 300px;
        overflow-x: hidden;
    }
    
    .logo-column {
        height: 300px;
        overflow: hidden;
    }
    
    /* Fix any elements that might cause horizontal scroll */
    .platforms-track {
        overflow-x: hidden;
    }
    
    .comparison-table {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
        width: 100% !important;
    }
    
    .comparison-table::-webkit-scrollbar {
        height: 6px;
    }
    
    .comparison-table::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .comparison-table::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }
    
    .comparison-table::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    
    /* Make table fit mobile screen properly */
    .comparison-table {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .comparison-table-header,
    .comparison-table-body {
        width: 100%;
    }
    
    /* Mobile-optimized column layout */
    .comparison-table-header {
        display: grid !important;
        grid-template-columns: 2fr 1fr 1fr 1fr !important;
        gap: 0 !important;
    }
    
    .comparison-row {
        display: grid !important;
        grid-template-columns: 2fr 1fr 1fr 1fr !important;
        gap: 0 !important;
    }
    
    /* Adjust cell padding for mobile */
    .comparison-header-cell,
    .comparison-cell {
        padding: 10px 4px !important;
        font-size: 0.8rem !important;
        text-align: center !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .comparison-header-cell.feature-cell {
        text-align: left !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .comparison-cell.feature-name {
        text-align: left !important;
        font-size: 0.75rem !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .comparison-header-cell h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .plan-price {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.25rem !important;
    }
    
    .plan-price .price {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }
    
    .plan-price .period {
        font-size: 0.7rem !important;
    }
    
    .plan-button {
        display: none !important;
    }
    
    .checkmark {
        font-size: 0.9rem !important;
    }
    
    /* Contact page mobile optimizations */
    .contact-form-container {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .contact-form-wrapper {
        padding: 1rem !important;
        width: 100% !important;
        max-width: 600px !important;
        box-sizing: border-box !important;
    }
    
    .contact-info-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .contact-info-card p {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
    
    .contact-icon {
        margin-bottom: 1rem !important;
    }
    
    .contact-icon svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    /* Contact form mobile styling */
    .contact-form {
        width: 100% !important;
    }
    
    .form-group {
        margin-bottom: 1.5rem !important;
    }
    
    .form-group label {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
        display: block !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        text-overflow: unset !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Specific fix for First and Last Name label */
    .contact-form .form-group:first-child label {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
        display: block !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        text-overflow: unset !important;
        position: relative !important;
        z-index: 1 !important;
        padding: 0 !important;
        margin: 0 0 0.5rem 0 !important;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 16px !important;
        min-height: 48px !important;
        border-radius: 8px !important;
    }
    
    .form-group textarea {
        min-height: 120px !important;
        resize: vertical !important;
    }
    
    .contact-submit-btn {
        width: auto !important;
        max-width: 200px !important;
        padding: 1rem 2rem !important;
        font-size: 16px !important;
        min-height: 48px !important;
        border-radius: 50px !important;
        align-self: center !important;
    }
    
    /* Legal and Privacy pages mobile optimizations */
    .pricing-hero-section {
        padding: 4rem 0 2rem 0 !important;
        min-height: 60vh !important;
    }
    
    .pricing-hero-container {
        padding: 0 1rem !important;
    }
    
    .pricing-hero-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
        text-align: center !important;
    }
    
    .hero-word {
        display: block !important;
        margin-bottom: 0.5rem !important;
    }
    
    .legal-content-section,
    .privacy-content-section {
        padding: 2rem 0 !important;
    }
    
    .legal-content-container,
    .privacy-content-container {
        padding: 0 1rem !important;
    }
    
    .legal-text,
    .privacy-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    .legal-text h2,
    .privacy-text h2 {
        font-size: 1.3rem !important;
        margin: 2rem 0 1rem 0 !important;
        color: #ffffff !important;
    }
    
    .legal-text h3,
    .privacy-text h3 {
        font-size: 1.1rem !important;
        margin: 1.5rem 0 0.75rem 0 !important;
        color: #ffffff !important;
    }
    
    .legal-text p,
    .privacy-text p {
        margin-bottom: 1rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .legal-text ul,
    .privacy-text ul {
        margin: 1rem 0 !important;
        padding-left: 1.5rem !important;
    }
    
    .legal-text li,
    .privacy-text li {
        margin-bottom: 0.5rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .legal-text strong,
    .privacy-text strong {
        color: #ffffff !important;
        font-weight: 600 !important;
    }
    
    /* Ensure images don't exceed container width */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix any fixed width elements */
    .team-card,
    .pricing-card,
    .feature-card {
        max-width: 100%;
    }
    
    /* CTA section */
    .cta-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.1;
    }
    
    .cta-button {
        min-height: 48px;
        padding: 1rem 2rem;
        font-size: 16px;
    }
    
    /* English text section - smaller fonts for mobile */
    .english-text-content {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .english-word {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    /* German heading - match hero section size */
    .german-heading {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
    }
    
    /* AI Chat section - match hero section title and stack vertically */
    .ai-chat-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem;
    }
    
    .ai-chat-container {
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: stretch !important;
    }
    
    .ai-chat-content-left {
        max-width: 100% !important;
        order: 1;
    }
    
    .ai-chat-content-right {
        order: 2;
        justify-content: center;
    }
    
    /* Analytics section - increase width for mobile portrait */
    .analytics-section {
        padding: 4rem 0 !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        max-width: none !important;
    }
    
    .analytics-container {
        max-width: none !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* Show mobile pie chart on mobile portrait */
    .mobile-pie-chart {
        display: block !important;
    }
    
    /* Hide desktop chart on mobile */
    .desktop-chart {
        display: none !important;
    }
    
    /* Mobile-specific AI summary styling */
    .mobile-ai-summary {
        padding: 0 !important;
        margin-top: 4rem !important;
    }
    
    .mobile-ai-content {
        padding: 1.5rem !important;
    }
    
    /* Features heading - match other headings */
    .features-heading {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
    }
    
    /* Customer relations section - stack vertically and match title size */
    .customer-relations-container {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .customer-relations-left h2 {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
    }
    
    .customer-relations-right {
        margin-left: 0 !important;
        order: 2;
    }
    
    .customer-relations-left {
        order: 1;
    }
    
    /* Make logo animation section smaller on mobile */
    .customer-relations-right {
        height: 200px !important;
        max-width: 80% !important;
        margin: 0 auto !important;
    }
    
    .logo-column {
        height: 200px !important;
    }
    
    .logos-slide-wrapper img {
        height: 40px !important;
        width: auto !important;
    }
    
    /* Add space between logo columns */
    .customer-relations-right .logo-column:not(:last-child) {
        margin-right: 1rem !important;
    }
    
    /* FAQ title - match other headings */
    .faq-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
    }
    
    /* CTA title - match other headings */
    .cta-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
    }
    
    /* Footer mobile layout */
    .footer-content {
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: left !important;
    }
    
    .footer-brand {
        order: 1 !important;
        margin-bottom: 1rem !important;
        text-align: left !important;
    }
    
    .footer-links {
        order: 2 !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        gap: 0.5rem !important;
        flex-wrap: wrap !important;
    }
    
    .footer-column {
        flex: 1 !important;
        min-width: 80px !important;
        text-align: left !important;
    }
    
    .footer-column h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
        text-align: left !important;
    }
    
    .footer-column a {
        font-size: 0.8rem !important;
        padding: 0.25rem 0 !important;
        text-align: left !important;
        display: block !important;
    }
    
    .footer-disclaimer {
        order: 3 !important;
    }
    
    .footer-copyright {
        order: 4 !important;
    }
    
    /* About page mobile optimizations */
    /* About hero section - match index.html styling */
    .about-hero-section .main-headline {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem;
    }
    
    .about-hero-section .description {
        font-size: clamp(1rem, 4vw, 1.2rem) !important;
        line-height: 1.5 !important;
        margin-bottom: 2rem;
    }
    
    /* Platforms section title - aggressive override */
    .platforms-section h2.platforms-title {
        font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
        line-height: 1.3 !important;
        margin: 0 0 1.5rem 0 !important;
        color: #ffffff !important;
        text-align: center !important;
        font-weight: 500 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-family: "Geist", "Geist Placeholder", sans-serif !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    /* Platforms carousel mobile optimization - mobile portrait only */
    .platforms-carousel {
        overflow: hidden !important;
        width: 100% !important;
        position: relative !important;
        height: 60px !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 1rem !important;
    }
    
    .platforms-track {
        display: flex !important;
        animation: scroll-platforms 10s linear infinite !important;
        gap: 3.5rem !important;
        width: max-content !important;
        will-change: transform !important;
        align-items: center !important;
        min-width: 200% !important;
    }
    
    .platforms-track img {
        height: 40px !important;
        width: auto !important;
        flex-shrink: 0 !important;
        opacity: 0.8 !important;
        transition: opacity 0.3s ease !important;
        filter: grayscale(100%) !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .platforms-track img:hover {
        opacity: 1 !important;
        filter: grayscale(0%) !important;
    }
    
    @keyframes scroll-platforms {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    /* Features section - stack vertically */
    .features-content {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .features-text h2 {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem;
    }
    
    .features-text p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    /* Mission & Vision section - stack vertically */
    .mission-vision-content {
        flex-direction: column !important;
        gap: 6rem !important;
    }
    
    .mission-content h2,
    .vision-content h2 {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .mission-content p,
    .vision-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        text-align: left;
    }
    
    /* Team section */
    .team-title-wrapper h2 {
        font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem;
    }
    
    .team-grid {
        flex-direction: column !important;
        gap: 6rem !important;
        align-items: center;
    }
    
    .team-card {
        max-width: 280px !important;
    }
    
    .team-avatar {
        max-width: 280px !important;
        height: 280px !important;
    }
    
    .team-name {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .team-role {
        font-size: 1rem !important;
    }
}

/* Desktop platforms carousel - original version */
@media (min-width: 769px) {
    .platforms-carousel {
        width: 100% !important;
        max-width: 600px !important;
        overflow: hidden !important;
        position: relative !important;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent) !important;
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent) !important;
    }
    
    .platforms-track {
        display: flex !important;
        gap: 50px !important;
        align-items: center !important;
        animation: scroll-horizontal 15s linear infinite !important;
    }
    
    .platforms-track img {
        width: 30px !important;
        height: 30px !important;
        object-fit: contain !important;
        flex-shrink: 0 !important;
    }
    
    @keyframes scroll-horizontal {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

/* Portrait Mode Adjustments - 11-inch iPad and smaller */
@media (orientation: portrait) and (max-width: 1024px) {
    /* Add horizontal padding to all containers */
    .nav-container,
    .hero-container,
    .german-heading-container,
    .cards-container,
    .ai-chat-container,
    .analytics-container,
    .features-grid-container,
    .features-heading-container,
    .english-text-container,
    .customer-relations-container,
    .faq-container,
    .cta-container,
    .footer-container,
    .platforms-container,
    .features-container,
    .mission-vision-container,
    .team-container,
    .pricing-hero-container,
    .pricing-table-container,
    .legal-content-container,
    .contact-form-container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    
    .team-grid {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }
    
    /* Shift customer-relations-right section more to the left */
    .customer-relations-right {
        margin-left: -50px;
    }
}

/* 13-inch iPad Portrait - Keep horizontal with reduced gap */
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1366px) {
    .team-grid {
        flex-direction: row;
        gap: 80px;
        justify-content: center;
        align-items: flex-start;
    }
}

/* Billing Toggle Styles */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.billing-option {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.billing-option:first-child {
    opacity: 1;
}

.billing-option:last-child {
    opacity: 0.6;
}

.discount-badge {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Mobile Billing Toggle */
@media (max-width: 768px) {
    .billing-toggle {
        margin: 1.5rem 0;
        gap: 0.75rem;
    }
    
    .billing-option {
        font-size: 0.9rem;
    }
    
    .toggle-switch {
        width: 50px;
        height: 28px;
    }
    
    .slider:before {
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 4px;
    }
    
    input:checked + .slider:before {
        transform: translateX(22px);
    }
    
    .discount-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Success Page Styles */
.success-section {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.success-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-icon {
    margin-bottom: 2rem;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.success-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.plan-details {
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.plan-billing {
    color: #a0a0a0;
    font-size: 1rem;
}

.next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    color: #a0a0a0;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.success-actions .btn {
    min-width: 150px;
}

/* Mobile Success Styles */
@media (max-width: 768px) {
    .success-section {
        padding: 100px 0 60px 0;
    }
    
    .success-container {
        padding: 0 1rem;
    }
    
    .success-content {
        padding: 2rem 1.5rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-subtitle {
        font-size: 1.1rem;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    animation: slideUp 0.3s ease-out;
    width: 100%;
    box-sizing: border-box;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

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

.cookie-consent-text h3 {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: white;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-icon {
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.cookie-consent-text p {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.cookie-consent-text a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.cookie-consent-text a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: white;
    color: #1a1a1a;
    border: 1px solid white;
}

.cookie-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

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

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Cookie Policy Table */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: transparent;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.cookie-table td {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:hover {
    background: transparent;
}

/* Mobile Responsive for Cookie Table */
@media (max-width: 768px) {
    .cookie-table {
        margin: 1.5rem 0;
        overflow: visible;
    }
    
    .cookie-table table {
        width: 100%;
        table-layout: fixed;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .cookie-table th:first-child,
    .cookie-table td:first-child {
        width: 20%;
        min-width: 0;
    }
    
    .cookie-table th:nth-child(2),
    .cookie-table td:nth-child(2) {
        width: 30%;
    }
    
    .cookie-table th:nth-child(3),
    .cookie-table td:nth-child(3) {
        width: 30%;
    }
    
    .cookie-table th:nth-child(4),
    .cookie-table td:nth-child(4) {
        width: 20%;
    }
}

@media (max-width: 480px) {
    .cookie-table th,
    .cookie-table td {
        padding: 0.4rem;
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .cookie-table th:first-child,
    .cookie-table td:first-child {
        width: 20%;
    }
    
    .cookie-table th:nth-child(2),
    .cookie-table td:nth-child(2) {
        width: 30%;
    }
    
    .cookie-table th:nth-child(3),
    .cookie-table td:nth-child(3) {
        width: 30%;
    }
    
    .cookie-table th:nth-child(4),
    .cookie-table td:nth-child(4) {
        width: 20%;
    }
}

/* Language Selector */
.language-selector {
    position: relative;
    display: inline-block;
    margin-top: 1.5rem;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    width: 250px;
    justify-content: flex-start;
}


.language-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.language-text {
    font-weight: 500;
}

.language-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-button.active .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin-bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 0.75rem 1.5rem;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease, border-radius 0.2s ease;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.language-option.active {
    background: rgba(255, 255, 255, 0.15);
    font-weight: 500;
    border-radius: 8px;
}

/* Language Selector Mobile Responsive */
@media (max-width: 768px) {
    .language-selector {
        margin-top: 1rem;
    }
    
    .language-button {
        padding: 0.4rem;
        font-size: 0.85rem;
        width: 230px;
    }
    
    .language-icon {
        width: 18px;
        height: 18px;
    }
    
    .language-dropdown {
        min-width: 180px;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
    }
    
    .language-dropdown.show {
        transform: translateX(-50%) translateY(0);
    }
    
    .language-option {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        border-radius: 8px;
        margin: 0 0.5rem;
    }
}

/* Mobile Responsive for Cookie Banner */
@media (max-width: 768px) {
    .cookie-consent-banner {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 1rem;
        z-index: 99999 !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        max-width: 100%;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
        min-width: 120px;
    }
    
    /* Ensure banner stays above all content */
    body {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 0.75rem;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        max-width: none;
        width: 100%;
    }
    
    .cookie-consent-text h3 {
        font-size: 1rem;
    }
    
    .cookie-consent-text p {
        font-size: 0.85rem;
    }
}
.error-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.error-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

.error-hero-title {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.error-hero-subtitle {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.4;
}

.error-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.error-hero-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.error-hero-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.error-hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
}

/* Mobile Responsive for 404 Hero */
@media (max-width: 768px) {
    .error-hero-container {
        padding: 0 1rem;
    }
    
    .error-hero-title {
        font-size: 6rem;
    }
    
    .error-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .error-hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .error-hero-title {
        font-size: 4rem;
    }
    
    .error-hero-subtitle {
        font-size: 1rem;
    }
}

/* Changelog Section */
.changelog-section {
    width: 100%;
    padding: 200px 0 100px 0;
    background-color: #000000;
}

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

.changelog-entry {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.changelog-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.changelog-version {
    display: inline-block;
    background-color: #ffffff;
    border: none;
    border-radius: 9999px;
    padding: 6px 12px;
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
}

.changelog-date {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
}

.changelog-image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
}

.changelog-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: inherit;
}

.changelog-description {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 32px;
}

.changelog-title {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.changelog-subtitle {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.changelog-details {
    margin-top: 48px;
}

.changelog-section-item {
    margin-bottom: 40px;
}

.changelog-section-title {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.changelog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.changelog-list li {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
    opacity: 0.9;
}

.changelog-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

.changelog-list li strong {
    font-weight: 400;
    color: #ffffff;
}

/* Mobile Responsive for Changelog */
@media (max-width: 768px) {
    .changelog-section {
        padding: 200px 0 80px 0;
    }
    
    .changelog-container {
        padding: 0 1rem;
    }
    
    .changelog-entry {
        gap: 20px;
        padding: 0 1.25rem;
    }
    
    .changelog-header {
        gap: 10px;
    }
    
    .changelog-version {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .changelog-date {
        font-size: 13px;
    }
    
    .changelog-title {
        font-size: 28px;
    }
    
    .changelog-subtitle {
        font-size: 16px;
    }
    
    .changelog-details {
        margin-top: 32px;
    }
    
    .changelog-section-title {
        font-size: 18px;
    }
    
    .changelog-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .changelog-section {
        padding: 180px 0 60px 0;
    }
    
    .changelog-entry {
        gap: 16px;
    }
    
    .changelog-version {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .changelog-date {
        font-size: 12px;
    }
    
    .changelog-title {
        font-size: 24px;
    }
    
    .changelog-subtitle {
        font-size: 14px;
    }
    
    .changelog-details {
        margin-top: 24px;
    }
    
    .changelog-section-title {
        font-size: 16px;
    }
    
    .changelog-list li {
        font-size: 14px;
        padding-left: 20px;
    }
}

/* How Reflyne Works Section */
.how-reflyne-works-section {
    width: 100%;
    padding: 80px 0;
    background-color: #000000;
}

.how-reflyne-works-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.how-reflyne-works-title {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.how-reflyne-works-subtitle {
    font-family: "Geist", "Geist Placeholder", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0 0 32px 0;
    opacity: 0.9;
}

.how-reflyne-works-video-wrapper {
    width: 100%;
    max-width: 1500px;
    margin: 48px auto 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.how-reflyne-works-video {
    display: block;
    width: 100%;
    max-width: 1500px;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
    background-color: #000000;
    cursor: pointer;
}

/* Hide default video controls */
.how-reflyne-works-video::-webkit-media-controls-panel {
    display: none !important;
}

.how-reflyne-works-video::-webkit-media-controls-play-button,
.how-reflyne-works-video::-webkit-media-controls-pause-button,
.how-reflyne-works-video::-webkit-media-controls-timeline,
.how-reflyne-works-video::-webkit-media-controls-current-time-display,
.how-reflyne-works-video::-webkit-media-controls-time-remaining-display,
.how-reflyne-works-video::-webkit-media-controls-volume-slider,
.how-reflyne-works-video::-webkit-media-controls-mute-button,
.how-reflyne-works-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

/* Custom Video Controls */
.custom-video-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.custom-play-pause-btn {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.custom-play-pause-btn:hover {
    opacity: 0.8;
}

.custom-play-pause-btn svg {
    width: 80px;
    height: 80px;
}

.custom-play-pause-btn.playing .play-icon {
    display: none !important;
}

.custom-play-pause-btn.playing .pause-icon {
    display: block !important;
}

.custom-play-pause-btn.paused .play-icon {
    display: block !important;
}

.custom-play-pause-btn.paused .pause-icon {
    display: none !important;
}

.custom-timeline-wrapper {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    max-width: calc(100% - 40px);
    pointer-events: auto;
    z-index: 10;
}

.custom-timeline {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.custom-timeline-progress {
    height: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.custom-timeline-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: grab;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.custom-timeline:hover .custom-timeline-handle {
    opacity: 1;
}

.custom-timeline-handle:active {
    cursor: grabbing;
}

/* Mobile Responsive for How Reflyne Works Section */
@media (max-width: 768px) {
    .how-reflyne-works-section {
        padding: 60px 0;
    }
    
    .how-reflyne-works-container {
        padding: 0 1rem;
    }
    
    .how-reflyne-works-video-wrapper {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .how-reflyne-works-video {
        width: 100%;
    }
    
    .how-reflyne-works-title {
        font-size: 28px;
    }
    
    .how-reflyne-works-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .how-reflyne-works-video-wrapper {
        max-width: 100%;
        margin-top: 40px;
        margin-bottom: 60px;
    }
    
    .how-reflyne-works-video {
        width: 100%;
    }
    
    .custom-timeline-wrapper {
        bottom: -20px;
        width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .how-reflyne-works-section {
        padding: 50px 0;
    }
    
    .how-reflyne-works-title {
        font-size: 24px;
    }
    
    .how-reflyne-works-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .how-reflyne-works-video-wrapper {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 32px;
        margin-bottom: 50px;
    }
    
    .how-reflyne-works-video {
        width: 100%;
    }
    
    .custom-timeline-wrapper {
        bottom: 10px;
        width: calc(100% - 40px);
    }
}

