:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --primary: #6C5CE7;
    --primary-hover: #5A4BCE;
    --accent: #00D2D3;
    --glass-bg: rgba(25, 25, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html, body {
    width: 100%;
    height: 100%;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden; 
}

/* Scroll Container for Snap */
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

section {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    position: relative;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 24%;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.nav-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    list-style: none;
    padding: 1rem 0;
    border-radius: 12px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.5rem;
}

.dropdown-menu li a::after {
    display: none;
}

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 101;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, #050505 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease forwards;
}

.hero-lumi-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 24%;
    filter: drop-shadow(0 0 20px rgba(108, 92, 231, 0.6));
}

.hero-lumi-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-headline {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #ffffff 0%, #d1d1d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-subline {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.btn-primary {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
    font-family: var(--font-body);
    animation: fadeInUp 1s ease 0.9s forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Glass Panel Utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

/* Funnel Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    padding: 3rem;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--accent);
}

.funnel-step {
    display: none;
    text-align: center;
}

.funnel-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.funnel-step h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.option-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    border-color: var(--accent);
}

.option-icon {
    font-size: 2rem;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    color: #aaa;
}

.modern-form input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.modern-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0,0,0,0.5);
}

.btn-submit {
    padding: 1rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-hover);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.form-status {
    min-height: 1.4rem;
    margin: 0;
    font-size: 0.95rem;
    color: #cfcfcf;
}

.form-status.is-pending {
    color: #f3d37a;
}

.form-status.is-success {
    color: #72e6a4;
}

.form-status.is-error {
    color: #ff8a8a;
}

/* Chatbot */
.chatbot-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chatbot-intro-bubble {
    max-width: 240px;
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    color: #111;
    font-size: 0.95rem;
    line-height: 1.4;
    box-shadow: 0 18px 38px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    position: relative;
}

.chatbot-intro-bubble::after {
    content: '';
    position: absolute;
    right: 1.3rem;
    bottom: -10px;
    width: 18px;
    height: 18px;
    background: rgba(255,255,255,0.92);
    transform: rotate(45deg);
    border-radius: 4px;
}

.chatbot-intro-bubble.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chatbot-toggle {
    width: 78px;
    height: 78px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.08);
}

.chatbot-toggle img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.chatbot-toggle.is-attention {
    animation: chatbot-bounce 1.4s ease-in-out 3;
}

.notification-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: #FF4757;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.5);
    animation: chatbot-pulse 1.8s infinite;
}

.chatbot-window {
    position: absolute;
    bottom: 98px;
    right: 0;
    width: 390px;
    height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chatbot-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chatbot-header {
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-header-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    object-fit: cover;
}

.chatbot-header h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.status {
    font-size: 0.8rem;
    color: var(--accent);
}

.close-chat {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.chatbot-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 80%;
    padding: 1rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-message.bot {
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.chat-message.user {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    animation: typing-dots 1s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.15s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.3s;
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 0.8rem 1rem;
    color: #fff;
    font-family: var(--font-body);
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--primary);
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes chatbot-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    20% { transform: translateY(-12px) scale(1.04); }
    40% { transform: translateY(0) scale(1); }
    60% { transform: translateY(-6px) scale(1.02); }
}

@keyframes chatbot-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.55); }
    70% { box-shadow: 0 0 0 14px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

@keyframes typing-dots {
    0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(-3px); }
}

/* Features Section */
.features-section {
    width: 100%;
    height: 100vh;
    display: flex;
}

.features-split {
    display: flex;
    width: 100%;
    height: 100%;
}

.features-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: radial-gradient(circle at left center, rgba(108, 92, 231, 0.1), transparent 50%);
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    cursor: default;
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0, 210, 211, 0.2);
}

.feature-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.feature-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-heading);
}

.features-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    border-left: 1px solid var(--glass-border);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%);
}

/* Services Section */
.services-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at right bottom, rgba(0, 210, 211, 0.05), transparent 50%);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

.services-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

.services-header p {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
}

.gradient-border {
    position: relative;
    background-clip: padding-box;
    border: 1px solid transparent;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transition: background 0.4s ease;
}

.service-card:hover.gradient-border::before {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 210, 211, 0.2));
    border-color: var(--accent);
    transform: scale(1.1);
}

.service-icon {
    font-size: 2.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-desc {
    color: #aaa;
    line-height: 1.6;
    font-size: 1rem;
}

/* Process Section */
.process-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at left center, rgba(108, 92, 231, 0.05), transparent 50%);
    position: relative;
    padding: 6rem 0;
    overflow-y: auto;
}

.process-container {
    max-width: 1000px;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

.process-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.process-header p {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline/Stepper */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary), var(--accent), transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-color);
    border: 4px solid var(--accent);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 210, 211, 0.8);
}

.left { left: 0; }
.right { left: 50%; }

.left::before {
    content: " "; height: 0; position: absolute; top: 50%; width: 40px; z-index: 1; right: 0;
    border: medium solid var(--glass-border); border-width: 2px 0 0 0; border-color: rgba(108, 92, 231, 0.5) transparent transparent transparent;
}

.right::before {
    content: " "; height: 0; position: absolute; top: 50%; width: 40px; z-index: 1; left: 0;
    border: medium solid var(--glass-border); border-width: 2px 0 0 0; border-color: rgba(108, 92, 231, 0.5) transparent transparent transparent;
}

