/* ============================================
   MiMann.net Systemhaus - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Black/Anthracite Theme */
    --color-primary: #1a1a1a;
    --color-primary-light: #2d2d2d;
    --color-primary-dark: #0d0d0d;
    --color-primary-rgb: 26, 26, 26;
    
    /* Accent Colors - MiMann Red */
    --color-accent: #c41e3a;
    --color-accent-light: #e63950;
    --color-accent-dark: #a01830;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #1e2642;
    
    /* Semantic Colors */
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(196, 30, 58, 0.2);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    
    /* Header */
    --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-700);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section */
.section {
    padding: var(--space-4xl) 0;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.section__description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-200);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

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

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 45px;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-accent);
    background: rgba(196, 30, 58, 0.08);
}

/* Active state on li element */
.nav__item.active > .nav__link {
    color: var(--color-accent);
    font-weight: 600;
    background: rgba(196, 30, 58, 0.1);
}

.nav__item.active > .nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* Dropdown hover should not override active styling */
.nav__dropdown:hover > .nav__link {
    color: var(--color-accent);
    background: transparent;
}

.nav__dropdown.active:hover > .nav__link {
    color: var(--color-accent);
    background: rgba(196, 30, 58, 0.1);
}

.nav__link--cta {
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav__link--cta::after {
    display: none !important;
}

.nav__item.active > .nav__link--cta {
    background: #b01830;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
}

.nav__link--cta:hover {
    background: #b01830;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
}

.nav__dropdown {
    position: relative;
}

.nav__dropdown-icon {
    transition: transform var(--transition-fast);
}

.nav__dropdown:hover .nav__dropdown-icon {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

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

.nav__dropdown-menu li a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9375rem;
    color: var(--color-gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav__dropdown-menu li a:hover {
    background: rgba(196, 30, 58, 0.08);
    color: var(--color-accent);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,20,30,0.92) 0%, rgba(26,26,42,0.88) 50%, rgba(30,30,50,0.85) 100%);
    z-index: -2;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

.hero__glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: pulse 8s ease-in-out infinite;
}

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

.hero__content {
    position: relative;
    max-width: 800px;
    color: var(--color-white);
    padding: var(--space-3xl) 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease forwards;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.hero__badge-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hero__badge--warning {
    background: rgba(196, 30, 58, 0.2);
    border-color: rgba(196, 30, 58, 0.4);
}

.hero__badge--warning .hero__badge-icon {
    stroke: var(--color-accent);
}

.hero__badge--check .hero__badge-icon {
    stroke: var(--color-success);
}

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

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero__title-gradient {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero__stats {
    display: flex;
    gap: var(--space-3xl);
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-mono);
}

.hero__stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(196, 30, 58, 0.4);
}

.btn--primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.5);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

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

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

.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--color-gray-50);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    position: relative;
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.service-card__text {
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    flex-grow: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: gap var(--transition-fast);
    margin-top: auto;
}

.service-card__link:hover {
    gap: var(--space-md);
}

.service-card--cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-color: transparent;
}

.service-card--cta .service-card__icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card--cta .service-card__title,
.service-card--cta .service-card__text {
    color: var(--color-white);
}

.service-card--cta .service-card__text {
    color: rgba(255, 255, 255, 0.8);
}

.service-card--cta .service-card__link {
    color: var(--color-white);
}

/* ============================================
   Why Us Section
   ============================================ */
.why-us__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.why-us__content .section__title {
    text-align: left;
}

.why-us__text {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.why-us__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.why-us__item {
    display: flex;
    gap: var(--space-md);
}

.why-us__item-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.1);
    border-radius: var(--radius-full);
}

.why-us__item-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-accent);
}

.why-us__item-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.why-us__item-content p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

.why-us__visual {
    display: flex;
    justify-content: center;
}

.why-us__card {
    width: 100%;
    max-width: 420px;
    background: var(--color-primary-dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.why-us__card-header {
    display: flex;
    gap: 8px;
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.2);
}

.why-us__card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-600);
}

.why-us__card-dot:nth-child(1) { background: #ff5f56; }
.why-us__card-dot:nth-child(2) { background: #ffbd2e; }
.why-us__card-dot:nth-child(3) { background: #27ca40; }

.why-us__card-content {
    padding: var(--space-xl);
}

.why-us__terminal {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 2;
    color: var(--color-gray-300);
}

.terminal__prompt {
    color: var(--color-accent-light);
}

.terminal__success {
    color: var(--color-success);
}

.terminal__value {
    color: var(--color-white);
}

.terminal__cursor {
    animation: blink 1s step-end infinite;
}

/* ============================================
   Process Section
   ============================================ */
.process {
    background: var(--color-white);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.process__steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gray-200), var(--color-accent), var(--color-gray-200));
}

.process__step {
    text-align: center;
    position: relative;
}

.process__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-mono);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.process__step:hover .process__step-number {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.1);
    transition: all var(--transition-base);
}

.process__step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.process__step-text {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* Process section with background image (dark) */
.process[style*="background-image"] .section__title,
.process[style*="background-image"] .section__label {
    color: var(--color-white);
}

.process[style*="background-image"] .process__step-title {
    color: var(--color-white);
}

.process[style*="background-image"] .process__step-text {
    color: rgba(255, 255, 255, 0.8);
}

.process[style*="background-image"] .process__steps::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.2), var(--color-accent), rgba(255,255,255,0.2));
}

/* ============================================
   Region / Standort Section
   ============================================ */
.region-section {
    padding: 100px 0;
    background: white;
}

.region-section--gray {
    background: var(--color-gray-50);
}

.region__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.region__grid--reverse {
    direction: rtl;
}

.region__grid--reverse > * {
    direction: ltr;
}

.region__map {
    position: relative;
    padding: 40px;
    background: var(--color-gray-50);
    border-radius: 24px;
}

.region-section--gray .region__map {
    background: white;
}

.region__map img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.region__map-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.region-section--gray .region__map-badge {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.region__map-badge strong {
    display: block;
    color: var(--color-accent);
    font-size: 1.1rem;
}

.region__map-badge span {
    font-size: 0.85rem;
    color: var(--color-gray-600);
}

.region__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
}

.region__content p {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.region__areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2rem;
}

.region__area-tag {
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.region__area-tag:hover {
    background: var(--color-accent);
    color: white;
}

@media (max-width: 1024px) {
    .region__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .region__grid--reverse {
        direction: ltr;
    }
    
    .region__map {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .region-section {
        padding: 60px 0;
    }
    
    .region__content h2 {
        font-size: 2rem;
    }
    
    .region__map {
        padding: 30px;
    }
    
    .region__map-badge {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
    }
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    background: linear-gradient(135deg, #2d2d4a, #1e3a5f);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
    filter: blur(40px);
}

.cta__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    position: relative;
}

.cta__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.cta__actions {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-shrink: 0;
}

.cta__phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.cta__phone:hover {
    color: var(--color-accent-light);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--color-gray-50);
}

.contact-section--white {
    background: white;
}

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

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info__header {
    margin-bottom: 16px;
}

.contact-info__header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.contact-info__header p {
    color: var(--color-gray-600);
    font-size: 1.05rem;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s ease;
}

.contact-section--white .contact-card {
    background: var(--color-gray-50);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--color-accent), #e63950);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card__icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.contact-card__content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 4px;
}

.contact-card__content p,
.contact-card__content a {
    color: var(--color-gray-600);
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.6;
}

.contact-card__content a:hover {
    color: var(--color-accent);
}

.contact-card__content .contact-link {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-top: 4px;
}

.contact-card__content .contact-link:hover {
    color: var(--color-accent);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-section--white .contact-form-wrapper {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}

.form-row .form-group {
    margin-bottom: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-200);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--color-gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

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

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
}

.form-group--checkbox input {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--color-accent);
}

.form-group--checkbox label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-gray-600);
    margin-bottom: 0;
}

.form-group--checkbox label a {
    color: var(--color-accent);
    text-decoration: none;
}

.form-group--checkbox label a:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #2d2d4a, #1e3a5f);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 45, 74, 0.4);
}

.form-submit svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-wrapper {
        padding: 36px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .contact-card {
        padding: 20px;
    }
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    padding: 0 0 100px;
    background: var(--color-gray-50);
}

.map-section--white {
    background: white;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 300px;
}

.map-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-overlay h4 svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
}

.map-overlay p {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
}

.map-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 12px;
}

.map-overlay a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .map-section {
        padding: 0 0 60px;
    }
    
    .map-wrapper {
        border-radius: 16px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
    
    .map-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        border-radius: 0 0 16px 16px;
        max-width: none;
        box-shadow: none;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-400);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer__logo {
    height: 40px;
    margin-bottom: var(--space-lg);
}

