@charset "UTF-8";

/* =========================================
   1. FONTS & VARIABLES
   ========================================= */
/* Font imports moved to HTML for better control with display=swap */

:root {
    --color-gold: #D4AF37;
    --color-gold-dark: #8a7024; /* Shadow Gold from Palette */
    --color-brand-green: #39FF14; /* Neon Green */
    --color-bg-dark: #050505;
    --color-bg-card: #111111;
    --color-text-main: #ffffff;
    --color-text-muted: #9ca3af;
    --color-whatsapp: #25D366;
    
    /* Legacy Mapping for backward compatibility */
    --fk-green: #050505; /* Mapped to dark */
    --fk-lightgreen: #D4AF37; /* Mapped to gold */
}

/* =========================================
   2. GLOBAL RESET & BASE
   ========================================= */
* { 
    margin: 0; 
    padding: 0; 
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
    outline: none; 
}

::-moz-selection {
    background: var(--color-gold);
    color: black;
}

::selection {
    background: var(--color-gold);
    color: black;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* align-items: center; Removed for left-aligned layout */
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Allow text selection in inputs and legal text */
input, textarea, .form-input, .legal-content, .legal-content * {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    max-width: 100%;
    height: auto;
}

/* SVG Global Styles for consistent rendering */
svg {
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* =========================================
   3. BACKGROUND EFFECTS
   ========================================= */
.bg-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    -webkit-animation: breathe 10s ease-in-out infinite;
    animation: breathe 10s ease-in-out infinite;
}

.bg-glow-green {
    position: fixed;
    width: 600px;
    height: 600px;
    /* Subtle Neon Green Light Source from bottom right */
    background: radial-gradient(circle, rgba(57, 255, 20, 0.12) 0%, rgba(0,0,0,0) 70%);
    top: 80%;
    left: 80%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    -webkit-animation: breathe 12s ease-in-out infinite reverse;
    animation: breathe 12s ease-in-out infinite reverse;
}

.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJnoiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2cpIiBvcGFjaXR5PSIwLjUiLz48L3N2Zz4=');
}

/* Global Grid Pattern from end-to-end */
.global-grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0; /* Ensure it is in front of body bg but behind content */
    background-image: linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center top;
    /* Optional: Fade at bottom for depth */
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* =========================================
   4. LAYOUT COMPONENTS
   ========================================= */
.container {
    max-width: 1400px; /* Wider container for loud design */
    padding: 0 clamp(1.5rem, 4vw, 2rem);
    width: 100%;
    position: relative;
    z-index: 10;
    /* text-align: center; Removed */
}

/* Legal Page Specific Layout */
.legal-page-container {
    max-width: 900px;
    margin: 140px auto 80px;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: left;
}

/* New Main Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    z-index: 2000;
    background: transparent; /* Or slight tint if needed, but usually clean overlay */
    pointer-events: none; /* Let clicks pass through, but enable for children */
}

.main-header > * {
    pointer-events: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2rem; /* Big logo text */
    color: white;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.logo-text:hover {
    color: var(--color-gold);
}

/* Desktop Navigation in Header */
.desktop-nav {
    display: none; /* Hidden by default (mobile first) */
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex; /* Show only on Desktop */
    }
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--color-gold);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

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

@media (min-width: 1024px) {
    /* Show Desktop Nav, Hide Burger */
    .desktop-nav {
        display: flex;
        align-items: center;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
    .top-nav {
        display: none !important; /* Force hide overlay on desktop */
    }
}
.logo-box { 
    display: flex; /* Made visible again */
    width: 60px; /* Smaller for header */
    height: auto;
    background: transparent;
    align-items: center;
    justify-content: center;
    /* margin: 0; */ /* Reset margin */
    /* No animation on header logo generally */
    animation: none;
}

.logo-box img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.2));
    transition: filter 0.3s;
}

.logo-box:hover img {
    filter: drop-shadow(0 0 20px rgba(212,175,55,0.5));
}

/* =========================================
   5. TYPOGRAPHY
   ========================================= */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 100vh; /* Full screen hero */
    padding-top: 6rem; /* Space for header if needed */
    padding-bottom: 4rem;
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    /* Massive responsive font size for LOUD design */
    font-size: clamp(3.5rem, 11vw, 9rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-align: left;
    color: white;
    /* animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards; */
    animation: none; /* Let's keep it static or different animation for new style */
    opacity: 1;
}

.gradient-text {
    /* Keep the gradient but make it subtle or strictly gold/white */
    background: linear-gradient(to right, #ffffff, #e0c060, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shine 8s linear infinite;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    padding: 0; /* Remove padding */
    max-width: 600px;
    margin-left: 0; /* Left align */
    margin-right: auto;
    text-align: left;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
    opacity: 0;
}

.gradient-text-anim {
    /* Liquid Gold Gradient - Refined Metallic Flow */
    background: linear-gradient(
        110deg, 
        #8a7024 10%,      /* Shadow Gold */
        #D4AF37 40%,      /* Brand Gold */
        #ffffcc 50%,      /* High Shine */
        #D4AF37 60%,      /* Brand Gold */
        #8a7024 90%       /* Shadow Gold */
    );
    background-size: 200% auto;
    color: #D4AF37; /* Fallback */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineFlow 4s linear infinite;
    text-shadow: 0px 0px 20px rgba(212, 175, 55, 0.2); /* Glow */
}

@-webkit-keyframes shineFlow {
    to {
        background-position: 200% center;
    }
}

@keyframes shineFlow {
    to {
        background-position: 200% center;
    }
}

.subtitle strong {
    color: var(--color-gold);
    font-weight: 700;
}

/* Target Group Bar (Sub-Headline) */
.target-group-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    align-items: center;
}

