/* ========================================
   SUBPAGE STYLES
   Zusätzliche Styles für Unterseiten
   ======================================== */

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 50%, #5bb8d9 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-hero-content {
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb svg {
    stroke: rgba(255, 255, 255, 0.5);
}

.breadcrumb span {
    color: white;
}

.page-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.page-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 560px;
}

.page-hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Tech Animation */
.page-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.tech-svg {
    width: 100%;
    height: 100%;
}

.tech-line {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 1;
    stroke-dasharray: 5, 5;
    animation: dash 15s linear infinite;
}

.tech-node-circle {
    fill: rgba(255, 255, 255, 0.15);
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 1.5;
    animation: pulse-node 3s ease-in-out infinite;
}

.tech-node-circle:nth-child(3) { animation-delay: 0.2s; }
.tech-node-circle:nth-child(4) { animation-delay: 0.4s; }
.tech-node-circle:nth-child(5) { animation-delay: 0.6s; }
.tech-node-circle:nth-child(6) { animation-delay: 0.8s; }
.tech-node-circle:nth-child(7) { animation-delay: 1.0s; }
.tech-node-circle:nth-child(8) { animation-delay: 1.2s; }
.tech-node-circle:nth-child(9) { animation-delay: 1.4s; }
.tech-node-circle:nth-child(10) { animation-delay: 1.6s; }

.tech-node-center-glow {
    fill: rgba(255, 255, 255, 0.2);
    animation: glow-pulse 2s ease-in-out infinite;
}

.tech-node-center {
    fill: white;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

@keyframes pulse-node {
    0%, 100% {
        opacity: 0.5;
        transform-origin: center;
    }
    50% {
        opacity: 1;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.3;
        r: 20;
    }
    50% {
        opacity: 0.6;
        r: 24;
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: -100;
    }
}

.tech-icon {
    opacity: 0.8;
}

/* ========================================
   SUBPAGE SECTIONS
   ======================================== */
.subpage-section {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.subpage-section:nth-child(even) {
    background: var(--gray-50);
}

/* ========================================
   SERVICE DETAIL GRID
   ======================================== */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-detail-card {
    padding: 40px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.service-detail-card:hover {
    border-color: var(--primary-300);
    box-shadow: 0 20px 50px rgba(13, 79, 110, 0.1);
    transform: translateY(-4px);
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.service-detail-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.service-detail-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 12px;
}

.service-detail-card > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-700);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-100);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-500);
    flex-shrink: 0;
}

/* ========================================
   TECH SECTION
   ======================================== */
.tech-section {
    background: var(--gray-50);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.tech-category {
    background: #ffffff;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.tech-category h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-500);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 8px 14px;
    background: var(--gray-100);
    color: var(--primary-700);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.tech-tag:hover {
    background: var(--primary-600);
    color: white;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    background: #ffffff;
}

.process-section .process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-section .process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-500), var(--primary-300));
}

.process-section .process-step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.process-section .process-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(13, 79, 110, 0.3);
}

.process-section .process-content {
    padding-top: 16px;
}

.process-section .process-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 8px;
}

.process-section .process-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   SAAS SECTION
   ======================================== */
.saas-section {
    background: var(--gray-50);
}

.saas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.saas-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.saas-card:hover {
    border-color: var(--primary-300);
    box-shadow: 0 15px 40px rgba(13, 79, 110, 0.1);
    transform: translateY(-4px);
}

.saas-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 79, 110, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.saas-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-600);
}

.saas-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 12px;
}

.saas-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.saas-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-600);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.saas-link:hover {
    color: var(--primary-700);
    gap: 12px;
}

.saas-link svg {
    transition: transform var(--transition-fast);
}

.saas-link:hover svg {
    transform: translateX(4px);
}

/* ========================================
   SUBPAGE CTA
   ======================================== */
.subpage-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-600));
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-700);
}

.cta-buttons .btn-primary:hover {
    background: var(--gray-100);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* CTA with Micro-Copy (Subpages) */
.cta-buttons .cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-buttons .cta-micro-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-buttons .cta-micro-copy svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-400);
}

/* ========================================
   ACTIVE NAV LINK
   ======================================== */
.nav-link.active {
    color: var(--primary-600);
}

.nav-link.active::after {
    width: 100%;
}

/* ========================================
   RESPONSIVE DESIGN - SUBPAGES
   ======================================== */
