:root {
    --white-color: #fff;
    --heading-color: #00001b;
    --body-color: rgba(0, 0, 27, 0.6);
    --accent-color: #132573;
    --accent-color2: #fece03;
    --accent-color3: #25d366;
    --gray-color: #ebeced;
    --gray2-color: #e6f1f7;
    --border-color: rgb(0 0 27 / 30%);
    --heading-font: "Montserrat", sans-serif;
    --body-font: "Inter", sans-serif;
}

body,
html {
    color: var(--body-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    color: var(--heading-color);
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Header Styles */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0 2rem;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo Styles */
.nav-logo .logo-link {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.logo-text {
    color: #ffffff;
}

.logo-accent {
    color: #c00a25;
}

/* Main Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 4rem;
    align-items: center;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link:hover {
    color: #c00a25;
}

/* Dropdown Icons */
.dropdown-icon {
    transition: transform 0.3s ease;
    color: #cccccc;
    width: 10px;
    height: 6px;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    color: #c00a25;
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    list-style: none;
}

/* Make sure you have this in your CSS */
.dropdown-menu.open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

/* Rotate the caret when the item is active (JS adds .active) */
.nav-item.has-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
    color: #c00a25;
}

/* Base overlay hidden */
.mobile-menu-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

/* Visible when JS adds .open */
.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* (Optional) slide-in panel if you use one */
.mobile-menu-content {
    transform: translateY(10px);
    transition: transform .25s ease;
}

.mobile-menu-overlay.open .mobile-menu-content {
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    color: #c00a25;
    background: rgba(192, 10, 37, 0.1);
}

/* Right Side Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.login-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.login-link:hover {
    color: #c00a25;
}

/* CTA Button */
.cta-button {
    background: #c00a25;
    color: #f7f7f7;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    color: #00001b;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Active State */
.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-content {
    padding: 100px 2rem 2rem;
    max-width: 400px;
}

.mobile-nav {
    list-style: none;
    margin: 0 0 3rem 0;
    padding: 0;
}

.mobile-nav>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #c00a25;
}

.mobile-nav-link.sub {
    padding: 1rem 0 1rem 1.5rem;
    font-size: 1rem;
    color: #cccccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Hide dropdown arrows in mobile menu */
.mobile-dropdown-icon {
    display: none !important;
}

/* Mobile Dropdown */
.mobile-dropdown-icon {
    transition: transform 0.3s ease;
    width: 12px;
    height: 8px;
}

.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
}

/* Mobile Close Button */
.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #c00a25;
}

.mobile-close svg {
    width: 24px;
    height: 24px;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-login {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem 0;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-login:hover {
    color: #c00a25;
}

.mobile-cta {
    background: linear-gradient(135deg, #c00a25, #e01e37);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    background: linear-gradient(135deg, #e01e37, #c00a25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(192, 10, 37, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        height: 60px;
    }

    .logo-link {
        font-size: 1.2rem !important;
    }

    .navbar {
        padding: 0 1rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1a1a;
    padding-top: 70px;
    text-align: center;
}

/* Hero Container - Centered Layout */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 80px;
}

/* Hero Content - Centered */
.hero-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    max-width: 800px;
}

.gradient-text {
    background: linear-gradient(135deg, #c00a25, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.title-highlight {
    display: block;
    color: #cccccc;
    font-weight: 600;
    font-size: 0.8em;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-description strong {
    color: #ffffff;
    font-weight: 600;
}

/* Hero Stats - Centered Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 600px;
    width: 100%;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #c00a25;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 500;
}

/* Hero Actions - Centered */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    color: #ffffff;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(192, 10, 37, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(192, 10, 37, 0.4);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Trust Indicators - Centered */
.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.2rem;
}

/* Hide demo section for now to focus on centered layout */
.hero-demo {
    display: none;
}

.demo-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.demo-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ff5f57;
}

.control.yellow {
    background: #ffbd2e;
}

.control.green {
    background: #28ca42;
}

.demo-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.demo-content {
    padding: 2rem;
    position: relative;
}

.agent-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.agent-card.active {
    border-color: rgba(192, 10, 37, 0.3);
    background: rgba(192, 10, 37, 0.05);
}

.agent-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.online {
    background: #28ca42;
    box-shadow: 0 0 10px rgba(40, 202, 66, 0.5);
}

.agent-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #c00a25;
}

.metric-label {
    font-size: 0.8rem;
    color: #cccccc;
}

.agent-activity {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.activity-bar {
    height: 100%;
    background: linear-gradient(90deg, #c00a25, #ff4757);
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.demo-pulse {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 12px;
    height: 12px;
    background: #c00a25;
    border-radius: 50%;
    animation: demoPulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes demoPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .trust-indicators {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
}

/* Announcement Badge - Button Style */
.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.announcement-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.arrow {
    color: #c00a25;
    transition: transform 0.3s ease;
    width: 14px;
    height: 14px;
}

.announcement-badge:hover .arrow {
    transform: translateX(3px);
}

/* Services Section */
.services {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.section-description {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Service Filters */
.service-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.filter-btn.active {
    background: linear-gradient(135deg, #c00a25, #ff4757);
    border-color: #c00a25;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(192, 10, 37, 0.3);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 10, 37, 0.1), rgba(255, 71, 87, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 10, 37, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card.hidden {
    display: none !important;
}

.service-card.featured {
    border-color: rgba(192, 10, 37, 0.4);
    background: rgba(192, 10, 37, 0.08);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Service Icon */
.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-icon svg {
    color: #c00a25;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(192, 10, 37, 0.1);
    border-color: rgba(192, 10, 37, 0.3);
    transform: scale(1.1);
}

.service-card:hover .service-icon svg {
    color: #ff4757;
}

/* Service Content */
.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.service-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Service Features */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Metrics */
.service-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #c00a25;
    margin-bottom: 0.2rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-link:hover {
    color: #c00a25;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(3px);
}

/* Services CTA */
.services-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
}

.services-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Filter Animation */
.service-card.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Services Section Responsive Design */
@media screen and (max-width: 768px) {
    .services {
        padding: 80px 0;
    }

    .services-container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .service-metrics {
        gap: 1rem;
    }

    .services-cta {
        padding: 2rem 1.5rem;
    }

    .services-cta h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-features {
        gap: 0.3rem;
    }

    .feature-tag {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
    }

    .service-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .metric-value {
        margin-bottom: 0;
    }
}

/* AI Workflow Demo Section */
.ai-workflow-demo {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .ai-workflow-demo {
        padding: 100px 0;
    }
}

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

@media (min-width: 768px) {
    .workflow-container {
        padding: 0 32px;
    }
}

/* Demo Content Layout */
.demo-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
}

@media (min-width: 1024px) {
    .demo-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

/* Workflow Dashboard */
.workflow-dashboard {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    animation: dashboardFloat 6s ease-in-out infinite;
}

@media (min-width: 768px) {
    .workflow-dashboard {
        padding: 32px;
    }
}

@keyframes dashboardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .dashboard-title {
        font-size: 20px;
    }
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
}

@media (min-width: 768px) {
    .status-indicator {
        font-size: 13px;
    }
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #666;
    transition: all 0.3s ease;
}

.status-dot.active {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: pulse 2s infinite;
}

.dashboard-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ff5f57;
}

.control.yellow {
    background: #ffbd2e;
}

.control.green {
    background: #28ca42;
}

/* Workflow Steps */
.home-workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.home-workflow-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.home-workflow-step.active {
    border-color: rgba(192, 10, 37, 0.3);
    background: rgba(192, 10, 37, 0.08);
    transform: scale(1.02);
}

.home-workflow-step.completed {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.08);
}

/* Step Icons */
.home-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.home-step-icon.excel {
    background: linear-gradient(135deg, #1d6f42, #0f5132);
    color: white;
}

.home-step-icon.ai-brain {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
}

.home-step-icon.image-gen {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.home-step-icon.linkedin {
    background: linear-gradient(135deg, #0077b5, #005582);
    color: white;
}

/* Step Content */
.home-step-content {
    flex: 1;
    min-width: 0;
}

.home-step-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .home-step-title {
        font-size: 16px;
    }
}

.home-step-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .home-step-subtitle {
        font-size: 14px;
    }
}

/* Progress Bars */
.home-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.home-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c00a25, #ff4757);
    border-radius: 4px;
    width: 0%;
    transition: width 1s ease;
}

/* Step Status */
.home-step-status {
    font-size: 20px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.home-step-status.active {
    opacity: 1;
    animation: spin 2s linear infinite;
}

.home-step-status.completed {
    opacity: 1;
    color: #10b981;
}

/* Workflow Stats */
.home-workflow-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.home-stat-item {
    text-align: center;
}

.home-stat-number {
    font-size: 20px;
    font-weight: 800;
    color: #c00a25;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .home-stat-number {
        font-size: 24px;
    }
}

.home-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

@media (min-width: 768px) {
    .home-stat-label {
        font-size: 12px;
    }
}

/* Preview Panel */
.home-preview-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.home-preview-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .home-preview-title {
        font-size: 24px;
    }
}

/* LinkedIn Preview */
.home-linkedin-preview {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s ease;
    opacity: 0.3;
}

.home-linkedin-preview.active {
    opacity: 1;
    border-color: rgba(192, 10, 37, 0.2);
}

/* LinkedIn Header */
.home-linkedin-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.home-linkedin-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-avatar-placeholder {
    font-size: 20px;
    color: white;
}

.home-linkedin-info {
    flex: 1;
}

.home-company-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}

.home-post-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* LinkedIn Content */
.home-linkedin-content {
    margin-bottom: 16px;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.home-content-placeholder {
    width: 100%;
}

.home-placeholder-line {
    height: 12px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 6px;
    margin-bottom: 8px;
    animation: shimmer 2s infinite;
}

.home-placeholder-line.short {
    width: 60%;
}

.generated-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 14px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Chart Preview */
.chart-preview {
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.chart-preview.active {
    opacity: 1;
    transform: translateY(0);
}

.chart-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.chart-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: end;
    height: 120px;
    margin-bottom: 8px;
    gap: 8px;
}

.chart-bar {
    background: linear-gradient(135deg, #c00a25, #ff4757);
    border-radius: 4px 4px 0 0;
    flex: 1;
    max-width: 40px;
    opacity: 0;
    animation: barGrow 1s ease forwards;
}

.chart-bar:nth-child(1) {
    animation-delay: 0.2s;
}

.chart-bar:nth-child(2) {
    animation-delay: 0.4s;
}

.chart-bar:nth-child(3) {
    animation-delay: 0.6s;
}

.chart-bar:nth-child(4) {
    animation-delay: 0.8s;
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* LinkedIn Actions */
.linkedin-actions {
    display: flex;
    justify-content: space-around;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    color: #c00a25;
    transform: translateY(-1px);
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 24px;
    display: none;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.success-message.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.success-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.success-title {
    color: #10b981;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.success-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.4;
}

/* Demo CTA */
.demo-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 24px;
    backdrop-filter: blur(20px);
}

@media (min-width: 768px) {
    .demo-cta {
        padding: 48px 32px;
    }
}

.demo-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .demo-cta h3 {
        font-size: 28px;
        margin-bottom: 16px;
    }
}

.demo-cta p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .demo-cta p {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

.demo-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(192, 10, 37, 0.3);
}

.demo-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(192, 10, 37, 0.4);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: 200px 0;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes barGrow {
    from {
        opacity: 0;
        transform: scaleY(0);
    }

    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .ai-workflow-demo {
        padding: 80px 0;
    }

    .workflow-container {
        padding: 0 16px;
    }

    .demo-content {
        gap: 32px;
        margin-top: 48px;
        margin-bottom: 48px;
    }

    .workflow-dashboard {
        padding: 20px;
    }

    .workflow-step {
        padding: 16px;
        gap: 12px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .workflow-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .linkedin-preview {
        padding: 20px;
    }

    .demo-cta {
        padding: 32px 20px;
    }

    .demo-cta h3 {
        font-size: 20px;
    }

    .demo-cta p {
        font-size: 15px;
        margin-bottom: 28px;
    }
}

/* Problem-Solution Matrix Section */
.problem-solution-matrix {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .problem-solution-matrix {
        padding: 100px 0;
    }
}

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

@media (min-width: 768px) {
    .matrix-container {
        padding: 0 32px;
    }
}

/* Comparison Toggle */
.comparison-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 60px 0 40px;
    user-select: none;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (min-width: 768px) {
    .toggle-label {
        font-size: 18px;
    }
}

.toggle-label.active {
    color: #ffffff;
}

.toggle-label.manual.active {
    color: #ff4757;
}

.toggle-label.automated.active {
    color: #10b981;
}

.toggle-switch {
    width: 80px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.toggle-switch.automated {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
}

.toggle-slider {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff4757, #c00a25);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.toggle-switch.automated .toggle-slider {
    transform: translateX(40px);
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Comparison Content */
.comparison-content {
    position: relative;
    min-height: 100%;
}

@media (min-width: 1024px) {
    .comparison-content {
        min-height: 1100px;
    }
}

.process-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.process-side.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

/* Side Headers */
.side-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.side-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .side-title {
        font-size: 28px;
    }
}

.manual .side-title {
    color: #ff4757;
}

.automated .side-title {
    color: #10b981;
}

.cost-indicator {
    text-align: right;
}

@media (max-width: 768px) {
    .cost-indicator {
        text-align: left;
        width: 100%;
    }
}

.cost-amount {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .cost-amount {
        font-size: 36px;
    }
}

.cost-indicator.negative .cost-amount {
    color: #ff4757;
}

.cost-indicator.positive .cost-amount {
    color: #10b981;
}

.cost-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Timeline Styles */
.process-timeline {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .process-timeline {
        padding-left: 80px;
    }
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: timelineSlideIn 0.6s ease forwards;
}

.timeline-item[data-delay="200"] {
    animation-delay: 0.2s;
}

.timeline-item[data-delay="400"] {
    animation-delay: 0.4s;
}

.timeline-item[data-delay="600"] {
    animation-delay: 0.6s;
}

.timeline-item[data-delay="800"] {
    animation-delay: 0.8s;
}

.timeline-item[data-delay="100"] {
    animation-delay: 0.1s;
}

.timeline-item[data-delay="300"] {
    animation-delay: 0.3s;
}

.timeline-marker {
    position: absolute;
    left: -50px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid;
    background: #1a1a1a;
}

@media (min-width: 768px) {
    .timeline-marker {
        left: -59px;
        width: 20px;
        height: 20px;
    }
}

.timeline-marker.error {
    border-color: #ff4757;
    box-shadow: 0 0 15px rgba(255, 71, 87, 0.4);
}

.timeline-marker.warning {
    border-color: #ffa502;
    box-shadow: 0 0 15px rgba(255, 165, 2, 0.4);
}

.timeline-marker.success {
    border-color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
    animation: successPulse 2s infinite;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.manual-timeline .timeline-content {
    border-left: 3px solid #ff4757;
}

.automated-timeline .timeline-content {
    border-left: 3px solid #10b981;
}

.timeline-content:hover {
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.timeline-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.timeline-issues,
.timeline-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.issue {
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.benefit {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

/* Process Metrics */
.process-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .process-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.metric-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.metric-card.negative {
    border-left: 4px solid #ff4757;
}

.metric-card.positive {
    border-left: 4px solid #10b981;
}

.metric-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.metric-value {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .metric-value {
        font-size: 28px;
    }
}

.metric-card.negative .metric-value {
    color: #ff4757;
}

.metric-card.positive .metric-value {
    color: #10b981;
}

.metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Impact Calculator */
.impact-calculator {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .impact-calculator {
        padding: 48px;
    }
}

.calculator-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .calculator-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .calculator-inputs {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.input-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input[type="range"] {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
}

.input-wrapper input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(192, 10, 37, 0.4);
}

.input-wrapper input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(192, 10, 37, 0.4);
}

.input-value {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.input-value::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
}

/* Calculator Results */
.calculator-results {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
}

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

.result-card.current {
    border-left: 4px solid #ff4757;
}

.result-card.automated {
    border-left: 4px solid #10b981;
}

.result-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-amount {
    font-size: 28px;
    font-weight: 800;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .result-amount {
        font-size: 32px;
    }
}

.result-card.current .result-amount {
    color: #ff4757;
}

.result-card.automated .result-amount {
    color: #10b981;
}

.result-divider {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .result-divider {
        display: none;
    }
}

.result-savings {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-top: 20px;
}

.savings-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 12px;
}

.savings-amount {
    font-size: 36px;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .savings-amount {
        font-size: 42px;
    }
}

.savings-annual {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.savings-annual span {
    color: #10b981;
    font-weight: 600;
}

/* Section CTA */
.section-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px 32px;
    margin-top: 60px;
    backdrop-filter: blur(20px);
}

.section-cta h3 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-cta h3 {
        font-size: 32px;
    }
}

.section-cta p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button.urgent {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff4757, #c00a25);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button.urgent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-button.urgent:hover::before {
    left: 100%;
}

.cta-button.urgent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.5);
}

/* Animations */
@keyframes timelineSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.7), 0 0 35px rgba(16, 185, 129, 0.3);
    }
}

@keyframes counterUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .problem-solution-matrix {
        padding: 80px 0;
    }

    .matrix-container {
        padding: 0 16px;
    }

    .comparison-toggle {
        gap: 16px;
        margin: 40px 0 32px;
    }

    .toggle-switch {
        width: 60px;
        height: 30px;
    }

    .toggle-slider {
        width: 24px;
        height: 24px;
        top: 1px;
        left: 1px;
    }

    .toggle-switch.automated .toggle-slider {
        transform: translateX(30px);
    }

    .comparison-content {
        min-height: 1450px;
    }

    .side-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cost-indicator {
        text-align: left;
        width: 100%;
    }

    .process-timeline {
        padding-left: 50px;
    }

    .process-timeline::before {
        left: 15px;
    }

    .timeline-marker {
        left: -42px;
        width: 12px;
        height: 12px;
    }

    .timeline-content {
        padding: 16px;
    }

    .timeline-title {
        font-size: 15px;
    }

    .impact-calculator {
        padding: 24px;
        margin-top: 40px;
    }

    .calculator-title {
        font-size: 20px;
    }

    .calculator-inputs {
        gap: 24px;
    }

    .calculator-results {
        gap: 12px;
    }

    .result-amount {
        font-size: 24px;
    }

    .savings-amount {
        font-size: 28px;
    }

    .section-cta {
        padding: 32px 20px;
        margin-top: 40px;
    }

    .section-cta h3 {
        font-size: 24px;
    }

    .section-cta p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .cta-button.urgent {
        padding: 16px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* AI Agent Showcase Section - 2 Column Layout */
.agent-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.agent-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(192, 10, 37, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 71, 87, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Showcase Header */
.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.showcase-description {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
}

/* 2-Column Grid */
.agents-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.agents-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Agent Demo Cards */
.agent-demo-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    backdrop-filter: blur(20px);
}

.agent-demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 10, 37, 0.08), rgba(255, 71, 87, 0.04));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.agent-demo-card:hover::before {
    opacity: 1;
}

.agent-demo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 10, 37, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Card Header */
.card-header {
    padding: 2rem 2rem 1.5rem;
    position: relative;
    z-index: 2;
}

.agent-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.status-dot.live {
    background: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.status-dot.voice {
    background: #ff6b35;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.status-dot.meeting {
    background: #4ecdc4;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.5);
}

.status-dot.shopping {
    background: #45b7d1;
    box-shadow: 0 0 15px rgba(69, 183, 209, 0.5);
}

.status-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.agent-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.agent-desc {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Demo Interface */
.demo-interface {
    padding: 0 2rem 1.5rem;
    position: relative;
    z-index: 2;
}

.interface-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1rem;
    border-radius: 8px 8px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.window-controls {
    display: flex;
    gap: 0.4rem;
}

.control {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.control.red {
    background: #ff5f57;
}

.control.yellow {
    background: #ffbd2e;
}

.control.green {
    background: #28ca42;
}

.interface-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Chat Area */
.chat-area {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
    padding: 1.2rem;
    min-height: 200px;
    max-height: 250px;
    overflow-y: auto;
    border-radius: 0 0 8px 8px;
}

.chat-message {
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.chat-message.show {
    opacity: 1;
    transform: translateY(0);
}

.chat-message.user {
    text-align: right;
}

.chat-message.ai {
    text-align: left;
}

.message-content {
    display: inline-block;
    max-width: 85%;
    padding: 0.7rem 1rem;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, #c00a25, #e01e37);
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.chat-message.ai .message-content {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 4px;
}

/* Voice Controls */
.voice-controls {
    margin: 1rem 0;
    text-align: center;
}

.play-voice-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 10, 37, 0.2);
    border: 1px solid rgba(192, 10, 37, 0.4);
    color: #ffffff;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-voice-btn:hover {
    background: rgba(192, 10, 37, 0.3);
    transform: translateY(-1px);
}

/* Product Suggestion */
.product-suggestion {
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-emoji {
    font-size: 1.8rem;
}

.product-details {
    flex: 1;
}

.product-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.product-price {
    color: #c00a25;
    font-weight: 700;
    font-size: 0.9rem;
}

.original {
    text-decoration: line-through;
    color: #888;
    font-weight: 400;
    margin-left: 0.5rem;
}

.add-cart-btn {
    background: linear-gradient(135deg, #c00a25, #e01e37);
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(192, 10, 37, 0.3);
}

/* Metrics Bar */
.metrics-bar {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0.5rem;
}

.metric {
    text-align: center;
    flex: 1;
    white-space: nowrap;
    min-width: 0;
}

.metric-num {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #c00a25;
    line-height: 1;
}

.metric-suffix {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #c00a25;
    margin-left: 0.1rem;
}

.metric-text {
    display: block;
    font-size: 0.65rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

/* Card Actions */
.card-actions {
    padding: 0 2rem 2rem;
    display: flex;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c00a25, #e01e37);
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 10, 37, 0.4);
}

.btn-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* Showcase CTA */
.showcase-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
}

.showcase-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.showcase-cta p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .agents-grid-2col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .agent-showcase {
        padding: 80px 0;
    }

    .showcase-container {
        padding: 0 1rem;
    }

    .agents-grid-2col {
        gap: 1.5rem;
    }

    .showcase-title {
        font-size: 2.2rem;
    }

    .showcase-description {
        font-size: 1.1rem;
    }

    .card-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .demo-interface {
        padding: 0 1.5rem 1rem;
    }

    .agent-name {
        font-size: 1.3rem;
    }

    .agent-desc {
        font-size: 0.9rem;
    }

    .chat-area {
        min-height: 180px;
        max-height: 220px;
    }

    .card-actions {
        padding: 0 1.5rem 1.5rem;
        flex-direction: column;
        gap: 0.6rem;
    }

    .showcase-cta {
        padding: 2rem 1.5rem;
    }

    .showcase-cta h3 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 280px;
    }
}

@media screen and (max-width: 480px) {
    .showcase-title {
        font-size: 2rem;
    }

    .card-header {
        padding: 1.2rem 1.2rem 0.8rem;
    }

    .demo-interface {
        padding: 0 1.2rem 0.8rem;
    }

    .card-actions {
        padding: 0 1.2rem 1.2rem;
    }

    .agent-name {
        font-size: 1.2rem;
    }

    .agent-desc {
        font-size: 0.85rem;
    }

    .chat-area {
        min-height: 160px;
        max-height: 200px;
        padding: 1rem;
    }

    .message-content {
        font-size: 0.8rem;
        padding: 0.6rem 0.9rem;
    }

    .metrics-bar {
        gap: 0.3rem;
    }

    .metric-num {
        font-size: 1.1rem;
    }

    .metric-text {
        font-size: 0.6rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }

    .showcase-cta h3 {
        font-size: 1.4rem;
    }

    .showcase-cta p {
        font-size: 1rem;
    }
}

/* Final CTA Section */
.home-final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.home-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192, 10, 37, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* CTA Content */
.home-cta-content {
    text-align: left;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-description {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #c00a25;
    margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    color: #ffffff;
    text-decoration: none;
    padding: 1.3rem 2.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(192, 10, 37, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 10, 37, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    padding: 1.3rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cccccc;
    font-size: 0.95rem;
}

.guarantee-icon {
    font-size: 1.2rem;
}

/* CTA Visual */
.cta-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 1.5rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: 15%;
    animation-delay: -1.5s;
}

.card-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: -3s;
}

.card-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: -4.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(1deg);
    }

    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

/* Footer Styles */
.footer {
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Footer Brand */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.footer-logo .logo-text {
    color: #ffffff;
}

.footer-logo .logo-accent {
    color: #c00a25;
}

.footer-tagline {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.linkedin {
    background: rgba(0, 119, 181, 0.2);
    border: 1px solid rgba(0, 119, 181, 0.3);
    color: #0077b5;
}

.social-link.linkedin:hover {
    background: rgba(0, 119, 181, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.3);
}

.social-link.facebook {
    background: rgba(24, 119, 242, 0.2);
    border: 1px solid rgba(24, 119, 242, 0.3);
    color: #1877f2;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.3);
}

/* Footer Links */
.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
    padding: 0px;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-link:hover {
    color: #c00a25;
    transform: translateX(5px);
}

/* Footer Contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(192, 10, 37, 0.1);
    border: 1px solid rgba(192, 10, 37, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-icon {
    color: #c00a25;
    margin-top: -3px;
    flex-shrink: 0;
}

.contact-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c00a25;
}

.contact-text {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.footer-copyright p {
    color: #888888;
    font-size: 0.9rem;
}

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

.legal-link {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #c00a25;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .cta-content {
        text-align: center;
    }

    .cta-description {
        max-width: none;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .home-final-cta {
        padding: 80px 0;
    }

    .cta-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .floating-card {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }

    .floating-card .card-icon {
        font-size: 1.2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-main {
        gap: 1.5rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Logo Image Styles */
.logo-image {
    height: 50px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}

/* Update logo link to flex for better alignment */
.nav-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    gap: 8px;
}

/* Responsive logo sizing */
@media screen and (max-width: 480px) {
    .logo-image {
        height: 50px;
    }

    .nav-logo .logo-link {
        font-size: 1.2rem;
    }
}

/* ==================== Datenschutz PAGE CSS START ==================== */
.datenschutz-page {
    background: #1a1a1a;
    min-height: 100vh;
    padding-top: 70px;
}

.datenschutz-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 2rem;
}

.datenschutz-header {
    text-align: center;
    margin-bottom: 4rem;
}

.datenschutz-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.datenschutz-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
}

.datenschutz-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    line-height: 1.8;
}

.datenschutz-section {
    margin-bottom: 3rem;
}

.datenschutz-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(192, 10, 37, 0.3);
}

