/* IAP-IT - Cyber Glassmorphism Design */

/* Local Font Declarations - DSGVO Compliant */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: optional;
    src: url('/fonts/inter-v20-latin-300.woff2') format('woff2'),
         url('/fonts/inter-v20-latin-300.woff') format('woff');
    /* Fallback metrics to match Arial dimensions */
    size-adjust: 100%;
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: optional;
    src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2'),
         url('/fonts/inter-v20-latin-regular.woff') format('woff');
    /* Fallback metrics to match Arial dimensions */
    size-adjust: 100%;
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: optional;
    src: url('/fonts/inter-v20-latin-600.woff2') format('woff2'),
         url('/fonts/inter-v20-latin-600.woff') format('woff');
    /* Fallback metrics to match Arial dimensions */
    size-adjust: 100%;
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: optional;
    src: url('/fonts/inter-v20-latin-700.woff2') format('woff2'),
         url('/fonts/inter-v20-latin-700.woff') format('woff');
    /* Fallback metrics to match Arial dimensions */
    size-adjust: 100%;
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: optional;
    src: url('/fonts/inter-v20-latin-900.woff2') format('woff2'),
         url('/fonts/inter-v20-latin-900.woff') format('woff');
    /* Fallback metrics to match Arial dimensions */
    size-adjust: 100%;
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%;
}

/* Chakra Petch - Tech/Display Font */
@font-face {
    font-family: 'Chakra Petch';
    font-style: normal;
    font-weight: 300;
    font-display: optional;
    src: url('/fonts/chakra-petch-v13-latin-300.woff2') format('woff2');
    /* Fallback metrics to match system fonts */
    size-adjust: 100%;
    ascent-override: 92%;
    descent-override: 25%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Chakra Petch';
    font-style: normal;
    font-weight: 400;
    font-display: optional;
    src: url('/fonts/chakra-petch-v13-latin-regular.woff2') format('woff2');
    /* Fallback metrics to match system fonts */
    size-adjust: 100%;
    ascent-override: 92%;
    descent-override: 25%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Chakra Petch';
    font-style: normal;
    font-weight: 500;
    font-display: optional;
    src: url('/fonts/chakra-petch-v13-latin-500.woff2') format('woff2');
    /* Fallback metrics to match system fonts */
    size-adjust: 100%;
    ascent-override: 92%;
    descent-override: 25%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Chakra Petch';
    font-style: normal;
    font-weight: 600;
    font-display: optional;
    src: url('/fonts/chakra-petch-v13-latin-600.woff2') format('woff2');
    /* Fallback metrics to match system fonts */
    size-adjust: 100%;
    ascent-override: 92%;
    descent-override: 25%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Chakra Petch';
    font-style: normal;
    font-weight: 700;
    font-display: optional;
    src: url('/fonts/chakra-petch-v13-latin-700.woff2') format('woff2');
    /* Fallback metrics to match system fonts */
    size-adjust: 100%;
    ascent-override: 92%;
    descent-override: 25%;
    line-gap-override: 0%;
}

:root {
    /* Color Variables */
    --color-primary: #1cac94;
    --color-secondary: #d0098d;
    --color-dark: #0a0118;
    --color-dark-lighter: #1a0f2e;
    --color-purple: #291763;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --color-light: #f7fafc;
    --color-gray: #a0aec0;
    --gradient-primary: linear-gradient(135deg, #1cac94 0%, #d0098d 100%);

    /* Typography Variables */
    --font-family-heading: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-primary: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    /* Font Sizes */
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    --font-size-6xl: 3.75rem;   /* 60px */

    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.75;

    /* Link Colors */
    --link-color: var(--color-primary);
    --link-hover-color: var(--color-secondary);
    --link-active-color: #1a9179;
    --link-visited-color: var(--color-primary);
}

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

body {
    font-family: var(--font-family-body);
    background: var(--color-dark);
    color: var(--color-light);
    line-height: var(--line-height-normal);
    overflow-x: hidden;
}

/* Headings use Chakra Petch */
h1, h2, h3, h4, h5, h6,
.logo-text,
.hero-title,
.section-title,
.service-title,
.btn {
    font-family: var(--font-family-heading);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 1, 24, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--color-light);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--color-primary);
    text-shadow: 0 0 15px rgba(28, 172, 148, 0.6);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown .nav-link svg {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 5px rgba(28, 172, 148, 0.3));
}

.nav-dropdown:hover .nav-link svg {
    transform: rotate(180deg);
    filter: drop-shadow(0 0 10px rgba(28, 172, 148, 0.8));
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    background: linear-gradient(135deg, rgba(10, 1, 24, 0.98), rgba(15, 5, 30, 0.98));
    backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 16px;
    padding: 16px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(28, 172, 148, 0.3),
                inset 0 0 40px rgba(28, 172, 148, 0.05);
    z-index: 1000;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(28, 172, 148, 0.15), transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.08), transparent 60%);
    pointer-events: none;
    border-radius: 16px;
    z-index: -1;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
    transform: translateX(-50%) scale(1);
}

.dropdown-item {
    display: block;
    padding: 14px 20px;
    color: var(--color-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    border-radius: 10px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    background: rgba(28, 172, 148, 0.05);
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(28, 172, 148, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    border-radius: 50%;
    z-index: -1;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item:hover::after {
    width: 200%;
    height: 200%;
}

.dropdown-item:hover {
    background: rgba(28, 172, 148, 0.2);
    border-left-color: var(--color-primary);
    color: var(--color-primary);
    padding-left: 25px;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(28, 172, 148, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(28, 172, 148, 0.1);
    border: 2px solid rgba(28, 172, 148, 0.3);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(28, 172, 148, 0.4), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
}

.nav-toggle:hover::before {
    width: 100px;
    height: 100px;
}

.nav-toggle:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(28, 172, 148, 0.5);
    transform: scale(1.05);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.nav-toggle.active {
    background: rgba(28, 172, 148, 0.2);
    border-color: var(--color-primary);
    box-shadow: 0 0 25px rgba(28, 172, 148, 0.6);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(28, 172, 148, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(28, 172, 148, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-dark);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 180px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-dark) 0%, #1a0f2e 50%, var(--color-dark) 100%);
}

/* Floating Blur Orbs */
.hero-background::before,
.hero-background::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 25s ease-in-out infinite;
}

.hero-background::before {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(41, 23, 99, 0.6) 0%, transparent 70%);
    top: -300px;
    right: -300px;
}

.hero-background::after {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(28, 172, 148, 0.4) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    animation-delay: -12s;
}

/* Binary Code Rain Animation */
.hero-background .binary-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-background .binary {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--color-primary);
    opacity: 0.15;
    white-space: nowrap;
    animation: binaryFall linear infinite;
    pointer-events: none;
}

/* Grid Lines */
.hero-background .grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, rgba(28, 172, 148, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(28, 172, 148, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

/* Floating Particles */
.hero-background .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat linear infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-50px, 50px) rotate(240deg); }
}

@keyframes binaryFall {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translate(var(--tx), -100px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-gray);
    margin-bottom: 40px;
}

/* Service Words Animation - FIXED! */
.hero-services {
    min-height: 100px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.service-word {
    position: absolute;
    font-size: clamp(1.3rem, 3vw, 2.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: slideInOut 15s ease-in-out infinite;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    max-width: 90%;
}

.service-word:nth-child(1) { animation-delay: 0s; }
.service-word:nth-child(2) { animation-delay: 3s; }
.service-word:nth-child(3) { animation-delay: 6s; }
.service-word:nth-child(4) { animation-delay: 9s; }
.service-word:nth-child(5) { animation-delay: 12s; }

@keyframes slideInOut {
    0% { opacity: 0; transform: translateX(-50px); }
    6% { opacity: 1; transform: translateX(0); }
    20% { opacity: 1; transform: translateX(0); }
    26% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 0; transform: translateX(-50px); }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(28, 172, 148, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 120px 0;
    position: relative;
}

/* Section Divider - Decorative Line (Applied to all sections except hero) */
.about-section::before,
.services-section::before,
.testimonials-section::before,
.portfolio-websites-section::before,
.ai-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--color-primary) 20%,
        var(--color-primary) 80%,
        transparent 100%
    );
    opacity: 0.3;
}

/* Reusable Section Divider */
.section-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--color-primary) 20%,
        var(--color-primary) 80%,
        transparent 100%
    );
    opacity: 0.3;
}

/* Pink divider for Target Groups Section */
.target-groups-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff00ff 20%, #ff00ff 80%, transparent);
    opacity: 0.6;
    z-index: 1;
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(28, 172, 148, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.2) 0%, rgba(102, 126, 234, 0.2) 100%);
    border-radius: 16px;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--color-gray);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓ ';
    color: var(--color-primary);
    font-weight: bold;
    margin-right: 8px;
}

/* Why Section */
.why-section {
    background: var(--color-dark-lighter);
}

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

.why-card {
    text-align: center;
    padding: 40px 20px;
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--color-gray);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(28, 172, 148, 0.2);
}

.project-thumbnail {
    width: 100%;
    height: 200px;
    background: var(--color-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-primary);
}

.project-content {
    padding: 24px;
}

.project-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.project-client {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.project-description {
    color: var(--color-gray);
    margin-bottom: 16px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: rgba(28, 172, 148, 0.1);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: var(--color-dark-lighter);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-light);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(28, 172, 148, 0.1);
    border-color: var(--color-primary);
    transform: translateX(5px);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.contact-method-label {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.contact-method-value {
    font-weight: 600;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--color-light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(28, 172, 148, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: rgba(28, 172, 148, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    display: block;
}

.form-message.error {
    background: rgba(208, 9, 141, 0.1);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    display: block;
}

/* Footer */
.footer {
    background: var(--color-dark-lighter);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 16px;
}

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

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

/* Footer Partners Section */
.footer-partners {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(28, 172, 148, 0.2);
}

.footer-partners h4 {
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-partners .partners-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    height: 120px;
}

.partner-logo:hover {
    background: rgba(28, 172, 148, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(28, 172, 148, 0.3);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Footer Social Media Section */
.footer-social {
    margin-top: 50px;
    text-align: center;
}

.footer-social h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(28, 172, 148, 0.4);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px solid var(--glass-border);
    color: var(--color-gray);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-partners .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .footer-partners .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-logo {
        height: 100px;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* Remote Support Button in Navigation */
.btn-remote-support {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(28, 172, 148, 0.15);
    border: 2px solid var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(28, 172, 148, 0.2);
}

.btn-remote-support:hover {
    background: rgba(28, 172, 148, 0.25);
    border-color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(28, 172, 148, 0.4);
}

.btn-remote-support svg {
    flex-shrink: 0;
}

/* Hide on mobile */
@media (max-width: 968px) {
    .btn-remote-support {
        display: none;
    }
}

/* Mobile Contact Button - Hidden on Desktop */
.btn-mobile-contact {
    display: none;
}

@media (max-width: 968px) {
    .btn-mobile-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
        padding: 18px 24px;
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        border: 2px solid var(--color-primary);
        color: #fff;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 30px rgba(28, 172, 148, 0.4),
                    inset 0 0 20px rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    .btn-mobile-contact::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .btn-mobile-contact:hover::before,
    .btn-mobile-contact:active::before {
        opacity: 1;
    }

    .btn-mobile-contact:active {
        transform: scale(0.98);
        box-shadow: 0 4px 15px rgba(28, 172, 148, 0.3);
    }

    .btn-mobile-contact svg {
        flex-shrink: 0;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
}

/* Remote Support Modal */
.remote-support-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.remote-support-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.remote-support-content {
    position: relative;
    background: rgba(10, 1, 24, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(28, 172, 148, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgb(239, 68, 68);
    color: rgb(239, 68, 68);
    transform: rotate(90deg);
}

/* Modal Title */
.modal-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

/* Remote Support Info Box */
.remote-support-info {
    display: flex;
    gap: 16px;
    background: rgba(28, 172, 148, 0.1);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.remote-support-info svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.remote-support-info strong {
    color: var(--color-primary);
    font-size: 1.05rem;
    display: block;
    margin-bottom: 12px;
}

.remote-support-info ol {
    margin: 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.remote-support-info ol li {
    margin-bottom: 6px;
}

.remote-support-info ol li:last-child {
    margin-bottom: 0;
}

/* OS Options */
.os-options {
    display: grid;
    gap: 16px;
}

.os-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.os-option:hover {
    background: rgba(28, 172, 148, 0.1);
    border-color: var(--color-primary);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(28, 172, 148, 0.2);
}

.os-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.2), rgba(0, 255, 255, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.os-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.os-info {
    flex: 1;
}

.os-info h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.os-info p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.download-icon {
    flex-shrink: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.os-option:hover .download-icon {
    opacity: 1;
    color: var(--color-primary);
}

/* Loading & Error States */
.loading-spinner {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.error-message {
    text-align: center;
    padding: 40px;
    color: rgb(239, 68, 68);
    font-size: 1rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .remote-support-content {
        padding: 40px 24px;
        max-height: 85vh;
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .modal-subtitle {
        font-size: 0.95rem;
    }

    .os-option {
        padding: 16px 20px;
    }

    .os-icon {
        width: 45px;
        height: 45px;
    }

    .os-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-dark) 0%, rgba(10, 1, 24, 0.95) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(28, 172, 148, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 172, 148, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(28, 172, 148, 0.2);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 16px;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-card:hover .service-link {
    gap: 12px;
}

/* Target Groups Section */
.target-groups-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.target-groups-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(0, 255, 255, 0.03) 50px, rgba(0, 255, 255, 0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 0, 255, 0.03) 50px, rgba(255, 0, 255, 0.03) 51px);
    animation: dataFlow 20s linear infinite;
    pointer-events: none;
    opacity: 0.4;
}

@keyframes dataFlow {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.data-packets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.packet {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-primary), #ff00ff);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(255, 0, 255, 0.3);
    animation: packetMove 8s linear infinite;
    opacity: 0;
}

.packet::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(3px);
}

@keyframes packetMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translate(calc(100vw - 100%), calc(100vh - 100%)) rotate(360deg);
        opacity: 0;
    }
}

.target-groups-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .target-groups-grid {
        grid-template-columns: 1fr;
    }
}

.target-group-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.target-group-card:hover {
    border-color: rgba(255, 0, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
}

.target-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: #ff00ff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.target-group-card:hover .target-icon {
    transform: scale(1.1);
    background: rgba(255, 0, 255, 0.2);
}

.target-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 16px;
}

.target-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--color-dark);
    position: relative;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(28, 172, 148, 0.2);
}

.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

.testimonial-author strong {
    color: var(--color-primary);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--color-gray);
    font-size: 0.85rem;
}

.google-review-cta {
    text-align: center;
    margin-top: 50px;
}

.google-review-cta .btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
}

@media (max-width: 1024px) {
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

/* Portfolio Websites Section */
.portfolio-websites-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-dark) 0%, rgba(10, 1, 24, 0.95) 100%);
    position: relative;
    overflow: hidden; /* Für Parallax-Effekt */
}

/* Parallax Background Elements */
.portfolio-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.parallax-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px); /* Weniger Blur = deutlicher */
    opacity: 0.4; /* Mehr Opacity = besser sichtbar */
    animation: parallaxFloat 20s ease-in-out infinite;
}

.parallax-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary), transparent);
    top: 5%;
    left: -5%;
    animation-delay: 0s;
}