.target-group-bar span.separator {
    color: var(--color-brand-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4); /* Glow effect for separators */
}

/* Hero Footer Bar REMOVED */

/* Hero Footer Bar removed/replaced */
.hero-footer-bar {
    margin-top: auto; /* Push to bottom of hero section */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding-top: 4rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-footer-bar span.separator {
    color: var(--color-gold);
    opacity: 0.5;
}

/* =========================================
   6. COMPONENTS (Cards, Badges, etc.)
   ========================================= */
/* Badge */
.hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-badges {
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 3rem;
    }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(212,175,55,0.3);
    background-color: rgba(212,175,55,0.05);
    border-radius: 999px;
    margin-bottom: 0;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    font-family: 'Space Mono', monospace;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
    opacity: 0;
    white-space: nowrap; /* Prevent text wrapping inside badge */
}
.status-badge span { animation: pulseGlow 2s infinite ease-in-out; }

/* Mobile optimization for badges */
@media (max-width: 768px) {
    .status-badge {
        font-size: 0.6rem;
        padding: 0.4rem 0.75rem;
        gap: 0.3rem;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
    }
    .status-badge svg {
        width: 10px !important;
        height: 10px !important;
    }
}

@media (max-width: 480px) {
    .status-badge {
        font-size: 0.55rem;
        padding: 0.35rem 0.65rem;
    }
}

.expert-label { 
    -webkit-animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
    opacity: 0;
}

/* Target Group Grid */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    padding: 2rem var(--spacing-container);
}

.target-card {
    opacity: 0;
    -webkit-animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    background: var(--color-bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(1.25rem, 4vw, 1.5rem);
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.target-card:nth-child(1) { -webkit-animation-delay: 0.6s; animation-delay: 0.6s; }
.target-card:nth-child(2) { -webkit-animation-delay: 0.7s; animation-delay: 0.7s; }
.target-card:nth-child(3) { -webkit-animation-delay: 0.8s; animation-delay: 0.8s; }

.target-card:hover {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.5);
    -webkit-box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
    background: -webkit-linear-gradient(315deg, #1a1a1a, #0d0d0d);
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
}

.target-icon { color: var(--color-gold); margin-bottom: 0.75rem; }
.target-title { font-weight: 700; color: white; margin-bottom: 0.25rem; font-size: 1rem; }
.target-desc { font-size: 0.8rem; color: var(--color-text-muted); }

/* Marquee / Laufendes Band */
.marquee-wrapper {
    width: 100vw; /* Full viewport width */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background: var(--color-gold);
    color: black;
    padding: 0.75rem 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
    transform: rotate(0deg) scale(1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    /* animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards; */
    opacity: 1; /* Make visible immediately */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scrollText 30s linear infinite;
}

.marquee-item {
    padding-right: 2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

@-webkit-keyframes scrollText {
    0% { -webkit-transform: translateX(0); transform: translateX(0); }
    100% { -webkit-transform: translateX(-33.33%); transform: translateX(-33.33%); }
}

@keyframes scrollText {
    0% { -webkit-transform: translateX(0); transform: translateX(0); }
    100% { -webkit-transform: translateX(-33.33%); transform: translateX(-33.33%); }
}

/* About Section */
.about-section-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
    padding: 3rem var(--spacing-container);
}
.about-image img { width: 300px; height: 300px; border-radius: 50%; object-fit: cover; border: 3px solid var(--color-gold); }
.about-section { border-left: 2px solid var(--color-gold); padding-left: 1.5rem; }
.about-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.about-text { font-size: 0.95rem; color: #ddd; line-height: 1.6; margin-bottom: 1rem; }

/* FAQ Section */
.faq-section { text-align: left; margin: 4rem 0; animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards; opacity: 0; position: relative; overflow: hidden; }
.faq-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0.1em; border-left: 3px solid var(--color-gold); padding-left: 1rem; color: white; animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1.0s forwards; opacity: 0; }
.faq-item { background: var(--color-bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: clamp(1.25rem, 2.5vw, 2rem); margin-bottom: 1rem; overflow: hidden; transition: all 0.3s ease; opacity: 0; animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.faq-item:nth-child(2) { animation-delay: 1.1s; } 
.faq-item:nth-child(3) { animation-delay: 1.2s; }
.faq-item:nth-child(4) { animation-delay: 1.3s; }

.faq-trigger { width: 100%; padding: 1.25rem; background: none; border: none; color: white; font-weight: 700; text-align: left; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: inherit; }
.faq-trigger:hover { color: var(--color-gold); }
.faq-icon { width: 20px; height: 20px; stroke: var(--color-gold); transition: transform 0.3s ease; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: rgba(0,0,0,0.1); }
.faq-text { padding: 0 1.25rem 1.25rem 1.25rem; color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.6; }

/* Buttons & Navigation */
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-start; margin-bottom: 3rem; animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1.4s forwards; opacity: 0; }
.btn { padding: 1rem 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none; border-radius: 999px; transition: all 0.3s; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; border: none; }
.btn-gold { position: relative; overflow: hidden; background-color: var(--color-gold); color: black; box-shadow: 0 0 30px rgba(212, 175, 55, 0.2); }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); background: transparent; color: white; }
.btn-outline:hover { border-color: var(--color-gold); color: var(--color-gold); }
.btn-gold:hover { background-color: white; transform: translateY(-2px); }

/* Electric Button - New Laser Frame Style */
.btn-electric {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: rgba(0,0,0,0.8) !important;
    color: white !important;
    border: 1px solid var(--color-gold); /* Default Gold Frame */
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4), inset 0 0 5px rgba(212, 175, 55, 0.1);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 999px; /* Pill shape */
}

/* Green Electric Border Variant - "The Laser Frame" */
.btn-electric-green {
    border-color: var(--color-brand-green) !important;
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.5), inset 0 0 5px rgba(57, 255, 20, 0.1) !important;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.8) !important;
    background: rgba(0,0,0,0.9) !important;
    /* Subtle breathing pulse to incite clicking */
    animation: neon-pulse 3s infinite ease-in-out !important;
}