@media (max-width: 1200px) {
    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .saas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .page-hero-stats {
        justify-content: center;
    }
    
    .page-hero-visual {
        display: none;
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .process-section .process-timeline::before {
        left: 24px;
    }
    
    .process-section .process-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .page-hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .saas-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .b2b-features {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SHOPS PAGE SPECIFIC STYLES
   ======================================== */

/* Shop Hero Animation */
.shop-animation {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cart {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-cart 3s ease-in-out infinite;
}

.floating-cart svg {
    width: 48px;
    height: 48px;
    stroke: white;
}

@keyframes float-cart {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-box {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
}

.floating-box svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.8);
}

.floating-box.box-1 {
    top: 20px;
    left: 30px;
    animation: float-box 4s ease-in-out infinite;
}

.floating-box.box-2 {
    top: 40px;
    right: 20px;
    animation: float-box 4s ease-in-out infinite 1s;
}

.floating-box.box-3 {
    bottom: 30px;
    left: 50px;
    animation: float-box 4s ease-in-out infinite 2s;
}

@keyframes float-box {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 1;
    }
}

/* B2B Features Grid */
.subpage-section.b2b-section,
.b2b-section {
    background: linear-gradient(135deg, #0d4f6e 0%, #1a6b8a 100%) !important;
    padding: var(--section-padding) 0;
}

.b2b-section .section-header {
    margin-bottom: 48px;
}

.subpage-section.b2b-section .section-tag,
.b2b-section .section-tag {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: none !important;
}

.subpage-section.b2b-section .section-title,
.b2b-section .section-title {
    color: white !important;
}

.subpage-section.b2b-section .section-subtitle,
.b2b-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

.b2b-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.b2b-feature-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
}

.b2b-feature-card:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.b2b-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.b2b-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.b2b-feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 8px;
}

.b2b-feature-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Platforms Grid */
.platforms-section {
    background: var(--gray-50);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.platform-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.platform-card:hover {
    border-color: var(--primary-300);
    box-shadow: 0 15px 40px rgba(13, 79, 110, 0.1);
    transform: translateY(-4px);
}

.platform-logo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.platform-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-800);
}

.platform-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    width: fit-content;
}

.platform-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-features li {
    padding: 6px 0;
    color: var(--gray-700);
    font-size: 0.85rem;
    position: relative;
    padding-left: 16px;
}

.platform-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-500);
    border-radius: 50%;
}

/* Integration Section */
.integration-section {
    background: #ffffff;
}

.integration-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.integration-category {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.integration-category h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-500);
}

.integration-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.integration-tag {
    padding: 8px 14px;
    background: #ffffff;
    color: var(--primary-700);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.integration-tag:hover {
    background: var(--primary-600);
    color: white;
    border-color: var(--primary-600);
}

/* Metrics Section */
.metrics-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metric-card {
    padding: 40px 32px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.metric-card:hover {
    border-color: var(--primary-300);
    box-shadow: 0 10px 30px rgba(13, 79, 110, 0.1);
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: 8px;
}

.metric-label {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Responsive for Shops Page */
@media (max-width: 1200px) {
    .b2b-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integration-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .b2b-features {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-categories {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-animation {
        display: none;
    }
}

/* ========================================
   MARKETING PAGE SPECIFIC STYLES
   ======================================== */

/* Marketing Hero Animation */
.marketing-animation {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-chart {
    position: relative;
    width: 200px;
    height: 150px;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3));
    clip-path: polygon(0 100%, 25% 70%, 50% 80%, 75% 40%, 100% 10%, 100% 100%);
    animation: chart-grow 2s ease-out forwards;
}

@keyframes chart-grow {
    from {
        clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%, 0 100%, 0 100%);
    }
    to {
        clip-path: polygon(0 100%, 25% 70%, 50% 80%, 75% 40%, 100% 10%, 100% 100%);
    }
}

.chart-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: dot-pulse 2s ease-in-out infinite;
}

.chart-dot.dot-1 {
    bottom: 30%;
    left: 0;
    animation-delay: 0s;
}

.chart-dot.dot-2 {
    bottom: 20%;
    left: 25%;
    animation-delay: 0.3s;
}

.chart-dot.dot-3 {
    bottom: 60%;
    left: 75%;
    animation-delay: 0.6s;
}

.chart-dot.dot-4 {
    bottom: 90%;
    right: 0;
    animation-delay: 0.9s;
}

@keyframes dot-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* SEO Section */
.seo-section {
    background: var(--gray-50);
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.seo-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.seo-card:hover {
    border-color: var(--primary-300);
    box-shadow: 0 15px 40px rgba(13, 79, 110, 0.1);
    transform: translateY(-4px);
}

.seo-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 79, 110, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.seo-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-600);
}

.seo-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 8px;
}

.seo-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Branding Section */
.branding-section {
    background: #ffffff;
}

.branding-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.branding-card {
    padding: 32px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.branding-card:hover {
    border-color: var(--primary-300);
    box-shadow: 0 15px 40px rgba(13, 79, 110, 0.1);
}

.branding-card.large {
    grid-row: span 2;
}

.branding-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.branding-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.branding-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 12px;
}

.branding-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