.footer__tagline {
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.footer__contact-info {
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer__contact-info strong {
    color: var(--color-white);
}

.footer__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__list a {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--color-white);
}

.footer__list--contact li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer__list--contact svg {
    flex-shrink: 0;
    stroke: var(--color-accent);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-gray-800);
}

.footer__copyright {
    font-size: 0.875rem;
}

.footer__legal {
    display: flex;
    gap: var(--space-xl);
}

.footer__legal a {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.footer__legal a:hover {
    color: var(--color-white);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us__wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .why-us__visual {
        order: -1;
    }
    
    .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }
    
    .process__steps::before {
        display: none;
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
    
    .nav__menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: var(--space-lg);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__list {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .nav__link {
        width: 100%;
        justify-content: flex-start;
        padding: var(--space-md);
    }
    
    .nav__dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: var(--space-xl);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .nav__dropdown.active .nav__dropdown-menu {
        display: block;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero__stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .hero__scroll {
        display: none;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .process__steps {
        grid-template-columns: 1fr;
    }
    
    .cta__wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .cta__actions {
        flex-direction: column;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* ============================================
   Additional Styles for Homepage
   ============================================ */

/* About Preview Section */
.about-preview {
    background: var(--color-gray-50);
}

.about-preview__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-preview__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-preview__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}

.about-preview__image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: var(--color-accent);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

.about-preview__content {
    padding: var(--space-xl) 0;
}

.about-preview__content p {
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.about-preview__content .btn {
    margin-top: var(--space-lg);
}

.about-preview__content .btn--secondary {
    background: transparent;
    color: var(--color-gray-900);
    border: 2px solid var(--color-gray-900);
}

.about-preview__content .btn--secondary:hover {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

/* Why Us Image */
.why-us__image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Service Card with Background Image */
.service-card[style*="background-image"] {
    background-position: center;
    border-color: transparent;
}

.service-card[style*="background-image"] .service-card__title {
    color: var(--color-white);
}

.service-card[style*="background-image"] .service-card__text {
    color: rgba(255, 255, 255, 0.85);
}

.service-card[style*="background-image"] .service-card__link {
    color: var(--color-white);
}

.service-card[style*="background-image"] .service-card__icon {
    background: linear-gradient(135deg, var(--color-accent), #e63950);
}

/* Customer Portal Section */
.customer-portal {
    padding: 60px 0;
    background: var(--color-gray-900);
}

.customer-portal__wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 20px;
    padding: 40px 50px;
}

.customer-portal__icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--color-accent), #e63950);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.customer-portal__icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.customer-portal__content {
    flex: 1;
}

.customer-portal__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.customer-portal__text {
    color: var(--color-gray-400);
    font-size: 1rem;
    margin: 0;
}

.customer-portal__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--color-gray-900);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.customer-portal__btn:hover {
    background: var(--color-accent);
    color: white;
    transform: translateX(5px);
}

.customer-portal__btn svg {
    transition: transform 0.3s ease;
}

.customer-portal__btn:hover svg {
    transform: translateX(4px);
}

/* Nav Login Link */
.nav__link--login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav__link--login svg {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .customer-portal__wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .customer-portal__btn {
        width: 100%;
        justify-content: center;
    }
}

/* Footer Map */
.footer__map {
    margin-top: var(--space-lg);
}

.footer__map-img {
    width: 120px;
    height: auto;
    opacity: 0.8;
    transition: opacity var(--transition-normal);
}

.footer__map-img:hover {
    opacity: 1;
}

/* ============================================
   NIS2 Alert Section
   ============================================ */
.nis2-alert {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d4a 0%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
}

.nis2-alert::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L5 17.5v25L30 55l25-12.5v-25L30 5z' fill='none' stroke='%23c41e3a' stroke-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.nis2-alert__wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nis2-alert__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 30, 58, 0.2);
    border: 1px solid rgba(196, 30, 58, 0.4);
    color: var(--color-accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.nis2-alert__badge svg {
    width: 16px;
    height: 16px;
}

.nis2-alert__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.nis2-alert__title span {
    color: var(--color-accent);
}

.nis2-alert__text {
    color: var(--color-gray-400);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.nis2-alert__deadline {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 2rem;
}

.nis2-alert__deadline-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--color-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nis2-alert__deadline-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

.nis2-alert__deadline-text strong {
    display: block;
    color: white;
    font-size: 1rem;
}

.nis2-alert__deadline-text span {
    color: var(--color-gray-400);
    font-size: 0.9rem;
}

.nis2-alert__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.nis2-alert__checklist {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
}

.nis2-alert__checklist h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nis2-alert__checklist h4 svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
}

.nis2-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nis2-check-item__icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(196, 30, 58, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nis2-check-item__icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-accent);
}

.nis2-check-item span {
    color: var(--color-gray-300);
    font-size: 0.95rem;
}

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

/* ============================================
   Branchen Section
   ============================================ */
.branchen-section {
    padding: 100px 0;
    background: white;
}

.branchen-section .section__subtitle {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--color-gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
}

.branchen__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.branche-card {
    background: var(--color-gray-50);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.branche-card:hover {
    background: white;
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.branche-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.branche-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-accent);
}

.branche-card__name {
    font-weight: 600;
    color: var(--color-gray-900);
    font-size: 0.95rem;
}

.branche-card--more {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(196, 30, 58, 0.03));
    border: 2px dashed rgba(196, 30, 58, 0.3);
}

.branche-card--more:hover {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.12), rgba(196, 30, 58, 0.06));
    border-style: solid;
    border-color: var(--color-accent);
}

.branche-card--more .branche-card__icon {
    background: linear-gradient(135deg, var(--color-accent), #e63950);
}

.branche-card--more .branche-card__icon svg {
    stroke: white;
}

.branche-card--more .branche-card__name {
    color: var(--color-accent);
}

.branchen__note {
    text-align: center;
    margin-top: 40px;
    color: var(--color-gray-500);
    font-size: 1rem;
    font-style: italic;
}

/* Branchen Responsive */
@media (max-width: 1024px) {
    .branchen__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* ============================================
   Security Threats Section
   ============================================ */
.threats-section {
    padding: 100px 0;
    background: #3d3d5c;
    position: relative;
    overflow: hidden;
}

.threats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(196, 30, 58, 0.1), transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(196, 30, 58, 0.08), transparent 40%);
}

.threats-section .container {
    position: relative;
    z-index: 1;
}

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

.threats__header .section__label {
    color: var(--color-accent);
}

.threats__header .section__title {
    color: white;
}

.threats__header p {
    color: var(--color-gray-400);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1rem auto 0;
}

.threats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.threat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.threat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.threat-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-accent), #e63950);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.threat-card__icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.threat-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.threat-card__text {
    color: var(--color-gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.threat-card__solution {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.threat-card__solution svg {
    width: 16px;
    height: 16px;
}

/* Threats Responsive */
@media (max-width: 1024px) {
    .threats__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-section--gray {
    background: var(--color-gray-100);
}

.faq-section--dark {
    background: var(--color-gray-900);
}

.faq-section--dark .faq__intro h2 {
    color: white;
}

.faq-section--dark .faq__intro p {
    color: var(--color-gray-400);
}

.faq-section--dark .faq__contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section--dark .faq__contact-card p {
    color: var(--color-gray-400);
}

.faq-section--dark .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.faq-section--dark .faq-item__question {
    color: white;
}

.faq-section--dark .faq-item__answer p {
    color: var(--color-gray-400);
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq__intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.faq__intro p {
    color: var(--color-gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.faq__contact-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq__contact-card p {
    color: var(--color-gray-600);
    margin-bottom: 16px;
}

.faq__contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}

.faq__contact-card a:hover {
    text-decoration: underline;
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--color-gray-200);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--color-accent);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-gray-900);
}

.faq-item__question svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gray-400);
    transition: transform 0.3s;
}

.faq-item.active .faq-item__question svg {
    transform: rotate(180deg);
    stroke: var(--color-accent);
}

.faq-item__answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

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

.faq-item__answer p {
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* FAQ Responsive */
@media (max-width: 1024px) {
    .faq__grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-preview__wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about-preview__image {
        order: 2;
    }
    
    .about-preview__content {
        order: 1;
    }
}


/* Service Detail Section */
.service-detail {
    padding: 80px 0;
    background: white;
}

.service-detail--gray {
    background: var(--color-gray-50);
}

.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail__image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-detail__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-detail__badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 2;
    text-align: center;
}

.service-detail__badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.service-detail__badge-text {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin-top: 4px;
}

.service-detail__content {
    position: relative;
}