/* Hover Effect: Overload - Stops pulse and goes full power */
.btn-electric-green:hover {
    animation: none !important;
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.8), inset 0 0 10px rgba(57, 255, 20, 0.3) !important;
    background: rgba(57, 255, 20, 0.05) !important;
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(57, 255, 20, 1) !important;
}

/* Cleanup old complex electronic animations */
.btn-electric::before, .btn-electric::after, .btn-electric-green::before {
    display: none;
    animation: none;
    content: none;
}

/* New Breathing Animation */
@keyframes neon-pulse {
    0% {
        box-shadow: 0 0 8px rgba(57, 255, 20, 0.5), inset 0 0 5px rgba(57, 255, 20, 0.1);
        border-color: rgba(57, 255, 20, 0.6);
    }
    50% {
        box-shadow: 0 0 18px rgba(57, 255, 20, 0.7), inset 0 0 8px rgba(57, 255, 20, 0.2);
        border-color: rgba(57, 255, 20, 1.0);
    }
    100% {
        box-shadow: 0 0 8px rgba(57, 255, 20, 0.5), inset 0 0 5px rgba(57, 255, 20, 0.1);
        border-color: rgba(57, 255, 20, 0.6);
    }
}

/* Apply Electric Effect to Calendly Badge to match new Laser Frame */
.calendly-badge-widget .calendly-badge-content {
    background: rgba(5, 5, 5, 0.95) !important; /* Slightly transparent dark background */
    border: 1px solid var(--color-brand-green) !important;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3), inset 0 0 10px rgba(57, 255, 20, 0.05) !important; /* Refined Glow */
    border-radius: 50px !important; /* Clean Pill Shape */
    padding: 10px 25px !important; /* Better padding */
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    animation: neon-pulse 3s infinite ease-in-out !important; /* Add pulse here too */
    height: auto !important;
    min-height: 45px !important;
    color: white !important;
}

/* Hover Effect for Calendly Badge */
.calendly-badge-widget .calendly-badge-content:hover {
    animation: none !important; /* Stop pulse on hover */
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.6), inset 0 0 10px rgba(57, 255, 20, 0.2) !important;
    background: rgba(57, 255, 20, 0.1) !important;
    transform: translateY(-2px) !important;
    cursor: pointer !important;
    border-color: var(--color-brand-green) !important;
}

.calendly-badge-widget .calendly-badge-content::before,
.calendly-badge-widget .calendly-badge-content::after {
    display: none !important;
    content: none !important;
}

/* Ensure text is white and visible */
.calendly-badge-widget .calendly-badge-content span {
    color: white !important; 
    font-weight: 600 !important;
    font-family: 'Space Grotesk', sans-serif !important;
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.6) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    display: block !important;
    font-size: 0.9rem !important;
}

/* 3. MARQUEE / TICKER ANIMATION */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1.5rem 0;
    margin: 3rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

@media (max-width: 768px) {
    .marquee-wrapper {
        width: 100vw;
        max-width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        -webkit-mask-image: linear-gradient(to right, black 0%, black 92%, transparent);
        mask-image: linear-gradient(to right, black 0%, black 92%, transparent);
    }
}

.marquee-content {
    display: inline-block;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--color-brand-green);
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-right: 0;
}

@-webkit-keyframes marquee-scroll {
    from { -webkit-transform: translateX(0); transform: translateX(0); }
    to { -webkit-transform: translateX(-33.333%); transform: translateX(-33.333%); }
}

@keyframes marquee-scroll {
    from { -webkit-transform: translateX(0); transform: translateX(0); }
    to { -webkit-transform: translateX(-33.333%); transform: translateX(-33.333%); }
}

/* 4. BUTTON SHINE ANIMATION */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
}

.btn:hover::after {
    animation: shine 0.75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* =========================================
   6. VISUAL EFFECTS (Patterns, Neon)
   ========================================= */

.neon-text {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4), 
                 0 0 20px rgba(212, 175, 55, 0.2), 
                 0 0 40px rgba(212, 175, 55, 0.1);
}