.parallax-shape-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff00ff, transparent);
    top: 40%;
    right: -10%;
    animation-delay: -7s;
}

.parallax-shape-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #00d9ff, transparent);
    bottom: 5%;
    left: 25%;
    animation-delay: -14s;
}

@keyframes parallaxFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Content über Parallax-Hintergrund */
.portfolio-websites-section .container {
    position: relative;
    z-index: 1;
}

/* Asymmetric Bento Grid Layout */
.websites-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-auto-rows: auto; /* Auto-Höhe statt fixer 400px */
    gap: 25px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .websites-bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.website-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.website-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(28, 172, 148, 0.25);
}

.website-card:hover .website-overlay {
    opacity: 1;
}

.website-image {
    position: relative;
    width: 100%;
    height: 250px !important; /* Feste Höhe für alle Vorschaubilder */
    min-height: 250px;
    max-height: 250px;
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Portfolio Screenshot - SEO-optimized with alt-text */
.portfolio-screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.website-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 172, 148, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.website-overlay svg {
    stroke: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.website-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.website-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-light);
    margin: 0;
}

.website-category {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.website-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    flex: 1;
}

.website-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.website-tags .tag {
    font-size: 0.75rem;
    padding: 5px 12px;
    background: rgba(28, 172, 148, 0.15);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 20px;
    color: var(--color-primary);
    font-weight: 500;
}

/* Butler Mascot Animation */
.butler-mascot {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 140px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
    animation: butlerFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
    z-index: 10;
}

.website-card:hover .butler-mascot {
    animation: butlerWave 0.6s ease-in-out, butlerFloat 3s ease-in-out infinite;
    transform: scale(1.1);
    filter: drop-shadow(0 15px 35px rgba(28, 172, 148, 0.4));
}

@keyframes butlerFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes butlerWave {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.05);
    }
    75% {
        transform: rotate(10deg) scale(1.05);
    }
}

/* Butler Content Grid - 2 Column Layout */
.butler-content-grid {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 30px;
    align-items: start;
    height: 100%;
}

.butler-text-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.butler-mascot-centered {
    position: relative;
    width: 240px; /* Größer für bessere Raumnutzung */
    height: auto;
    justify-self: center;
    align-self: end;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
    animation: butlerFloat 3s ease-in-out infinite;
}

/* Lustiges animiertes Emoji neben Butler */
.butler-animated-emoji {
    /* Desktop: Absolut positioniert links neben Butler-Maskottchen */
    display: none; /* Verstecken, wir zeigen es per ::before */
}

/* Desktop: Katze links neben Butler-Maskottchen */
@media (min-width: 769px) {
    .butler-content-grid::after {
        content: "🐱";
        position: absolute;
        bottom: 50px;
        left: 180px; /* Links neben Butler */
        font-size: 60px;
        animation: danceCat 1s ease-in-out infinite;
        filter: drop-shadow(0 5px 15px rgba(255, 0, 255, 0.3));
        cursor: pointer;
        z-index: 15;
    }

    .website-card:hover .butler-content-grid::after {
        animation: jumpCat 0.6s ease-in-out infinite;
    }
}

/* Mobile: Katze inline im Titel "Datei-Butler" */
@media (max-width: 768px) {
    .butler-animated-emoji {
        display: inline-block;
        font-size: 32px;
        margin-left: 8px;
        vertical-align: middle;
        animation: danceCat 1s ease-in-out infinite;
        filter: drop-shadow(0 3px 10px rgba(255, 0, 255, 0.3));
    }
}

.butler-animated-emoji:hover {
    animation: jumpCat 0.6s ease-in-out infinite;
    transform: scale(1.2);
}

@keyframes danceCat {
    0%, 100% {
        transform: rotate(-8deg) translateY(0px);
    }
    25% {
        transform: rotate(8deg) translateY(-10px);
    }
    50% {
        transform: rotate(-8deg) translateY(0px);
    }
    75% {
        transform: rotate(8deg) translateY(-10px);
    }
}

@keyframes jumpCat {
    0%, 100% {
        transform: translateY(0px) scale(1.2);
    }
    50% {
        transform: translateY(-20px) scale(1.3) rotate(360deg);
    }
}

.website-card:hover .butler-mascot-centered {
    animation: butlerWave 0.6s ease-in-out, butlerFloat 3s ease-in-out infinite;
    transform: scale(1.1);
    filter: drop-shadow(0 15px 35px rgba(28, 172, 148, 0.4));
}

@media (max-width: 768px) {
    .butler-mascot {
        width: 100px;
        bottom: 15px;
        right: 15px;
    }

    .butler-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .butler-mascot-centered {
        width: 120px;
        justify-self: start;
        margin-top: 15px;
    }
}

/* Show More / Hidden Websites */
.hidden-websites {
    display: contents;
}

.hidden-websites.collapsed {
    display: none;
}

.show-more-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.15) 0%, rgba(255, 0, 255, 0.15) 100%);
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    color: var(--color-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.show-more-btn:hover {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.25) 0%, rgba(255, 0, 255, 0.25) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(28, 172, 148, 0.3);
}

.show-more-icon {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded .show-more-icon {
    transform: rotate(180deg);
}

/* Inactive/Offline Website Card */
.website-card-inactive {
    opacity: 0.5;
    pointer-events: none;
}

.website-card-inactive .website-image {
    background: linear-gradient(135deg, rgba(150, 150, 150, 0.1) 0%, rgba(100, 100, 100, 0.1) 100%);
}

.website-overlay-inactive {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(100, 100, 100, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
}

.website-overlay-inactive svg {
    stroke: rgba(255, 255, 255, 0.8);
}

/* In Progress Website Card */
.website-card-inprogress {
    opacity: 0.85;
    pointer-events: auto;
}

.website-card-inprogress .website-image {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 200, 0, 0.1) 100%);
}

.website-overlay-inprogress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 165, 0, 0.5);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.9rem;
}

.website-overlay-inprogress svg {
    stroke: rgba(255, 255, 255, 0.95);
    animation: pulse 2s ease-in-out infinite;
}

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

.inprogress-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    background: linear-gradient(90deg, #ff9500, #ffb800);
    border-radius: 20px;
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Bento Grid Featured Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 550px; /* Mindesthöhe für große Cards wie Datei-Butler */
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-full {
    grid-column: 1 / -1;
}

/* Featured Badge */
.featured-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    background: linear-gradient(90deg, var(--color-primary), #ff00ff);
    border-radius: 20px;
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-featured {
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(135deg, var(--color-primary), #ff00ff) 1;
}

/* Scroll Reveal Animation */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .websites-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 380px;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .websites-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-large,
    .bento-wide,
    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .website-image {
        height: 200px;
    }
}

/* AI Projects Section */
.ai-projects-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 1, 24, 0.95) 0%, rgba(20, 5, 40, 0.98) 100%);
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><circle cx="24" cy="24" r="4" fill="%231cac94"/><circle cx="24" cy="24" r="12" fill="none" stroke="%2300ffff" stroke-width="2.5"/><circle cx="24" cy="24" r="20" fill="none" stroke="%23ff00ff" stroke-width="2"/><line x1="24" y1="2" x2="24" y2="10" stroke="%231cac94" stroke-width="3"/><line x1="24" y1="38" x2="24" y2="46" stroke="%231cac94" stroke-width="3"/><line x1="2" y1="24" x2="10" y2="24" stroke="%231cac94" stroke-width="3"/><line x1="38" y1="24" x2="46" y2="24" stroke="%231cac94" stroke-width="3"/></svg>') 24 24, crosshair;
    position: relative;
    overflow: hidden;
}

.ai-projects-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(28, 172, 148, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Hexagon Background Pattern */
.hexagon-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(28, 172, 148, 0.03) 100px, rgba(28, 172, 148, 0.03) 101px),
        repeating-linear-gradient(60deg, transparent, transparent 100px, rgba(255, 0, 255, 0.03) 100px, rgba(255, 0, 255, 0.03) 101px),
        repeating-linear-gradient(120deg, transparent, transparent 100px, rgba(0, 255, 255, 0.03) 100px, rgba(0, 255, 255, 0.03) 101px);
    pointer-events: none;
    z-index: 0;
    animation: hexagonPulse 15s ease-in-out infinite;
}

@keyframes hexagonPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Floating AI Particles */
.ai-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Spotlight Grid - 2x2 Large Cards */
.ai-projects-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.ai-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.ai-projects-spotlight-grid .ai-project-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 480px;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    will-change: transform;
}

/* Holographic Border Effect */
.holographic-border {
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(28, 172, 148, 0.4),
        rgba(0, 255, 255, 0.25),
        rgba(255, 0, 255, 0.35),
        rgba(138, 43, 226, 0.25),
        rgba(28, 172, 148, 0.4)
    );
    background-size: 300% 300%;
    animation: holographicShift 8s ease infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

@keyframes holographicShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ai-project-card:hover .holographic-border {
    animation: holographicShift 3s ease infinite, borderPulse 1.5s ease-in-out infinite;
    opacity: 1;
}

@keyframes borderPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

/* Spotlight Overlay Effect */
.spotlight-overlay {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(28, 172, 148, 0.15) 0%,
        rgba(255, 0, 255, 0.08) 25%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

.ai-project-card:hover .spotlight-overlay {
    opacity: 1;
    animation: spotlightPulse 2s ease-in-out infinite;
}

@keyframes spotlightPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Corner Accents - Futuristic Tech Corners */
.corner-accent {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

.corner-tl {
    top: -2px;
    left: -2px;
    border-top-color: var(--color-primary);
    border-left-color: var(--color-primary);
    border-top-left-radius: 24px;
}

.corner-tr {
    top: -2px;
    right: -2px;
    border-top-color: #ff00ff;
    border-right-color: #ff00ff;
    border-top-right-radius: 24px;
}

.corner-bl {
    bottom: -2px;
    left: -2px;
    border-bottom-color: #00ffff;
    border-left-color: #00ffff;
    border-bottom-left-radius: 24px;
}

.corner-br {
    bottom: -2px;
    right: -2px;
    border-bottom-color: #ff00ff;
    border-right-color: #ff00ff;
    border-bottom-right-radius: 24px;
}

.ai-project-card:hover .corner-accent {
    opacity: 1;
    width: 35px;
    height: 35px;
}

.corner-tl { animation: cornerGlow 2s ease-in-out infinite; }
.corner-tr { animation: cornerGlow 2s ease-in-out 0.5s infinite; }
.corner-bl { animation: cornerGlow 2s ease-in-out 1s infinite; }
.corner-br { animation: cornerGlow 2s ease-in-out 1.5s infinite; }

@keyframes cornerGlow {
    0%, 100% { filter: drop-shadow(0 0 3px currentColor); }
    50% { filter: drop-shadow(0 0 8px currentColor); }
}

/* 3D Tilt Effect on Hover */
.ai-projects-spotlight-grid .ai-project-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.03);
    box-shadow:
        0 30px 80px rgba(28, 172, 148, 0.4),
        0 0 60px rgba(255, 0, 255, 0.2),
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 60px rgba(28, 172, 148, 0.08);
    border-color: rgba(28, 172, 148, 0.8);
}