.branding-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.branding-features li {
    padding: 6px 12px;
    background: rgba(13, 79, 110, 0.08);
    color: var(--primary-700);
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

/* Webdesign Section */
.webdesign-section {
    background: linear-gradient(135deg, #0d4f6e 0%, #1a6b8a 100%) !important;
}

.webdesign-section .section-tag {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.webdesign-section .section-title {
    color: white !important;
}

.webdesign-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

.webdesign-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.webdesign-feature {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
}

.webdesign-feature:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.webdesign-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-500);
    line-height: 1;
}

.webdesign-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 8px;
}

.webdesign-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Automation Section */
.automation-section {
    background: var(--gray-50);
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.automation-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.automation-card:hover {
    border-color: var(--primary-300);
    box-shadow: 0 15px 40px rgba(13, 79, 110, 0.1);
    transform: translateY(-4px);
}

.automation-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 79, 110, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.automation-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-600);
}

.automation-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 8px;
}

.automation-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Marketing Responsive */
@media (max-width: 1200px) {
    .seo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .branding-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .branding-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .webdesign-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .automation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .seo-grid {
        grid-template-columns: 1fr;
    }
    
    .branding-grid {
        grid-template-columns: 1fr;
    }
    
    .branding-card.large {
        grid-column: span 1;
    }
    
    .webdesign-features {
        grid-template-columns: 1fr;
    }
    
    .automation-grid {
        grid-template-columns: 1fr;
    }
    
    .marketing-animation {
        display: none;
    }
}

/* ========================================
   SERVICE OVERVIEW & CARDS (Shared)
   ======================================== */
.service-overview {
    padding: 100px 0;
    background: white;
}

.service-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-feature-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.service-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-300);
}

.service-feature-card .feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-feature-card .feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-600);
}

.service-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 12px;
}

.service-feature-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Hero Tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(4px);
}

/* ========================================
   DETAIL SECTIONS (Shared)
   ======================================== */
.detail-section {
    padding: 100px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detail-grid.reverse {
    direction: rtl;
}

.detail-grid.reverse > * {
    direction: ltr;
}

.detail-content {
    max-width: 560px;
}

.detail-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.detail-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-600);
}

.detail-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 4px;
}

.detail-feature p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   BERATUNG PAGE STYLES
   ======================================== */
.beratung-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #4299e1 100%);
}

/* Strategy Section */
.strategy-section {
    background: white;
}

.strategy-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px;
}

.strategy-layer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(0, 61, 92, 0.05) 0%, rgba(91, 184, 217, 0.1) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-500);
    transition: all var(--transition-normal);
}

.strategy-layer:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(0, 61, 92, 0.1) 0%, rgba(91, 184, 217, 0.15) 100%);
}

.strategy-layer .layer-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.strategy-layer .layer-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-600);
}

.strategy-layer span {
    font-weight: 600;
    color: var(--primary-700);
}

.strategy-layer.layer-1 { border-left-color: #003d5c; }
.strategy-layer.layer-2 { border-left-color: #005f8a; }
.strategy-layer.layer-3 { border-left-color: #2196F3; }
.strategy-layer.layer-4 { border-left-color: #5bb8d9; }

/* Vertriebsberatung */
.vertrieb-section {
    background: var(--gray-50);
}

.vertrieb-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.vertrieb-stat {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vertrieb-stat .stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-600);
    line-height: 1;
}

.vertrieb-stat .stat-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 8px;
}

.vertrieb-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.vertrieb-service {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.vertrieb-service:hover {
    border-color: var(--primary-300);
    box-shadow: 0 4px 12px rgba(0, 61, 92, 0.1);
}

.vertrieb-service svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-500);
    flex-shrink: 0;
}

.vertrieb-service span {
    font-weight: 500;
    color: var(--primary-700);
}

/* Sales Funnel Visual */
.sales-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    max-width: 320px;
    margin: 0 auto;
}

.funnel-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    color: white;
    font-weight: 600;
    position: relative;
    transition: all var(--transition-normal);
    text-align: center;
}

.funnel-stage:hover {
    transform: scale(1.02);
}

.funnel-stage.stage-1 {
    width: 280px;
    background: linear-gradient(135deg, #003d5c 0%, #005f8a 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.funnel-stage.stage-2 {
    width: 230px;
    background: linear-gradient(135deg, #005f8a 0%, #0077b6 100%);
}

.funnel-stage.stage-3 {
    width: 180px;
    background: linear-gradient(135deg, #0077b6 0%, #2196F3 100%);
}

.funnel-stage.stage-4 {
    width: 130px;
    background: linear-gradient(135deg, #f5a623 0%, #f39c12 100%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.stage-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stage-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stage-count {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Prozessoptimierung */
.prozess-section {
    background: white;
}

.process-optimization-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.optimization-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.optimization-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-300);
}

.optimization-card .opt-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-200);
    line-height: 1;
    margin-bottom: 16px;
}

.optimization-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 12px;
}

.optimization-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.opt-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opt-list li {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.opt-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-400);
    border-radius: 50%;
}