.subsection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.datenschutz-content p {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.datenschutz-content strong {
    color: #ffffff;
    font-weight: 600;
}

.datenschutz-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.datenschutz-content li {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: rgba(192, 10, 37, 0.1);
    border: 1px solid rgba(192, 10, 37, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-info p {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #c00a25;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff4757;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #c00a25;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.warning-box {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    color: #ffb84d;
}

.important-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ff4757;
}

.table-of-contents {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.table-of-contents h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: #c00a25;
    text-decoration: none;
    transition: color 0.3s ease;
}

.toc-list a:hover {
    color: #ff4757;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .datenschutz-container {
        padding: 60px 1rem;
    }

    .datenschutz-title {
        font-size: 2.2rem;
    }

    .datenschutz-subtitle {
        font-size: 1.1rem;
    }

    .datenschutz-content {
        padding: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .subsection-title {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .datenschutz-title {
        font-size: 2rem;
    }

    .datenschutz-content {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .highlight-box {
        padding: 1rem;
    }
}

/* ==================== Datenschutz PAGE CSS END ==================== */

/* ==================== Impressum PAGE CSS START ==================== */
.impressum-page {
    background: #1a1a1a;
    min-height: 100vh;
    padding-top: 70px;
}

.impressum-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 2rem;
}

.impressum-header {
    text-align: center;
    margin-bottom: 4rem;
}

.impressum-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.impressum-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
}

.impressum-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    line-height: 1.8;
}

.impressum-section {
    margin-bottom: 2.5rem;
}

.impressum-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(192, 10, 37, 0.3);
}