.service-detail__number {
    font-size: 5rem;
    font-weight: 700;
    color: rgba(196, 30, 58, 0.15);
    line-height: 1;
    margin-bottom: -40px;
    position: relative;
    z-index: 0;
}

.service-detail__icon {
    width: 56px;
    height: 56px;
    background: #c41e3a !important;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-detail__icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.service-detail__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 16px;
}

.service-detail__text {
    color: var(--color-gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-detail__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.service-detail__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 14px 18px;
}

.service-detail--gray .service-detail__feature {
    background: white;
}

.service-detail__feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
    flex-shrink: 0;
}

.service-detail__feature span {
    font-size: 0.95rem;
    color: var(--color-gray-700);
}

.service-detail__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.service-detail__btn:hover {
    background: var(--color-accent);
    color: white;
}

.service-detail__btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .service-detail__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail__features {
        grid-template-columns: 1fr;
    }
    
    .service-detail__number {
        font-size: 3rem;
        margin-bottom: -20px;
    }
}

/* ============================================
   Service Section (aus Vorlage leistungen.html)
   ============================================ */

.service-section {
    padding: 100px 0;
    scroll-margin-top: 140px;
}

/* Service Section - Background now controlled via .service-section--gray class */
/*
.service-section:nth-child(even) {
    background: var(--color-gray-50);
}
*/

.service-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-section:nth-child(even) .service-section__grid {
    direction: rtl;
}

.service-section:nth-child(even) .service-section__grid > * {
    direction: ltr;
}

/* Service Content */
.service-content {
    position: relative;
}

.service-content__number {
    font-size: 6rem;
    font-weight: 700;
    color: rgba(196, 30, 58, 0.12);
    line-height: 1;
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: 0;
}

.service-section:nth-child(even) .service-content__number {
    color: rgba(196, 30, 58, 0.08);
}

.service-content__inner {
    position: relative;
    z-index: 1;
    padding-top: 30px;
}

.service-content__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), #e63950);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
    position: relative;
    margin-left: 60px;
}

.service-content__icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.service-content__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.service-content__text {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s ease;
}

.service-section:nth-child(even) .feature-item {
    background: var(--color-gray-50);
    border-color: var(--color-gray-300);
}

.feature-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
    transform: translateY(-2px);
}

.feature-item__icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item__icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-accent);
}

.feature-item__text {
    font-size: 0.95rem;
    color: var(--color-gray-700);
    font-weight: 500;
}

/* Service Visual */
.service-visual {
    position: relative;
}

.service-visual__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-visual__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-visual__stats {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.service-section:nth-child(even) .service-visual__stats {
    left: auto;
    right: -30px;
}

.stat-card__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.stat-card__label {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin-top: 4px;
}

.service-visual__decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    top: -50px;
    right: -50px;
    z-index: -1;
}

.service-section:nth-child(even) .service-visual__decoration {
    left: -50px;
    right: auto;
}

/* Service CTA */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--color-accent);
    color: white;
    transform: translateX(5px);
}

.service-cta svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .service-section__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-section:nth-child(even) .service-section__grid {
        direction: ltr;
    }
    
    .service-visual__stats {
        bottom: -20px;
        left: 20px;
    }
    
    .service-section:nth-child(even) .service-visual__stats {
        right: 20px;
        left: auto;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content__number {
        font-size: 4rem;
        top: -20px;
        left: 0;
    }
    
    .service-content__icon {
        margin-left: 40px;
    }
    
    .service-visual__image {
        height: 300px;
    }
}

/* ============================================
   Service Navigation (Leistungen-Seite)
   ============================================ */

.service-nav {
    background: var(--color-gray-900);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 70px;
    z-index: 80;
    margin-top: 0 !important;
}

.service-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.service-nav__list::-webkit-scrollbar {
    display: none;
}

.service-nav__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 1.5rem;
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-nav__link:hover,
.service-nav__link.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
    background: rgba(196, 30, 58, 0.05);
}

.service-nav__link svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .service-nav {
        top: 60px;
    }
    
    .service-nav__link {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* Service Section Grid - Left (Bild rechts, Standard) */
.service-section__grid-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Service Section Grid - Right (Bild links) */
.service-section__grid-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    direction: rtl;
}

.service-section__grid-right > * {
    direction: ltr;
}

.service-section__grid-right .service-visual__stats {
    left: auto;
    right: -30px;
}

.service-section__grid-right .service-visual__decoration {
    left: -50px;
    right: auto;
}

@media (max-width: 992px) {
    .service-section__grid-left,
    .service-section__grid-right {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-section__grid-right {
        direction: ltr;
    }
    
    .service-section__grid-right .service-visual__stats {
        right: 20px;
        left: auto;
    }
}

/* Remove gap between page-hero and service-nav */
.page-hero + .service-nav,
.page-hero + section > .service-nav {
    margin-top: -1px;
}

/* ============================================
   Article Hero (Blog-Artikel)
   ============================================ */
.article-hero {
    padding: 180px 0 60px;
    background: var(--color-gray-900);
    position: relative;
}

.article-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(196, 30, 58, 0.15), transparent 50%);
    pointer-events: none;
}

.article-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.article-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.article-hero__back:hover {
    color: var(--color-accent);
}

.article-hero__back svg {
    width: 18px;
    height: 18px;
}

.article-hero__category {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-hero__teaser {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.article-hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-gray-400);
    font-size: 0.95rem;
}

.article-hero__meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-hero__meta svg {
    width: 16px;
    height: 16px;
}

/* Article Content Styles */
.article-content {
    padding: 80px 0;
    background: white;
}

.article-content .container {
    max-width: 800px;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 3rem 0 1.5rem;
}

.article-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 2.5rem 0 1rem;
}

.article-content p {
    font-size: 1.1rem;
    color: var(--color-gray-700);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    font-size: 1.1rem;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.article-content strong {
    color: var(--color-gray-900);
}

.article-content blockquote {
    background: var(--color-gray-50);
    border-left: 4px solid var(--color-accent);
    padding: 24px 30px;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.article-content blockquote p {
    margin: 0;
    font-style: italic;
    color: var(--color-gray-800);
}

/* Info Box in Articles */
.info-box {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(196, 30, 58, 0.03));
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 16px;
    padding: 28px;
    margin: 2rem 0;
}

.info-box__title {
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box__title svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-accent);
}

.info-box p {
    margin: 0;
    font-size: 1rem;
}

/* Article CTA */
.article-cta {
    background: var(--color-gray-900);
    border-radius: 20px;
    padding: 48px;
    margin-top: 4rem;
    text-align: center;
}

.article-cta h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-cta p {
    color: var(--color-gray-400);
    margin-bottom: 1.5rem;
}

.article-cta .btn {
    background: var(--color-accent);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

@media (max-width: 768px) {
    .article-hero {
        padding: 140px 0 40px;
    }
    
    .article-hero__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ============================================
   Blog Overview Grid
   ============================================ */
.blog-section {
    padding: 80px 0;
    background: var(--color-gray-50);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
}

.blog-card--featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: row;
}

.blog-card__image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-gray-900);
    position: relative;
}

.blog-card--featured .blog-card__image {
    height: 100%;
    min-height: 350px;
}

.blog-card__category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-accent);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card__content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card--featured .blog-card__content {
    justify-content: center;
}

.blog-card__date {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin-bottom: 12px;
}

.blog-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card--featured .blog-card__title {
    font-size: 1.75rem;
}

.blog-card__excerpt {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex: 1;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.blog-card__link:hover {
    gap: 12px;
}

.blog-card__link svg {
    width: 18px;
    height: 18px;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.blog-pagination__btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--color-gray-200);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-600);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-pagination__btn:hover,
.blog-pagination__btn--active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .blog-card--featured .blog-card__image {
        min-height: 250px;
    }
}

/* ============================================
   Remote Support / Fernwartung Section
   ============================================ */
.remote-support-section {
    padding: 100px 0;
    background: #fff;
}

.remote-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.remote-support-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.remote-support-content p {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.remote-support-content p:last-child {
    margin-bottom: 0;
}

/* Download Card - Improved Design */
.remote-support-card {
    position: relative;
}

.remote-support-card__inner {
    background: linear-gradient(135deg, var(--color-gray-900) 0%, #1e2a4a 100%);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.remote-support-card__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #e63950);
}

.remote-support-card__glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.15), transparent 70%);
    pointer-events: none;
}

/* Browser Frame Preview */
.remote-support-card__preview {
    margin-bottom: 32px;
}

.remote-support-card__browser {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    max-width: 280px;
    margin: 0 auto;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.4s ease;
}

.remote-support-card:hover .remote-support-card__browser {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}