/* Change Management */
.change-section {
    background: var(--gray-50);
}

.change-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.change-pillar {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.change-pillar:hover {
    border-color: var(--primary-300);
    box-shadow: 0 8px 24px rgba(0, 61, 92, 0.1);
}

.change-pillar .pillar-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.change-pillar .pillar-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-600);
}

.change-pillar h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 8px;
}

.change-pillar p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Change Curve Visual */
.change-curve {
    padding: 40px 20px;
}

.curve-visual {
    margin-bottom: 24px;
}

.curve-svg {
    width: 100%;
    height: auto;
}

.curve-path {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawCurve 2s ease-out forwards;
}

@keyframes drawCurve {
    to {
        stroke-dashoffset: 0;
    }
}

.curve-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.curve-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-600);
    text-align: center;
}

/* Industries Section */
.industries-section {
    background: white;
    padding: 100px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-300);
}

.industry-card .industry-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.industry-card .industry-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-600);
}

.industry-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Consulting Process Timeline */
.consulting-process {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 100%);
    padding: 100px 0;
}

.consulting-process .section-header {
    color: white;
}

.consulting-process .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.consulting-process .section-title {
    color: white;
}

.consulting-process .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.consulting-process .process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.timeline-item {
    position: relative;
    text-align: center;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -16px;
    width: calc(100% - 64px);
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-marker {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.timeline-marker span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-600);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 16px;
}

.timeline-duration {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    color: white;
    font-weight: 500;
}

/* Beratung Page Responsive */
@media (max-width: 1200px) {
    .process-optimization-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consulting-process .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .detail-grid.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .vertrieb-stats {
        grid-template-columns: 1fr;
    }
    
    .vertrieb-services {
        grid-template-columns: 1fr;
    }
    
    .process-optimization-grid {
        grid-template-columns: 1fr;
    }
    
    .change-pillars {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .consulting-process .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .sales-funnel {
        padding: 24px;
        max-width: 280px;
    }
    
    .funnel-stage {
        padding: 20px 24px;
    }
    
    .funnel-stage.stage-1 {
        width: 240px;
    }
    
    .funnel-stage.stage-2 {
        width: 200px;
    }
    
    .funnel-stage.stage-3 {
        width: 160px;
    }
    
    .funnel-stage.stage-4 {
        width: 120px;
    }

    .stage-name {
        font-size: 0.75rem;
    }
    
    .stage-count {
        font-size: 0.7rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .detail-content {
        max-width: 100%;
    }
}

/* Service Grid Responsive */
@media (max-width: 1200px) {
    .service-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-tags {
        justify-content: flex-start;
    }
}

/* ========================================
   KI PAGE STYLES
   ======================================== */
.ki-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* KI Section Backgrounds - alternating colors */
.ki-service-overview {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 100px 0;
}

.ki-gpt-section {
    background: white;
    padding: 100px 0;
}

.automation-detail-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 100px 0;
}

.ml-section {
    background: white;
    padding: 100px 0;
}

.ki-integration-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 100px 0;
}

.ki-process-section {
    background: white;
    padding: 100px 0;
}

.ki-tech-section {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 100%);
    padding: 100px 0;
}

/* KI Voicebot Hero Visual */
.ki-voicebot-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.voicebot-phone {
    position: relative;
}

.phone-frame {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 16px;
    width: 260px;
}

.phone-screen {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.voicebot-avatar {
    width: 100px;
    height: 100px;
    animation: voicebot-pulse 2s ease-in-out infinite;
}

.voicebot-avatar svg {
    width: 100%;
    height: 100%;
}

.bot-eye {
    animation: bot-blink 4s ease-in-out infinite;
}

.bot-mouth {
    animation: bot-talk 0.5s ease-in-out infinite;
}

@keyframes voicebot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bot-blink {
    0%, 45%, 55%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.1); }
}

@keyframes bot-talk {
    0%, 100% { d: path("M26 28 Q30 32 34 28"); }
    50% { d: path("M26 29 Q30 26 34 29"); }
}

.voicebot-waves {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
}