.right::after { left: -10px; }

.timeline-content {
    padding: 2rem;
    background: var(--glass-bg);
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--font-heading);
    z-index: 0;
    pointer-events: none;
    transition: color 0.4s ease;
}

.timeline-content:hover .step-number { color: rgba(108, 92, 231, 0.15); }

.step-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.step-desc {
    color: #aaa;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Final CTA & Footer Section */
.final-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--bg-color);
}

.final-split {
    display: flex;
    flex: 1;
    width: 100%;
}

.final-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 10%;
    background: radial-gradient(circle at right center, rgba(0, 210, 211, 0.05), transparent 60%);
}

.cta-headline {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-subline {
    font-size: 1.25rem;
    color: #aaa;
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.6;
}

.btn-glow {
    align-self: flex-start;
    box-shadow: 0 0 25px rgba(108, 92, 231, 0.6);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(0, 210, 211, 0.8);
}

.final-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.image-overlay-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, transparent 0%, transparent 60%, var(--bg-color) 100%);
}

/* Footer */
.lumi-footer {
    width: 100%;
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 4rem 1.5rem 4rem;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 24%;
}

.footer-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.footer-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #888;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-icon:hover {
    color: #fff;
    background: rgba(108, 92, 231, 0.2);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

.footer-contact li { color: #888; font-size: 0.95rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-links { display: flex; gap: 1.5rem; }
.legal-links a { color: #666; text-decoration: none; transition: color 0.3s ease; }
.legal-links a:hover { color: var(--primary); }

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

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Responsiveness & Mobile Fixes
   ========================================== */
@media (max-width: 900px) {
    .final-split { flex-direction: column; }
    .final-left { padding: 4rem 2rem; }
    .cta-headline { font-size: 3rem; }
    .final-right { min-height: 30vh; }
    .image-overlay-left { background: linear-gradient(to top, transparent 0%, var(--bg-color) 100%); }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .final-section { height: auto; min-height: 100vh; }
}

@media (max-width: 768px) {
    /* WICHTIG: Auf mobilen Geräten das feste Scroll-Snapping deaktivieren,
       da Inhalte sonst ungewollt abgeschnitten werden können! */
    html, body {
        overflow-y: auto; 
    }
    .scroll-container {
        height: auto;
        overflow-y: visible;
        scroll-snap-type: none;
    }
    section {
        height: auto;
        min-height: 100vh;
        scroll-snap-align: none;
        padding: 5rem 1rem 3rem 1rem; /* Bietet Raum fürs Menü oben */
    }

    /* Mobile Menu Anzeige */
    .mobile-menu-btn {
        display: block;
    }
    .navbar {
        padding: 1rem 1.5rem;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--glass-border);
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-links li a {
        display: block;
        padding: 1.5rem;
    }
    .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown-menu li a {
        padding: 1rem;
        color: var(--accent);
    }

    /* Typography & Layout Fixes für Mobile */
    .hero-section {
        padding-top: 100px;
    }
    .hero-content {
        padding: 1rem;
    }
    .hero-headline {
        font-size: 2.5rem;
    }
    .hero-subline {
        font-size: 1.1rem;
    }

    /* GEÄNDERT: .features-section und .features-split angepasst, 
       um Überlappung und falsche Reihenfolge zu beheben */
    .features-section {
        padding: 0;
        display: block;
        height: auto; 
    }
    .features-split {
        flex-direction: column; 
        height: auto; 
    }
    .features-left, .features-right {
        flex: none;
        height: auto;
        min-height: 50vh;
    }
    .features-left {
        padding: 3rem 1.5rem;
    }
    .features-right {
        border-left: none;
        border-bottom: 1px solid var(--glass-border);
    }
    .image-overlay {
        background: linear-gradient(to bottom, transparent 50%, var(--bg-color) 100%);
    }

    /* NEU & GEÄNDERT: .services-section und .process-section so anpassen,
       dass sie nicht mehr auf 100vh eingefroren sind und überlappen */
    .services-section, .process-section {
        height: auto;
        min-height: 100vh;
        display: block; /* Hebt die starre Flex-Zentrierung auf, die zu Abschneiden oben führt */
        padding: 6rem 0 3rem 0;
        overflow: visible;
    }

    .services-header h2, .process-header h2 {
        font-size: 2.2rem;
    }
    .services-container {
        gap: 2rem;
        padding: 1rem;
    }
    
    /* Timeline Fixes */
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 15px;
    }
    .timeline-item::before {
        left: 60px;
        border: medium solid var(--glass-border);
        border-width: 2px 0 0 0;
        border-color: rgba(108, 92, 231, 0.5) transparent transparent transparent;
    }
    .left::after, .right::after {
        left: 21px;
    }
    .right {
        left: 0%;
    }
    .timeline-content {
        padding: 1.5rem;
    }
    .step-number {
        font-size: 3rem;
        top: -15px;
        left: -10px;
    }

    .final-left {
        padding: 4rem 1.5rem;
    }
    .lumi-footer {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .chatbot-widget {
        right: 1rem;
        bottom: 1rem;
    }
    .chatbot-window {
        width: min(92vw, 360px);
        height: 460px;
    }
    .chatbot-intro-bubble {
        max-width: min(78vw, 240px);
    }
}