.remote-support-card__browser-dots {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: #e5e7eb;
}

.remote-support-card__browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.remote-support-card__browser-dots span:first-child {
    background: #ef4444;
}

.remote-support-card__browser-dots span:nth-child(2) {
    background: #f59e0b;
}

.remote-support-card__browser-dots span:nth-child(3) {
    background: #22c55e;
}

.remote-support-card__browser img {
    width: 100%;
    height: auto;
    display: block;
}

.remote-support-card__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.remote-support-card__content > p {
    color: var(--color-gray-400);
    margin-bottom: 24px;
    font-size: 1rem;
}

.remote-support-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--color-accent), #e63950);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.remote-support-card__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5);
    background: linear-gradient(135deg, #d4263f, #f04960);
}

.remote-support-card__btn svg {
    width: 22px;
    height: 22px;
}

.remote-support-card__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-gray-500);
    font-size: 0.9rem;
    margin: 0;
}

.remote-support-card__note svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-gray-500);
}

@media (max-width: 1024px) {
    .remote-support-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .remote-support-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .remote-support-section {
        padding: 60px 0;
    }
    
    .remote-support-card__inner {
        padding: 32px 24px;
    }
}

/* ============================================
   Security Features Section
   ============================================ */
.security-section {
    padding: 100px 0;
    background: var(--color-gray-900);
    position: relative;
    overflow: hidden;
}

/* Background Variants */
.security-section--darker {
    background: #0d0d1a;
}

.security-section--gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.security-section--light {
    background: var(--color-gray-100);
}

.security-section--white {
    background: #fff;
}

/* Light/White variant text colors */
.security-section--light .security-content h2,
.security-section--white .security-content h2 {
    color: var(--color-gray-900);
}

.security-section--light .security-content p,
.security-section--white .security-content p {
    color: var(--color-gray-600);
}

.security-section--light .security-badge,
.security-section--white .security-badge {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--color-gray-200);
}

.security-section--light .security-badge__content h4,
.security-section--white .security-badge__content h4 {
    color: var(--color-gray-900);
}

.security-section--light .security-badge__content p,
.security-section--white .security-badge__content p {
    color: var(--color-gray-600);
}

.security-section--light::before,
.security-section--white::before {
    background: radial-gradient(ellipse at 30% 50%, rgba(196, 30, 58, 0.08), transparent 50%);
}

.security-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(196, 30, 58, 0.15), transparent 50%);
    pointer-events: none;
}

.security-section .container {
    position: relative;
    z-index: 1;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.security-content p {
    font-size: 1.1rem;
    color: var(--color-gray-400);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.security-content p:last-child {
    margin-bottom: 0;
}

.security-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.security-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.security-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    transform: translateX(5px);
}

.security-badge__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--color-accent), #e63950);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-badge__icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.security-badge__content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.security-badge__content p {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .security-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .security-section {
        padding: 60px 0;
    }
    
    .security-badges {
        grid-template-columns: 1fr;
    }
}

/* Ensure service-nav sits directly under header */
.site-header + .service-nav {
    margin-top: 0;
}

/* Fix: Remove all gaps around service-nav */
.service-nav {
    margin: 0 !important;
    padding: 0;
}

/* REDAXO slice wrapper fix */
article.slice:has(.service-nav),
div.slice:has(.service-nav),
.rex-slice:has(.service-nav) {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove margin from main content area before service-nav */
main > *:first-child .service-nav,
.main-content > *:first-child .service-nav {
    margin-top: 0;
}

/* Header direct connection */
header + main .service-nav:first-of-type,
.site-header + main .service-nav:first-of-type,
header + .service-nav,
.site-header + .service-nav {
    margin-top: 0 !important;
}

/* Service Section Background - Manual Control */
.service-section--gray {
    background: var(--color-gray-50);
}

.service-section--gray .service-content__number {
    color: rgba(196, 30, 58, 0.08);
}

.service-section--gray .feature-item {
    background: var(--color-gray-50);
    border-color: var(--color-gray-300);
}

/* ============================================
   Content Section (Modul 03)
   ============================================ */

/* Service Intro / Content Section */
.service-intro {
    padding: 100px 0;
    background: white;
}

.service-intro--gray {
    background: var(--color-gray-50);
}

.service-intro--dark {
    background: var(--color-gray-900);
    color: white;
}

.service-intro--dark h2 {
    color: white;
}

.service-intro--dark p {
    color: rgba(255, 255, 255, 0.8);
}

.service-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-intro__grid--reverse {
    direction: rtl;
}

.service-intro__grid--reverse > * {
    direction: ltr;
}

.service-intro__content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
}

.service-intro__content p {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-intro__content p:last-of-type {
    margin-bottom: 0;
}

.service-intro__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.service-intro__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--color-gray-700);
    line-height: 1.6;
}

.service-intro__list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--color-accent);
    margin-top: 3px;
}

/* Nummerierte Liste */
.service-intro__list--numbered li {
    margin-bottom: 16px;
}

.service-intro__list--numbered .list-number {
    color: var(--color-accent);
    font-weight: 700;
    min-width: 28px;
    flex-shrink: 0;
}

.service-intro__list--numbered li strong {
    color: var(--color-gray-900);
}

/* Liste ohne Symbol */
.service-intro__list--plain li {
    gap: 0;
}

.service-intro__image {
    position: relative;
}

.service-intro__image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-intro__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-accent);
    color: white;
    padding: 20px 28px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

.service-intro__grid--reverse .service-intro__badge {
    right: auto;
    left: -20px;
}

@media (max-width: 1024px) {
    .service-intro__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-intro__grid--reverse {
        direction: ltr;
    }
    
    .service-intro__content h2 {
        font-size: 2rem;
    }
    
    .service-intro__badge {
        bottom: -15px;
        right: 20px;
        padding: 16px 24px;
    }
}

/* ============================================
   Content Visual - Bild-in-Bild Layout
   ============================================ */
.content-visual {
    position: relative;
    padding: 40px;
}

.content-visual__decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(196, 30, 58, 0.05));
    z-index: 0;
}

.content-visual__main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.content-visual__main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.content-visual__secondary {
    position: absolute;
    width: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
    z-index: 2;
}

.content-visual__secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

/* Secondary Image Positions */
.content-visual__secondary--bottom-left {
    bottom: 0;
    left: 0;
}

.content-visual__secondary--bottom-right {
    bottom: 0;
    right: 0;
}

.content-visual__secondary--top-left {
    top: 0;
    left: 0;
}

.content-visual__secondary--top-right {
    top: 0;
    right: 0;
}

/* Reverse Layout - adjust decoration position */
.service-intro__grid--reverse .content-visual__decoration {
    right: auto;
    left: -30px;
}

/* Reverse Layout - adjust secondary image default positions */
.service-intro__grid--reverse .content-visual__secondary--bottom-left {
    left: auto;
    right: 0;
}

.service-intro__grid--reverse .content-visual__secondary--bottom-right {
    right: auto;
    left: 0;
}

.service-intro__grid--reverse .content-visual__secondary--top-left {
    left: auto;
    right: 0;
}

.service-intro__grid--reverse .content-visual__secondary--top-right {
    right: auto;
    left: 0;
}

.content-visual__badge {
    position: absolute;
    bottom: 20px;
    left: 60px;
    background: linear-gradient(135deg, var(--color-accent), #e63950);
    color: white;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.35);
    z-index: 3;
}

/* Dark Background Variant */
.service-intro--dark .content-visual__secondary {
    border-color: var(--color-gray-900);
}

.service-intro--dark .content-visual__decoration {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.25), rgba(196, 30, 58, 0.1));
}

@media (max-width: 1024px) {
    .content-visual {
        padding: 30px;
    }
    
    .content-visual__main img {
        height: 350px;
    }
    
    .content-visual__secondary {
        width: 150px;
    }
    
    .content-visual__secondary img {
        height: 110px;
    }
    
    .content-visual__decoration {
        width: 100px;
        height: 100px;
        top: -15px;
        right: -15px;
    }
}