.voicebot-waves .wave {
    width: 4px;
    background: linear-gradient(to top, #6366f1, #a5b4fc);
    border-radius: 4px;
    animation: wave-animation 1s ease-in-out infinite;
}

.wave-1 { height: 15px; animation-delay: 0s; }
.wave-2 { height: 25px; animation-delay: 0.1s; }
.wave-3 { height: 35px; animation-delay: 0.2s; }
.wave-4 { height: 25px; animation-delay: 0.3s; }
.wave-5 { height: 15px; animation-delay: 0.4s; }

@keyframes wave-animation {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.voicebot-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.85rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: status-pulse 1.5s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.status-text {
    opacity: 0.9;
}

.phone-call-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    color: #22c55e;
    font-size: 0.9rem;
    font-weight: 500;
}

.phone-call-info .phone-icon {
    width: 20px;
    height: 20px;
    stroke: #22c55e;
    animation: phone-ring 1s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* GPT Chat Visual */
.gpt-visual {
    padding: 20px;
}

.gpt-chat-window {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 400px;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 100%);
    color: white;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.chat-status {
    font-size: 0.75rem;
    opacity: 0.9;
}

.chat-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.user {
    background: var(--primary-100);
    color: var(--primary-700);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message.bot {
    background: var(--gray-100);
    color: var(--gray-700);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message p {
    margin: 0;
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    width: fit-content;
    border-bottom-left-radius: 4px;
}

.chat-typing span {
    width: 8px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.chat-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

/* Automation Section Styles */
.automation-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.benefit-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.benefit-card .benefit-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-600);
}

.benefit-card .benefit-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 4px;
}

.automation-use-cases {
    margin-top: 24px;
}

.automation-use-cases h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 12px;
}

.automation-use-cases ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.automation-use-cases li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.automation-use-cases li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-400);
    border-radius: 50%;
}

/* Workflow Visual */
.workflow-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.workflow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.workflow-node svg {
    width: 48px;
    height: 48px;
    padding: 12px;
    background: var(--primary-100);
    border-radius: var(--radius-lg);
    stroke: var(--primary-600);
}

.workflow-node.process svg {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    stroke: white;
}

.workflow-node.end svg {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    stroke: white;
}

.workflow-node span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-700);
}

.workflow-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--gray-400);
}

/* Workflow Comparison (Vorher/Nachher) */
.workflow-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.workflow-before,
.workflow-after {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.workflow-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
}

.workflow-label svg {
    width: 20px;
    height: 20px;
}

.workflow-label.before-label {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}

.workflow-label.before-label svg {
    stroke: #991b1b;
}

.workflow-label.after-label {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
}

.workflow-label.after-label svg {
    stroke: #166534;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.workflow-after .workflow-step {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.step-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-300);
}

.step-icon.ai {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    border: none;
}

.step-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-600);
}

.step-icon.ai svg {
    stroke: white;
}

.step-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.step-time {
    font-size: 0.85rem;
    font-weight: 600;
    color: #dc2626;
    background: white;
    padding: 4px 12px;
    border-radius: var(--radius-md);
}

.workflow-connector {
    width: 2px;
    height: 16px;
    background: var(--gray-300);
    margin: 0 auto 0 35px;
}

.workflow-connector.short {
    height: 8px;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
}

.workflow-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    margin-top: 8px;
}

.workflow-total.before-total {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #fca5a5;
}

.workflow-total.after-total {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 2px solid #86efac;
}

.total-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
}

.total-time {
    font-size: 1.3rem;
    font-weight: 700;
}

.workflow-total.before-total .total-time {
    color: #991b1b;
}

.workflow-total.after-total .total-time {
    color: #166534;
}

.workflow-improvement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
}

.workflow-improvement svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

/* ML Section */
.ml-section {
    background: white;
    padding: 100px 0;
}

.ml-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ml-solution-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.ml-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-300);
}

.ml-solution-card .ml-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ml-solution-card .ml-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-600);
}

.ml-solution-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 12px;
}

.ml-solution-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ml-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ml-tags span {
    padding: 4px 12px;
    background: var(--primary-100);
    color: var(--primary-600);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 100px;
}

/* KI Integration Cards */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.integration-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.integration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-300);
}

.integration-card .integration-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.integration-card .integration-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-600);
}

.integration-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 8px;
}

.integration-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* KI Process Cards */
.ki-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ki-process-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--gray-200);
    position: relative;
}

.ki-process-card .process-step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-200);
    line-height: 1;
    margin-bottom: 16px;
}

.ki-process-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 12px;
}

.ki-process-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ki-process-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ki-process-card li {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.ki-process-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-400);
    border-radius: 50%;
}

/* KI Tech Section Overrides */
.ki-tech-section .section-header {
    color: white;
}

.ki-tech-section .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.ki-tech-section .section-title {
    color: white;
}