.ai-project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #ff00ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-project-card:hover::before {
    opacity: 1;
}

.ai-project-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(28, 172, 148, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.ai-projects-spotlight-grid .ai-project-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(10, 1, 24, 0.8)),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(28, 172, 148, 0.05) 2px, rgba(28, 172, 148, 0.05) 4px);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    position: relative;
    overflow: visible;
    filter: drop-shadow(0 0 20px rgba(28, 172, 148, 0.4));
    z-index: 10;
}

/* Hexagon Holographic Border */
.ai-projects-spotlight-grid .ai-project-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        #00ffff 25%,
        #ff00ff 50%,
        #8b2be2 75%,
        var(--color-primary) 100%
    );
    background-size: 400% 400%;
    animation: hexagonBorderFlow 8s ease infinite;
    z-index: -1;
}

@keyframes hexagonBorderFlow {
    0%, 100% { background-position: 0% 50%; filter: brightness(0.8) hue-rotate(0deg); }
    25% { background-position: 100% 50%; filter: brightness(1) hue-rotate(30deg); }
    50% { background-position: 100% 100%; filter: brightness(1.1) hue-rotate(60deg); }
    75% { background-position: 0% 100%; filter: brightness(1) hue-rotate(30deg); }
}

/* Scanline Effect */
.ai-projects-spotlight-grid .ai-project-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 2px,
        rgba(28, 172, 148, 0.1) 2px,
        rgba(28, 172, 148, 0.1) 4px
    );
    animation: scanlines 3s linear infinite;
    pointer-events: none;
    mix-blend-mode: screen;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

.ai-projects-spotlight-grid .ai-project-icon svg {
    width: 70px;
    height: 70px;
    filter:
        drop-shadow(0 0 8px rgba(28, 172, 148, 0.4))
        drop-shadow(0 0 15px rgba(28, 172, 148, 0.3));
    animation: iconHologramPulse 4s ease-in-out infinite;
    z-index: 1;
    stroke-width: 2.5;
    opacity: 0.9;
}

@keyframes iconHologramPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.9;
        filter:
            drop-shadow(0 0 8px rgba(28, 172, 148, 0.4))
            drop-shadow(0 0 15px rgba(28, 172, 148, 0.3));
    }
    25% {
        transform: scale(1.05) translateY(-2px);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1) translateY(-4px);
        opacity: 0.95;
        filter:
            drop-shadow(0 0 12px rgba(28, 172, 148, 0.5))
            drop-shadow(0 0 20px rgba(28, 172, 148, 0.4))
            drop-shadow(0 0 15px rgba(255, 0, 255, 0.2));
    }
    75% {
        transform: scale(1.05) translateY(-2px);
        opacity: 0.8;
    }
}

.ai-projects-spotlight-grid .ai-project-card:hover .ai-project-icon {
    transform: scale(1.2) rotate(180deg);
    filter:
        drop-shadow(0 0 40px rgba(28, 172, 148, 0.8))
        drop-shadow(0 0 60px rgba(255, 0, 255, 0.6))
        drop-shadow(0 0 80px rgba(0, 255, 255, 0.4));
}

.ai-projects-spotlight-grid .ai-project-card:hover .ai-project-icon::before {
    animation: hexagonBorderFlow 2s ease infinite, borderPulseEnhanced 1s ease-in-out infinite;
}

@keyframes borderPulseEnhanced {
    0%, 100% {
        filter: brightness(1) blur(0px);
        transform: scale(1);
    }
    50% {
        filter: brightness(2) blur(1px);
        transform: scale(1.05);
    }
}

.ai-projects-spotlight-grid .ai-project-card:hover .ai-project-icon svg {
    animation: iconHologramPulse 1.5s ease-in-out infinite, iconGlitch 4s ease-in-out infinite;
    color: #00ffff;
    stroke-width: 3;
}

@keyframes iconGlitch {
    0%, 90%, 100% {
        transform: scale(1) translateY(0) skew(0deg);
    }
    92% {
        transform: scale(1.05) translateY(-2px) skew(-2deg);
    }
    94% {
        transform: scale(0.98) translateY(1px) skew(2deg);
    }
    96% {
        transform: scale(1.03) translateY(-1px) skew(-1deg);
    }
}

.ai-project-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.15), rgba(255, 0, 255, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.ai-project-card:hover .ai-project-icon {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.25), rgba(255, 0, 255, 0.15));
    transform: scale(1.05);
}

.ai-project-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-light);
    margin: 0;
    line-height: 1.3;
}

.ai-project-type {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.ai-project-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.ai-project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.tech-tag {
    font-size: 0.75rem;
    padding: 6px 14px;
    background: rgba(28, 172, 148, 0.1);
    border: 1px solid rgba(28, 172, 148, 0.25);
    border-radius: 20px;
    color: var(--color-primary);
    font-weight: 500;
}

.ai-project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.ai-project-link:hover {
    gap: 12px;
    color: #23d9b7;
}

.ai-project-link svg {
    stroke: currentColor;
}

.ai-project-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4ade80;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 20px;
    margin-top: 5px;
    width: fit-content;
}

.ai-project-status svg {
    stroke: currentColor;
}

/* AI Models Section */
.ai-models-section {
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid rgba(28, 172, 148, 0.2);
    position: relative;
    z-index: 1;
}

.ai-models-header {
    text-align: center;
    margin-bottom: 50px;
}

.ai-models-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.ai-models-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* AI Wordmarks Container */
.ai-wordmarks-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ai-wordmark {
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.wordmark-text {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.15);
    font-family: system-ui, -apple-system, sans-serif;
    display: block;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow:
        0 0 20px rgba(28, 172, 148, 0.2),
        0 0 40px rgba(28, 172, 148, 0.1);
    animation: wordmarkFloat 6s ease-in-out infinite;
}

.wordmark-glow {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    font-family: system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, var(--color-primary), #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    filter: blur(8px);
    transition: all 0.5s ease;
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes wordmarkFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        filter: blur(8px);
    }
    50% {
        opacity: 0.6;
        filter: blur(12px);
    }
}

/* Hover Effects */
.ai-wordmark:hover .wordmark-text {
    color: rgba(255, 255, 255, 0.9);
    text-shadow:
        0 0 30px rgba(28, 172, 148, 0.6),
        0 0 60px rgba(0, 255, 255, 0.4),
        0 0 90px rgba(28, 172, 148, 0.3);
    transform: scale(1.1);
    animation: wordmarkGlitch 0.3s ease-in-out;
}

.ai-wordmark:hover .wordmark-glow {
    opacity: 1;
    filter: blur(15px);
    animation: glowIntense 1s ease-in-out infinite;
}

@keyframes glowIntense {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes wordmarkGlitch {
    0%, 100% {
        transform: scale(1.1) translate(0, 0);
    }
    25% {
        transform: scale(1.1) translate(-2px, 2px);
    }
    50% {
        transform: scale(1.1) translate(2px, -2px);
    }
    75% {
        transform: scale(1.1) translate(-1px, -1px);
    }
}

/* Featured Wordmark (Ollama) */
.ai-wordmark-featured .wordmark-text {
    color: rgba(255, 0, 255, 0.2);
    text-shadow:
        0 0 25px rgba(255, 0, 255, 0.3),
        0 0 50px rgba(138, 43, 226, 0.2);
}

.ai-wordmark-featured .wordmark-glow {
    background: linear-gradient(135deg, #ff00ff, #8b2be2, #00ffff);
}

.ai-wordmark-featured:hover .wordmark-text {
    color: rgba(255, 0, 255, 0.9);
    text-shadow:
        0 0 40px rgba(255, 0, 255, 0.8),
        0 0 80px rgba(138, 43, 226, 0.6),
        0 0 120px rgba(255, 0, 255, 0.4);
}

.wordmark-badge {
    position: absolute;
    top: -25px;
    right: -10px;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    background: linear-gradient(90deg, #ff00ff, #8b2be2);
    border-radius: 10px;
    color: white;
    font-weight: 700;
    box-shadow:
        0 0 20px rgba(255, 0, 255, 0.6),
        0 0 40px rgba(138, 43, 226, 0.4);
    z-index: 3;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 20px rgba(255, 0, 255, 0.6),
            0 0 40px rgba(138, 43, 226, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow:
            0 0 30px rgba(255, 0, 255, 0.9),
            0 0 60px rgba(138, 43, 226, 0.6);
    }
}

@media (max-width: 1024px) {
    .wordmark-text,
    .wordmark-glow {
        font-size: 2.5rem;
    }

    .ai-wordmarks-container {
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .wordmark-text,
    .wordmark-glow {
        font-size: 2rem;
    }

    .ai-wordmarks-container {
        gap: 30px;
        flex-direction: column;
    }
}

/* AI Click Ripple Effect */
.ai-click-ripple {
    position: fixed;
    width: 0;
    height: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(28, 172, 148, 0.6) 0%, rgba(0, 255, 255, 0.4) 30%, rgba(255, 0, 255, 0.3) 60%, transparent 100%);
    box-shadow:
        0 0 30px rgba(28, 172, 148, 0.8),
        0 0 60px rgba(0, 255, 255, 0.6),
        0 0 90px rgba(255, 0, 255, 0.4);
    animation: clickRipple 0.8s ease-out forwards;
}

@keyframes clickRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Service Area / Standort Section */
.service-area-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(20, 5, 40, 0.95) 100%);
    position: relative;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(28, 172, 148, 0.2);
    transition: all 0.4s ease;
}

.map-container:hover {
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(28, 172, 148, 0.4),
        0 0 30px rgba(28, 172, 148, 0.2);
    transform: translateY(-5px);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    pointer-events: none;
}

.location-pin {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 1, 24, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid var(--color-primary);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(28, 172, 148, 0.3);
    animation: pinPulse 3s ease-in-out infinite;
}

@keyframes pinPulse {
    0%, 100% {
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 0 20px rgba(28, 172, 148, 0.3);
    }
    50% {
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(28, 172, 148, 0.6);
    }
}

.location-pin svg {
    color: var(--color-primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(28, 172, 148, 0.6));
}

.pin-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pin-label strong {
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.pin-label span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Service Areas */
.service-areas {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.remote-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.15), rgba(0, 255, 255, 0.1));
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    padding: 16px 28px;
    margin-bottom: 10px;
    box-shadow: 0 0 30px rgba(28, 172, 148, 0.2);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(28, 172, 148, 0.2); }
    50% { box-shadow: 0 0 40px rgba(28, 172, 148, 0.4); }
}

.remote-badge svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.remote-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.service-areas h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.area-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.city-tag {
    background: rgba(28, 172, 148, 0.1);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: default;
}

.city-tag:hover {
    background: rgba(28, 172, 148, 0.2);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 172, 148, 0.3);
}

.area-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 10px;
}

.area-note svg {
    color: rgba(138, 43, 226, 0.8);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    .city-tag {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .location-pin {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 16px;
    }

    .remote-badge {
        padding: 12px 20px;
    }

    .remote-badge span {
        font-size: 1rem;
    }
}

/* Call to Action / Contact Section */
.cta-contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(20, 5, 40, 0.95) 0%, var(--color-bg-dark) 100%);
    position: relative;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* CTA Text Side */
.cta-text h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-feature svg {
    color: var(--color-primary);
    flex-shrink: 0;
    padding: 8px;
    background: rgba(28, 172, 148, 0.15);
    border-radius: 8px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-info-cards .contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(28, 172, 148, 0.08);
    border: 1px solid rgba(28, 172, 148, 0.25);
    border-radius: 16px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
}

.contact-info-cards .contact-card > div {
    text-align: left;
}

.contact-info-cards .contact-card:hover {
    background: rgba(28, 172, 148, 0.15);
    border-color: var(--color-primary);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(28, 172, 148, 0.2);
}

.contact-info-cards .contact-card svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-info-cards .contact-card .label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    text-align: left;
}

.contact-info-cards .contact-card strong {
    display: block;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    text-align: left;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: rgba(10, 1, 24, 0.4);
    position: relative;
}

.partners-section .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 60px auto 0;
}

.partner-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(28, 172, 148, 0.15);
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.partner-card:hover {
    background: rgba(28, 172, 148, 0.05);
    border-color: rgba(28, 172, 148, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(28, 172, 148, 0.15);
}

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

.partner-card img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: all 0.4s ease;
}