@media (max-width: 768px) {
    .content-visual {
        padding: 20px;
    }
    
    .content-visual__main img {
        height: 280px;
    }
    
    .content-visual__secondary {
        display: none;
    }
    
    .content-visual__decoration {
        display: none;
    }
    
    .content-visual__badge {
        left: 40px;
        bottom: 10px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ============================================
   Stats Bar / Kennzahlen
   ============================================ */
.stats-bar {
    background: white;
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.stats-bar--floating {
    margin-top: -60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.stats-bar--floating .container {
    max-width: 100%;
    padding: 0 40px;
}

.stats-bar--dark {
    background: var(--color-gray-900);
}

.stats-bar__grid {
    display: grid;
    gap: 40px;
}

.stats-bar__grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.stats-bar__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.stats-bar__grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

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

.stats-bar__item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stats-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: var(--color-gray-200);
}

.stats-bar--dark .stats-bar__item:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.15);
}

.stats-bar__number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.stats-bar__label {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    margin-top: 8px;
}

.stats-bar--dark .stats-bar__label {
    color: var(--color-gray-400);
}

@media (max-width: 1024px) {
    .stats-bar--floating {
        margin-top: -40px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .stats-bar__grid--4,
    .stats-bar__grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-bar__item:nth-child(2)::after {
        display: none;
    }
    
    .stats-bar__number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .stats-bar--floating {
        margin-top: -30px;
        border-radius: 16px;
    }
    
    .stats-bar--floating .container {
        padding: 0 20px;
    }
    
    .stats-bar__grid--4,
    .stats-bar__grid--3,
    .stats-bar__grid--2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-bar__item:not(:last-child)::after {
        display: none;
    }
    
    .stats-bar__item {
        padding: 15px;
    }
    
    .stats-bar__number {
        font-size: 2rem;
    }
}

/* ============================================
   Ansprechpartner / Inhaber Section
   ============================================ */
.inhaber-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d2d4a 0%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
}

.inhaber-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(196, 30, 58, 0.15), transparent 50%);
    pointer-events: none;
}

.inhaber-section .container {
    position: relative;
    z-index: 1;
}

.inhaber__grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: center;
}

.inhaber__grid--reverse {
    grid-template-columns: 1fr 350px;
}

.inhaber__grid--reverse .inhaber__image {
    order: 2;
}

.inhaber__grid--reverse .inhaber__content {
    order: 1;
}

.inhaber__grid--reverse .inhaber__image::before {
    left: 15px;
    right: -15px;
}

.inhaber__image {
    position: relative;
}

.inhaber__image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.inhaber__image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--color-accent);
    border-radius: 24px;
    z-index: 0;
}

.inhaber__content {
    color: white;
}

.inhaber__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.inhaber__label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.inhaber__name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.inhaber__role {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.inhaber__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.inhaber__quote {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-accent);
    padding: 24px 30px;
    border-radius: 0 16px 16px 0;
    margin: 2rem 0;
}

.inhaber__quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: #ffffff;
    margin: 0;
}

.inhaber__contact {
    display: flex;
    gap: 24px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.inhaber__contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.inhaber__contact svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
}

@media (max-width: 1024px) {
    .inhaber__grid,
    .inhaber__grid--reverse {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .inhaber__grid--reverse .inhaber__image,
    .inhaber__grid--reverse .inhaber__content {
        order: unset;
    }
    
    .inhaber__image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .inhaber__contact {
        justify-content: center;
    }
    
    .inhaber__label {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .inhaber-section {
        padding: 60px 0;
    }
    
    .inhaber__image {
        max-width: 280px;
    }
    
    .inhaber__image::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }
    
    .inhaber__name {
        font-size: 2rem;
    }
    
    .inhaber__quote {
        padding: 20px 24px;
    }
    
    .inhaber__quote p {
        font-size: 1.1rem;
    }
}

/* Feature Grid / Features Section */
.features-section {
    padding: 100px 0;
    background: var(--color-gray-50);
}

.features-section--gray {
    background: var(--color-gray-100);
}

.features-section--dark {
    background: var(--color-gray-900);
}

.features-section--dark .section__title {
    color: white;
}

.features-section--dark .section__label {
    color: var(--color-accent);
}

.features-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.features-grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Horizontales Layout für 2-Spalten Grid */
.features-grid--cols-2 .feature-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.features-grid--cols-2 .feature-card__icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.features-grid--cols-2 .feature-card__content {
    flex: 1;
}

.features-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.features-grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
}

.features-section--dark .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.features-section--dark .feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-accent);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card__icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-accent);
}

.feature-card__number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
    opacity: 0.8;
}

.features-section--dark .feature-card__number {
    color: var(--color-accent);
}

.feature-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 10px;
}

.features-section--dark .feature-card__title {
    color: white;
}

.feature-card__text {
    color: var(--color-gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.features-section--dark .feature-card__text {
    color: var(--color-gray-400);
}

@media (max-width: 1024px) {
    .features-grid--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid--cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid--cols-2,
    .features-grid--cols-3,
    .features-grid--cols-4 {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 24px;
    }
}

/* ============================================
   Value Cards (Centered Style - "Was uns auszeichnet")
   ============================================ */
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--color-gray-200);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #e63950);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

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

.value-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-card__icon {
    background: linear-gradient(135deg, var(--color-accent), #e63950);
}

.value-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-accent);
    transition: all 0.4s ease;
}

.value-card:hover .value-card__icon svg {
    stroke: white;
}

.value-card__number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 1rem;
}

.value-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.value-card__text {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Value Cards - Dark Background */
.features-section--dark .value-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.features-section--dark .value-card__title {
    color: white;
}

.features-section--dark .value-card__text {
    color: var(--color-gray-400);
}

.features-section--dark .value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Value Cards - Gray Background */
.features-section--gray .value-card {
    background: white;
}

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

@media (max-width: 768px) {
    .values__grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 32px 24px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--color-gray-900);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(196, 30, 58, 0.15), transparent 50%);
    pointer-events: none;
}

.benefits-section .container {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-content .section__label {
    color: var(--color-accent);
}

.benefits-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.benefits-content p {
    color: var(--color-gray-400);
    font-size: 1.1rem;
    line-height: 1.8;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-accent);
}

.benefit-item__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--color-accent), #e63950);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item__icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.benefit-item__content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.benefit-item__content p {
    color: var(--color-gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Benefits Section - Warning/Strafen Variant */
.benefits-section--warning {
    background: #2d2d4a;
}

.benefits-list--warning {
    gap: 20px;
}

.benefit-item--warning {
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: default;
}

.benefit-item--warning:hover {
    transform: translateX(10px);
    background: rgba(196, 30, 58, 0.2);
    border-color: var(--color-accent);
}

.benefit-item--warning:hover .benefit-item__icon {
    transform: scale(1.1);
}

.benefit-item--warning .benefit-item__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--color-accent);
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.benefit-item--warning .benefit-item__icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.benefit-item--warning .benefit-item__content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.benefit-item--warning .benefit-item__content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* Benefits Section - Mission Variant */
.benefits-section--mission {
    background: #0d0d14;
    position: relative;
    overflow: hidden;
}

.benefits-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.25;
}

.benefits-section--mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(13,13,20,0.7) 0%, rgba(13,13,20,0.5) 100%),
        radial-gradient(ellipse at 30% 50%, rgba(196, 30, 58, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(196, 30, 58, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.benefits-section--mission .container {
    position: relative;
    z-index: 1;
}

.benefits-section--mission .benefits-content h2 {
    color: #ffffff;
}

.benefits-section--mission .benefits-content p {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-quote {
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--color-accent);
    padding: 24px 30px;
    border-radius: 0 16px 16px 0;
    margin-top: 2rem;
}

.benefits-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.benefit-item--mission {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-item--mission:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-item--mission .benefit-item__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--color-accent);
    border-radius: 14px;
}

.benefit-item--mission .benefit-item__icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.benefit-item--mission .benefit-item__content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.benefit-item--mission .benefit-item__content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

/* Service Options (Pricing Cards) */
.service-options {
    padding: 100px 0;
    background: white;
}

.service-options__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-option {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--color-gray-200);
    position: relative;
    transition: all 0.3s ease;
}

.service-option:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-option--featured {
    border: 2px solid var(--color-accent);
}

.service-option__badge {
    position: absolute;
    top: -14px;
    right: 30px;
    background: var(--color-accent);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
}

.service-option__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    text-align: center;
    margin-bottom: 8px;
}

.service-option__subtitle {
    color: var(--color-gray-600);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
}

.service-option__features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-option__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--color-gray-700);
    font-size: 1rem;
}

.service-option__features li svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
    flex-shrink: 0;
}

.service-option__btn {
    display: block;
    width: 100%;
    background: var(--color-accent);
    color: white;
    text-align: center;
    padding: 16px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-option__btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

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

.section__header--center .section__intro {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--color-gray-600);
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .service-options__grid {
        grid-template-columns: 1fr;
    }
    
    .service-option {
        padding: 30px;
    }
}

/* Partner / Technology Grid */
.dark-section {
    padding: 100px 0;
    background: var(--color-gray-900);
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(196, 30, 58, 0.1), transparent 60%);
    pointer-events: none;
}

.dark-section .container {
    position: relative;
    z-index: 1;
}

.dark-section .section__header {
    text-align: center;
    margin-bottom: 50px;
}