.pattern-grid {
    background-image: linear-gradient(rgba(57, 255, 20, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(57, 255, 20, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
}

.pattern-dots {
    background-image: radial-gradient(rgba(57, 255, 20, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
}

.pattern-lines {
    background-image: repeating-linear-gradient(
        45deg,
        rgba(57, 255, 20, 0.04),
        rgba(57, 255, 20, 0.04) 1px,
        transparent 1px,
        transparent 15px
    );
}

.pattern-carbon {
    background-color: transparent;
    background-image: radial-gradient(black 15%, transparent 16%),
                      radial-gradient(black 15%, transparent 16%);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    /* opacity trick: instead of opacity: 0.2, we use a dark tint */
    background-color: rgba(0,0,0,0.8);
}

/* Helper to ensure content stays readable */
.section-relative {
    position: relative;
    z-index: 1;
}

/* =========================================
   7. MAIN FOOTER
   ========================================= */
.main-footer {
    background-color: #000;
    padding: 4rem 5% 2rem 5%;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Center a full-width block in a container */
}

.footer-content {
    max-width: 1200px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand-col {
    max-width: 360px;
}

.footer-logo {
    width: 140px;
    height: auto;
}

.footer-claim {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #888;
}

.social-icons-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-links-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-stack a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links-stack a:hover {
    color: var(--color-gold);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        justify-items: start;
    }
    .footer-brand-col {
        max-width: none;
    }
    .social-icons-footer {
        justify-content: flex-start;
    }
    .footer-links-stack {
        align-items: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }
    .footer-links {
        justify-content: flex-start;
    }
}

/* =========================================
   8. INTERACTIVE MODULES (Modal & Forms)
   ========================================= */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 200; display: none; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(5px); }
.modal-overlay.active { display: flex; animation: fadeIn 0.3s ease-out; }
.modal-content { 
        padding: 1.5rem; 
        width: 95%; 
        max-height: 85vh; /* Limit height */
        overflow-y: auto; /* Enable scrolling */
        margin-top: 20px; /* Safety margin */
}
.step { display: none; animation: slideUp 0.4s ease-out; }
.step.active { display: block; }

.form-option { display: block; width: 100%; padding: 1rem; margin-bottom: 0.5rem; background: #222; border: 1px solid #333; border-radius: 1rem; color: white; text-align: left; cursor: pointer; transition: all 0.2s; font-weight: 600; font-family: 'Inter', sans-serif; }
.form-option:hover { border-color: var(--color-gold); background: #2a2a2a; color: var(--color-gold); }
.form-input { width: 100%; padding: 1rem; background: #222; border: 1px solid #333; border-radius: 1rem; color: white; margin-bottom: 1rem; font-family: 'Inter', sans-serif; }
.form-input:focus { border-color: var(--color-gold); }

/* --- PROGRESS BAR (Modal) --- */
.progress-bar {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 999px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--color-gold);
    width: 0%; /* JS will update this */
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* =========================================
   10. COOKIE BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 2rem;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 10000;
    animation: fadeInUp 0.5s ease-out;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.cookie-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    margin-left: 0.25rem;
}
.cookie-link:hover { text-decoration: underline; }

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

.btn-cookie {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-cookie-gold {
    background: var(--color-gold);
    color: black;
    border: none;
}
.btn-cookie-gold:hover {
    background: white;
    transform: translateY(-1px);
}

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

.cookie-banner.fade-out {
    opacity: 0;
    transform: translate(-50%, 20px);
    transition: all 0.5s ease;
}

/* =========================================
   11. MOBILE MENU
   ========================================= */

/* Mobile Navigation Overlay */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center; /* Horizontally centered */
    justify-content: flex-start; /* Start from top to allow scrolling */
    padding-top: 120px; /* Push down to "visual middle" start */
    padding-bottom: 50px;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto; /* Enable scrolling */
}

.top-nav.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.top-nav a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.top-nav a:hover {
    color: var(--color-gold);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001; /* Above nav overlay */
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle { 
        display: none !important; 
    }
}

/* =========================================
   12. MOBILE & TABLET OPTIMIZATIONS
   ========================================= */
/* Tablets & Mobile Devices */
@media (max-width: 768px) {
    /* Container & Layout */
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Header & Logo */
    .main-header {
        padding: 1.5rem 1.25rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-box {
        width: 45px;
    }

    /* Typography Responsive Adjustments */
    h1 {
        font-size: clamp(2.5rem, 11vw, 4rem);
        margin-bottom: 1.5rem;
        word-break: break-word; 
        hyphens: auto;
        line-height: 1.1;
    }

    .subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 2.5rem;
        max-width: 100%;
    }

    /* Stack Buttons */
    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Card Grid */
    .target-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .target-card {
        flex: 1 1 100%;
        min-width: 0;
    }

    /* About Section */
    .about-section-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .about-image {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .about-image img {
        width: 280px;
        height: 280px;
    }
    
    .about-section {
        border-left: 2px solid var(--color-gold);
        padding-left: 1.5rem;
        border-top: none;
    }

    /* Floating Buttons Mobile Optimization */
    /* Position WhatsApp clearly on LEFT BOTTOM */
    .whatsapp-float {
        width: 56px !important;
        height: 56px !important;
        bottom: 20px !important;
        left: 20px !important;
        font-size: 24px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    }

    /* Position Calendly clearly on RIGHT BOTTOM */
    /* We override the default right: 20px bottom: 20px or whatever it is */
    .calendly-badge-widget {
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important; /* Prevent full width */
        width: auto !important;
        max-width: 250px; /* Limit width */
    }

    .calendly-badge-widget .calendly-badge-content {
        padding: 12px 20px !important; 
        font-size: 0.85rem !important;
        min-height: 48px !important;
        /* Ensure text doesn't overflow */
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Footer */
    .main-footer {
        padding-bottom: 160px; /* HUGE bottom padding so buttons don't cover content */
        margin-left: 0;
        width: 100%;
    }
}

/* =========================================
   12. KEYFRAMES ANIMATIONS
   ========================================= */

@-webkit-keyframes fadeInUp {
    from { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

/* =========================================
   BEFORE/AFTER COMPARISON SLIDER
   ========================================= */
.before-after-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(5,5,5,1) 100%);
    position: relative;
    overflow: hidden;
}

.before-after-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.comparison-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 4rem;
    user-select: none;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: clamp(1.5rem, 3vw, 2.5rem);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 2px solid rgba(212,175,55,0.2);
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.comparison-after {
    z-index: 1;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 30px;
    z-index: 10;
    letter-spacing: 0.05em;
}

.comparison-label-before {
    left: 20px;
    background: rgba(255,68,68,0.9);
    color: white;
    box-shadow: 0 4px 15px rgba(255,68,68,0.3);
}

.comparison-label-after {
    right: 20px;
    background: rgba(57,255,20,0.9);
    color: black;
    box-shadow: 0 4px 15px rgba(57,255,20,0.3);
}

.old-website-mockup {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.old-website-header {
    margin-bottom: 1rem;
}

.old-website-content {
    flex: 1;
    opacity: 0.6;
}

.old-website-issues {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.issue-badge {
    padding: 0.4rem 0.8rem;
    background: rgba(255,68,68,0.15);
    border: 1px solid rgba(255,68,68,0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #ff4444;
    font-weight: 600;
}

.modern-website-mockup {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.modern-website-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.modern-hero-text {
    margin-top: 3rem;
}

.modern-website-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.benefit-badge {
    padding: 0.4rem 0.8rem;
    background: rgba(57,255,20,0.15);
    border: 1px solid rgba(57,255,20,0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--color-brand-green);
    font-weight: 600;
}

.comparison-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--color-gold);
    transform: translateX(-50%);
    z-index: 3;
    cursor: ew-resize;
    box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 4px 20px rgba(212,175,55,0.4);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slider-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-button svg {
    width: 20px;
    height: 20px;
    color: black;
}

.comparison-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(57,255,20,0.05) 100%);
    border-radius: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid rgba(212,175,55,0.2);
}

@media (max-width: 768px) {
    .comparison-container {
        height: 400px;
    }
    
    .old-website-mockup,
    .modern-website-mockup {
        padding: 1.5rem;
    }
    
    .comparison-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        top: 15px;
    }
    
    .comparison-label-before {
        left: 15px;
    }
    
    .comparison-label-after {
        right: 15px;
    }
    
    .slider-button {
        width: 50px;
        height: 50px;
    }
    
    .slider-button svg {
        width: 16px;
        height: 16px;
    }
    
    .issue-badge,
    .benefit-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
}

@-webkit-keyframes slideUp {
    from { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@-webkit-keyframes breathe {
    0%, 100% { opacity: 0.5; -webkit-transform: translate(-50%, -50%) scale(1); transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; -webkit-transform: translate(-50%, -50%) scale(1.1); transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes breathe {
    0%, 100% { opacity: 0.5; -webkit-transform: translate(-50%, -50%) scale(1); transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; -webkit-transform: translate(-50%, -50%) scale(1.1); transform: translate(-50%, -50%) scale(1.1); }
}

@-webkit-keyframes pulseGlow {
    0%, 100% { -webkit-box-shadow: 0 0 5px rgba(212,175,55,0.5); box-shadow: 0 0 5px rgba(212,175,55,0.5); }
    50% { -webkit-box-shadow: 0 0 20px rgba(212,175,55,0.8); box-shadow: 0 0 20px rgba(212,175,55,0.8); }
}

@keyframes pulseGlow {
    0%, 100% { -webkit-box-shadow: 0 0 5px rgba(212,175,55,0.5); box-shadow: 0 0 5px rgba(212,175,55,0.5); }
    50% { -webkit-box-shadow: 0 0 20px rgba(212,175,55,0.8); box-shadow: 0 0 20px rgba(212,175,55,0.8); }
}

@-webkit-keyframes scaleIn {
    from { opacity: 0; -webkit-transform: scale(0.9); transform: scale(0.9); }
    to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
}

@keyframes scaleIn {
    from { opacity: 0; -webkit-transform: scale(0.9); transform: scale(0.9); }
    to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
}

/* Calendly Container Styling */
.calendly-section-wrapper {
    background: var(--color-bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem 1rem;
    margin-bottom: 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* Contact Bar */
.contact-bar {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    z-index: 1200;
}

.contact-item {
    width: 56px;
    height: 56px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(5, 5, 5, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25);
    -webkit-box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
    -webkit-transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.contact-item:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.6);
    -webkit-box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.contact-item--green {
    border-color: rgba(57, 255, 20, 0.35);
    color: var(--color-brand-green);
    -webkit-box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.contact-item--green:hover {
    border-color: rgba(57, 255, 20, 0.8);
    -webkit-box-shadow: 0 0 28px rgba(57, 255, 20, 0.35);
    box-shadow: 0 0 28px rgba(57, 255, 20, 0.35);
}

.contact-item:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .contact-bar {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }
    .contact-item {
        width: 54px;
        height: 54px;
        min-width: 48px;
        min-height: 48px;
        border-radius: 14px;
    }
}

/* Social Icons & Footer */
.social-icons { 
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    gap: 1.5rem; 
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    margin-top: auto; 
    margin-bottom: 2rem; 
}
.social-link { 
    opacity: 0; 
    color: white; 
    -webkit-transition: all 0.3s; 
    transition: all 0.3s; 
    -webkit-animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; 
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; 
}

.social-link:hover { 
    color: var(--color-gold); 
    -webkit-transform: translateY(-3px); 
    -ms-transform: translateY(-3px); 
    transform: translateY(-3px); 
}

.social-link svg { 
    width: 24px !important; 
    height: 24px !important; 
    display: block; 
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.icon-lg { 
    width: 24px !important; 
    height: 24px !important; 
    fill: none; 
    stroke: currentColor; 
    stroke-width: 2; 
    stroke-linecap: round; 
    stroke-linejoin: round; 
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.footer-links { 
    -webkit-animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1.9s forwards; 
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1.9s forwards; 
    opacity: 0; 
    font-size: 0.8rem; 
    color: #555; 
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;       
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px; /* Pill shape */
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
    opacity: 0;
}

/* =========================================
   3D NAVIGATION MENU (Adapted from Request)
   ========================================= */
.nav-3d {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    /* The magic 3D perspective angle - REMOVED for straight layout */
    /* transform: rotate(-30deg) skew(25deg); */
    transition: 0.5s;
    /* Reset any default flex gap if inherited */
    gap: 0; 
}

.nav-3d li {
    position: relative;
    list-style: none;
    z-index: var(--i);
    transition: 0.5s;
    margin: 0 15px; /* Horizontal spacing */
}

/* --- 3D FACES (Pseudo Elements) --- */

/* The Side Face (Left) */
.nav-3d li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px; /* Depth scaled down for header integration */
    width: 20px;
    height: 100%;
    background: #0f0f0f; /* Darker side */
    transform-origin: right;
    transform: skewY(45deg);
    transition: 0.5s;
}

/* The Top Face */
.nav-3d li::after {
    content: '';
    position: absolute;
    top: -20px; /* Depth scaled down */
    left: 0;
    width: 100%;
    height: 20px;
    background: #1a1a1a;
    transform-origin: bottom;
    transform: skewX(45deg);
    transition: 0.5s;
    box-shadow: -60px 60px 20px rgba(0,0,0,0.25);
}

/* The Main Face (Link/Content) */
.nav-3d li a {
    text-decoration: none;
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: 0.5s;
    padding: 12px 25px;
    background: #222;
    border: 1px solid rgba(255,255,255,0.05);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Remove default link hover effects if any */
.nav-3d li a:hover {
    text-decoration: none;
}

/* --- HOVER EFFECTS --- */

.nav-3d li:hover {
    /* Pops out towards top-left */
    transform: translateX(-20px) translateY(-10px); 
    background: transparent; /* Container needs no bg */
}

.nav-3d li:hover::before {
    background: var(--item-color, #D4AF37);
    filter: brightness(0.6);
}

.nav-3d li:hover::after {
    background: var(--item-color, #D4AF37);
    filter: brightness(0.8);
    box-shadow: -80px 80px 20px rgba(0,0,0,0.25);
}

.nav-3d li:hover a {
    background: var(--item-color, #D4AF37);
    color: #000; /* Black text on Gold usually looks best */
    box-shadow: 0 0 15px var(--item-color, rgba(212, 175, 55, 0.4));
    border-color: transparent;
}

/* Mobile Vertical Layout applied within Top-Nav */
.top-nav .nav-3d {
    flex-direction: column;
    align-items: center; /* Center items in the list */
    transform: none; /* Straight layout for mobile */
    margin-left: 0; /* Remove left offset */
}

.top-nav .nav-3d li {
    margin: 0 0 30px 0; /* Vertical spacing */
    width: auto; /* Allow auto width for centering */
}

.top-nav .nav-3d li a {
    width: 200px; /* Fixed width for consistent blocks */
    justify-content: flex-start;
    padding-left: 20px;
}

/* Override existing Desktop Nav styles to allow this new structure */
.desktop-nav .nav-3d {
    /* Ensure flex layout is active for desktop */
    display: flex;
    margin-top: 20px;
    margin-left: 10px;
}

/* =========================================
   ELECTRIC BORDERS & FLIP CARDS
   ========================================= */

/* --- ELECTRIC BORDER LOGIC --- */
.electric-wrapper {
    position: relative;
    padding: 2px; /* Outer contour thickness */
    background: transparent;
    overflow: hidden;
    border-radius: 999px;
    display: inline-flex; /* Changed from flex to inline-flex to wrap content */
    justify-content: center;
    align-items: center;
}

.electric-wrapper.electric-outline {
    border-radius: 999px;
}

/* Der rotierende Lichteffekt dahinter */
.electric-wrapper::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 400%;
    background: conic-gradient(
        transparent, 
        var(--color-gold), 
        transparent 30%
    );
    animation: rotate 3s linear infinite;
    top: -150%; /* Center the rotation */
    left: -25%;
}

/* Zweiter Lichteffekt für mehr Tiefe */
.electric-wrapper::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 400%;
    background: conic-gradient(
        transparent, 
        #39ff14, /* Green accent */ 
        transparent 30%
    );
    animation: rotate 3s linear infinite reverse;
    animation-delay: -1.5s;
    top: -150%;
    left: -25%;
}

.electric-content {
    position: relative;
    z-index: 1;
    background: var(--color-bg-dark); /* Solid inner body */
    width: 100%;
    height: 100%;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2px;
}

.electric-content.electric-outline-inner {
    border-radius: 999px;
}

.btn-electric-outline {
    background: var(--color-bg-dark);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    border-radius: 999px;
    padding: 0.85rem 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-electric-outline:hover {
    color: var(--color-gold);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.btn-label {
    position: relative;
    z-index: 2;
}

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

@keyframes auto-flip {
    0%, 45% { transform: rotateY(0deg); }
    55%, 95% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

/* --- 3D FLIP CARD LOGIC --- */
.flip-card {
    background-color: transparent;
    width: 100%; /* Adapts to container */
    max-width: 350px;
    height: 450px; /* Fixed height for flip effect */
    perspective: 1000px; /* Erzeugt den 3D-Raum */
    margin: 0 auto;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    animation: auto-flip 8s ease-in-out infinite;
}

@media (hover: hover) {
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }
}

.flip-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.flip-card-front {
    background-color: var(--color-bg-card);
    color: white;
}

.flip-card-back {
    background-color: #050505;
    color: white;
    transform: rotateY(180deg);
    background-image: radial-gradient(circle at top right, #1e1e1e, #050505);
}

.flip-card-back .electric-wrapper {
    margin-top: 1.5rem;
}

.flip-card-back .btn-electric-outline {
    padding: 0.65rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

/* Avatar Placeholder replacement for Flip Card */
.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--color-gold), #39ff14);
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.back-btn {
    margin-top: 20px;
    padding: 10px 25px;
    border-radius: 20px;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
}

.back-btn:hover {
    background: var(--color-gold);
    color: black;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* =========================================
   LEGAL PAGE STYLES (Datenschutz / Impressum)
   Moved from datenschutz.html HTML
   ========================================= */

/* Update legal-page-container if needed, or rely on cascading. Use specificity if needed. */
.legal-page-container {
    max-width: 900px;
    margin: 140px auto 80px;
    padding: 0 20px;
}

.legal-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: clamp(20px, 5vw, 60px);
    border-radius: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.05em;
    color: white;
    /* Override potential conflicts */
    line-height: 1.1;
}

.legal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: var(--color-gold, #D4AF37);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.legal-content p {
    margin-bottom: 15px;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content b {
    color: white;
    font-weight: 600;
}

.legal-content a {
    color: var(--color-gold, #D4AF37);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.legal-content a:hover {
    border-bottom-color: var(--color-gold, #D4AF37);
}

/* Ensure back-link hover works specifically */
.back-link:hover {
    color: var(--color-gold, #D4AF37) !important;
}

/* =========================================
   HERO SECTION STYLES
   ========================================= */

/* Gastro Atmosphere Effects - Subtle and Behind Content */
.gastro-atmosphere {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.steam-effect {
    position: absolute;
    width: 140px;
    height: 220px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.4) 0%, rgba(212,175,55,0.25) 35%, rgba(255,255,255,0.15) 55%, transparent 75%);
    filter: blur(20px);
    opacity: 0;
    animation: steam-rise 10s ease-in-out infinite;
    will-change: transform, opacity;
}

.steam-1 {
    bottom: 15%;
    left: 12%;
    animation-delay: 0s;
}

.steam-2 {
    bottom: 10%;
    left: 58%;
    animation-delay: 3s;
    width: 90px;
    height: 160px;
}

.steam-3 {
    bottom: 20%;
    left: 38%;
    animation-delay: 6s;
    width: 85px;
}

.steam-4 {
    bottom: 8%;
    left: 25%;
    animation-delay: 2s;
    width: 95px;
    height: 170px;
}

.steam-5 {
    bottom: 18%;
    left: 70%;
    animation-delay: 7s;
    width: 80px;
    height: 155px;
}

.steam-6 {
    bottom: 12%;
    left: 48%;
    animation-delay: 9s;
    width: 88px;
}

@keyframes steam-rise {
    0% {
        transform: translateY(0) scale(0.9) translateX(0);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    50% {
        opacity: 1;
        transform: translateY(-80px) scale(1.2) translateX(12px);
    }
    75% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(-150px) scale(1.5) translateX(-8px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .steam-effect {
        width: 80px;
        height: 140px;
        filter: blur(20px);
    }
    
    .steam-4,
    .steam-5,
    .steam-6 {
        display: none;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    padding: clamp(4rem, 8vw, 8rem) 0 clamp(3rem, 6vw, 6rem);
    overflow: hidden;
    background: transparent;
}

.hero-background-image {
    position: absolute;
    top: 5%;
    right: 0;
    width: 65%;
    height: 88%;
    background-image: url('Images/hero_florian_bild.png');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 0;
    
    /* Bento Style 2026 - Moderate corner rounding */
    border-radius: clamp(1.5rem, 3vw, 3rem);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        0 0 80px rgba(212, 175, 55, 0.12),
        inset 0 -1px 1px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(2px);
}

.hero-background-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.15), transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.08), transparent 50%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    mix-blend-mode: overlay;
    border-radius: inherit;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.2vw, 2rem);
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.hero-layout-bg {
    position: relative;
    overflow: hidden;
}

.hero-layout-bg::before {
    display: none;
}

.hero-layout-bg::after {
    display: none;
}

.hero-main {
    min-width: 0;
    padding-right: clamp(0.2rem, 1.2vw, 1rem);
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-main .gradient-text-anim {
    max-width: none;
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
    text-wrap: balance;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    font-style: italic;
    color: #f1c40f;
    background: linear-gradient(90deg, 
        #FFE66D 0%, 
        #f1c40f 25%, 
        #d4af37 50%, 
        #f1c40f 75%, 
        #FFE66D 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 40px rgba(241, 196, 15, 0.3);
    text-transform: uppercase;
    animation: gradient-flow 4s ease infinite;
}

.hero-main .gradient-text-anim span {
    display: block;
}

.subtitle-upgrade {
    max-width: 75ch;
    line-height: 1.5;
    margin-top: 2rem;
}

.subtitle-upgrade .subtitle-kicker {
    display: block;
    font-weight: 600;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    color: #f2f2f2;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.subtitle-upgrade .subtitle-punch {
    display: block;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.04em;
    color: #d4af37;
    text-transform: uppercase;
}

.hero-main .target-group-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.25rem 0 0.95rem;
}

.hero-main .target-group-bar span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: clamp(0.78rem, 0.9vw, 0.94rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #e9e9e9;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 999px;
    padding: 0.18rem 0.62rem;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
    opacity: 0;
}

.hero-cta-group .btn {
    font-size: 0.9rem;
    padding: 1rem 2rem;
    white-space: nowrap;
    line-height: 1.4;
}

.hero-cta-group .btn-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.hero-cta-group svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        margin-top: 2rem;
    }
    
    .hero-cta-group .electric-wrapper {
        width: 100%;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 1rem 1.5rem;
    }
}

@keyframes hero-grid-pulse {
    0% {
        opacity: 0.38;
    }
    50% {
        opacity: 0.62;
    }
    100% {
        opacity: 0.38;
    }
}

@keyframes hero-scan {
    0% {
        transform: translateX(-45%);
    }
    100% {
        transform: translateX(45%);
    }
}

@keyframes gradient-flow {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

/* Hero Responsive Styles */
@media (max-width: 980px) {
    .hero-section {
        min-height: 70vh;
        padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 4rem);
    }

    .hero-background-image {
        top: -8%;
        width: 100%;
        height: 55%;
        opacity: 0.7;
        background-position: 30% 15%;
        background-size: 140%;
        border-radius: 3rem;
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 25%, rgba(0,0,0,0.6) 65%, rgba(0,0,0,0.3) 85%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 25%, rgba(0,0,0,0.6) 65%, rgba(0,0,0,0.3) 85%, transparent 100%);
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-main {
        padding-right: 0;
    }

    .hero-main .gradient-text-anim {
        font-size: clamp(2.5rem, 12vw, 5rem);
        line-height: 0.9;
    }

    .hero-main .target-group-bar {
        gap: 0.35rem;
    }

    .hero-main .target-group-bar span {
        font-size: clamp(0.74rem, 3.4vw, 0.88rem);
        padding: 0.14rem 0.52rem;
    }

    .subtitle-upgrade .subtitle-kicker {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }
}

@media (min-width: 981px) {
    .hero-background-image {
        background-size: cover;
        background-position: center 20%;
    }
}

@media (max-width: 480px) {
    .hero-background-image {
        top: -10%;
        height: 50%;
        background-position: 35% 18%;
        background-size: 155%;
        border-radius: 2.5rem;
        opacity: 0.65;
    }
}

@media (min-width: 1400px) {
  .hero-background-image {
    width: 70%;
  }
}/* Identity Section Styles */
.identity-section {
    margin: 6rem 0;
    padding: 4rem 2rem;
    background: radial-gradient(circle at center, rgba(20,20,20,0.8), rgba(0,0,0,0.9));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-left: none;
    border-right: none;
    position: relative;
    text-align: center;
}

.identity-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--color-gold);
    box-shadow: 0 0 15px var(--color-gold);
}

.identity-section .section-label {
    font-family: 'Space Mono', monospace;
    color: var(--color-gold);
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.identity-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.identity-section h2 .neon-text {
    color: white;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.identity-section p {
    font-family: 'Inter', sans-serif;
    color: #bbb;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.identity-section .electric-wrapper {
    display: inline-block;
}

/* Flip Card Styles */
.about-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
}

.flip-card-front h3 {
    margin-top: 1rem;
    color: var(--color-gold);
}

.flip-card-front p {
    color: #888;
}

.flip-card-back h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.flip-card-back p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ddd;
}

.flip-card-back .electric-wrapper {
    margin-bottom: 0.5rem;
}

.about-text-highlight {
    color: var(--color-gold);
    font-weight: bold;
}

/* Status Badge Variants */
.status-badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--color-gold);
}

.status-badge-green {
    border-color: rgba(57, 255, 20, 0.4);
    background-color: rgba(57, 255, 20, 0.08);
    color: var(--color-brand-green);
}

.status-badge-white {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ddd;
}

.status-badge svg {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    vertical-align: middle;
    display: inline-block;
}

/* Expert Label */
.expert-label {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/* Target Card Icons */
.target-icon svg {
    width: 24px;
    height: 24px;
}

/* Modal Close Button */
.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.modal-close-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* =========================================
   VORTEILE SECTION STYLES
   ========================================= */
#vorteile {
    padding: 6rem 0;
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

#vorteile h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 2rem;
    color: white;
}

/* Conversion CTA Group */
.vorteile-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
    opacity: 0;
}

.vorteile-cta-group .btn {
    font-size: 0.85rem;
    padding: 0.9rem 1.8rem;
    white-space: nowrap;
}

.vorteile-cta-group svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .vorteile-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .vorteile-cta-group .electric-wrapper {
        width: 100%;
    }
    
    .vorteile-cta-group .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.8rem;
        padding: 1rem 1.5rem;
    }
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
    opacity: 0;
}

.vorteil-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: clamp(2rem, 5vw, 3rem);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vorteil-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.vorteil-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.3);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.4),
        0 0 0 1px rgba(212,175,55,0.1) inset;
}

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

.vorteil-card-highlight {
    border: 2px solid rgba(212,175,55,0.4);
    background: linear-gradient(135deg, rgba(212,175,55,0.05), var(--color-bg-card));
}

.vorteil-card-highlight:hover {
    border-color: var(--color-gold);
    box-shadow: 
        0 20px 60px rgba(212,175,55,0.3),
        0 0 0 1px rgba(212,175,55,0.2) inset;
}

.vorteil-icon {
    width: 56px;
    height: 56px;
    background: rgba(212,175,55,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.vorteil-card:hover .vorteil-icon {
    background: rgba(212,175,55,0.2);
    transform: scale(1.1) rotate(5deg);
}

.vorteil-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.vorteil-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand-green);
    margin-bottom: 0.75rem;
    font-family: 'Space Mono', monospace;
    position: relative;
    z-index: 1;
}

.vorteil-label-highlight {
    color: var(--color-gold);
    font-style: italic;
    font-weight: 800;
}

.vorteil-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.vorteil-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.vorteil-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.vorteil-list li {
    font-size: 0.8rem;
    color: #999;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.vorteil-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--color-brand-green);
    font-size: 0.9rem;
}

.vorteil-card-highlight .vorteil-list li::before {
    color: var(--color-gold);
}

/* Responsive adjustments for Vorteile */
@media (max-width: 768px) {
    #vorteile {
        padding: 4rem 0;
    }
    
    .vorteile-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vorteil-card {
        padding: 2rem 1.5rem;
        border-radius: 2rem;
    }
    
    .vorteil-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        margin-bottom: 1rem;
    }
    
    .vorteil-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .vorteil-title {
        font-size: 1.2rem;
    }
    
    .vorteil-desc {
        font-size: 0.85rem;
    }
    
    .vorteil-list li {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }
}

@media (max-width: 480px) {
    #vorteile h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .vorteile-grid {
        gap: 1.25rem;
    }
    
    .vorteil-card {
        padding: 1.75rem 1.25rem;
        border-radius: 1.75rem;
    }
}