.partner-card:hover img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-section .partners-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .partner-card {
        padding: 40px 30px;
    }
}

/* Contact Form */
.contact-form-container {
    background: rgba(10, 1, 24, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(28, 172, 148, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-form h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(28, 172, 148, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-color: rgba(255, 255, 255, 0.05);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231cac94' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 45px;
}

.form-group select option {
    background: #0a0118;
    color: #fff;
    padding: 12px;
}

.form-group select option:checked,
.form-group select option:hover {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.3), rgba(0, 255, 255, 0.2));
    color: #fff;
}

.checkbox-group {
    margin-bottom: 32px;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--color-secondary);
}

.privacy-checkbox {
    margin: 24px 0;
    padding: 16px;
    background: rgba(28, 172, 148, 0.05);
    border: 1px solid rgba(28, 172, 148, 0.2);
    border-radius: 8px;
}

.privacy-checkbox .checkbox-label {
    margin: 0;
}

.privacy-checkbox .checkbox-text {
    line-height: 1.6;
    font-size: 0.9rem;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 32px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(28, 172, 148, 0.4);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(4px) rotate(-15deg);
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    display: none;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .cta-text h2 {
        font-size: 2.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-container {
        padding: 30px 24px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

/* Remove old card styles */
.ai-model-card {
    display: none;
}

.ai-model-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(28, 172, 148, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ai-model-card:hover::before {
    opacity: 1;
}

.ai-model-glow {
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-primary), #00ffff, #ff00ff);
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.ai-model-card:hover .ai-model-glow {
    opacity: 0.5;
}

.ai-model-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--color-primary);
    box-shadow:
        0 20px 50px rgba(28, 172, 148, 0.3),
        0 0 30px rgba(0, 255, 255, 0.2);
}

.ai-model-icon {
    width: 80px;
    height: 80px;
    color: var(--color-primary);
    transition: all 0.4s ease;
}

.ai-model-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(28, 172, 148, 0.4));
}

.ai-model-card:hover .ai-model-icon {
    transform: scale(1.15) rotate(5deg);
    color: #00ffff;
}

.ai-model-card:hover .ai-model-icon svg {
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
    animation: modelPulse 1.5s ease-in-out infinite;
}

@keyframes modelPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ai-model-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-light);
}

.ai-model-provider {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Featured Model (Ollama) */
.ai-model-featured {
    border-color: rgba(255, 0, 255, 0.4);
    background: linear-gradient(145deg, rgba(255, 0, 255, 0.05), rgba(138, 43, 226, 0.03));
}

.ai-model-featured .ai-model-glow {
    background: linear-gradient(135deg, #ff00ff, #8b2be2, #00ffff);
}

.ai-model-featured .ai-model-icon {
    color: #ff00ff;
}

.featured-badge-model {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    background: linear-gradient(90deg, #ff00ff, #8b2be2);
    border-radius: 12px;
    color: white;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

@media (max-width: 1024px) {
    .ai-models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ai-models-grid {
        grid-template-columns: 1fr;
    }
}

.ai-projects-footer {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.coming-soon-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.coming-soon-badge svg {
    stroke: var(--color-primary);
    flex-shrink: 0;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(28, 172, 148, 0.3);
}

.btn-outline svg {
    stroke: currentColor;
}

@media (max-width: 1024px) {
    .ai-projects-spotlight-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .ai-projects-spotlight-grid .ai-project-card {
        min-height: auto;
    }

    .ai-projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .ai-projects-spotlight-grid {
        gap: 25px;
    }

    .ai-projects-spotlight-grid .ai-project-card {
        padding: 35px 30px;
    }

    .ai-projects-spotlight-grid .ai-project-icon {
        width: 80px;
        height: 80px;
    }

    .ai-projects-spotlight-grid .ai-project-icon svg {
        width: 44px;
        height: 44px;
    }

    .ai-project-card {
        flex-direction: column;
        padding: 30px 25px;
    }

    .ai-project-icon {
        width: 70px;
        height: 70px;
    }

    .ai-project-icon svg {
        width: 40px;
        height: 40px;
    }

    .coming-soon-badge {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 1, 24, 0.98) 0%, rgba(10, 1, 24, 0.92) 100%);
    position: relative;
}

.about-content {
    margin-top: 50px;
}

.about-grid-2col {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 50px;
    align-items: start;
}

.photo-frame {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.3);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-icon {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 968px) {
    .about-grid-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

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

/* Responsive */
/* Mobile Menu Animations */
@keyframes mobileMenuSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mobileMenuGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(28, 172, 148, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(28, 172, 148, 0.4);
    }
}

@keyframes dropdownSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 25px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, rgba(10, 1, 24, 0.98), rgba(15, 5, 30, 0.98));
        backdrop-filter: blur(30px) saturate(150%);
        flex-direction: column;
        padding: 40px;
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        align-items: flex-start;
        gap: 0;
        border-right: 1px solid rgba(28, 172, 148, 0.2);
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 30%, rgba(28, 172, 148, 0.1), transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.05), transparent 50%);
        pointer-events: none;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links.active > * {
        animation: mobileMenuSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .nav-links.active > *:nth-child(1) { animation-delay: 0.1s; opacity: 0; }
    .nav-links.active > *:nth-child(2) { animation-delay: 0.15s; opacity: 0; }
    .nav-links.active > *:nth-child(3) { animation-delay: 0.2s; opacity: 0; }
    .nav-links.active > *:nth-child(4) { animation-delay: 0.25s; opacity: 0; }
    .nav-links.active > *:nth-child(5) { animation-delay: 0.3s; opacity: 0; }
    .nav-links.active > *:nth-child(6) { animation-delay: 0.35s; opacity: 0; }
    .nav-links.active > *:nth-child(7) { animation-delay: 0.4s; opacity: 0; }

    .nav-toggle {
        display: flex;
    }

    /* Mobile Dropdown Styling */
    .nav-dropdown {
        width: 100%;
        position: relative;
    }

    .nav-dropdown .nav-link {
        width: 100%;
        padding: 18px 20px;
        font-size: 1.15rem;
        background: rgba(28, 172, 148, 0.05);
        border: 1px solid rgba(28, 172, 148, 0.2);
        border-radius: 12px;
        margin-bottom: 12px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: visible;
    }

    .nav-dropdown .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(28, 172, 148, 0.2), transparent);
        transition: left 0.6s;
    }

    .nav-dropdown.active .nav-link::before {
        left: 100%;
    }

    .nav-dropdown .nav-link:active {
        transform: scale(0.98);
    }

    .nav-dropdown .nav-link svg {
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        filter: drop-shadow(0 0 8px rgba(28, 172, 148, 0.5));
    }

    .nav-dropdown.active .nav-link {
        background: rgba(28, 172, 148, 0.15);
        border-color: var(--color-primary);
        box-shadow: 0 0 30px rgba(28, 172, 148, 0.3),
                    inset 0 0 20px rgba(28, 172, 148, 0.1);
    }

    .nav-dropdown.active .nav-link svg {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Disable hover transform in mobile */
    .nav-dropdown:hover .dropdown-menu {
        transform: none;
        position: static;
        left: auto;
        top: auto;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 600px;
        margin-top: 5px;
        margin-bottom: 20px;
    }

    /* Add spacing when dropdown is active */
    .nav-dropdown.active {
        margin-bottom: 20px;
    }

    .dropdown-item {
        padding: 14px 20px;
        font-size: 0.95rem;
        background: rgba(28, 172, 148, 0.08);
        border-left: 3px solid transparent;
        border-radius: 10px;
        margin-bottom: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: visible;
        animation: dropdownSlideDown 0.4s ease-out backwards;
    }

    .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .nav-dropdown.active .dropdown-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-dropdown.active .dropdown-item:nth-child(2) { animation-delay: 0.15s; }
    .nav-dropdown.active .dropdown-item:nth-child(3) { animation-delay: 0.2s; }
    .nav-dropdown.active .dropdown-item:nth-child(4) { animation-delay: 0.25s; }
    .nav-dropdown.active .dropdown-item:nth-child(5) { animation-delay: 0.3s; }
    .nav-dropdown.active .dropdown-item:nth-child(6) { animation-delay: 0.35s; }

    .dropdown-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .dropdown-item:hover::before,
    .dropdown-item:active::before {
        transform: scaleY(1);
    }

    .dropdown-item:hover,
    .dropdown-item:active {
        background: rgba(28, 172, 148, 0.2);
        border-left-color: var(--color-primary);
        padding-left: 25px;
        transform: translateX(5px);
        box-shadow: 0 4px 15px rgba(28, 172, 148, 0.3);
    }

    .nav-link {
        font-size: 1.15rem;
        padding: 18px 20px;
        background: rgba(28, 172, 148, 0.05);
        border: 1px solid rgba(28, 172, 148, 0.2);
        border-radius: 12px;
        margin-bottom: 12px;
        width: 100%;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: visible;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .nav-link:hover::after,
    .nav-link:active::after {
        transform: scaleX(1);
    }

    .nav-link:hover,
    .nav-link:active {
        background: rgba(28, 172, 148, 0.15);
        border-color: var(--color-primary);
        transform: translateX(5px);
        box-shadow: 0 0 25px rgba(28, 172, 148, 0.4);
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

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

    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   SIDE CONTACT BUTTON
   ============================================ */

.side-contact-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: rgba(28, 172, 148, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px rgba(28, 172, 148, 0.3),
                0 8px 24px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    padding: 0;
}

.side-contact-btn svg {
    color: var(--color-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: absolute;
}

.side-contact-btn:hover {
    width: 140px;
    justify-content: flex-start;
    padding-left: 15px;
    gap: 10px;
    border-radius: 12px;
    background: rgba(28, 172, 148, 0.25);
    transform: translateX(-5px);
    box-shadow: 0 0 40px rgba(28, 172, 148, 0.5),
                0 12px 32px rgba(0, 0, 0, 0.5);
}

.side-contact-btn:hover svg {
    position: relative;
    transform: scale(1.1);
}

.side-contact-text {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    white-space: nowrap;
    margin-left: 8px;
}

.side-contact-btn:hover .side-contact-text {
    opacity: 1;
}

.side-contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(28, 172, 148, 0.3),
        rgba(0, 255, 255, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-contact-btn:hover::before {
    opacity: 1;
}

/* Pulsing animation */
.side-contact-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    border: 2px solid var(--color-primary);
    opacity: 0.6;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ============================================
   CONTACT MODAL
   ============================================ */

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.contact-modal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.contact-modal-content {
    position: relative;
    width: 90%;
    max-width: 850px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(10, 1, 24, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(28, 172, 148, 0.2);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal.active .contact-modal-content {
    transform: scale(1) translateY(0);
}

.contact-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-modal .modal-close:hover {
    background: rgba(208, 9, 141, 0.2);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    transform: rotate(90deg);
}

.contact-modal .modal-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.contact-modal .modal-subtitle {
    font-size: 16px;
    color: var(--color-gray);
    text-align: center;
    margin-bottom: 40px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--color-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(28, 172, 148, 0.1),
        rgba(0, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(28, 172, 148, 0.2);
}

.contact-option:hover::before {
    opacity: 1;
}

.contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(28, 172, 148, 0.15);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-option:hover .contact-icon {
    background: rgba(28, 172, 148, 0.25);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(5deg);
}

.contact-icon svg {
    color: var(--color-primary);
}

.contact-option-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.contact-option-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-light);
}

.contact-option-text p {
    font-size: 14px;
    color: var(--color-gray);
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .side-contact-btn {
        right: 20px;
        bottom: 20px;
        width: 56px;
        height: 56px;
    }

    .side-contact-btn:hover {
        width: 56px;
        border-radius: 12px;
    }

    .side-contact-text {
        display: none;
    }

    .contact-modal-content {
        max-width: 500px;
        padding: 30px 24px;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .contact-modal .modal-title {
        font-size: 26px;
    }

    .contact-option {
        padding: 16px 20px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 640px) {
    .side-contact-btn {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
    }

    .contact-modal-content {
        width: 95%;
        padding: 24px 20px;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .contact-option {
        gap: 16px;
    }

    .contact-option-text h3 {
        font-size: 16px;
    }

    .contact-option-text p {
        font-size: 13px;
    }
}

/* ============================================
   SERVICE PAGES - HERO SECTION
   ============================================ */

.service-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--color-gray);
    animation: slideDown 0.6s ease-out;
}

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

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb span:not(:has(a)) {
    color: var(--color-light);
}

/* Hero Icon with Floating Animation */
.service-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 172, 148, 0.1);
    border: 2px solid rgba(28, 172, 148, 0.3);
    border-radius: 24px;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite, fadeInScale 0.8s ease-out 0.2s both;
}

.service-hero-icon svg {
    color: var(--color-primary);
    filter: drop-shadow(0 0 20px rgba(28, 172, 148, 0.4));
}

.service-hero-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 28px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    opacity: 0.15;
    animation: rotateBorder 4s linear infinite;
    z-index: -1;
}

/* Hero Title */
.service-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: slideUp 0.8s ease-out 0.3s both;
}

/* Hero Subtitle */
.service-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 40px;
    animation: slideUp 0.8s ease-out 0.4s both;
}

/* Hero CTA Buttons */
.service-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.5s both;
}

.service-hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #00d4aa);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(28, 172, 148, 0.3);
}