.dark-section .section__label {
    color: var(--color-accent);
}

.dark-section .section__title {
    color: white;
}

.partners-section {
    padding: 100px 0;
    background: white;
}

.partners-section .section__header {
    text-align: center;
    margin-bottom: 50px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.dark-section .tech-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.partners-section .tech-card {
    background: var(--color-gray-50);
    border-color: var(--color-gray-200);
}

.partners-section .tech-card:hover {
    background: white;
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.tech-card__icon {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tech-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
}

.tech-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.partners-section .tech-card__name {
    color: var(--color-gray-900);
}

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

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* Partner Banner */
.partner-banner {
    padding: 80px 0;
}

.partner-banner__inner {
    background: linear-gradient(135deg, var(--color-gray-900), #16213e);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.partner-banner__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(196, 30, 58, 0.1), transparent 60%);
    pointer-events: none;
}

.partner-banner__content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.partner-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 30, 58, 0.15);
    color: var(--color-accent);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.partner-banner__badge svg {
    width: 18px;
    height: 18px;
}

.partner-banner__title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
}

.partner-banner__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0;
}

.partner-banner__logo {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.partner-banner__logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.partner-banner__logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .partner-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 40px;
    }
    
    .partner-banner__badge {
        justify-content: center;
    }
    
    .partner-banner__logo {
        width: 120px;
        height: 120px;
    }
}

/* Deadline Banner */
.deadline-banner {
    background: var(--color-accent);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.deadline-banner__icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.deadline-banner__icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

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

.deadline-banner__title {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.deadline-banner__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 640px) {
    .deadline-banner {
        flex-direction: column;
        padding: 25px 20px;
    }
}

/* Checklist Section */
.checklist-section {
    padding: 60px 0;
    background: var(--color-bg);
}

.checklist-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.checklist-section__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.checklist-section__text {
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.checklist-section__text p {
    margin: 0 0 1.25rem 0;
}

.checklist-section__text p:last-child {
    margin-bottom: 0;
}

.checklist-section__box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px 30px;
}

.checklist-section__box-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-section__box-title svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-accent);
}

.checklist-section__item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    transition: background 0.2s ease;
}

.checklist-section__item:hover {
    background: rgba(0, 0, 0, 0.02);
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.checklist-section__item:last-of-type {
    border-bottom: none;
}

.checklist-section__checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
    background: white;
}

.checklist-section__checkmark {
    width: 12px;
    height: 12px;
    stroke: white;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checklist-section__item.is-checked .checklist-section__checkbox {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.checklist-section__item.is-checked .checklist-section__checkmark {
    opacity: 1;
}

.checklist-section__item-text {
    color: var(--color-text);
    font-size: 1.0625rem;
    line-height: 1.5;
}

.checklist-section__item-text strong {
    color: var(--color-dark);
}

.checklist-section__hint {
    display: none;
    background: rgba(196, 30, 58, 0.08);
    border-left: 3px solid var(--color-accent);
    padding: 15px;
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
    font-size: 0.9375rem;
    color: var(--color-dark);
    align-items: flex-start;
    gap: 10px;
}

.checklist-section__hint.is-visible {
    display: flex;
}

.checklist-section__hint svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
    flex-shrink: 0;
    margin-top: 1px;
}

@media (max-width: 900px) {
    .checklist-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* ============================================
   MiMann.net - Additional Page Styles
   ============================================ */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--color-primary-dark);
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,38,66,0.65), rgba(40,50,80,0.55));
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(196, 30, 58, 0.15), transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 30, 58, 0.08), transparent 40%);
    z-index: 1;
}

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

.page-hero__content {
    max-width: 700px;
}

.page-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    background: rgba(196, 30, 58, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
}

.page-hero__label-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.page-hero__label-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.page-hero__label--warning {
    background: rgba(196, 30, 58, 0.2);
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.page-hero__label--warning .page-hero__label-icon {
    stroke: var(--color-accent);
}

.page-hero__label--check .page-hero__label-icon {
    stroke: #22c55e;
}

.page-hero__label--none {
    padding-left: 20px;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.page-hero__title-gradient {
    background: linear-gradient(135deg, var(--color-accent), #e63950);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero__subtitle,
.page-hero__text {
    font-size: 1.25rem;
    color: var(--color-gray-400);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.page-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Services Navigation */
.services-nav {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
    position: sticky;
    top: var(--header-height);
    z-index: 100;
}

.services-nav__list {
    display: flex;
    gap: var(--space-xs);
    overflow-x: auto;
    padding: var(--space-md) 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.services-nav__list::-webkit-scrollbar {
    display: none;
}

.services-nav__list li a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-600);
    white-space: nowrap;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.services-nav__list li a:hover,
.services-nav__list li a.active {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Service Detail Sections */
.service-detail {
    padding: var(--space-4xl) 0;
}

.service-detail--alt {
    background: var(--color-gray-50);
}

.service-detail__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.service-detail__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-xl);
    margin: 0 auto var(--space-xl);
}

.service-detail__icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-white);
}

.service-detail__header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.service-detail__intro {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
}

.service-detail--alt .feature-card {
    background: var(--color-white);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* About Page Styles */
.about-intro {
    padding: var(--space-4xl) 0;
}

.about-intro__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-intro__content h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.about-intro__content p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about-intro__image {
    position: relative;
}

.about-intro__image-main {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-intro__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: var(--radius-xl);
    z-index: -1;
}

/* Values Section */
.values {
    background: var(--color-gray-50);
    padding: var(--space-4xl) 0;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.value-card {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.value-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.1);
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-lg);
}

.value-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-accent);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: var(--space-4xl) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
}

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.contact-info > p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
}

.contact-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.1);
    border-radius: var(--radius-lg);
}

.contact-item__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
}

.contact-item__content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.contact-item__content p,
.contact-item__content a {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

.contact-item__content a:hover {
    color: var(--color-accent);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: var(--space-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-gray-800);
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

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

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-md);
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.form-checkbox a {
    color: var(--color-accent);
}

.contact-form .btn {
    align-self: flex-start;
}

/* Fernwartung Page */
.remote-section {
    padding: var(--space-4xl) 0;
}

.remote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.remote-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.remote-content p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.remote-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.remote-step {
    display: flex;
    gap: var(--space-md);
}

.remote-step__number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
}

.remote-step__content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.remote-step__content p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    margin-bottom: 0;
}

.remote-card {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.remote-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-xl);
    margin: 0 auto var(--space-xl);
}

.remote-card__icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-white);
}

.remote-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.remote-card p {
    font-size: 1rem;
    color: var(--color-gray-600);
    margin-bottom: var(--space-xl);
}

/* Map Section */
.map-section {
    padding: var(--space-4xl) 0;
    background: var(--color-gray-50);
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Legal Pages */
.legal-content {
    padding: var(--space-4xl) 0;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: var(--space-2xl) 0 var(--space-lg);
}

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

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: var(--space-xl) 0 var(--space-md);
}

.legal-content p {
    font-size: 1rem;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-content ul {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.legal-content li {
    font-size: 1rem;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    list-style: disc;
}

.legal-content a {
    color: var(--color-accent);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-intro__wrapper,
    .contact-wrapper,
    .remote-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .values__grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro__image-accent {
        display: none;
    }
}

/* ============================================
   Service Subpage Styles (shared)
   ============================================ */

/* Dark Hero for Service Pages */
.page-hero--dark {
    padding: 180px 0 100px;
    background: var(--color-primary-dark);
    position: relative;
    overflow: hidden;
}

.page-hero--dark .page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.page-hero--dark .page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,38,66,0.85), rgba(40,50,80,0.75));
}

.page-hero--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(196, 30, 58, 0.2), transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 30, 58, 0.1), transparent 40%);
    z-index: 1;
}

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

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-gray-400);
    margin-bottom: 1.5rem;
}

.page-hero__breadcrumb a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.page-hero__breadcrumb a:hover {
    color: var(--color-accent);
}

.page-hero__breadcrumb span {
    color: var(--color-gray-600);
}

.page-hero__text {
    font-size: 1.25rem;
    color: var(--color-gray-400);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.page-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Content Sections */
.content-section {
    padding: 100px 0;
}

.content-section:nth-child(even) {
    background: var(--color-gray-50);
}

.content-section--dark {
    background: #3d3d5c;
    position: relative;
    overflow: hidden;
}

.content-section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(196, 30, 58, 0.1), transparent 50%);
}

.content-section--dark .container {
    position: relative;
    z-index: 1;
}

.content-section--dark h2,
.content-section--dark .section__title {
    color: white;
}

.content-section--dark p,
.content-section--dark .section__label {
    color: var(--color-gray-400);
}

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