.impressum-content p {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.impressum-content strong {
    color: #ffffff;
    font-weight: 600;
}

.contact-info {
    background: rgba(192, 10, 37, 0.1);
    border: 1px solid rgba(192, 10, 37, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-info p {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #c00a25;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff4757;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #c00a25;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.link-list {
    list-style: none;
    padding: 0;
}

.link-list li {
    margin-bottom: 0.5rem;
}

.link-list a {
    color: #c00a25;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-list a:hover {
    color: #ff4757;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .impressum-container {
        padding: 60px 1rem;
    }

    .impressum-title {
        font-size: 2.2rem;
    }

    .impressum-subtitle {
        font-size: 1.1rem;
    }

    .impressum-content {
        padding: 2rem;
    }

    .section-title {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .impressum-title {
        font-size: 2rem;
    }

    .impressum-content {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .highlight-box {
        padding: 1rem;
    }
}

/* ==================== Impressum PAGE CSS END ==================== */

/* ==================== Lead-Automatisierung PAGE CSS START ==================== */
.leads-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.leads-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(192, 10, 37, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #c00a25, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead-text {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.urgency-banner {
    background: rgba(192, 10, 37, 0.15);
    border: 1px solid rgba(192, 10, 37, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.urgency-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.urgency-text {
    color: #ff4757;
    font-weight: 600;
    font-size: 1rem;
}

.hero-stats-inline {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-inline {
    text-align: center;
}

.stat-inline .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #c00a25;
    display: block;
    margin-bottom: 0.3rem;
}

.stat-inline .stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

/* INTERACTIVE PIPELINE VISUALIZATION */
.pipeline-demo {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatDemo 6s ease-in-out infinite;
}

@keyframes floatDemo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.pipeline-header {
    background: linear-gradient(135deg, #c00a25, #ff4757);
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
    margin: -2rem -2rem 2rem -2rem;
}

.pipeline-header h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pipeline-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.status-dot-live {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pipeline-stages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pipeline-stage {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    opacity: 0;
    animation: stageSlideIn 0.6s ease forwards;
}

.pipeline-stage:nth-child(1) {
    animation-delay: 0.2s;
}

.pipeline-stage:nth-child(2) {
    animation-delay: 0.5s;
}

.pipeline-stage:nth-child(3) {
    animation-delay: 0.8s;
}

.pipeline-stage:nth-child(4) {
    animation-delay: 1.1s;
}

@keyframes stageSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stage-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}

.stage-icon {
    width: 35px;
    height: 35px;
    background: rgba(192, 10, 37, 0.2);
    border: 1px solid rgba(192, 10, 37, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stage-time {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

.stage-content {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.stage-arrow {
    text-align: center;
    color: #c00a25;
    font-size: 1.5rem;
    margin: -0.5rem 0;
}

.pipeline-result {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.result-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.result-text {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

/* CHAOS vs ORDER Section */
.chaos-order-section {
    padding: 80px 0px 0px 0px;
    background: #1a1a1a;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-8px);
}

.comparison-card.chaos {
    border-left: 4px solid #ff4757;
}

.comparison-card.order {
    border-left: 4px solid #10b981;
}

.comparison-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.comparison-card.chaos .comparison-label {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.comparison-card.order .comparison-label {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.comparison-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
}

.pain-points,
.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pain-points li,
.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

.pain-points li::before {
    content: '✗';
    color: #ff4757;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefits-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* USE CASES SECTION */
.use-cases-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.use-cases-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 10, 37, 0.08), rgba(255, 71, 87, 0.04));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-card:hover {
    border-color: rgba(192, 10, 37, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.use-case-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
}

.use-case-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.use-case-results {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.result-metric {
    text-align: center;
}

.result-metric .metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #c00a25;
    display: block;
}

.result-metric .metric-label {
    font-size: 0.8rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* HOW IT WORKS - n8n Workflow */
.how-it-works {
    padding: 100px 0;
    background: #1a1a1a;
}

.workflow-steps {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 4rem;
}

.workflow-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: stepFadeIn 0.6s ease forwards;
}

.workflow-step:nth-child(1) {
    animation-delay: 0.2s;
}

.workflow-step:nth-child(2) {
    animation-delay: 0.4s;
}

.workflow-step:nth-child(3) {
    animation-delay: 0.6s;
}

.workflow-step:nth-child(4) {
    animation-delay: 0.8s;
}

.workflow-step:nth-child(5) {
    animation-delay: 1s;
}

@keyframes stepFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: rgba(192, 10, 37, 0.3);
}

.workflow-step:last-child .step-number::after {
    display: none;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

.n8n-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 10, 37, 0.15);
    border: 1px solid rgba(192, 10, 37, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff4757;
    margin-top: 0.5rem;
}

/* LIVE DEMO METRICS */
.lead-live-metrics-section {
    padding: 1px 0;
    background: #1a1a1a;
}

.metrics-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 4rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.metric-card-live {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card-live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c00a25, #ff4757);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.metric-card-live:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 10, 37, 0.3);
}

.metric-icon-live {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.metric-value-live {
    font-size: 2.5rem;
    font-weight: 800;
    color: #c00a25;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-label-live {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-change {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

/* CTA BUTTONS */
.hero-actions-primary {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    color: #ffffff;
    text-decoration: none;
    padding: 1.3rem 2.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(192, 10, 37, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 10, 37, 0.4);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    padding: 1.3rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #cccccc;
}

/* FINAL CTA */
.final-cta {
    padding: 100px 0;
    background: #1a1a1a;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-split {
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .comparison-container,
    .workflow-steps,
    .metrics-dashboard {
        padding: 0 1.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pipeline-demo {
        max-width: 600px;
        margin: 0 auto;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-content-left h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .leads-hero {
        padding-top: 80px;
        min-height: auto;
    }

    .hero-split {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-content-left h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .lead-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .urgency-banner {
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .urgency-text {
        font-size: 0.9rem;
    }

    .hero-stats-inline {
        gap: 1.5rem;
        justify-content: space-around;
        margin-bottom: 2rem;
    }

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

    .stat-inline .stat-label {
        font-size: 0.85rem;
    }

    .hero-actions-primary {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-button,
    .secondary-button {
        padding: 1.1rem 2rem;
        font-size: 1rem;
        justify-content: center;
        width: 100%;
    }

    .trust-badges {
        justify-content: center;
        gap: 1rem;
    }

    .trust-badge {
        font-size: 0.85rem;
    }

    /* Pipeline Demo */
    .pipeline-demo {
        padding: 1.5rem;
    }

    .pipeline-header {
        padding: 1.2rem;
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    }

    .pipeline-header h3 {
        font-size: 1rem;
    }

    .pipeline-status {
        font-size: 0.8rem;
    }

    .pipeline-stage {
        padding: 1.2rem;
    }

    .stage-title {
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .stage-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .stage-time {
        font-size: 0.75rem;
    }

    .stage-content {
        font-size: 0.85rem;
    }

    .result-text {
        font-size: 1rem;
    }

    /* Sections */
    .chaos-order-section,
    .use-cases-section,
    .how-it-works,
    .lead-live-metrics-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    /* Comparison Cards */
    .comparison-container {
        padding: 0 1rem;
    }

    .comparison-card {
        padding: 2rem;
    }

    .comparison-title {
        font-size: 1.5rem;
    }

    .pain-points li,
    .benefits-list li {
        font-size: 0.95rem;
        gap: 0.8rem;
    }

    /* Use Cases */
    .use-cases-grid {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .use-case-card {
        padding: 2rem;
    }

    .use-case-icon {
        font-size: 2rem;
    }

    .use-case-card h3 {
        font-size: 1.2rem;
    }

    .use-case-card p {
        font-size: 0.95rem;
    }

    .use-case-results {
        gap: 1.5rem;
    }

    .result-metric .metric-value {
        font-size: 1.5rem;
    }

    .result-metric .metric-label {
        font-size: 0.75rem;
    }

    /* Workflow Steps */
    .workflow-steps {
        padding: 0 1rem;
    }

    .workflow-step {
        grid-template-columns: 60px 1fr;
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-number::after {
        bottom: -30px;
        height: 30px;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    /* Live Metrics */
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .metric-card-live {
        padding: 1.5rem;
    }

    .metric-icon-live {
        font-size: 2rem;
    }

    .metric-value-live {
        font-size: 2rem;
    }

    .metric-label-live {
        font-size: 0.85rem;
    }

    /* Final CTA */
    .final-cta {
        padding: 60px 0 0 0;
    }
}

@media (max-width: 480px) {
    .hero-content-left h1 {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .hero-stats-inline {
        gap: 1rem;
    }

    .stat-inline .stat-number {
        font-size: 1.6rem;
    }

    .stat-inline .stat-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .comparison-card,
    .use-case-card {
        padding: 1.5rem;
    }

    .comparison-title {
        font-size: 1.3rem;
    }

    .workflow-step {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .primary-button,
    .secondary-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .pipeline-demo {
        padding: 1rem;
    }

    .pipeline-header {
        padding: 1rem;
        margin: -1rem -1rem 1rem -1rem;
    }

    .pipeline-stage {
        padding: 1rem;
    }

    .use-case-results {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==================== Lead-Automatisierung PAGE CSS END ==================== */

/* ==================== Kundensupport KI-Agent PAGE CSS START ==================== */
.before-after-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-8px);
}

.comparison-card.before {
    border-left: 4px solid #ff4757;
}

.comparison-card.after {
    border-left: 4px solid #10b981;
}

.comparison-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.comparison-card.before .comparison-label {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.comparison-card.after .comparison-label {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.comparison-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
}

.pain-points,
.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pain-points li,
.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

.pain-points li::before {
    content: '✗';
    color: #ff4757;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefits-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.comparison-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-stat {
    text-align: center;
}

.comparison-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.3rem;
}

.comparison-card.before .stat-value {
    color: #ff4757;
}

.comparison-card.after .stat-value {
    color: #10b981;
}

.comparison-stat .stat-label {
    font-size: 0.85rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* SECTION 2: LIVE METRICS DASHBOARD */
.live-metrics-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.metrics-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.metric-card-live {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card-live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.metric-card-live:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.metric-icon-live {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.metric-value-live {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-label-live {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-change {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

.activity-feed {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    max-height: 400px;
    overflow-y: auto;
}

.activity-feed h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.activity-item:nth-child(1) {
    animation-delay: 0.1s;
}

.activity-item:nth-child(2) {
    animation-delay: 0.2s;
}

.activity-item:nth-child(3) {
    animation-delay: 0.3s;
}

.activity-item:nth-child(4) {
    animation-delay: 0.4s;
}

.activity-item:nth-child(5) {
    animation-delay: 0.5s;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.activity-desc {
    font-size: 0.9rem;
    color: #cccccc;
}

.activity-time {
    font-size: 0.8rem;
    color: #888;
}

/* SECTION 3: TESTIMONIALS/SOCIAL PROOF */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(0, 0, 0, 0.5));
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    font-size: 3rem;
    color: #10b981;
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.testimonial-text {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.85rem;
    color: #888;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* SECTION 4: INTEGRATION LOGOS */
.integrations-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.integrations-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.integrations-subtitle {
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.integrations-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.integration-logo {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 80px;
}

.integration-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
}

.integration-logo span {
    font-size: 2rem;
}

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

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

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

/* Hero Section für Kundensupport */
.support-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-content-left .lead-text {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-stats-inline {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-inline {
    text-align: center;
}

.stat-inline .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    display: block;
    margin-bottom: 0.3rem;
}

.stat-inline .stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.hero-actions-primary {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #cccccc;
}

/* Live Chat Demo on Right */
.hero-demo-right {
    position: relative;
}

.live-chat-window {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatDemo 6s ease-in-out infinite;
}

@keyframes floatDemo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.chat-window-header {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.agent-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.agent-info h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.agent-status-live {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.status-dot-live {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-messages-area {
    padding: 2rem;
    min-height: 400px;
    max-height: 500px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
}

.chat-message-demo {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: messageSlideIn 0.5s ease forwards;
}

.chat-message-demo:nth-child(1) {
    animation-delay: 0.5s;
}

.chat-message-demo:nth-child(2) {
    animation-delay: 1.5s;
}

.chat-message-demo:nth-child(3) {
    animation-delay: 3s;
}

.chat-message-demo:nth-child(4) {
    animation-delay: 4.5s;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-bubble {
    max-width: 85%;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-message-demo.user {
    text-align: right;
}

.chat-message-demo.user .message-bubble {
    background: linear-gradient(135deg, #c00a25, #e01e37);
    color: #ffffff;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.chat-message-demo.ai .message-bubble {
    background: rgba(16, 185, 129, 0.15);
    color: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-bottom-left-radius: 4px;
}

.typing-indicator {
    display: flex;
    gap: 0.4rem;
    padding: 1rem 1.2rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-8px);
    }
}

/* Features Grid Section */
.features-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card-support {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card-support:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-support {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #10b981;
    font-size: 1.8rem;
}

.feature-card-support h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.feature-card-support p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 4rem;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: stepFadeIn 0.6s ease forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.2s;
}

.process-step:nth-child(2) {
    animation-delay: 0.4s;
}

.process-step:nth-child(3) {
    animation-delay: 0.6s;
}

.process-step:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes stepFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: rgba(16, 185, 129, 0.3);
}

.process-step:last-child .step-number::after {
    display: none;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #cccccc;
    font-size: 0.95rem;
}

.features-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ==================== Kundensupport KI-Agent PAGE CSS END ==================== */

/* ==================== Kontakt PAGE CSS START ==================== */
.contact-page {
    padding: 80px 0px;
    background: #1a1a1a;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(192, 10, 37, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 71, 87, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin: 80px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s ease;
}

.contact-form-card:hover {
    border-color: rgba(192, 10, 37, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(192, 10, 37, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(192, 10, 37, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(192, 10, 37, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(192, 10, 37, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Info Card */
.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(192, 10, 37, 0.2), rgba(255, 71, 87, 0.1));
    border: 1px solid rgba(192, 10, 37, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c00a25;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.info-item-icon {
    width: 24px;
    height: 24px;
    color: #c00a25;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

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

.info-item-label {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
}

.info-item-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item-text a:hover {
    color: #c00a25;
}

/* Business Hours */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.hours-day {
    color: #cccccc;
    font-weight: 500;
}

.hours-time {
    color: #ffffff;
    font-weight: 600;
}

.hours-time.closed {
    color: #888888;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.linkedin {
    background: rgba(0, 119, 181, 0.2);
    border: 1px solid rgba(0, 119, 181, 0.3);
    color: #0077b5;
}

.social-link.linkedin:hover {
    background: rgba(0, 119, 181, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.3);
}

.social-link.facebook {
    background: rgba(24, 119, 242, 0.2);
    border: 1px solid rgba(24, 119, 242, 0.3);
    color: #1877f2;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.3);
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
}

.map-container {
    height: 500px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    gap: 1rem;
}

.map-placeholder svg {
    color: #c00a25;
}

/* Success Message */
.success-message {
    display: none;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    animation: slideIn 0.5s ease;
}

.success-message.show {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-message-icon {
    font-size: 2rem;
}

.success-message-text {
    flex: 1;
}

.success-message-title {
    color: #10b981;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.success-message-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-page {
        padding: 100px 0 80px;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 2rem;
    }

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

    .map-container {
        height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .info-title {
        font-size: 1.2rem;
    }
}

/* ==================== Kontakt PAGE CSS END ==================== */

/* ==================== AI Dev PAGE CSS START ==================== */
.ai-dev-hero {
    padding-top: 150px;
    padding-bottom: 100px;
}

.live-code-section {
    padding: 100px 0;
    background: #0d0d0d;
}

.code-demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.code-preview {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-editor-content {
    padding: 2rem;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
    color: #e0e0e0;
    background: rgba(0, 0, 0, 0.4);
    min-height: 300px;
}

.code-line {
    opacity: 0;
    animation: fadeInCode 0.5s ease forwards;
}

@keyframes fadeInCode {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.code-keyword {
    color: #ff6b9d;
}

.code-function {
    color: #5ccfe6;
}

.code-string {
    color: #bae67e;
}

.code-comment {
    color: #5c6773;
}

.ai-playground-section {
    padding: 0px 0px 80px 0px;
    background: #0d0d0d;
}

.playground-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.playground-interface {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 3rem;
}

.playground-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.chat-panel {
    padding: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-panel h3 {
    color: #fff;
}

.controls-panel h3 {
    color: #fff;
}

.chat-window {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 350px;
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.chat-msg {
    margin-bottom: 1rem;
    animation: slideInMsg 0.5s ease;
}

@keyframes slideInMsg {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-msg.user {
    text-align: right;
}

.msg-bubble {
    display: inline-block;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.9rem;
}

.chat-msg.user .msg-bubble {
    background: linear-gradient(135deg, #c00a25, #e01e37);
    color: white;
}

.chat-msg.ai .msg-bubble {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.chat-input-area {
    display: flex;
    gap: 1rem;
}

.chat-input-area input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.9rem;
}

.chat-input-area button {
    background: linear-gradient(135deg, #c00a25, #e01e37);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input-area button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 10, 37, 0.3);
}

.controls-panel {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.control-item {
    margin-bottom: 2rem;
}

.control-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #fff;
}

.control-value {
    color: #c00a25;
    font-weight: 600;
}

.slider-input {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #c00a25, #e01e37);
    border-radius: 50%;
    cursor: pointer;
}

.process-timeline-section {
    padding: 80px 0px 1px 0px;
    background: #0d0d0d;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #c00a25, #e01e37);
    transform: translateX(-50%);
}

.timeline-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-block:nth-child(even) .timeline-text {
    order: 2;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c00a25, #e01e37);
    border: 4px solid #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
}

.timeline-text {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
}

.timeline-week {
    color: #c00a25;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.timeline-text p {
    color: #fff;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.timeline-tag {
    background: rgba(192, 10, 37, 0.2);
    border: 1px solid rgba(192, 10, 37, 0.3);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tech-showcase-section {
    padding: 0px 0px 80px 0px;
    background: #0d0d0d;
}

.tech-selector {
    max-width: 1000px;
    margin: 3rem auto 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 2rem;
}

.tech-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-btn.active {
    background: linear-gradient(135deg, #c00a25, #e01e37);
    border-color: transparent;
}

.tech-display {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tech-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem;
}

.tech-row {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.tech-label {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.tech-content {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.tech-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-meta-box {
    text-align: center;
}

.tech-meta-value {
    font-size: 2rem;
    font-weight: 800;
    color: #c00a25;
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {

    .code-demo-container,
    .playground-split {
        grid-template-columns: 1fr;
    }

    .chat-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-block {
        grid-template-columns: 1fr;
        padding-left: 80px;
    }

    .timeline-icon {
        left: 30px;
    }

    .timeline-block:nth-child(even) .timeline-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .ai-dev-hero {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .live-code-section,
    .ai-playground-section,
    .process-timeline-section,
    .tech-showcase-section {
        padding: 80px 0;
    }

    .code-demo-container,
    .playground-wrapper,
    .timeline-container,
    .tech-display {
        padding: 0 1rem;
    }

    .tech-meta-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==================== AI Dev PAGE CSS END ==================== */

/* ==================== KI-Agent Entwicklung PAGE CSS START ==================== */
.page-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(192, 10, 37, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.breadcrumb a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #c00a25;
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
}

/* Agent Types Grid */
.agent-types {
    padding: 100px 0;
    background: #1a1a1a;
}

.agent-type-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.agent-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 10, 37, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.agent-type-card:hover::before {
    opacity: 1;
}

.agent-type-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 10, 37, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(192, 10, 37, 0.2), rgba(255, 71, 87, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.type-icon svg {
    color: #c00a25;
    width: 36px;
    height: 36px;
}

.type-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.type-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.type-features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.type-features li {
    padding: 0.7rem 0;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.type-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #10b981;
    flex-shrink: 0;
}

/* Development Process */
.development-process {
    padding: 1px 0px;
    background: #1a1a1a;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.process-step:nth-child(even) .step-content:first-child {
    order: 3;
}

.process-step:nth-child(even) .step-number {
    order: 2;
}

.process-step:nth-child(even) .step-content:last-child {
    order: 1;
}

.step-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: rgba(192, 10, 37, 0.3);
    transform: translateY(-4px);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(192, 10, 37, 0.4);
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-description {
    color: #cccccc;
    line-height: 1.6;
}

.step-duration {
    display: inline-block;
    background: rgba(192, 10, 37, 0.2);
    border: 1px solid rgba(192, 10, 37, 0.3);
    color: #ff4757;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Technology Stack */
.tech-stack {
    padding: 100px 0;
    background: #1a1a1a;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tech-category:hover {
    border-color: rgba(192, 10, 37, 0.3);
    transform: translateY(-4px);
}

.tech-category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #cccccc;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(192, 10, 37, 0.1);
    border-color: rgba(192, 10, 37, 0.3);
    color: #ffffff;
}

/* Use Cases */
.use-cases {
    padding: 1px 0;
    background: #1a1a1a;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    height: 100%;
}

.use-case-card:hover {
    border-color: rgba(192, 10, 37, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.case-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-icon svg {
    color: #fff;
}

.case-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.case-industry {
    display: inline-block;
    background: rgba(192, 10, 37, 0.2);
    border: 1px solid rgba(192, 10, 37, 0.3);
    color: #ff4757;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.case-metrics {
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.case-metric {
    text-align: center;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #c00a25;
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: rgba(192, 10, 37, 0.4);
    background: rgba(192, 10, 37, 0.08);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 10, 37, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #c00a25;
}

.price-period {
    color: #cccccc;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-cta {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 10, 37, 0.4);
}

.pricing-card.featured .pricing-cta {
    background: #ffffff;
    color: #c00a25;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0px;
    background: #1a1a1a;
}

.faq-list {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(192, 10, 37, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-icon {
    color: #c00a25;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 1.5rem 2rem;
    color: #cccccc;
    line-height: 1.7;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .process-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step:nth-child(even) .step-content:first-child,
    .process-step:nth-child(even) .step-number,
    .process-step:nth-child(even) .step-content:last-child {
        order: initial;
    }

    .step-number {
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .page-hero {
        min-height: 60vh;
        padding-top: 100px;
    }

    .agent-types,
    .development-process,
    .tech-stack,
    .use-cases,
    .pricing-section,
    .faq-section {
        padding: 60px 0;
    }

    .case-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ==================== KI-Agent Entwicklung PAGE CSS END ==================== */

/* ==================== Web Dev PAGE CSS START ==================== */
.website-development {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.dev-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.dev-hero {
    margin-bottom: 6rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 10, 37, 0.15);
    border: 1px solid rgba(192, 10, 37, 0.3);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ff4757;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dev-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #c00a25, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dev-subtitle {
    font-size: 1.4rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #c00a25;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-size: 0.95rem;
}

/* Problem Statement Section */
.problem-section {
    background: rgba(192, 10, 37, 0.08);
    border: 1px solid rgba(192, 10, 37, 0.2);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 5rem;
    backdrop-filter: blur(20px);
}

.problem-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid #ff4757;
    border-radius: 12px;
    padding: 2rem;
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-text {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
}

.problem-impact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ff4757;
    font-weight: 600;
}

/* Solution/Benefits Section */
.solution-section {
    margin-bottom: 5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 10, 37, 0.1), rgba(255, 71, 87, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(192, 10, 37, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.benefit-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.benefit-metric {
    background: rgba(192, 10, 37, 0.2);
    border: 1px solid rgba(192, 10, 37, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff4757;
}

.metric-label {
    font-size: 0.85rem;
    color: #cccccc;
}

/* Real Portfolio Section */
/* ========================================
   PORTFOLIO SECTION - REPLACE OLD STYLES
   ======================================== */

/* Portfolio Section Base */
.portfolio-section {
    margin-bottom: 5rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

/* Portfolio Items */
.portfolio-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(192, 10, 37, 0.4);
}

/* Portfolio Image with Gradients */
/* Portfolio Image with Gradients - IMPROVED */
.portfolio-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-image.ecommerce {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.portfolio-image.saas {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.portfolio-image.restaurant {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Image Overlay - LIGHTER */
.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    /* Changed from 0.4 to 0.2 - much lighter! */
    backdrop-filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.portfolio-item:hover .image-overlay {
    background: rgba(0, 0, 0, 0.5);
    /* Changed from 0.6 to 0.5 */
    backdrop-filter: blur(4px);
    /* Changed from 8px to 4px - less blur */
}

/* Overlay Content - MORE VISIBLE */
.overlay-content {
    text-align: center;
    transform: scale(1);
    /* Changed from 0.9 to 1 - starts at full size */
    opacity: 1;
    /* Changed from 0.9 to 1 - fully visible */
    transition: all 0.4s ease;
}

.portfolio-item:hover .overlay-content {
    transform: scale(1.05);
    /* Slight scale up on hover */
    opacity: 1;
}

.project-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.overlay-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.overlay-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Portfolio Content */
.portfolio-content {
    padding: 2rem;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.portfolio-category {
    color: #c00a25;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-year {
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
}

.portfolio-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.portfolio-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Portfolio Highlights */
.portfolio-highlights {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

.highlight-icon {
    font-size: 1rem;
}

.highlight-text {
    color: #cccccc;
    font-weight: 500;
}

/* Portfolio Results */
.portfolio-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

.result-item {
    text-align: center;
}

.result-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.result-value.positive {
    color: #28ca42;
}

.result-value.rank {
    color: #ffc107;
}

.result-value.rating {
    color: #ffc107;
}

.result-label {
    font-size: 0.75rem;
    color: #cccccc;
    font-weight: 600;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-timeline {
    font-size: 0.7rem;
    color: #888;
}

/* Portfolio Footer */
.portfolio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c00a25;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    color: #ff4757;
    transform: translateX(3px);
}

.portfolio-link svg {
    transition: transform 0.3s ease;
}

.portfolio-link:hover svg {
    transform: translateX(3px);
}

/* Tech Stack Tags */
.tech-stack-mini {
    display: flex;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

/* Portfolio CTA */
.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.portfolio-cta-text {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.portfolio-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    color: #ffffff;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(192, 10, 37, 0.3);
}

.portfolio-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 10, 37, 0.4);
}

.web-final-cta {}

/* Responsive Design for Portfolio */
@media screen and (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media screen and (max-width: 768px) {
    .portfolio-image {
        height: 250px;
    }

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

    .project-icon {
        font-size: 3rem;
    }

    .portfolio-content {
        padding: 1.5rem;
    }

    .portfolio-title {
        font-size: 1.4rem;
    }

    .portfolio-highlights {
        gap: 0.5rem;
    }

    .highlight-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .portfolio-results {
        gap: 0.8rem;
    }

    .result-value {
        font-size: 1.4rem;
    }

    .result-label {
        font-size: 0.7rem;
    }

    .portfolio-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .tech-stack-mini {
        width: 100%;
        flex-wrap: wrap;
    }

    .portfolio-cta {
        padding: 2rem 1.5rem;
    }

    .portfolio-cta-text {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .portfolio-image {
        height: 220px;
    }

    .overlay-title {
        font-size: 1.6rem;
    }

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

    .portfolio-content {
        padding: 1.2rem;
    }

    .portfolio-results {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }

    .result-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
    }

    .result-value {
        font-size: 1.5rem;
    }
}

/* ========================================
   END OF PORTFOLIO SECTION STYLES
   ======================================== */
/* Social Proof Section */
.social-proof {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(192, 10, 37, 0.3);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.85rem;
    color: #888;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, rgba(40, 202, 66, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(40, 202, 66, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 5rem;
    text-align: center;
}

.guarantee-badge {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28ca42, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(40, 202, 66, 0.3);
}

.guarantee-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.guarantee-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-feature {
    text-align: center;
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee-text {
    font-weight: 600;
    color: #ffffff;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 5rem;
}

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.pricing-highlight {
    background: rgba(192, 10, 37, 0.15);
    border: 1px solid rgba(192, 10, 37, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-text {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.highlight-value {
    color: #ff4757;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(192, 10, 37, 0.15), rgba(255, 71, 87, 0.1));
    border-color: rgba(192, 10, 37, 0.4);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: #c00a25;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #888;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.pricing-savings {
    background: rgba(40, 202, 66, 0.2);
    color: #28ca42;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: #cccccc;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #28ca42;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.pricing-button {
    width: 100%;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 10, 37, 0.4);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-q-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.faq-icon {
    font-size: 1.5rem;
    color: #c00a25;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-a-text {
    padding: 1rem 2rem 1.5rem;
    color: #cccccc;
    line-height: 1.7;
}

.cta-urgency {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.4);
    color: #ffc107;
    padding: 1rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-weight: 600;
    display: inline-block;
}

.cta-description {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    color: #ffffff;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(192, 10, 37, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 10, 37, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    color: #888;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    color: #28ca42;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .guarantee-features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .dev-title {
        font-size: 2.5rem;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .cta-trust {
        flex-direction: column;
        gap: 1rem;
    }

    .guarantee-section {
        padding: 1rem;
    }
}

/* ==================== Web Dev PAGE CSS END ==================== */

/* ==================== AI Video PAGE CSS START ==================== */
.video-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding-top: 120px;
}

.video-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(192, 10, 37, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 71, 87, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.video-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero-video-demo {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.video-preview {
    position: relative;
    aspect-ratio: 4/3;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(192, 10, 37, 0.2), rgba(255, 71, 87, 0.1));
    position: relative;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.play-button svg {
    width: 32px;
    height: 32px;
    fill: #c00a25;
    margin-left: 4px;
}

.video-stats-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-around;
}

.video-stat {
    text-align: center;
}

.video-stat-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #c00a25;
    display: block;
}

.video-stat-label {
    font-size: 0.7rem;
    color: #cccccc;
    text-transform: uppercase;
}

/* Video Types Section */
.video-types {
    padding: 100px 0;
    background: #1a1a1a;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.type-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 10, 37, 0.1), rgba(255, 71, 87, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.type-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 10, 37, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.type-icon {
    width: 60px;
    height: 60px;
    background: rgba(192, 10, 37, 0.2);
    border: 1px solid rgba(192, 10, 37, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
}

.type-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
}

.type-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.type-features {
    list-style: none;
    position: relative;
}

.type-features li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.type-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* Process Section */
.video-process {
    padding: 1px 0;
    background: #1a1a1a;
}

.video-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.video-process-step {
    text-align: center;
    position: relative;
}

.video-process-step::after {
    content: '→';
    position: absolute;
    top: 30%;
    right: -1rem;
    font-size: 2rem;
    color: rgba(192, 10, 37, 0.3);
}

.video-process-step:last-child::after {
    display: none;
}

.video-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c00a25, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.video-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.video-step-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Features Comparison */
.features-comparison {
    padding: 100px 0;
    background: #1a1a1a;
}

.comparison-table {
    max-width: 900px;
    margin: 4rem auto 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(192, 10, 37, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-header div {
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.comparison-header div:first-child {
    text-align: left;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    color: #ffffff;
    font-weight: 500;
}

.comparison-value {
    text-align: center;
    color: #cccccc;
}

.comparison-value.highlight {
    color: #00ff88;
    font-weight: 700;
}

.comparison-value.negative {
    color: #ff4757;
}

/* CTA Section */
.video-cta {
    padding: 100px 0;
    background: #1a1a1a;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.platform-icon:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 10, 37, 0.3);
    background: rgba(192, 10, 37, 0.1);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .video-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .comparison-table {
        overflow-x: auto;
    }
}

@media screen and (max-width: 768px) {
    .video-hero {
        min-height: auto;
        padding: 80px 0;
    }

    .types-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .video-process-step::after {
        display: none;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 0.9rem;
    }

    .cta-platforms {
        gap: 1rem;
    }
}

/* ==================== AI Video PAGE CSS END ==================== */

/* ==================== AI Voice PAGE CSS START ==================== */
.voice-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.voice-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(192, 10, 37, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.voice-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.voice-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.voice-wave-icon {
    width: 24px;
    height: 24px;
    display: flex;
    gap: 3px;
    align-items: center;
    justify-content: center;
}

.wave-bar {
    width: 3px;
    background: #ff6b35;
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.wave-bar:nth-child(1) {
    height: 12px;
    animation-delay: 0s;
}

.wave-bar:nth-child(2) {
    height: 20px;
    animation-delay: 0.1s;
}

.wave-bar:nth-child(3) {
    height: 16px;
    animation-delay: 0.2s;
}

.wave-bar:nth-child(4) {
    height: 22px;
    animation-delay: 0.3s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

.voice-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.voice-gradient {
    background: linear-gradient(135deg, #ff6b35, #c00a25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.voice-hero-description {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Interactive Voice Demo */
.voice-demo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    backdrop-filter: blur(20px);
    position: relative;
}

.demo-visualizer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    margin-bottom: 2rem;
    position: relative;
}

.voice-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(192, 10, 37, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.voice-circle.active {
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }

    50% {
        box-shadow: 0 0 0 30px rgba(255, 107, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.voice-icon {
    font-size: 4rem;
}

.demo-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.voice-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35, #c00a25);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.voice-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.voice-button.secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.demo-transcript {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    min-height: 200px;
}

.transcript-line {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease forwards;
}

.transcript-speaker {
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.3rem;
}

.transcript-text {
    color: #ffffff;
    line-height: 1.6;
}

/* Features Grid */
.voice-features {
    padding: 100px 0;
    background: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(192, 10, 37, 0.2));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.feature-list li::before {
    content: '✓';
    color: #ff6b35;
    font-weight: bold;
}

/* Use Cases Section */
.use-cases {
    padding: 100px 0;
    background: #1a1a1a;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
}

.use-case-header {
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.use-case-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.use-case-subtitle {
    color: #cccccc;
    font-size: 0.95rem;
}

.use-case-body {
    padding: 2rem 0rem;
}

.use-case-scenario {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.scenario-label {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.scenario-text {
    color: #ffffff;
    line-height: 1.5;
    font-style: italic;
}

.use-case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-box {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Technology Stack */
.tech-stack {
    padding: 100px 0;
    background: #0a0a0a;
}

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

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

.tech-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.tech-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.tech-description {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
}

/* Pricing Section */
.voice-pricing {
    padding: 100px 0;
    background: #1a1a1a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.08);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #c00a25);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-card.featured .pricing-button {
    background: linear-gradient(135deg, #ff6b35, #c00a25);
    border: none;
}

.pricing-button:hover {
    transform: translateY(-2px);
}

/* FAQ Section */
.voice-faq {
    padding: 100px 0;
    background: #1a1a1a;
}

.faq-list {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
}

.faq-toggle {
    color: #ff6b35;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 1rem 2rem 1.5rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .voice-hero {
        min-height: 80vh;
        padding-top: 80px;
    }

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

    .voice-hero-description {
        font-size: 1.1rem;
        padding: 0px 35px;
    }

    .voice-demo-card {
        padding: 2rem 1.5rem;
    }

    .voice-circle {
        width: 120px;
        height: 120px;
    }

    .voice-icon {
        font-size: 3rem;
    }

    .features-grid,
    .tech-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .use-case-metrics {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ==================== AI Voice PAGE CSS END ==================== */