.service-hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(28, 172, 148, 0.4);
}

.service-hero-cta .btn-secondary {
    background: rgba(28, 172, 148, 0.1);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.service-hero-cta .btn-secondary:hover {
    background: rgba(28, 172, 148, 0.2);
    transform: translateY(-3px);
}

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .service-hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-hero-subtitle {
        font-size: 1.1rem;
    }

    .service-hero-icon {
        width: 80px;
        height: 80px;
    }

    .service-hero-icon svg {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 640px) {
    .service-hero-title {
        font-size: 2rem;
    }

    .service-hero-subtitle {
        font-size: 1rem;
    }

    .service-hero-cta {
        flex-direction: column;
    }

    .service-hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   SUPPORT TICKET MODAL
   ============================================ */

.support-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

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

.support-modal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.support-modal-content {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    background: rgba(10, 1, 24, 0.98);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(28, 172, 148, 0.2);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.support-modal.active .support-modal-content {
    transform: scale(1) translateY(0);
}

.support-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-light);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.support-modal .modal-close:hover {
    background: rgba(208, 9, 141, 0.2);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    transform: rotate(90deg);
}

/* Modal Header */
.support-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.support-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 172, 148, 0.1);
    border: 2px solid rgba(28, 172, 148, 0.3);
    border-radius: 20px;
    animation: iconPulse 2s ease-in-out infinite;
}

.support-modal-icon svg {
    color: var(--color-primary);
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.support-modal .modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.support-modal .modal-subtitle {
    font-size: 16px;
    color: var(--color-gray);
}

/* Support Form */
.support-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--color-light);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(28, 172, 148, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.form-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #00d4aa);
    color: #fff;
    border: none;
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28, 172, 148, 0.4);
}

.form-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-light);
    border: 1px solid var(--glass-border);
}

.form-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Multi-Step Form */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(28, 172, 148, 0.5);
}