.content-grid--reverse {
    direction: rtl;
}

.content-grid--reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.content-text li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
}

.content-text li svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    stroke: var(--color-accent);
    margin-top: 2px;
}

.content-text li span {
    color: var(--color-gray-700);
}

.content-image {
    position: relative;
}

.content-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.content-image__badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: var(--color-accent);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
}

/* Service Box Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-box {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
}

.service-box__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-box__icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-accent);
}

.service-box__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.service-box__text {
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* Dark Section Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-accent);
}

.tech-card__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent), #e63950);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.tech-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.tech-card__name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* Threat Cards */
/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -10px;
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gray-200));
}

.process-step:last-child::after {
    display: none;
}

.process-step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), #e63950);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.process-step__title {
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 6px;
}

.process-step__text {
    font-size: 0.9rem;
    color: var(--color-gray-600);
}

/* CTA Section (shared) */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d2d4a, #1e3a5f);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn--white,
.btn--white {
    background: white;
    color: var(--color-accent);
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.cta-actions .btn--white:hover,
.btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-actions .btn--outline,
.btn--outline {
    background: transparent;
    color: white;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    display: inline-block;
}

.cta-actions .btn--outline:hover,
.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* FAQ Section - siehe style.css für Hauptstyles */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.faq-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.faq-intro p {
    color: var(--color-gray-600);
    line-height: 1.7;
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-gray-900);
}

.faq-item__q svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gray-400);
    transition: transform 0.3s;
}

.faq-item.active .faq-item__q svg {
    transform: rotate(180deg);
    stroke: var(--color-accent);
}

.faq-item__a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-item__a {
    padding: 0 24px 24px;
    max-height: 300px;
}

.faq-item__a p {
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* Responsive for Service Pages */
@media (max-width: 1024px) {
    .content-grid,
    .content-grid--reverse {
        grid-template-columns: 1fr;
        gap: 50px;
        direction: ltr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
}

/* ============================================
   Blog Article Styles
   ============================================ */

/* Article Hero */
.article-hero {
    padding: 180px 0 60px;
    background: var(--color-dark);
    position: relative;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(196, 30, 58, 0.15), transparent 50%);
}

.article-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.article-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.article-hero__back:hover {
    color: var(--color-accent);
}

.article-hero__back svg {
    width: 18px;
    height: 18px;
}

.article-hero__category {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-gray-400);
    font-size: 0.95rem;
}

.article-hero__meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-hero__meta svg {
    width: 16px;
    height: 16px;
}

/* Article Content */
.article-content {
    padding: 80px 0;
    background: white;
}

.article-content .container {
    max-width: 800px;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 3rem 0 1.5rem;
}

.article-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 2.5rem 0 1rem;
}

.article-content p {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.article-content strong {
    color: #0f172a;
}

.article-content code {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
}

/* Article Images */
.article-image {
    margin: 2rem 0;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.article-image figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #475569;
    margin-top: 12px;
    font-style: italic;
}

.article-image--left {
    float: left;
    width: 45%;
    margin: 0.5rem 2rem 1rem 0;
}

.article-image--right {
    float: right;
    width: 45%;
    margin: 0.5rem 0 1rem 2rem;
}

.article-image--center {
    max-width: 80%;
    margin: 2rem auto;
}

.article-image--center img {
    display: block;
    margin: 0 auto;
}

/* Blockquote */
.article-content blockquote {
    background: #f8fafc;
    border-left: 4px solid #c41e3a;
    padding: 24px 30px;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.article-content blockquote p {
    margin: 0;
    font-style: italic;
    color: #1e293b;
}

.article-content blockquote footer {
    margin-top: 12px;
    font-style: normal;
    color: #475569;
    font-size: 0.95rem;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(196, 30, 58, 0.03));
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 16px;
    padding: 28px;
    margin: 2rem 0;
}

.info-box__title {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box__title svg {
    width: 22px;
    height: 22px;
    stroke: #c41e3a;
}

.info-box p {
    margin: 0;
    font-size: 1rem;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 152, 0, 0.05));
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 2rem 0;
}

.warning-box p {
    margin: 0;
    font-size: 1rem;
    color: #1e293b;
}

/* Tip Box */
.tip-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 28px;
    padding-top: 35px;
    margin: 2rem 0;
    position: relative;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #c41e3a;
}

.tip-box__number {
    position: absolute;
    top: -15px;
    left: 28px;
    width: 40px;
    height: 40px;
    background: #c41e3a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.tip-box h3 {
    margin: 0 0 12px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
}

.tip-box p {
    margin: 0;
    font-size: 1rem;
    color: #334155;
    line-height: 1.7;
}

/* Checklist Box */
.checklist-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 28px 32px;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

.checklist-box__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px 0;
}

.checklist-box__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checklist-box__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.checklist-box__list li:last-child {
    border-bottom: none;
}

.checklist-box__checkbox {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    background: white;
}

.checklist-box__text {
    font-size: 1rem;
    color: #334155;
    line-height: 1.5;
}

/* Article CTA */
.article-cta {
    background: #0f172a;
    border-radius: 20px;
    padding: 48px;
    margin-top: 4rem;
    text-align: center;
}

.article-cta h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-cta p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.article-cta .btn {
    background: #c41e3a;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.article-cta .btn:hover {
    background: #b01830;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

/* Article CTA Section (Full Width) */
.article-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d4a, #1e3a5f);
    position: relative;
    overflow: hidden;
}

.article-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.article-cta-fullwidth {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.article-cta-fullwidth h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.article-cta-fullwidth p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.article-cta-fullwidth .btn--white {
    background: white;
    color: #c41e3a;
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.article-cta-fullwidth .btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .article-hero {
        padding: 140px 0 40px;
    }
    
    .article-hero__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .article-content {
        padding: 50px 0;
    }
    
    .article-image--left,
    .article-image--right {
        float: none;
        width: 100%;
        margin: 1.5rem 0;
    }
    
    .article-cta {
        padding: 32px 24px;
    }
    
    .article-cta-section {
        padding: 50px 0;
    }
    
    .article-cta-fullwidth h3 {
        font-size: 1.5rem;
    }
}

/* ===== KUNDENBEREICH PORTAL ===== */
.portal-section {
    padding: 100px 0;
    background: #f8fafc;
}

.portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.portal-status {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.portal-status__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c41e3a, #e63950);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 15px 40px rgba(196,30,58,0.3);
}

.portal-status__icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.portal-status__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196,30,58,0.1);
    border: 1px solid rgba(196,30,58,0.2);
    color: #c41e3a;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.portal-status__badge svg {
    width: 16px;
    height: 16px;
    animation: spin 3s linear infinite;
}

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