.ki-tech-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-stack-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-stack-category h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.tech-stack-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-stack-items span {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.tech-stack-items span:hover {
    background: white;
    color: var(--primary-700);
}

/* KI Page Responsive */
@media (max-width: 1200px) {
    .ml-solutions-grid,
    .integration-grid,
    .ki-process-grid,
    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .automation-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .workflow-visual {
        flex-wrap: wrap;
    }
    
    .ki-service-overview .service-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ki-hero .page-title {
        font-size: 2rem;
    }
    
    .ki-hero .page-subtitle {
        font-size: 1rem;
    }
    
    .ki-hero .hero-tags {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .ki-hero .hero-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .ml-solutions-grid,
    .integration-grid,
    .ki-process-grid,
    .tech-stack-grid {
        grid-template-columns: 1fr;
    }
    
    .automation-benefits {
        grid-template-columns: 1fr;
    }
    
    .workflow-visual {
        flex-direction: column;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }
    
    .gpt-chat-window {
        max-width: 100%;
    }
    
    .ki-service-overview .service-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .ki-gpt-section,
    .automation-detail-section,
    .ml-section,
    .ki-integration-section,
    .ki-process-section,
    .ki-tech-section {
        padding: 60px 0;
    }
    
    .ki-service-overview {
        padding: 60px 0;
    }
    
    .detail-grid {
        gap: 40px;
    }
}

/* ========================================
   PARTNER PAGE STYLES
   ======================================== */

.partner-intro {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.partner-intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Partner Stats Section */
.partner-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
}

.partner-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.partner-stats .stat-card {
    text-align: center;
    color: white;
}

.partner-stats .stat-card .number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.partner-stats .stat-card .label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Partner Grid */
.partner-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.partner-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    position: relative;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(13, 79, 110, 0.15);
    border-color: var(--primary-300);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400), #00d4aa);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card-header {
    padding: 40px 32px 24px;
    text-align: center;
    background: linear-gradient(135deg, rgba(13, 79, 110, 0.03), rgba(77, 168, 218, 0.08));
}

.partner-logo {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-600);
    transition: transform var(--transition-normal);
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.partner-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 8px;
}

.partner-type {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(13, 79, 110, 0.1);
    color: var(--primary-600);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-card-content {
    padding: 24px 32px 32px;
}

.partner-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.partner-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.expertise-tag {
    padding: 6px 12px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-md);
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-600);
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.partner-link:hover {
    gap: 12px;
}

/* Partner Categories */
.partner-categories {
    padding: var(--section-padding) 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    padding: 32px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.category-card:hover {
    border-color: var(--primary-300);
    background: white;
    box-shadow: 0 10px 30px rgba(13, 79, 110, 0.1);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
}

.category-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 8px;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Partner Benefits Section */
.benefits-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(13, 79, 110, 0.1);
    border-color: var(--primary-300);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 79, 110, 0.1), rgba(77, 168, 218, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-600);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Partner CTA */
.partner-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
    text-align: center;
}

.partner-cta h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
}

.partner-cta p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}

/* Partner Page Responsive */
@media (max-width: 1024px) {
    .partner-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partner-stats .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .partner-stats .stat-card .number {
        font-size: 2.5rem;
    }
    
    .partner-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-cta h2 {
        font-size: 2rem;
    }
}

/* ========================================
   LÖSUNGEN PAGE STYLES
   ======================================== */

.loesungen-intro {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.loesungen-intro p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Product Categories Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.category-tab {
    padding: 12px 24px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: white;
}

/* Products Section */
.products-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(13, 79, 110, 0.15);
    border-color: var(--primary-300);
}

.product-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 300px 1fr;
}

.product-card.featured .product-header {
    min-height: auto;
    justify-content: center;
}

.product-card.featured .product-name {
    font-size: 1.75rem;
}

.product-header {
    padding: 32px;
    background: linear-gradient(135deg, rgba(13, 79, 110, 0.03), rgba(77, 168, 218, 0.08));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 220px;
}

.product-header h3,
.product-header p {
    margin: 0;
    padding: 0;
}

.product-title-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary-500), #00d4aa);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    margin-bottom: 16px;
    width: fit-content;
}

.product-logo {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.product-logo svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-600);
}

.product-logo img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-800);
    margin: 0 0 8px 0 !important;
    line-height: 1.3;
    display: block;
    width: 100%;
}

.product-tagline {
    font-size: 0.9rem;
    color: var(--primary-500);
    font-weight: 500;
    line-height: 1.4;
    margin: 0 !important;
    display: block;
    width: 100%;
}

.product-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.product-feature svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-500);
    flex-shrink: 0;
}

.product-meta {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
}

.meta-item {
    text-align: center;
}

.meta-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-600);
}

.meta-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-top: 2px;
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-600);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.product-link:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
}

.product-link.secondary {
    background: transparent;
    color: var(--primary-600);
    border: 2px solid var(--primary-600);
}

.product-link.secondary:hover {
    background: var(--primary-600);
    color: white;
}

/* Highlight Section */
.highlight-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.highlight-card {
    text-align: center;
    color: white;
}

.highlight-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.highlight-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Integration Section */
.integration-section {
    padding: var(--section-padding) 0;
    background: white;
}

.integration-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.integration-logo {
    padding: 20px 32px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--gray-600);
    transition: all var(--transition-fast);
}

.integration-logo:hover {
    border-color: var(--primary-300);
    color: var(--primary-600);
    background: white;
}

/* Lösungen CTA Section */
.loesungen-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500)) !important;
    text-align: center;
}

.loesungen-cta h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
}

.loesungen-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}