.step.completed .step-number {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.step-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.step.active .step-label {
    color: var(--color-primary);
    font-weight: 600;
}

.step.completed .step-label {
    color: rgba(255, 255, 255, 0.8);
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
    position: relative;
    top: -20px;
}

.form-step {
    animation: fadeInSlide 0.3s ease-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ticket Summary */
.ticket-summary {
    background: rgba(28, 172, 148, 0.05);
    border: 1px solid rgba(28, 172, 148, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.ticket-summary h4 {
    margin-bottom: 15px;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.summary-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.summary-item span {
    color: #fff;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed rgba(28, 172, 148, 0.3);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(28, 172, 148, 0.02);
}

.file-upload-area:hover {
    border-color: var(--color-primary);
    background: rgba(28, 172, 148, 0.05);
}

.file-upload-area.drag-over {
    border-color: var(--color-primary);
    background: rgba(28, 172, 148, 0.1);
    transform: scale(1.02);
}

.file-upload-icon {
    margin: 0 auto 15px;
    opacity: 0.5;
}

.file-upload-icon svg {
    stroke: var(--color-primary);
}

.file-upload-text p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
}

.file-upload-text strong {
    color: var(--color-primary);
}

.file-upload-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
    animation: fadeInSlide 0.3s ease-out;
}

.file-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.file-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(28, 172, 148, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-item-icon svg {
    stroke: var(--color-primary);
}

.file-item-details {
    flex: 1;
}

.file-item-name {
    color: #fff;
    font-weight: 500;
    margin-bottom: 3px;
    word-break: break-word;
}

.file-item-size {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.file-item-remove {
    background: none;
    border: none;
    color: rgba(255, 100, 100, 0.8);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.file-item-remove:hover {
    background: rgba(255, 100, 100, 0.1);
    color: #ff6464;
}

.file-item-preview {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Success/Error States */
.support-success,
.support-error {
    text-align: center;
    padding: 40px 20px;
}

.success-icon,
.error-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: scaleIn 0.5s ease-out;
}

.success-icon {
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid #28a745;
}

.success-icon svg {
    color: #28a745;
}

.error-icon {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
}

.error-icon svg {
    color: #dc3545;
}

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

.support-success h3,
.support-error h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-light);
}

.support-success p,
.support-error p {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .support-modal-content {
        padding: 30px 20px;
        max-height: 85vh;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .support-modal .modal-title {
        font-size: 24px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .support-modal {
        padding: 10px;
    }

    .support-modal-content {
        padding: 25px 15px;
        border-radius: 16px;
    }

    .support-modal-icon {
        width: 60px;
        height: 60px;
    }

    .support-modal-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* =====================================================
   Services Overview Section (IT-Support)
   ===================================================== */

.services-overview {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(10, 1, 24, 0.95) 0%, rgba(15, 5, 30, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 1400px;
    background: radial-gradient(circle, rgba(28, 172, 148, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.services-overview-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-list {
    text-align: center;
    margin-bottom: 80px;
}

.services-list .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-list .section-intro {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.services-overview .section-title {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: 650px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1500px;
    margin: 0 auto;
}

/* Image Column - Left */
.services-image {
    position: sticky;
    top: 120px;
}

/* Services Tabs - Right */
.services-tabs {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Browser-Style Tabs */
.browser-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 0;
}

.browser-tab {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(28, 172, 148, 0.15);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.browser-tab:hover {
    background: rgba(28, 172, 148, 0.05);
    color: rgba(255, 255, 255, 0.8);
}

.browser-tab.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
    border-color: rgba(28, 172, 148, 0.4);
    box-shadow: 0 -2px 10px rgba(28, 172, 148, 0.2);
}

.browser-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

/* Tab Content */
.tab-content-wrapper {
    position: relative;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(28, 172, 148, 0.2);
    border-top: none;
    border-radius: 0 0 24px 24px;
}

.tab-content {
    display: none;
    opacity: 0;
    padding: 40px;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

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

.tab-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.15), rgba(138, 43, 226, 0.15));
    border: 2px solid rgba(28, 172, 148, 0.3);
    border-radius: 20px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.tab-content h3 {
    font-size: 1.8rem;
    color: var(--color-light);
    margin-bottom: 16px;
}

.tab-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: zoomIn 0.8s ease-out forwards;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 27px;
    z-index: -1;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 1, 24, 0) 0%,
        rgba(10, 1, 24, 0.2) 100%
    );
    pointer-events: none;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(10, 1, 24, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--color-light);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .image-badge {
        top: 15px;
        right: 15px;
        font-size: 0.75rem;
        padding: 10px 18px;
        gap: 8px;
    }

    .image-badge svg {
        width: 18px;
        height: 18px;
    }
}

.image-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 2;
}

/* Services Grid - Right Column */
.service-items > .service-item {
    grid-column: 2;
}

/* Service Items */
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(28, 172, 148, 0.1);
    border-radius: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    animation: fadeInRight 0.6s ease-out forwards;
}

.service-item:hover {
    background: rgba(28, 172, 148, 0.05);
    border-color: rgba(28, 172, 148, 0.3);
    transform: translateX(5px);
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }
.service-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-item-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 1, 24, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(28, 172, 148, 0.3);
    border-radius: 16px;
    color: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-item:hover .service-item-icon {
    background: rgba(28, 172, 148, 0.15);
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(28, 172, 148, 0.4);
}

.service-item-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-item-content {
    flex: 1;
}

.service-item-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.service-item:hover .service-item-content h3 {
    color: var(--color-primary);
}

.service-item-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
}

/* ================================
   PHILOSOPHY SECTION
   ================================ */

.support-philosophy {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(20, 10, 35, 0.5) 0%, rgba(10, 1, 24, 0.7) 50%, rgba(15, 5, 30, 0.6) 100%);
    position: relative;
    overflow: hidden;
}

.support-philosophy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(28, 172, 148, 0.15) 0%, rgba(150, 100, 200, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

/* Statement - Volle Breite */
.philosophy-statement {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(28, 172, 148, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.philosophy-quote-mark {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 140px;
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.12;
    line-height: 1;
    font-family: Georgia, serif;
}

.philosophy-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.philosophy-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.signature-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.philosophy-signature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Principles - 3 Columns nebeneinander */
.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.principle-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(28, 172, 148, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.principle-card:hover {
    background: rgba(28, 172, 148, 0.05);
    border-color: rgba(28, 172, 148, 0.4);
    transform: translateX(8px);
}

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

.principle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(10, 1, 24, 0.8);
    border: 2px solid rgba(28, 172, 148, 0.3);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.principle-card:hover .principle-icon {
    background: rgba(28, 172, 148, 0.15);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(5deg);
}

.principle-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.principle-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.principle-card:hover h3 {
    color: var(--color-primary);
}

.principle-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ================================
   CONTACT HERO SECTION
   ================================ */

.support-contact-hero {
    padding: 120px 0;
    background: linear-gradient(180deg, #050010 0%, #0a0520 50%, #060015 100%);
    position: relative;
    overflow: hidden;
}

.support-contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(28, 172, 148, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 172, 148, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    opacity: 0.5;
}

.support-contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(28, 172, 148, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(150, 100, 200, 0.12) 0%, transparent 40%);
    pointer-events: none;
    animation: pulseHero 15s ease-in-out infinite;
}

@keyframes pulseHero {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.support-contact-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

/* Hero Header */
.contact-hero-header {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Action Buttons */
.contact-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(28, 172, 148, 0.2);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(28, 172, 148, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.action-btn:hover {
    background: rgba(28, 172, 148, 0.08);
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(28, 172, 148, 0.2);
}

.action-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 172, 148, 0.1);
    border: 2px solid rgba(28, 172, 148, 0.3);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.action-btn:hover .action-icon {
    background: rgba(28, 172, 148, 0.2);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(5deg);
}

.action-icon svg {
    stroke: var(--color-primary);
}

.action-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.action-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-light);
    transition: color 0.3s ease;
}

.action-btn:hover .action-value {
    color: var(--color-primary);
}

/* Opening Hours */
.contact-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(28, 172, 148, 0.15);
    border-radius: 50px;
    margin-bottom: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.contact-hours svg {
    stroke: var(--color-primary);
    flex-shrink: 0;
}

.contact-hours span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-hours strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Ticket CTA */
.ticket-cta {
    text-align: center;
}

.contact-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.ticket-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.ticket-info svg {
    stroke: var(--color-primary);
    flex-shrink: 0;
}

.btn-hero {
    padding: 18px 50px;
    font-size: 1.15rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(28, 172, 148, 0.3);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(28, 172, 148, 0.5);
}

/* ================================
   TARGET AUDIENCE SECTION
   ================================ */

.target-audience {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(10, 1, 24, 0.95) 0%, rgba(15, 5, 30, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.target-audience::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(28, 172, 148, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.target-audience .container {
    position: relative;
    z-index: 1;
}

.target-audience .section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(28, 172, 148, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(28, 172, 148, 0.05), transparent);
    transition: left 0.6s ease;
}

.audience-card:hover::before {
    left: 100%;
}

.audience-card:hover {
    background: rgba(28, 172, 148, 0.05);
    border-color: rgba(28, 172, 148, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(28, 172, 148, 0.2);
}

.audience-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 1, 24, 0.8);
    border: 2px solid rgba(28, 172, 148, 0.3);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.audience-card:hover .audience-icon {
    background: rgba(28, 172, 148, 0.15);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(-5deg);
}

.audience-icon svg {
    stroke: var(--color-primary);
}

.audience-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.audience-card:hover h3 {
    color: var(--color-primary);
}

.audience-card > p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.audience-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.audience-features li {
    padding: 8px 16px;
    background: rgba(28, 172, 148, 0.1);
    border: 1px solid rgba(28, 172, 148, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.audience-card:hover .audience-features li {
    background: rgba(28, 172, 148, 0.15);
    border-color: var(--color-primary);
}

/* ================================
   ADVANTAGES SECTION - MARQUEE LAYOUT
   ================================ */

.advantages-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(5, 0, 15, 0.98) 0%, rgba(10, 1, 24, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(28, 172, 148, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(28, 172, 148, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
    pointer-events: none;
}

.advantages-section .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 0;
}

.advantages-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.advantages-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.advantages-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.advantages-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.advantages-marquee::before,
.advantages-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.advantages-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(10, 1, 24, 0.95) 0%, transparent 100%);
}

.advantages-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(10, 1, 24, 0.95) 0%, transparent 100%);
}

.advantages-track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 40s linear infinite;
    width: fit-content;
}

.advantages-track:hover {
    animation-play-state: paused;
}

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

.advantage-fact {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(28, 172, 148, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.advantage-fact:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(28, 172, 148, 0.2);
}

.fact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(28, 172, 148, 0.1);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.fact-icon svg {
    stroke: var(--color-primary);
    transition: all 0.3s ease;
}

.advantage-fact:hover .fact-icon {
    background: rgba(28, 172, 148, 0.2);
    border-color: var(--color-primary);
    transform: rotate(5deg) scale(1.05);
}

.advantage-fact:hover .fact-icon svg {
    stroke: #fff;
}

.fact-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
}

.advantage-fact:hover .fact-text {
    color: var(--color-primary);
}

/* ================================
   PRICING SECTION
   ================================ */

.pricing-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(10, 1, 24, 0.98) 0%, rgba(5, 0, 15, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(28, 172, 148, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 70px;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-option {
    position: relative;
    padding: 45px 35px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(28, 172, 148, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-option:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(28, 172, 148, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(28, 172, 148, 0.15);
}

.pricing-featured {
    background: rgba(28, 172, 148, 0.05);
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 70px rgba(28, 172, 148, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.2), rgba(28, 172, 148, 0.3));
    border: 1px solid var(--color-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge-featured {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
}

.pricing-badge-urgent {
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.2), rgba(255, 60, 60, 0.3));
    border-color: rgba(255, 100, 100, 0.6);
    color: rgba(255, 120, 120, 1);
}

.pricing-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(28, 172, 148, 0.08);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.pricing-icon svg {
    stroke: var(--color-primary);
    transition: all 0.3s ease;
}

.pricing-option:hover .pricing-icon {
    background: rgba(28, 172, 148, 0.15);
    border-color: var(--color-primary);
    transform: rotateY(360deg);
}

.pricing-featured .pricing-icon {
    background: rgba(28, 172, 148, 0.15);
    border-color: var(--color-primary);
}

.pricing-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.pricing-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    text-align: center;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    margin-bottom: 30px;
    border-top: 1px solid rgba(28, 172, 148, 0.2);
    border-bottom: 1px solid rgba(28, 172, 148, 0.2);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.price-unit {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.pricing-features li svg {
    flex-shrink: 0;
    stroke: var(--color-primary);
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(28, 172, 148, 0.05);
    border: 1px solid rgba(28, 172, 148, 0.2);
    border-radius: 16px;
}

.info-item svg {
    flex-shrink: 0;
    stroke: var(--color-primary);
    margin-top: 2px;
}

.info-item span {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.info-item strong {
    color: #fff;
}

/* ================================
   FAQ SECTION
   ================================ */

.faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(5, 0, 15, 0.98) 0%, rgba(10, 1, 24, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(28, 172, 148, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.faq-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(28, 172, 148, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(28, 172, 148, 0.3);
}

.faq-item.active {
    background: rgba(28, 172, 148, 0.05);
    border-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    stroke: var(--color-primary);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ================================
   FINAL CTA SECTION
   ================================ */

.final-cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(10, 1, 24, 0.98) 0%, rgba(5, 0, 15, 1) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(28, 172, 148, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.final-cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.final-cta-content {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 32px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.final-cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), transparent);
}

.cta-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: rgba(28, 172, 148, 0.1);
    border: 2px solid rgba(28, 172, 148, 0.3);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(28, 172, 148, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(28, 172, 148, 0);
    }
}

.cta-icon-wrapper svg {
    stroke: var(--color-primary);
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(28, 172, 148, 0.2);
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.cta-info-item svg {
    stroke: var(--color-primary);
    flex-shrink: 0;
}

.contact-card {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(28, 172, 148, 0.15);
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.contact-card:hover {
    background: rgba(28, 172, 148, 0.05);
    border-color: rgba(28, 172, 148, 0.4);
    transform: translateY(-5px);
}

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

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(10, 1, 24, 0.8);
    border: 2px solid rgba(28, 172, 148, 0.3);
    border-radius: 50%;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    background: rgba(28, 172, 148, 0.15);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.contact-icon svg {
    stroke: var(--color-primary);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--color-light);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-card:hover h3 {
    color: var(--color-primary);
}

.contact-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.contact-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(28, 172, 148, 0.1);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-badge {
    background: rgba(28, 172, 148, 0.2);
    border-color: var(--color-primary);
}

/* Ticket System Info Box */
.ticket-system-info {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(28, 172, 148, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.info-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.info-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 172, 148, 0.1);
    border: 2px solid rgba(28, 172, 148, 0.3);
    border-radius: 16px;
}

.info-icon svg {
    stroke: var(--color-primary);
}

.info-content h3 {
    font-size: 1.5rem;
    color: var(--color-light);
    margin-bottom: 12px;
}

.info-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    display: flex;
    width: fit-content;
}

/* Responsive */
@media (max-width: 1200px) {
    .service-items {
        gap: 40px;
    }

    .image-wrapper {
        width: 320px;
        height: 320px;
    }

    .service-item {
        gap: 16px;
    }

    .service-item-icon {
        width: 56px;
        height: 56px;
    }

    .service-item-icon svg {
        width: 26px;
        height: 26px;
    }

    .service-item-content h3 {
        font-size: 1rem;
    }

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

    /* Philosophy Section - 1200px */
    .philosophy-statement {
        padding: 50px;
    }

    .philosophy-principles {
        gap: 24px;
    }

    /* Contact Section - 1200px */
    .contact-options {
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .services-overview {
        padding: 100px 0;
    }

    .services-list {
        margin-bottom: 60px;
    }

    .services-list .section-title {
        font-size: 2.4rem;
    }

    .service-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-items > .service-item:nth-child(1),
    .service-items > .service-item:nth-child(2),
    .service-items > .service-item:nth-child(3),
    .service-items > .service-item:nth-child(4),
    .service-items > .service-item:nth-child(5),
    .service-items > .service-item:nth-child(6),
    .service-items > .service-item:nth-child(7),
    .service-items > .service-item:nth-child(8) {
        grid-column: 1;
    }

    .services-image {
        grid-row: 1;
        margin-bottom: 40px;
    }

    .image-wrapper {
        width: 280px;
        height: 280px;
    }

    .service-item {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .service-items > .service-item:nth-child(5),
    .service-items > .service-item:nth-child(6),
    .service-items > .service-item:nth-child(7),
    .service-items > .service-item:nth-child(8) {
        animation: fadeInLeft 0.6s ease-out forwards;
    }

    /* Philosophy Section - 1024px */
    .support-philosophy {
        padding: 100px 0;
    }

    .philosophy-statement {
        padding: 50px;
        margin-bottom: 60px;
    }

    .philosophy-title {
        font-size: 2.6rem;
    }

    .philosophy-lead {
        font-size: 1.1rem;
    }

    .philosophy-principles {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 800px;
    }

    /* Tab System - 1024px */
    .services-overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-image {
        position: relative;
        top: 0;
    }

    .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .browser-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact Section - 1024px */
    .support-contact {
        padding: 100px 0;
    }

    .support-contact .section-title {
        font-size: 2.4rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 600px;
    }

    .opening-hours-box {
        padding: 35px 40px;
    }

    .ticket-system-info {
        padding: 40px;
    }

    /* Target Audience - 1024px */
    .target-audience {
        padding: 100px 0;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 700px;
    }

    .contact-actions {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Advantages Section - 1024px */
    .advantages-section {
        padding: 100px 0;
    }

    .advantages-header {
        margin-bottom: 60px;
    }

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

    .advantages-intro {
        font-size: 1.1rem;
    }

    .advantages-track {
        gap: 50px;
    }

    .advantage-fact {
        padding: 24px 36px;
    }

    .fact-icon {
        width: 52px;
        height: 52px;
    }

    .fact-text {
        font-size: 1.2rem;
    }

    /* Pricing Section - 1024px */
    .pricing-section {
        padding: 100px 0;
    }

    .pricing-header {
        margin-bottom: 60px;
    }

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

    .pricing-subtitle {
        font-size: 1.1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto 50px;
    }

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-featured:hover {
        transform: scale(1) translateY(-8px);
    }

    .pricing-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .faq-header {
        margin-bottom: 60px;
    }

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

    .faq-subtitle {
        font-size: 1.1rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 22px 24px;
    }

    /* Final CTA Section - 1024px */
    .final-cta-section {
        padding: 100px 0;
    }

    .final-cta-content {
        padding: 50px 35px;
    }

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

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .cta-icon-wrapper svg {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .services-overview {
        padding: 80px 0;
    }

    .services-list {
        margin-bottom: 50px;
    }

    .services-list .section-title {
        font-size: 2rem;
    }

    .services-list .section-intro {
        font-size: 1rem;
    }

    .service-items {
        gap: 24px;
    }

    .image-wrapper {
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 0 auto;
    }

    .service-item {
        gap: 16px;
    }

    .service-item-icon {
        width: 52px;
        height: 52px;
    }

    .service-item-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-item-content h3 {
        font-size: 1rem;
    }

    .service-item-content p {
        font-size: 0.88rem;
    }

    /* Philosophy Section - 768px */
    .support-philosophy {
        padding: 80px 0;
    }

    .philosophy-statement {
        padding: 35px;
    }

    .philosophy-title {
        font-size: 2rem;
    }

    .philosophy-lead {
        font-size: 1.05rem;
    }

    .philosophy-quote-mark {
        font-size: 100px;
    }

    .principle-card {
        padding: 28px;
    }

    .principle-card h3 {
        font-size: 1.2rem;
    }

    .principle-card p {
        font-size: 0.95rem;
    }

    /* Tab System - 768px */
    .services-overview .section-title {
        font-size: 2.2rem;
    }

    .browser-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .browser-tab {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .tab-content {
        padding: 32px;
    }

    .tab-icon svg {
        width: 40px;
        height: 40px;
    }

    .tab-content h3 {
        font-size: 1.5rem;
    }

    .tab-content p {
        font-size: 1rem;
    }

    /* Contact Section - 768px */
    .support-contact {
        padding: 80px 0;
    }

    .support-contact .section-title {
        font-size: 2rem;
    }

    .opening-hours-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .hours-content h3 {
        font-size: 1.3rem;
    }

    .hours-time {
        font-size: 1rem;
    }

    .ticket-system-info {
        padding: 35px;
    }

    .info-content {
        flex-direction: column;
        text-align: center;
    }

    .info-content h3 {
        font-size: 1.3rem;
    }

    .info-content p {
        font-size: 1rem;
    }

    /* Target Audience - 768px */
    .target-audience {
        padding: 80px 0;
    }

    .target-audience .section-title {
        font-size: 2.2rem;
    }

    .section-intro {
        font-size: 1.05rem;
    }

    .audience-card {
        padding: 32px;
    }

    .audience-icon {
        width: 64px;
        height: 64px;
    }

    .audience-icon svg {
        width: 40px;
        height: 40px;
    }

    .audience-card h3 {
        font-size: 1.3rem;
    }

    .audience-card > p {
        font-size: 0.95rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Advantages Section - 768px */
    .advantages-section {
        padding: 80px 0;
    }

    .advantages-header {
        margin-bottom: 50px;
    }

    .advantages-title {
        font-size: 2.4rem;
    }

    .advantages-intro {
        font-size: 1.05rem;
    }

    .advantages-marquee::before,
    .advantages-marquee::after {
        width: 100px;
    }

    .advantages-track {
        gap: 40px;
    }

    .advantage-fact {
        padding: 22px 32px;
    }

    .fact-icon {
        width: 48px;
        height: 48px;
    }

    .fact-icon svg {
        width: 24px;
        height: 24px;
    }

    .fact-text {
        font-size: 1.1rem;
    }

    /* Pricing Section - 768px */
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-header {
        margin-bottom: 50px;
    }

    .pricing-title {
        font-size: 2.4rem;
    }

    .pricing-subtitle {
        font-size: 1.05rem;
    }

    .pricing-grid {
        max-width: 550px;
    }

    .pricing-option {
        padding: 38px 30px;
    }

    .pricing-icon {
        width: 70px;
        height: 70px;
    }

    .pricing-name {
        font-size: 1.6rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .info-item {
        padding: 20px;
    }

    /* FAQ Section - 768px */
    .faq-section {
        padding: 80px 0;
    }

    .faq-header {
        margin-bottom: 50px;
    }

    .faq-title {
        font-size: 2.4rem;
    }

    .faq-subtitle {
        font-size: 1.05rem;
    }

    .faq-question {
        font-size: 1.05rem;
        padding: 20px 22px;
    }

    .faq-item.active .faq-answer {
        padding: 0 22px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    /* Final CTA Section - 768px */
    .final-cta-section {
        padding: 80px 0;
    }

    .final-cta-content {
        padding: 45px 30px;
    }

    .cta-title {
        font-size: 2.4rem;
    }

    .cta-description {
        font-size: 1.05rem;
    }

    .cta-icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .cta-icon-wrapper svg {
        width: 60px;
        height: 60px;
    }

    .cta-info {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-overview {
        padding: 60px 0;
    }

    .services-overview-grid {
        padding: 0 20px;
    }

    .services-list .section-title {
        font-size: 1.75rem;
    }

    .services-list .section-intro {
        font-size: 0.95rem;
    }

    .image-wrapper {
        width: 100%;
        max-width: 320px;
        height: 320px;
        margin: 0 auto;
    }

    .image-badge {
        top: 12px;
        right: 12px;
        padding: 8px 14px;
        font-size: 0.7rem;
    }

    .image-badge svg {
        width: 16px;
        height: 16px;
    }

    .service-item-content h3 {
        font-size: 0.95rem;
    }

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

    /* Philosophy Section - 480px */
    .support-philosophy {
        padding: 60px 0;
    }

    .philosophy-statement {
        padding: 30px;
    }

    .philosophy-title {
        font-size: 1.75rem;
    }

    .philosophy-lead {
        font-size: 1rem;
    }

    .philosophy-quote-mark {
        font-size: 80px;
        top: -20px;
    }

    .philosophy-signature span {
        font-size: 0.85rem;
    }

    .principle-card {
        padding: 24px;
    }

    .principle-icon {
        width: 56px;
        height: 56px;
    }

    .principle-icon svg {
        width: 28px;
        height: 28px;
    }

    .principle-card h3 {
        font-size: 1.1rem;
    }

    .principle-card p {
        font-size: 0.9rem;
    }

    /* Tab System - 480px */
    .services-overview .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .browser-tabs {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .browser-tab {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .tab-content {
        padding: 24px;
    }

    .tab-icon {
        margin-bottom: 16px;
    }

    .tab-icon svg {
        width: 36px;
        height: 36px;
    }

    .tab-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .tab-content p {
        font-size: 0.95rem;
    }

    .image-wrapper {
        height: 400px;
    }

    /* Contact Section - 480px */
    .support-contact {
        padding: 60px 0;
    }

    .support-contact .section-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .opening-hours-box {
        padding: 25px;
        margin-bottom: 40px;
    }

    .hours-icon {
        width: 64px;
        height: 64px;
    }

    .hours-icon svg {
        width: 36px;
        height: 36px;
    }

    .hours-content h3 {
        font-size: 1.2rem;
    }

    .hours-time {
        font-size: 0.95rem;
    }

    .hours-note {
        font-size: 0.88rem;
    }

    .contact-card {
        padding: 30px 24px;
    }

    .contact-icon {
        width: 64px;
        height: 64px;
    }

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

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-card p {
        font-size: 0.95rem;
    }

    .ticket-system-info {
        padding: 30px;
    }

    .info-icon {
        width: 56px;
        height: 56px;
    }

    .info-icon svg {
        width: 28px;
        height: 28px;
    }

    .info-content h3 {
        font-size: 1.2rem;
    }

    .info-content p {
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

    /* Target Audience - 480px */
    .target-audience {
        padding: 60px 0;
    }

    .target-audience .section-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .audience-card {
        padding: 28px;
    }

    .audience-icon {
        width: 56px;
        height: 56px;
    }

    .audience-icon svg {
        width: 36px;
        height: 36px;
    }

    .audience-card h3 {
        font-size: 1.2rem;
    }

    .audience-card > p {
        font-size: 0.9rem;
    }

    .audience-features li {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .action-btn {
        padding: 20px 24px;
    }

    .btn-hero {
        padding: 16px 40px;
        font-size: 1rem;
    }

    /* Advantages Section - 480px */
    .advantages-section {
        padding: 60px 0;
    }

    .advantages-header {
        margin-bottom: 40px;
    }

    .advantages-title {
        font-size: 2rem;
    }

    .advantages-intro {
        font-size: 1rem;
    }

    .advantages-marquee::before,
    .advantages-marquee::after {
        width: 60px;
    }

    .advantages-track {
        gap: 30px;
    }

    .advantage-fact {
        padding: 20px 28px;
        gap: 16px;
    }

    .fact-icon {
        width: 44px;
        height: 44px;
    }

    .fact-icon svg {
        width: 22px;
        height: 22px;
    }

    .fact-text {
        font-size: 1rem;
    }

    /* Pricing Section - 480px */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-header {
        margin-bottom: 40px;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
    }

    .pricing-grid {
        gap: 24px;
        margin-bottom: 40px;
    }

    .pricing-option {
        padding: 32px 24px;
    }

    .pricing-badge {
        top: -10px;
        right: 20px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    .pricing-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

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

    .pricing-name {
        font-size: 1.4rem;
    }

    .pricing-description {
        font-size: 0.95rem;
    }

    .pricing-price {
        padding: 20px 0;
        margin-bottom: 25px;
    }

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

    .price-unit {
        font-size: 0.9rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
        padding: 10px 0;
    }

    .info-item {
        padding: 18px;
    }

    .info-item span {
        font-size: 0.9rem;
    }

    /* FAQ Section - 480px */
    .faq-section {
        padding: 60px 0;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-grid {
        gap: 12px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
        gap: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    /* Final CTA Section - 480px */
    .final-cta-section {
        padding: 60px 0;
    }

    .final-cta-content {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .cta-icon-wrapper svg {
        width: 50px;
        height: 50px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 30px;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-info {
        flex-direction: column;
        gap: 15px;
        padding-top: 25px;
    }

    .cta-info-item {
        font-size: 0.9rem;
    }
}

/* Framework CTA Button Animation */
.framework-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.framework-cta-button:hover::before {
    left: 100%;
}

.framework-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(28, 172, 148, 0.6), 0 0 40px rgba(28, 172, 148, 0.4);
}

.framework-cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Custom Map Marker Animation */
@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(28, 172, 148, 0.6);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(28, 172, 148, 0.9);
    }
}

/* Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.leaflet-popup-tip {
    background: rgba(10, 1, 24, 0.98) !important;
    border: 1px solid rgba(28, 172, 148, 0.4) !important;
}

.custom-popup .leaflet-popup-close-button {
    color: #1cac94 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    padding: 8px 12px !important;
}

.custom-popup .leaflet-popup-close-button:hover {
    color: #ffffff !important;
}

/* ============================================
   ÜBER MICH PAGE - NEW STYLES
   ============================================ */

/* Hero Section with Photo */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero-photo {
    position: relative;
}

.photo-frame-large {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(28, 172, 148, 0.3);
}

.photo-frame-large img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.bundeswehr-badge-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 1, 24, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid rgba(28, 172, 148, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bundeswehr-badge-overlay svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.bundeswehr-badge-overlay span {
    color: var(--color-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.about-hero-content {
    padding: 40px 0;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-hero-text {
    font-size: 1.5rem;
    color: var(--color-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.about-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* About Facts Grid */
.about-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-fact {
    background: rgba(28, 172, 148, 0.08);
    border: 2px solid rgba(28, 172, 148, 0.2);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.about-fact:hover {
    background: rgba(28, 172, 148, 0.15);
    border-color: rgba(28, 172, 148, 0.4);
    transform: translateY(-3px);
}

.about-fact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-fact-icon svg {
    color: var(--color-primary);
}

.about-fact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-fact-text strong {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-fact-text span {
    font-size: 1.1rem;
    color: var(--color-light);
    font-weight: 600;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-year {
    grid-column: 3;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-year {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: rgba(28, 172, 148, 0.08);
    border: 2px solid rgba(28, 172, 148, 0.2);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(28, 172, 148, 0.12);
    border-color: rgba(28, 172, 148, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.timeline-icon svg {
    color: var(--color-primary);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--color-light);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.timeline-featured .timeline-content {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.15), rgba(78, 100, 255, 0.15));
    border-color: var(--color-primary);
    border-width: 3px;
}

.timeline-start .timeline-content {
    background: rgba(78, 100, 255, 0.12);
    border-color: var(--color-secondary);
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.experience-card {
    background: rgba(28, 172, 148, 0.08);
    border: 2px solid rgba(28, 172, 148, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.experience-card:hover {
    background: rgba(28, 172, 148, 0.12);
    border-color: rgba(28, 172, 148, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.experience-current {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.12), rgba(78, 100, 255, 0.12));
    border-color: var(--color-primary);
    border-width: 3px;
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(28, 172, 148, 0.2);
}

.experience-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 172, 148, 0.2);
    border-radius: 12px;
}

.experience-icon svg {
    color: var(--color-primary);
}

.experience-header h3 {
    font-size: 1.5rem;
    color: var(--color-light);
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.experience-item {
    padding-left: 0;
}

.experience-item strong {
    display: block;
    font-size: 1.15rem;
    color: var(--color-light);
    margin-bottom: 8px;
}

.experience-duration {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.experience-item ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.experience-item li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.experience-item li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Skills Wrapper */
.skills-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.skills-category {
    background: rgba(28, 172, 148, 0.08);
    border: 2px solid rgba(28, 172, 148, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.skills-category:hover {
    background: rgba(28, 172, 148, 0.12);
    border-color: rgba(28, 172, 148, 0.4);
    transform: translateY(-5px);
}

.skills-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    color: var(--color-light);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(28, 172, 148, 0.2);
}

.skills-category-title svg {
    color: var(--color-primary);
}

/* Skill Bars */
.skill-item {
    margin-bottom: 25px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.skill-name {
    font-size: 1.05rem;
    color: var(--color-light);
    font-weight: 600;
}

.skill-percent {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 700;
}

.skill-bar {
    height: 12px;
    background: rgba(28, 172, 148, 0.15);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 6px;
    position: relative;
    width: 0;
    transition: width 1.5s ease-out;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes fillSkillBar {
    to { width: var(--skill-width, 0%); }
}

/* Tech Tags */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tag {
    padding: 10px 18px;
    background: rgba(28, 172, 148, 0.15);
    border: 2px solid rgba(28, 172, 148, 0.3);
    border-radius: 25px;
    font-size: 0.95rem;
    color: var(--color-light);
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(28, 172, 148, 0.25);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Language List */
.language-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.language-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(28, 172, 148, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(28, 172, 148, 0.2);
    transition: all 0.3s ease;
}

.language-item:hover {
    background: rgba(28, 172, 148, 0.15);
    border-color: var(--color-primary);
}

.language-name {
    font-size: 1.05rem;
    color: var(--color-light);
    font-weight: 600;
}

.language-level {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Certificates Featured */
.certificates-featured {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.certificate-card {
    background: rgba(28, 172, 148, 0.08);
    border: 2px solid rgba(28, 172, 148, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.certificate-card:hover {
    background: rgba(28, 172, 148, 0.12);
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.certificate-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.1);
}

.certificate-content {
    padding: 30px;
}

.certificate-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(28, 172, 148, 0.2);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.certificate-content h3 {
    font-size: 1.4rem;
    color: var(--color-light);
    margin-bottom: 10px;
}

.certificate-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.6;
}

.certificate-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-gray);
}

.certificate-meta svg {
    color: var(--color-primary);
}

/* Qualifications Grid */
.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.qualification-item {
    background: rgba(28, 172, 148, 0.08);
    border: 2px solid rgba(28, 172, 148, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.qualification-item:hover {
    background: rgba(28, 172, 148, 0.12);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.qualification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.qualification-icon svg {
    color: var(--color-primary);
}

.qualification-item h4 {
    font-size: 1.15rem;
    color: var(--color-light);
    margin-bottom: 8px;
}

.qualification-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.qualification-year {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(28, 172, 148, 0.2);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: rgba(28, 172, 148, 0.08);
    border: 2px solid rgba(28, 172, 148, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.project-card:hover {
    background: rgba(28, 172, 148, 0.12);
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.project-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.project-icon svg {
    color: var(--color-primary);
}

.project-card h3 {
    font-size: 1.4rem;
    color: var(--color-light);
    margin-bottom: 15px;
}

.project-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tags .tag {
    padding: 6px 12px;
    background: rgba(28, 172, 148, 0.15);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Personal Grid */
.personal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.personal-card {
    background: rgba(28, 172, 148, 0.08);
    border: 2px solid rgba(28, 172, 148, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.personal-card:hover {
    background: rgba(28, 172, 148, 0.12);
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.personal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.personal-icon svg {
    color: var(--color-primary);
}

.personal-card h3 {
    font-size: 1.3rem;
    color: var(--color-light);
    margin-bottom: 12px;
}

.personal-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Philosophy Banner */
.philosophy-banner {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.15), rgba(78, 100, 255, 0.15));
    border: 3px solid rgba(28, 172, 148, 0.4);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.philosophy-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 172, 148, 0.2);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.philosophy-icon svg {
    color: var(--color-primary);
}

.philosophy-content h3 {
    font-size: 1.8rem;
    color: var(--color-light);
    margin-bottom: 15px;
    line-height: 1.4;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Final CTA Section */
.cta-final-section {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.1), rgba(78, 100, 255, 0.1));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(28, 172, 148, 0.15), transparent);
    z-index: 0;
}

.cta-final-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-final-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 172, 148, 0.15);
    border: 3px solid var(--color-primary);
    border-radius: 30px;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.cta-final-icon svg {
    color: var(--color-primary);
}

/* ============================================
   RESPONSIVE - ÜBER MICH PAGE
   ============================================ */

@media (max-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .skills-wrapper {
        grid-template-columns: 1fr;
    }

    .certificates-featured {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .personal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qualifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }

    .timeline-item:nth-child(even) .timeline-year,
    .timeline-item:nth-child(odd) .timeline-year {
        grid-column: 1;
        grid-row: 1;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
    }

    .about-facts-grid {
        grid-template-columns: 1fr;
    }

    .personal-grid {
        grid-template-columns: 1fr;
    }

    .qualifications-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

    .philosophy-icon {
        width: 80px;
        height: 80px;
    }

    .philosophy-content h3 {
        font-size: 1.4rem;
    }

    .philosophy-content p {
        font-size: 1rem;
    }
}

/* ===========================================================================

/* ===========================================================================
   PREMIUM COOKIE BANNER - ULTRA GLASS-MORPHISM DESIGN
   DSGVO-konform | Performance-optimiert | Einzigartig
   =========================================================================== */

/* Cookie Banner Overlay - Performance Optimized */
.cookie-banner {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 1, 24, 0.95);
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    overflow: hidden;
    will-change: transform;
    /* Performance optimization to prevent CLS */
    contain: layout style paint;
    content-visibility: auto;
}


.cookie-banner:not([hidden]) {
    display: block;
}

.cookie-banner.show {
    transform: translateY(0);
}

/* Content Container - Performance Optimized */
.cookie-banner-content {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
    padding: 40px;
    color: var(--color-light);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(15, 5, 35, 0.98);
    border: 1px solid rgba(28, 172, 148, 0.4);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Title - Performance Optimized */
.cookie-banner-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.cookie-icon svg {
    color: rgba(255, 255, 255, 0.9);
}

/* Info Text mit besserer Lesbarkeit */
.cookie-banner-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* BEIDE BUTTONS JETZT EXAKT GLEICH PROMINENT! */
.cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
    margin-bottom: 22px;
}

.cookie-btn {
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ACCEPT Button - Grün Gradient DUNKLER (GLEICH PROMINENT!) */
.cookie-btn-accept {
    background: linear-gradient(135deg,
        #138872 0%,
        #159a7f 50%,
        #138872 100%
    );
    border-color: #138872;
    color: white;
    box-shadow:
        0 4px 15px rgba(19, 136, 114, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(19, 136, 114, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* REJECT Button - GLEICHE Farbe wie Accept (DSGVO-konform!) */
.cookie-btn-reject {
    background: linear-gradient(135deg,
        #138872 0%,
        #159a7f 50%,
        #138872 100%
    );
    border-color: #138872;
    color: white;
    box-shadow:
        0 4px 15px rgba(19, 136, 114, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(19, 136, 114, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Customize Button - Hauptdesign Purple/Dark */
.cookie-btn-customize {
    background: linear-gradient(135deg,
        rgba(41, 23, 99, 0.8) 0%,
        rgba(55, 35, 120, 0.9) 50%,
        rgba(41, 23, 99, 0.8) 100%
    );
    border-color: #291763;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 25px rgba(41, 23, 99, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cookie-btn-customize:hover {
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(135deg,
        rgba(41, 23, 99, 1) 0%,
        rgba(70, 45, 140, 1) 50%,
        rgba(41, 23, 99, 1) 100%
    );
    box-shadow:
        0 12px 35px rgba(41, 23, 99, 0.7),
        0 0 30px rgba(41, 23, 99, 0.6);
}

/* Settings Panel mit Ultra Glass-Morphism */
.cookie-settings {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg,
        rgba(10, 1, 24, 0.4) 0%,
        rgba(15, 5, 30, 0.5) 100%
    );
    border: 1px solid rgba(28, 172, 148, 0.5);
    border-radius: 24px;
    max-height: 65vh;
    overflow-y: auto;
    backdrop-filter: blur(30px) saturate(150%);
    box-shadow:
        0 0 60px rgba(28, 172, 148, 0.2),
        0 0 100px rgba(208, 9, 141, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 0 60px rgba(255, 255, 255, 0.03),
        0 10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-settings-intro {
    margin-bottom: 25px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    background: rgba(28, 172, 148, 0.1);
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
}

/* Cookie Category mit Glass Cards */
.cookie-category {
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 18px;
    backdrop-filter: blur(20px) saturate(140%);
    box-shadow:
        0 0 30px rgba(28, 172, 148, 0.15),
        inset 0 0 30px rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    border-color: rgba(28, 172, 148, 0.5);
    transform: translateY(-2px);
    box-shadow:
        0 0 40px rgba(28, 172, 148, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.03);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-category-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Ultra Custom Checkbox mit Neon-Glow */
.cookie-category-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    position: relative;
    width: 28px;
    height: 28px;
    border: 3px solid var(--color-primary);
    border-radius: 6px;
    background: rgba(10, 1, 24, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 0 15px rgba(28, 172, 148, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cookie-category-label input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-color: var(--color-secondary);
    transform: scale(1.1);
    box-shadow: 
        0 0 25px rgba(28, 172, 148, 0.8),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.cookie-category-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 8px;
    width: 8px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    animation: checkPop 0.3s ease;
}

@keyframes checkPop {
    0% { transform: rotate(45deg) scale(0); }
    50% { transform: rotate(45deg) scale(1.2); }
    100% { transform: rotate(45deg) scale(1); }
}

.cookie-category-label input[type="checkbox"]:disabled + .checkbox-custom {
    opacity: 0.7;
    cursor: not-allowed;
    background: rgba(28, 172, 148, 0.3);
    box-shadow: none;
}

/* Premium Badge */
.badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.3), rgba(22, 210, 170, 0.3));
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
    box-shadow: 0 0 15px rgba(28, 172, 148, 0.4);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 15px rgba(28, 172, 148, 0.4); }
    50% { box-shadow: 0 0 25px rgba(28, 172, 148, 0.7); }
}

/* Category Description */
.cookie-category-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Details Toggle mit Animation */
.details-toggle {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.2), rgba(22, 210, 170, 0.2));
    border: 1px solid rgba(28, 172, 148, 0.4);
    color: var(--color-primary);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.details-toggle:hover {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.3), rgba(22, 210, 170, 0.3));
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(28, 172, 148, 0.4);
    transform: translateY(-2px);
}

.toggle-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.details-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

/* Cookie Details Panel */
.cookie-details {
    margin-top: 15px;
    padding: 20px;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(10, 1, 24, 0.6) 100%
    );
    border-radius: 12px;
    border: 1px solid rgba(28, 172, 148, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cookie-details-empty {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    text-align: center;
}

/* Cookie Items mit Premium Look */
.cookie-item {
    padding: 15px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-radius: 10px;
    border-left: 4px solid var(--color-primary);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.cookie-item:hover {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    border-left-color: var(--color-secondary);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(28, 172, 148, 0.2);
}

.cookie-item-name {
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 6px;
    font-size: 1.05rem;
    text-shadow: 0 0 10px rgba(28, 172, 148, 0.5);
}

.cookie-item-provider,
.cookie-item-purpose,
.cookie-item-expiry {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cookie-item-provider {
    color: rgba(255, 255, 255, 0.7);
}

.cookie-item-purpose {
    color: rgba(255, 255, 255, 0.85);
}

.cookie-item-expiry {
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
}

/* Settings Actions - Beide Buttons gleich! */
.cookie-settings-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings-actions[hidden] {
    display: none !important;
}

.cookie-btn-save {
    background: linear-gradient(135deg, #138872, #159a7f);
    border-color: #138872;
    color: white;
}

.cookie-btn-cancel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

/* Footer Links mit Premium Style */
.cookie-banner-footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.95rem;
}

.cookie-banner-footer a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(28, 172, 148, 0.3);
}

.cookie-banner-footer a:hover {
    color: var(--color-secondary);
    text-shadow: 0 0 20px rgba(28, 172, 148, 0.7);
    text-decoration: underline;
}

.cookie-banner-footer .separator {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* Floating Settings Button - Ultra Premium */
.cookie-settings-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    padding: 0;
    background: rgba(208, 9, 141, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid var(--color-secondary);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    box-shadow: 0 0 30px rgba(208, 9, 141, 0.3),
                0 8px 24px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.cookie-settings-btn svg {
    color: var(--color-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cookie-settings-btn:hover {
    background: rgba(208, 9, 141, 0.25);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(208, 9, 141, 0.5),
                0 12px 32px rgba(0, 0, 0, 0.5);
}

.cookie-settings-btn:hover svg {
    transform: scale(1.1);
}

.cookie-settings-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(208, 9, 141, 0.3),
        rgba(146, 45, 194, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-settings-btn:hover::before {
    opacity: 1;
}

.cookie-settings-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--color-secondary), transparent);
    opacity: 0.5;
    animation: rotate 3s linear infinite;
    z-index: -1;
}

.cookie-settings-btn:not([hidden]) {
    display: flex;
}

/* Accessibility - Premium Focus States */
.cookie-btn:focus,
.details-toggle:focus,
.cookie-category-label:focus-within,
.cookie-settings-btn:focus {
    outline: 3px solid var(--color-primary);
    outline-offset: 4px;
    box-shadow: 0 0 0 6px rgba(28, 172, 148, 0.3);
}

/* Custom Scrollbar für Settings Panel */
.cookie-settings::-webkit-scrollbar {
    width: 10px;
}

.cookie-settings::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.cookie-settings::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(28, 172, 148, 0.5);
}

.cookie-settings::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
    box-shadow: 0 0 20px rgba(28, 172, 148, 0.8);
}

/* Mobile Responsive - Optimiert */
@media (max-width: 768px) {
    .cookie-banner-content {
        padding: 25px 20px;
    }

    .cookie-banner-title {
        font-size: 1.4rem;
    }

    .cookie-banner-text {
        font-size: 0.95rem;
    }

    .cookie-banner-actions {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .cookie-banner {
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(12px);
    }

    .cookie-banner-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95%;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        padding: 20px;
        background: linear-gradient(135deg,
            rgba(10, 1, 24, 0.95) 0%,
            rgba(15, 5, 35, 0.98) 50%,
            rgba(10, 1, 24, 0.95) 100%
        );
        backdrop-filter: blur(30px) saturate(180%);
        border: 1px solid rgba(28, 172, 148, 0.4);
        border-radius: 20px;
        box-shadow:
            0 0 60px rgba(28, 172, 148, 0.3),
            0 0 100px rgba(208, 9, 141, 0.2),
            inset 0 0 80px rgba(255, 255, 255, 0.05);
    }

    .cookie-banner-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .cookie-icon svg {
        width: 24px;
        height: 24px;
    }

    .cookie-settings {
        padding: 12px;
        padding-bottom: 8px;
        margin-top: 12px;
        max-height: none;
        overflow-y: auto;
        flex: 1 1 auto;
        border-radius: 16px;
        border: 1px solid rgba(28, 172, 148, 0.4);
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        box-shadow:
            0 0 40px rgba(28, 172, 148, 0.15),
            inset 0 0 40px rgba(255, 255, 255, 0.02);
    }

    .cookie-settings-intro {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .cookie-category {
        padding: 12px;
        margin-bottom: 12px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(28, 172, 148, 0.2);
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(28, 172, 148, 0.1);
    }

    .cookie-category-label {
        font-size: 0.95rem;
    }

    .cookie-category-description {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .cookie-category-header {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .details-toggle {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .cookie-settings-actions {
        position: sticky;
        bottom: 0;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 12px;
        padding: 12px;
        background: linear-gradient(135deg,
            rgba(10, 1, 24, 0.98) 0%,
            rgba(15, 5, 35, 1) 100%
        );
        border-top: 1px solid rgba(28, 172, 148, 0.5);
        border-radius: 12px 12px 0 0;
        backdrop-filter: blur(20px);
        z-index: 10;
        flex-shrink: 0;
    }

    .cookie-settings-actions[hidden] {
        display: none !important;
    }

    .cookie-btn-save,
    .cookie-btn-cancel {
        padding: 12px 16px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .cookie-settings-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .cookie-settings-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .cookie-banner-actions {
        grid-template-columns: 1fr 1fr;
    }

    .cookie-btn-customize {
        grid-column: 1 / -1;
    }
}

/* Smaller Mobile Screens */
@media (max-width: 640px) {
    .cookie-settings-btn {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
    }

    .cookie-settings-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Performance: Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .cookie-banner,
    .cookie-btn,
    .details-toggle,
    .toggle-icon,
    .cookie-settings-btn,
    .cookie-icon,
    .badge {
        transition: none;
        animation: none;
    }

    .cookie-banner.show {
        animation: none;
    }

    .cookie-banner::before {
        animation: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .cookie-banner {
        border-top-width: 4px;
    }

    .cookie-btn {
        border-width: 3px;
    }

    .cookie-category {
        border-width: 2px;
    }
}

/* Print - Hide Cookie Banner */
@media print {
    .cookie-banner,
    .cookie-settings-btn {
        display: none !important;
    }
}

/* Animation für Banner Einblendung */
@keyframes premiumSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner.show {
    animation: premiumSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