.portal-status h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.portal-status p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.portal-status__features {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.portal-status__features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.portal-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.portal-feature:last-child {
    border-bottom: none;
}

.portal-feature__icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(196,30,58,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-feature__icon svg {
    width: 14px;
    height: 14px;
    stroke: #c41e3a;
}

.portal-feature span {
    color: #334155;
    font-size: 0.95rem;
}

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

.portal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.portal-btn svg {
    width: 20px;
    height: 20px;
}

.portal-btn--primary {
    background: linear-gradient(135deg, #2d2d4a, #1e3a5f);
    color: white;
}

.portal-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196,30,58,0.3);
}

.portal-alternatives {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.portal-alternatives h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.alternative-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.alternative-card:hover {
    border-color: #c41e3a;
    background: white;
}

.alternative-card:last-of-type {
    margin-bottom: 0;
}

.alternative-card__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #c41e3a, #e63950);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alternative-card__icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.alternative-card__content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

.alternative-card__content p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.alternative-card__content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c41e3a;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.alternative-card__content a:hover {
    text-decoration: underline;
}

.portal-contact {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.portal-contact p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.portal-contact__links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.portal-contact__links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.portal-contact__links a:hover {
    color: #c41e3a;
}

.portal-contact__links a svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 1024px) {
    .portal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .portal-section {
        padding: 60px 0;
    }
    
    .portal-status,
    .portal-alternatives {
        padding: 32px 24px;
    }
    
    .portal-status h2 {
        font-size: 1.5rem;
    }
    
    .portal-contact__links {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===== LEGAL CONTENT (Impressum / Datenschutz) ===== */
.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e2642;
    margin: 1.25rem 0 0.5rem;
}

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

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e2642;
    margin: 1rem 0 0.35rem;
}

.legal-content p {
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 0.35rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 0.15rem;
    list-style: disc;
}

.legal-content a {
    color: #c41e3a;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: #0f172a;
}

/* Embed Block (Piwik/Matomo Opt-Out) */
.legal-content__embed {
    margin: 2rem 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
}

.legal-content__embed iframe {
    width: 100%;
    min-height: 200px;
    border: none;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 60px 0;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
    
    .legal-content h3 {
        font-size: 1.1rem;
    }
}
/**
 * Consent Manager - Custom Design für MiMann.net
 * Passend zum rot/weiß Design
 */

/* ===== OVERLAY ===== */




/* ===== CONSENT MANAGER - MiMann.net Design ===== */

/* Overlay */
div.consent_manager-background {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999999 !important;
    padding: 20px !important;
}

/* Hauptbox */
div.consent_manager-wrapper {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px !important;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1) !important;
    color: #334155 !important;
    max-width: 800px !important;
    width: 100% !important;
    max-height: 85vh !important;
    overflow: hidden !important;
    position: relative !important;
    margin: 0 !important;
}

div.consent_manager-wrapper-inner {
    padding: 0 !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
}

/* Header */
div.consent_manager-wrapper .consent_manager-headline {
    background: #ffffff !important;
    color: #0f172a !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin: 0 !important;
    padding: 32px 32px 24px !important;
    position: relative !important;
    letter-spacing: -0.03em !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

/* Beschreibungstext */
div.consent_manager-wrapper p.consent_manager-text {
    color: #64748b !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    padding: 24px 32px 20px !important;
    margin: 0 !important;
    background: #f8fafc !important;
}

/* Checkbox-Gruppen Container */
div.consent_manager-cookiegroups {
    padding: 24px 32px !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    justify-content: flex-start !important;
    background: #ffffff !important;
}

/* Einzelne Checkbox-Gruppe */
div.consent_manager-cookiegroup-checkbox {
    margin: 0 !important;
    background: #f8fafc !important;
    padding: 12px 18px !important;
    border-radius: 50px !important;
    border: 2px solid #e2e8f0 !important;
    transition: all 0.2s ease !important;
    flex: 0 0 auto !important;
}

div.consent_manager-cookiegroup-checkbox:hover {
    border-color: #c41e3a !important;
    background: #fef2f2 !important;
}

div.consent_manager-cookiegroups label {
    color: #334155 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
}

div.consent_manager-cookiegroups label > input[type=checkbox] {
    filter: none !important;
    transform: scale(1.2) !important;
    accent-color: #c41e3a !important;
    margin: 0 !important;
    cursor: pointer !important;
}

/* Details Link */
div.consent_manager-show-details {
    padding: 0 32px 24px !important;
    text-align: left !important;
    background: #ffffff !important;
}

div.consent_manager-show-details .icon-info-circled {
    color: #c41e3a !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

div.consent_manager-show-details .icon-info-circled:before {
    background-color: #c41e3a !important;
    color: #ffffff !important;
    opacity: 1 !important;
}

div.consent_manager-show-details .icon-info-circled:hover {
    color: #991b1b !important;
    text-decoration: underline !important;
}

/* Button-Bereich */
div.consent_manager-buttons {
    background: #ffffff !important;
    padding: 24px 32px !important;
    border-top: 1px solid #e2e8f0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    gap: 12px !important;
}

button.consent_manager-save-selection,
button.consent_manager-accept-all,
button.consent_manager-accept-none {
    padding: 14px 28px !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    min-width: auto !important;
    margin: 0 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

/* Alle akzeptieren - Rot */
button.consent_manager-accept-all {
    background: #c41e3a !important;
    border: none !important;
    color: #ffffff !important;
    order: 3 !important;
}

button.consent_manager-accept-all:hover {
    background: #a01830 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35) !important;
}

/* Auswahl speichern - Dunkel */
button.consent_manager-save-selection {
    background: #0f172a !important;
    border: none !important;
    color: #ffffff !important;
    order: 2 !important;
}

button.consent_manager-save-selection:hover {
    background: #1e293b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25) !important;
}

/* Nur notwendige - Ghost */
button.consent_manager-accept-none {
    background: transparent !important;
    border: 2px solid #e2e8f0 !important;
    color: #64748b !important;
    order: 1 !important;
}

button.consent_manager-accept-none:hover {
    border-color: #cbd5e1 !important;
    background: #f8fafc !important;
    color: #334155 !important;
}

/* Footer Links */
div.consent_manager-sitelinks {
    padding: 0 32px 24px !important;
    margin: 0 !important;
    text-align: center !important;
    background: #ffffff !important;
}

div.consent_manager-sitelinks a {
    color: #94a3b8 !important;
    font-size: 0.8rem !important;
    text-decoration: none !important;
    margin: 0 12px !important;
    transition: color 0.2s ease !important;
}

div.consent_manager-sitelinks a:hover {
    color: #c41e3a !important;
}

/* Close Button */
.consent_manager-close-box {
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    background: #f1f5f9 !important;
    border: none !important;
    color: #64748b !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    border-radius: 12px !important;
    font-size: 20px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    z-index: 20 !important;
    opacity: 1 !important;
}

.consent_manager-close-box:hover {
    background: #c41e3a !important;
    color: #ffffff !important;
}

/* ===== DETAIL-BEREICH ===== */
div.consent_manager-wrapper div.consent_manager-detail {
    padding: 0 32px 24px !important;
    margin: 0 !important;
    background: #ffffff !important;
    display: none !important;
}

/* Details anzeigen wenn consent_manager-hidden Klasse NICHT vorhanden */
div.consent_manager-wrapper div.consent_manager-detail:not(.consent_manager-hidden) {
    display: none !important;
}

/* Details sichtbar machen per JS-Toggle */
div.consent_manager-wrapper div.consent_manager-detail.consent_manager-visible {
    display: block !important;
}

/* Gruppen-Titel im Detail */
div.consent_manager-wrapper div.consent_manager-cookiegroup-title {
    background: #0f172a !important;
    color: #ffffff !important;
    padding: 14px 20px !important;
    border-radius: 12px 12px 0 0 !important;
    margin: 20px 0 0 !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
}
div.consent_manager-wrapper div.consent_manager-cookiegroup-title {
    background: #0f172a !important;
    color: #ffffff !important;
    padding: 14px 20px !important;
    border-radius: 12px 12px 0 0 !important;
    margin: 20px 0 0 !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
}

/* Gruppen-Beschreibung */
div.consent_manager-wrapper div.consent_manager-cookiegroup-description {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-top: none !important;
    padding: 14px 20px !important;
    color: #64748b !important;
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
}

/* Einzelne Cookies */
div.consent_manager-wrapper div.consent_manager-cookie {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-top: none !important;
    padding: 12px 20px !important;
    font-size: 0.8rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
}

div.consent_manager-wrapper div.consent_manager-cookie:last-child {
    border-radius: 0 0 12px 12px !important;
}

div.consent_manager-wrapper div.consent_manager-cookie span {
    display: block !important;
    margin-top: 3px !important;
}

/* Links im Detail */
div.consent_manager-wrapper div.consent_manager-detail a {
    color: #c41e3a !important;
    text-decoration: none !important;
}

div.consent_manager-wrapper div.consent_manager-detail a:hover {
    text-decoration: underline !important;
}

/* ===== RESPONSIVE ===== */
@media only screen and (max-width: 680px) {
    div.consent_manager-background {
        padding: 0 !important;
        align-items: flex-end !important;
    }
    
    div.consent_manager-wrapper {
        max-width: 100% !important;
        max-height: 90vh !important;
        border-radius: 24px 24px 0 0 !important;
        border-bottom: none !important;
    }
    
    div.consent_manager-wrapper .consent_manager-headline {
        padding: 24px 24px 20px !important;
        font-size: 1.3rem !important;
        padding-right: 60px !important;
    }
    
    div.consent_manager-wrapper p.consent_manager-text {
        padding: 20px 24px 16px !important;
        font-size: 0.9rem !important;
    }
    
    div.consent_manager-cookiegroups {
        padding: 20px 24px !important;
        gap: 10px !important;
    }
    
    div.consent_manager-cookiegroup-checkbox {
        padding: 10px 16px !important;
    }
    
    div.consent_manager-show-details {
        padding: 0 24px 20px !important;
    }
    
    div.consent_manager-buttons {
        padding: 20px 24px !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    button.consent_manager-save-selection,
    button.consent_manager-accept-all,
    button.consent_manager-accept-none {
        width: 100% !important;
        padding: 16px 24px !important;
    }
    
    div.consent_manager-sitelinks {
        padding: 0 24px 20px !important;
    }
    
    div.consent_manager-wrapper div.consent_manager-detail {
        padding: 0 24px 20px !important;
    }
    
    .consent_manager-close-box {
        top: 18px !important;
        right: 18px !important;
        width: 36px !important;
        height: 36px !important;
        line-height: 36px !important;
    }
}