/* Lösungen Page Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .product-card.featured .product-header {
        min-height: 220px;
    }
    
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .product-header {
        padding: 24px;
        min-height: auto;
    }
    
    .product-content {
        padding: 24px;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .loesungen-cta h2 {
        font-size: 2rem;
    }
}

/* ========================================
   LEAD MAGNET MODAL
   ======================================== */
.lead-magnet-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lead-magnet-modal.open {
    opacity: 1;
    visibility: visible;
}

.lead-magnet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.lead-magnet-container {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.lead-magnet-modal.open .lead-magnet-container {
    transform: scale(1) translateY(0);
}

.lead-magnet-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lead-magnet-close:hover {
    background: white;
    transform: scale(1.1);
}

.lead-magnet-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-600);
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 300px 1fr;
}

/* Preview Side */
.lead-magnet-preview {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 100%);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lead-magnet-badge {
    margin-bottom: 24px;
}

.lead-magnet-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lead-magnet-icon-wrapper {
    margin-bottom: 24px;
}

.lead-magnet-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lead-magnet-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
}

.lead-magnet-meta {
    display: flex;
    gap: 16px;
}

.lead-magnet-format,
.lead-magnet-pages {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Form Side */
.lead-magnet-form-wrapper {
    padding: 48px;
}

.lead-magnet-header {
    margin-bottom: 24px;
}

.lead-magnet-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--primary-800);
    margin-bottom: 8px;
}

.lead-magnet-header p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.lead-magnet-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lead-magnet-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.lead-magnet-benefits li svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-500);
    flex-shrink: 0;
}

/* Form Styles */
.lead-magnet-form .form-group {
    margin-bottom: 20px;
}

.lead-magnet-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.lead-magnet-form label .optional {
    font-weight: 400;
    color: var(--gray-400);
}

.lead-magnet-form input[type="text"],
.lead-magnet-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.lead-magnet-form input[type="text"]:focus,
.lead-magnet-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(13, 79, 110, 0.1);
}

.lead-magnet-form .form-checkbox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: flex-start;
}

.lead-magnet-form .form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary-500);
}

.lead-magnet-form .form-checkbox label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 0;
    display: block;
    flex: 1;
}

.lead-magnet-form .form-checkbox label a {
    color: var(--primary-600);
    text-decoration: underline;
}

.lead-magnet-optin-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: -8px 0 20px 0;
    padding: 10px 12px;
    background: var(--gray-50);
    border-radius: 8px;
    border-left: 3px solid var(--primary-300);
}

.lead-magnet-optin-hint svg {
    flex-shrink: 0;
    margin-top: 1px;
    stroke: var(--primary-400);
}

.lead-magnet-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-size: 1.05rem;
}

.lead-magnet-submit svg {
    width: 22px;
    height: 22px;
}

.lead-magnet-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.lead-magnet-note svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-400);
}

/* Success State */
.lead-magnet-success {
    padding: 80px 48px;
    text-align: center;
}

.lead-magnet-success .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.lead-magnet-success .success-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.lead-magnet-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-800);
    margin-bottom: 12px;
}

.lead-magnet-success p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.lead-magnet-success .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lead-magnet-success .success-note {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Lead Magnet Card (für Seiten-Integration) */
.lead-magnet-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    display: flex;
    gap: 24px;
    align-items: center;
    transition: all 0.3s ease;
}

.lead-magnet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.lead-magnet-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lead-magnet-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.lead-magnet-card-content {
    flex: 1;
}

.lead-magnet-card-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--primary-800);
    margin-bottom: 8px;
}

.lead-magnet-card-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.lead-magnet-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .lead-magnet-modal {
        align-items: flex-start;
        padding: 10px;
    }
    
    .lead-magnet-container {
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px); /* Dynamic viewport height für Mobile */
        overflow-y: auto;
        border-radius: 16px;
        margin: 0;
    }
    
    .lead-magnet-content {
        grid-template-columns: 1fr;
    }
    
    .lead-magnet-preview {
        padding: 24px 20px;
        min-height: auto;
    }
    
    .lead-magnet-icon-wrapper {
        margin-bottom: 16px;
    }
    
    .lead-magnet-icon {
        width: 70px;
        height: 70px;
    }
    
    .lead-magnet-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .lead-magnet-form-wrapper {
        padding: 24px 20px;
        max-height: none;
        overflow: visible;
    }
    
    .lead-magnet-header {
        margin-bottom: 16px;
    }
    
    .lead-magnet-header h3 {
        font-size: 1.4rem;
    }
    
    .lead-magnet-benefits {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
        gap: 8px;
    }
    
    .lead-magnet-benefits li {
        font-size: 0.85rem;
    }
    
    .lead-magnet-form .form-group {
        margin-bottom: 16px;
    }
    
    .lead-magnet-form input[type="text"],
    .lead-magnet-form input[type="email"] {
        padding: 12px 14px;
        font-size: 16px; /* Verhindert Auto-Zoom auf iOS */
    }
    
    .lead-magnet-form .form-checkbox {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 12px;
    }
    
    .lead-magnet-form .form-checkbox input[type="checkbox"] {
        width: 22px;
        height: 22px;
        min-width: 22px;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .lead-magnet-form .form-checkbox label {
        font-size: 0.85rem;
        line-height: 1.5;
        flex: 1;
        display: block;
        text-align: left;
    }
    
    .lead-magnet-optin-hint {
        font-size: 0.75rem;
        padding: 8px 10px;
        margin: -4px 0 16px 0;
    }
    
    .lead-magnet-submit {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .lead-magnet-note {
        margin-top: 16px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .lead-magnet-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }
    
    .lead-magnet-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   LEAD-MAGNET SECTION (Inline auf Seiten)
   ======================================== */

.lead-magnet-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.lead-magnet-section .lead-magnet-card {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.lead-magnet-section .lead-magnet-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lead-magnet-section .lead-magnet-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    width: fit-content;
}

.lead-magnet-section .lead-magnet-card.violet .lead-magnet-badge {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.lead-magnet-section .lead-magnet-card.primary .lead-magnet-badge {
    background: rgba(13, 79, 110, 0.1);
    color: var(--primary-600);
}

.lead-magnet-section .lead-magnet-card.green .lead-magnet-badge {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.lead-magnet-section .lead-magnet-card.orange .lead-magnet-badge {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.lead-magnet-section .lead-magnet-card.amber .lead-magnet-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.lead-magnet-section .lead-magnet-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-800);
    margin-bottom: 12px;
}

.lead-magnet-section .lead-magnet-content > p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.lead-magnet-section .lead-magnet-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-magnet-section .lead-magnet-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.lead-magnet-section .lead-magnet-benefits li svg {
    width: 20px;
    height: 20px;
    stroke: #059669;
    flex-shrink: 0;
}

.lead-magnet-section .lead-magnet-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    padding: 14px 28px;
    width: fit-content;
}

/* Visual / Preview Bereich */
.lead-magnet-section .lead-magnet-visual {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lead-magnet-section .lead-magnet-card.violet .lead-magnet-visual {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.lead-magnet-section .lead-magnet-card.primary .lead-magnet-visual {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
}

.lead-magnet-section .lead-magnet-card.green .lead-magnet-visual {
    background: linear-gradient(135deg, #059669, #10b981);
}

.lead-magnet-section .lead-magnet-card.orange .lead-magnet-visual {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.lead-magnet-section .lead-magnet-card.amber .lead-magnet-visual {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.lead-magnet-section .lead-magnet-preview {
    background: white;
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.lead-magnet-section .preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 20px;
}

.lead-magnet-section .preview-header svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-600);
}

.lead-magnet-section .preview-header span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-800);
}

.lead-magnet-section .preview-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lead-magnet-section .preview-line {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    width: 100%;
}

.lead-magnet-section .preview-line.short {
    width: 60%;
}

.lead-magnet-section .preview-checkbox {
    height: 20px;
    background: var(--gray-100);
    border-radius: 4px;
    position: relative;
    padding-left: 28px;
}

.lead-magnet-section .preview-checkbox::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border: 2px solid var(--gray-300);
    border-radius: 3px;
    background: white;
}

.lead-magnet-section .preview-checkbox.checked::before {
    background: #059669;
    border-color: #059669;
}

.lead-magnet-section .preview-checkbox.checked::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    margin-top: -2px;
}

.lead-magnet-section .preview-badge {
    margin-top: 16px;
    padding: 8px 12px;
    background: var(--gray-100);
    border-radius: 6px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* KI Readiness Radar Chart */
.ki-readiness-radar {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-chart {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.radar-polygon {
    animation: radarPulse 3s ease-in-out infinite;
}

.radar-point {
    animation: pointPulse 2s ease-in-out infinite;
}

@keyframes radarPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes pointPulse {
    0%, 100% {
        r: 4;
        opacity: 1;
    }
    50% {
        r: 6;
        opacity: 0.8;
    }
}

.radar-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.radar-label {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.radar-label .label-icon {
    font-size: 1.2rem;
}

.radar-label .label-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-700);
    white-space: nowrap;
}

.radar-score {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    margin-top: 50px;
}

.radar-score .score-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.radar-score .score-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Responsive Lead-Magnet Section */
@media (max-width: 968px) {
    .lead-magnet-section .lead-magnet-card {
        grid-template-columns: 1fr;
    }
    
    .lead-magnet-section .lead-magnet-visual {
        order: -1;
        padding: 40px 24px;
    }
    
    .lead-magnet-section .lead-magnet-preview {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .lead-magnet-section .lead-magnet-content {
        padding: 32px 24px;
    }
    
    .lead-magnet-section .lead-magnet-content h3 {
        font-size: 1.5rem;
    }
    
    .lead-magnet-section .lead-magnet-trigger {
        width: 100%;
        justify-content: center;
    }
}
