/* ========================================
   AUTIVO - Minimalist Professional Design
   ======================================== */

:root {
    /* Colors - Clean Monochrome with Accent */
    --bg-primary: #09090b;
    --bg-secondary: #0f0f11;
    --bg-tertiary: #18181b;
    --bg-card: rgba(24, 24, 27, 0.5);
    
    /* Light theme colors */
    --bg-light: #ffffff;
    --bg-light-secondary: #fafafa;
    --text-light-primary: #09090b;
    --text-light-secondary: #52525b;
    --text-light-muted: #a1a1aa;
    --border-light: rgba(0, 0, 0, 0.08);
    
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --accent: #09090b;
    --accent-subtle: rgba(9, 9, 11, 0.05);
    
    --border-color: rgba(255, 255, 255, 0.06);
    
    /* Typography - Unified System */
    --font-primary: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
    
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 2rem;        /* 32px */
    --text-4xl: 2.5rem;      /* 40px */
    --text-5xl: 3rem;        /* 48px */
    
    /* Spacing - Apple-like generous whitespace */
    --container-width: 1080px;
    --section-padding: 180px;
    
    /* Transitions - Smooth Apple-like */
    --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.logo-badge {
    font-size: 0.65rem;
    font-weight: 500;
    padding: 4px 8px;
    background: var(--accent);
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 48px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
}

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

.nav-dropdown-trigger svg {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.15s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 20px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.12);
}

.navbar .btn-primary {
    padding: 11px 22px;
    font-size: 0.8rem;
}

.btn-glow {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-glow:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.12);
}

.btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   LIGHT SECTION - Button Styles
   ======================================== */

.section-light .btn-primary {
    background: var(--text-light-primary);
    color: var(--bg-light);
}

.section-light .btn-primary:hover {
    background: #27272a;
    transform: scale(1.02);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.section-light .btn-ghost,
.section-light .btn-outline,
.section-light .btn-secondary {
    background: transparent;
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--text-light-primary);
}

.section-light .btn-ghost:hover,
.section-light .btn-outline:hover,
.section-light .btn-secondary:hover {
    background: var(--text-light-primary);
    color: var(--bg-light);
    border-color: var(--text-light-primary);
    transform: scale(1.02);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 180px;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(9, 9, 11, 0.65) 0%,
        rgba(9, 9, 11, 0.5) 40%,
        rgba(9, 9, 11, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

/* Hero Main Title */
.hero-main-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Tagline */
.hero-tagline {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 32px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.hero-badge-large {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 40px;
}

.pulse {
    width: 6px;
    height: 6px;
    background: var(--text-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-highlight {
    display: block;
    color: var(--text-primary);
}

.hero-title-single {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.title-highlight-inline {
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@media (max-height: 700px) {
    .scroll-indicator {
        bottom: 4px;
    }
}

@media (max-height: 500px) {
    .scroll-indicator {
        display: none;
    }
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
}

/* ========================================
   TRUSTED SECTION
   ======================================== */

/* Demand Banner */
.demand-banner {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.03) 100%);
    border-top: 1px solid rgba(34, 197, 94, 0.15);
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
    padding: 16px 0;
}

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

.demand-pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

.demand-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.demand-text strong {
    color: #22c55e;
    font-weight: 600;
}

.demand-cta {
    font-size: var(--text-sm);
    font-weight: 500;
    color: #22c55e;
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    transition: var(--transition);
    white-space: nowrap;
}

.demand-cta:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
}

@media (max-width: 600px) {
    .demand-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .demand-pulse {
        display: none;
    }
}

.trusted-section {
    padding: 64px 0;
    border-bottom: 1px solid var(--border-color);
}

.trusted-text {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logos-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trusted-logos-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 64px;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

.trusted-logos-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0.6;
    min-width: 120px;
    flex-shrink: 0;
}

.integration-item:hover {
    opacity: 1;
}

.integration-icon {
    width: 28px;
    height: 28px;
    color: var(--text-secondary);
}

.integration-icon.whatsapp-icon {
    color: var(--text-secondary);
}

.integration-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.integration-text-logo {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
}

.integration-text-logo strong {
    font-weight: 700;
}

.integration-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(0.5);
    transition: var(--transition);
}

.integration-item:hover .integration-logo {
    filter: grayscale(100%) brightness(0) invert(0.8);
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 120px;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-bottom: 24px;
    opacity: 0.7;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.gradient-text {
    color: inherit;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto;
    opacity: 0.85;
}

/* ========================================
   LIGHT SECTIONS - Alternating Colors
   ======================================== */

.section-light {
    background: var(--bg-light);
    color: var(--text-light-primary);
}

.section-light .section-tag {
    color: var(--text-light-muted);
}

.section-light .section-title {
    color: var(--text-light-primary);
}

.section-light .section-subtitle {
    color: var(--text-light-secondary);
}

/* Light Section Cards */
.section-light .target-card,
.section-light .ai-feature-card,
.section-light .testimonial-card,
.section-light .mode-card {
    background: var(--bg-light);
    border-color: var(--border-light);
}

.section-light .target-card:hover,
.section-light .ai-feature-card:hover,
.section-light .testimonial-card:hover,
.section-light .mode-card:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.section-light .target-card h3,
.section-light .ai-feature-card h3,
.section-light .testimonial-card h3,
.section-light .mode-card h3 {
    color: var(--text-light-primary);
}

.section-light .target-card p,
.section-light .ai-feature-card p,
.section-light .mode-card > p {
    color: var(--text-light-secondary);
}

.section-light .target-features li,
.section-light .mode-features li {
    color: var(--text-light-secondary);
    border-color: var(--border-light);
}

.section-light .target-icon,
.section-light .ai-feature-icon,
.section-light .mode-icon {
    background: var(--bg-light-secondary);
    color: var(--text-light-primary);
}

.section-light .ai-feature-tag {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-light-secondary);
}

.section-light .ai-feature-number {
    color: var(--border-light);
}

/* Light Flow Steps */
.section-light .flow-step {
    background: var(--bg-light-secondary);
    border-color: var(--border-light);
    color: var(--text-light-primary);
}

.section-light .flow-number {
    background: var(--text-light-primary);
    color: var(--bg-light);
}

.section-light .flow-arrow {
    background: var(--border-light);
}

.section-light .flow-arrow::after {
    border-color: var(--text-light-muted);
}

/* Light Mode Cards */
.section-light .mode-example {
    background: var(--bg-light-secondary);
}

.section-light .mode-example code {
    color: var(--text-light-secondary);
}

.section-light .mode-badge {
    background: var(--text-light-primary);
    color: var(--bg-light);
}

/* Light Testimonials */
.section-light .testimonial-text {
    color: var(--text-light-secondary);
}

.section-light .testimonial-quote {
    color: var(--text-light-secondary);
}

.section-light .author-name {
    color: var(--text-light-primary);
}

.section-light .author-role {
    color: var(--text-light-muted);
}

.section-light .testimonial-rating {
    color: var(--text-light-primary);
}

/* Light Section - All Text Elements */
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
    color: var(--text-light-primary);
}

.section-light p {
    color: var(--text-light-secondary);
}

.section-light span {
    color: inherit;
}

.section-light a:not(.btn) {
    color: var(--text-light-primary);
}

.section-light a:not(.btn):hover {
    color: var(--text-light-secondary);
}

.section-light .gradient-text {
    color: var(--text-light-primary);
}

/* Light Section - Icons */
.section-light svg {
    color: currentColor;
}

.section-light .icon {
    color: var(--text-light-secondary);
}

/* Light Comparison Table */
.section-light .comparison-table {
    border-color: var(--border-light);
}

.section-light .comparison-row {
    border-color: var(--border-light);
}

.section-light .comparison-header {
    background: var(--bg-light-secondary);
}

.section-light .comparison-cell {
    color: var(--text-light-secondary);
}

.section-light .cell-task {
    color: var(--text-light-primary);
}

.section-light .cell-before {
    background: rgba(239, 68, 68, 0.03);
    border-color: var(--border-light);
}

.section-light .cell-after {
    background: rgba(34, 197, 94, 0.03);
    border-color: var(--border-light);
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
}

.feature-card {
    background: var(--bg-secondary);
    padding: 48px;
    transition: var(--transition);
    overflow: hidden;
}

.feature-card:hover {
    background: var(--bg-tertiary);
}

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

/* Feature Content Toggle */
.feature-content {
    display: none;
}

.feature-content.active {
    display: block;
    animation: fadeInFeature 0.4s ease;
}

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

/* Toggle Card */
.feature-toggle {
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.feature-toggle:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.toggle-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: var(--accent-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.toggle-indicator svg {
    width: 14px;
    height: 14px;
    color: var(--accent-color);
}

.feature-toggle:hover .toggle-indicator {
    background: var(--accent-color);
}

.feature-toggle:hover .toggle-indicator svg {
    color: white;
}

/* Webshop Video */
.webshop-video-container {
    position: relative;
    margin-top: 24px;
    margin-left: -40px;
    margin-right: -40px;
    margin-bottom: -40px;
    cursor: pointer;
    overflow: hidden;
    background: #000;
}

.webshop-video {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.webshop-video-container:hover .webshop-video {
    transform: scale(1.02);
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.webshop-video-container:hover .video-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.webshop-video-container.paused .video-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-play-overlay svg {
    width: 22px;
    height: 22px;
    color: var(--text-primary);
}

.video-play-overlay svg.play-icon {
    margin-left: 3px;
}

.webshop-video-container.paused .video-play-overlay svg.pause-icon {
    display: none;
}

.webshop-video-container:not(.paused) .video-play-overlay svg.play-icon {
    display: none;
}

/* Video status badge */
.video-status {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    opacity: 0;
    transition: var(--transition);
}

.webshop-video-container:hover .video-status {
    opacity: 1;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-secondary);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.feature-visual {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-carousel {
    position: relative;
    min-height: 200px;
}

.chat-conversation {
    display: none;
    flex-direction: column;
    gap: 12px;
    animation: fadeInConversation 0.5s ease;
}

.chat-conversation.active {
    display: flex;
}

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

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: var(--text-primary);
    width: 24px;
    border-radius: 4px;
}

.chat-bubble {
    padding: 14px 18px;
    border-radius: 8px;
    max-width: 90%;
    font-size: 0.875rem;
    line-height: 1.6;
}

.chat-bubble.ai {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    align-self: flex-start;
}

.chat-bubble.user {
    background: var(--accent-subtle);
    border: 1px solid rgba(59, 130, 246, 0.15);
    align-self: flex-end;
    color: var(--text-primary);
}

.chat-bubble.user.voice {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.chat-bubble.user.voice em {
    font-style: italic;
    color: var(--text-secondary);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.how-section.section-light {
    background: var(--bg-light);
}

.section-light .steps-container {
    background: var(--border-light);
    border-color: var(--border-light);
}

.section-light .step {
    background: var(--bg-light);
}

.section-light .step:hover {
    background: var(--bg-light-secondary);
}

.section-light .step-number {
    color: var(--text-light-muted);
}

.section-light .step-content h3 {
    color: var(--text-light-primary);
}

.section-light .step-content p {
    color: var(--text-light-secondary);
}

.section-light .step-status-icon {
    border-color: var(--text-light-muted);
}

.section-light .step-clickable.active .step-status-icon,
.section-light .step-clickable.viewed .step-status-icon {
    border-color: var(--text-light-primary);
    background: var(--text-light-primary);
}

.section-light .step-clickable.active .step-status-icon .status-check,
.section-light .step-clickable.viewed .step-status-icon .status-check {
    color: var(--bg-light);
}

.section-light .step-expand-icon {
    color: var(--text-light-muted);
}

.section-light .step-clickable:hover .step-expand-icon,
.section-light .step-clickable.active .step-expand-icon {
    color: var(--text-light-primary);
}

.section-light .step-video-container {
    border-color: var(--border-light);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr 160px;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: var(--bg-primary);
    transition: var(--transition);
}

.step:hover {
    background: var(--bg-secondary);
}

.step-number {
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-muted);
    opacity: 0.3;
    letter-spacing: -0.02em;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step Status Icon - Circle with optional checkmark */
.step-status-icon {
    width: 32px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.step-status-icon .status-circle {
    display: block;
}

.step-status-icon .status-check {
    display: none;
    font-size: 1rem;
    color: var(--text-primary);
}

/* When step is active/open OR viewed - show checkmark */
.step-clickable.active .step-status-icon,
.step-clickable.viewed .step-status-icon {
    border-color: var(--text-primary);
    background: var(--text-primary);
}

.step-clickable.active .step-status-icon .status-circle,
.step-clickable.viewed .step-status-icon .status-circle {
    display: none;
}

.step-clickable.active .step-status-icon .status-check,
.step-clickable.viewed .step-status-icon .status-check {
    display: block;
    color: var(--bg-primary);
}

/* Step Clickable / Video Dropdown */
.step-clickable {
    cursor: pointer;
    display: block;
    position: relative;
}

.step-clickable .step-header {
    display: grid;
    grid-template-columns: 100px 1fr 160px 32px;
    gap: 48px;
    align-items: center;
}

.step-expand-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    animation: pulse-hint 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse-hint {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(4px); }
}

.step-clickable:hover .step-expand-icon {
    color: var(--text-primary);
    animation: none;
}

.step-clickable.active .step-expand-icon {
    transform: rotate(180deg);
    animation: none;
    color: var(--text-primary);
}

.step-video-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    grid-column: 1 / -1;
}

.step-clickable.active .step-video-dropdown {
    max-height: 500px;
    padding-top: 32px;
}

.step-video-container {
    background: #0a0a0a;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-video-container video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: contain;
}

.step-video-container .video-placeholder {
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
    text-align: center;
    position: absolute;
}

/* Step Video Overlay - Play/Pause */
.step-video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.step-video-container:hover .step-video-overlay {
    opacity: 1;
}

.step-video-container:not(.playing) .step-video-overlay {
    opacity: 1;
}

.step-video-overlay svg {
    width: 28px;
    height: 28px;
    color: #000;
}

.step-video-overlay svg.play-icon {
    margin-left: 4px;
}

/* Show play icon when not playing, pause when playing */
.step-video-container .step-video-overlay svg.pause-icon {
    display: none;
}

.step-video-container .step-video-overlay svg.play-icon {
    display: block;
}

.step-video-container.playing .step-video-overlay svg.pause-icon {
    display: block;
}

.step-video-container.playing .step-video-overlay svg.play-icon {
    display: none;
}

.step-video-container.playing .step-video-overlay {
    opacity: 0;
}

.step-video-container.playing:hover .step-video-overlay {
    opacity: 1;
}

@media (max-width: 1024px) {
    .step-clickable .step-header {
        grid-template-columns: 80px 1fr 32px;
    }
    
    .step-clickable .step-header .step-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .step-clickable .step-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    
    .step-expand-icon {
        position: absolute;
        top: 16px;
        right: 16px;
    }
    
    .step-video-container {
        min-height: 180px;
    }
    
    .step-clickable.active .step-video-dropdown {
        max-height: 350px;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.cta-card {
    position: relative;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 80px;
    text-align: center;
}

.cta-glow {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section .cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary) !important;
}

.cta-content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
    justify-content: center;
}

.cta-form input {
    flex: 1;
    padding: 14px 20px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
}

.cta-form input::placeholder {
    color: var(--text-muted);
}

.cta-form input:focus {
    border-color: rgba(255, 255, 255, 0.15);
}

.cta-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    padding: 80px 0 48px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand {
    grid-column: 1 / -1;
    order: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 48px;
    border-top: 1px solid var(--border-color);
    margin-top: 16px;
}

.footer-brand p {
    max-width: 400px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-top: 16px;
    max-width: 400px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    justify-content: center;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .step {
        grid-template-columns: 80px 1fr;
    }
    
    .step-visual {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 100px;
    }
    
    /* Mobile Navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #09090b;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 9999;
        overflow: hidden;
    }
    
    .nav-links.mobile-open {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 500;
        color: #fafafa;
    }
    
    .navbar .btn-primary {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 10000;
        position: fixed;
        top: 20px;
        right: 24px;
    }
    
    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Prevent scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        width: 48px;
        height: 1px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large {
        grid-column: span 1;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .cta-card {
        padding: 48px 24px;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trusted-logos-wrapper {
        overflow: hidden;
        width: 100%;
    }
    
    .trusted-logos-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 32px;
        animation: scroll-logos 15s linear infinite;
        width: max-content;
    }
    
    .integration-text-logo {
        font-size: 1rem;
        white-space: nowrap;
    }
    
    .integration-item {
        min-width: auto;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   ANIMATIONS - Apple Style
   ======================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for children */
.animate-on-scroll.visible .target-card,
.animate-on-scroll.visible .ai-feature-card,
.animate-on-scroll.visible .testimonial-card,
.animate-on-scroll.visible .mode-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-on-scroll.visible .target-card:nth-child(1),
.animate-on-scroll.visible .ai-feature-card:nth-child(1),
.animate-on-scroll.visible .testimonial-card:nth-child(1),
.animate-on-scroll.visible .mode-card:nth-child(1) { animation-delay: 0.1s; }

.animate-on-scroll.visible .target-card:nth-child(2),
.animate-on-scroll.visible .ai-feature-card:nth-child(2),
.animate-on-scroll.visible .testimonial-card:nth-child(2),
.animate-on-scroll.visible .mode-card:nth-child(2) { animation-delay: 0.2s; }

.animate-on-scroll.visible .target-card:nth-child(3),
.animate-on-scroll.visible .ai-feature-card:nth-child(3),
.animate-on-scroll.visible .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.animate-on-scroll.visible .ai-feature-card:nth-child(4) { animation-delay: 0.4s; }
.animate-on-scroll.visible .ai-feature-card:nth-child(5) { animation-delay: 0.5s; }
.animate-on-scroll.visible .ai-feature-card:nth-child(6) { animation-delay: 0.6s; }

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

/* Smooth section transitions */
section {
    transition: opacity 0.6s ease;
}

/* Elegant hover states */
.target-card,
.ai-feature-card,
.testimonial-card,
.mode-card,
.bento-card {
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
                box-shadow 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
                border-color 0.4s ease;
}

.target-card:hover,
.ai-feature-card:hover,
.testimonial-card:hover,
.mode-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ========================================
   SELECTION
   ======================================== */

::selection {
    background: var(--accent);
    color: var(--text-primary);
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-hero {
    padding: 160px 0 80px;
    background: var(--bg-primary);
}

.contact-hero-content {
    max-width: 600px;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Main */
.contact-main {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.contact-main.section-light {
    background: var(--bg-light);
}

/* Light Section - Contact */
.section-light .contact-form-wrapper {
    background: var(--bg-light);
    border-color: var(--border-light);
}

.section-light .contact-form-wrapper h2 {
    color: var(--text-light-primary);
}

.section-light .contact-form-wrapper > p {
    color: var(--text-light-muted);
}

.section-light .form-group label {
    color: var(--text-light-secondary);
}

.section-light .form-group input,
.section-light .form-group select,
.section-light .form-group textarea {
    background: var(--bg-light-secondary);
    border-color: var(--border-light);
    color: var(--text-light-primary);
}

.section-light .form-group input::placeholder,
.section-light .form-group textarea::placeholder {
    color: var(--text-light-muted);
}

.section-light .form-group input:focus,
.section-light .form-group select:focus,
.section-light .form-group textarea:focus {
    border-color: var(--text-light-primary);
    background: var(--bg-light);
}

.section-light .info-card {
    background: var(--bg-light);
    border-color: var(--border-light);
}

.section-light .info-card.highlight {
    border-color: var(--text-light-primary);
}

.section-light .info-icon {
    color: var(--text-light-muted);
}

.section-light .info-card h3 {
    color: var(--text-light-primary);
}

.section-light .info-card p {
    color: var(--text-light-secondary);
}

.section-light .info-card a {
    color: var(--text-light-primary);
}

.section-light .info-card a:hover {
    color: var(--text-light-secondary);
}

.section-light .info-note {
    color: var(--text-light-muted);
}

.section-light .info-link {
    color: var(--text-light-primary);
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

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

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-muted);
    background: var(--bg-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

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

.info-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.info-card.highlight {
    border-color: var(--text-primary);
}

.info-icon {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-card a {
    color: var(--text-primary);
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--text-secondary);
}

.info-note {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.info-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Map Section */
.contact-map {
    padding: 0 0 var(--section-padding);
    background: var(--bg-secondary);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Contact FAQ */
.contact-faq {
    padding: var(--section-padding) 0;
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-hero {
    padding: 160px 0 80px;
    background: var(--bg-primary);
}

.about-hero-content {
    max-width: 700px;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Stats Bar */
.stats-bar {
    padding: 24px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.stats-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
}

@media (max-width: 768px) {
    .stats-bar-inner {
        flex-wrap: wrap;
        gap: 24px 32px;
    }
    
    .stat-divider {
        display: none;
    }
}

/* Ecosystem USPs Section */
.about-ecosystem {
    padding: var(--section-padding) 0;
}

.ecosystem-usps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.ecosystem-usp {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.ecosystem-usp:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.ecosystem-usp-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    margin-bottom: 24px;
}

.ecosystem-usp-icon svg {
    color: var(--accent-color);
}

.ecosystem-usp h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light-primary);
    margin-bottom: 12px;
}

.ecosystem-usp p {
    font-size: 0.95rem;
    color: var(--text-light-secondary);
    line-height: 1.6;
}

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

@media (max-width: 640px) {
    .ecosystem-usps {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-usp {
        padding: 24px;
    }
}

/* Story Section */
.about-story {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.about-story.section-light {
    background: var(--bg-light);
}

.about-story.section-light .story-content h2,
.about-story.section-light .story-content p {
    color: var(--text-light-primary);
}

.about-story.section-light .story-card {
    background: var(--bg-light);
    border-color: var(--border-light);
}

.about-story.section-light .story-year,
.about-story.section-light .story-number {
    color: var(--text-light-primary);
}

.about-story.section-light .story-card p {
    color: var(--text-light-secondary);
}

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

.story-content h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.story-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.story-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.story-year,
.story-number {
    font-size: 2rem;
    font-weight: 500;
    min-width: 80px;
}

.story-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Values Section */
.about-values {
    padding: var(--section-padding) 0;
}

.about-values.section-light {
    background: var(--bg-light);
}

.about-values.section-light .value-card {
    background: var(--bg-light);
    border-color: var(--border-light);
}

.about-values.section-light .value-card h3 {
    color: var(--text-light-primary);
}

.about-values.section-light .value-card p {
    color: var(--text-light-secondary);
}

.about-values.section-light .value-icon {
    background: var(--bg-light-secondary);
    color: var(--text-light-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
}

.value-icon {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Team Section */
.about-team {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.team-message {
    max-width: 700px;
    margin: 48px auto 0;
    text-align: center;
}

.team-message blockquote {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-primary);
    margin: 0;
}

.team-signature {
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Powered By Section */
.about-powered {
    padding: var(--section-padding) 0;
}

.about-powered.section-light {
    background: var(--bg-light);
}

.about-powered.section-light h2,
.about-powered.section-light p {
    color: var(--text-light-primary);
}

.about-powered.section-light .powered-item {
    color: var(--text-light-secondary);
}

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

.powered-content h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 16px 0;
}

.powered-content > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.powered-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.powered-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.powered-item svg {
    color: var(--text-muted);
}

/* Responsive About */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .team-message blockquote {
        font-size: 1.25rem;
    }
    
    .powered-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
    padding: 160px 0 var(--section-padding);
}

.legal-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 8px;
}

.legal-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
}

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

.legal-content address {
    font-style: normal;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 16px 0;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--text-primary);
}

/* ========================================
   PRICING PAGE - NEW DESIGN
   ======================================== */

/* Hero Section */
.pricing-hero-new {
    padding: 160px 0 100px;
    background: var(--bg-primary);
    text-align: center;
}

.pricing-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-hero-content .section-tag {
    margin-bottom: 32px;
}

.pricing-title-logo {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

/* Brand Name Styling */
.brand-name {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.pricing-title-logo .brand-text {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.pricing-title-logo .highlight {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-title-logo .highlight {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 500;
    line-height: 1;
}

/* Screen reader only - SEO text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.pricing-hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

.pricing-hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-price-display {
    margin-bottom: 32px;
}

.hero-price-dual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-price-dual .price-block {
    text-align: center;
}

.hero-price-dual .price-main {
    background: rgba(255, 255, 255, 0.03);
}

.price-plus {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1;
}

.price-main {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 16px 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.price-number {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-currency {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.price-period {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.price-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 8px;
}

.price-meta .price-currency {
    font-size: 1.25rem;
    font-weight: 500;
}

.price-meta .price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ========================================
   PRICE CALCULATOR
   ======================================== */

.calculator-section {
    padding: var(--section-padding) 0;
}

.calculator-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.calculator-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 48px;
}

.calc-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.calc-price-hint {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light-secondary);
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Platform Selection */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.platform-option {
    cursor: pointer;
}

.platform-option input {
    display: none;
}

.platform-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.2s ease;
    position: relative;
}

.platform-box svg {
    color: var(--text-light-secondary);
    transition: color 0.2s ease;
}

.platform-box span {
    font-size: 0.85rem;
    color: var(--text-light-secondary);
    font-weight: 500;
    text-align: center;
}

.platform-box .check-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.platform-box .check-icon svg {
    color: white;
    width: 12px;
    height: 12px;
}

.platform-option:hover .platform-box {
    border-color: var(--text-light-secondary);
    background: rgba(0, 0, 0, 0.02);
}

.platform-option input:checked + .platform-box {
    border-color: var(--accent-color);
    background: rgba(99, 102, 241, 0.08);
}

.platform-option input:checked + .platform-box svg {
    color: var(--accent-color);
}

.platform-option input:checked + .platform-box span {
    color: var(--text-light-primary);
}

.platform-option input:checked + .platform-box .check-icon {
    opacity: 1;
    transform: scale(1);
}

/* User Counter */
.user-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.counter-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--bg-light);
    color: var(--text-light-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    border-color: var(--accent-color);
    background: rgba(99, 102, 241, 0.08);
    color: var(--accent-color);
}

.counter-btn:active {
    transform: scale(0.95);
}

.counter-btn.minus:hover {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
}

.counter-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-light-primary);
    line-height: 1;
    transition: transform 0.15s ease;
}

.counter-number.bump {
    transform: scale(1.1);
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-light-secondary);
    margin-top: 4px;
}

/* Calculator Result */
.calc-result {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.calc-breakdown {
    flex: 1;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.breakdown-label {
    font-size: 0.9rem;
    color: var(--text-light-secondary);
}

.breakdown-value {
    font-size: 0.9rem;
    color: var(--text-light-primary);
    font-weight: 500;
}

.breakdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 12px 0;
}

.breakdown-row.total .breakdown-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light-primary);
}

.breakdown-row.total .breakdown-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.calc-cta {
    white-space: nowrap;
}

/* Calculator Responsive */
@media (max-width: 768px) {
    .calculator-card {
        padding: 32px 24px;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calc-result {
        flex-direction: column;
        text-align: center;
    }
    
    .breakdown-row {
        justify-content: center;
        gap: 16px;
    }
    
    .calc-cta {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .calculator-card {
        padding: 24px 16px;
    }
    
    .platform-box {
        padding: 16px 8px;
    }
    
    .platform-box span {
        font-size: 0.75rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .user-counter {
        gap: 16px;
    }
    
    .counter-btn {
        width: 48px;
        height: 48px;
    }
}

.price-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Modules Section */
.modules-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.modules-section.section-light {
    background: var(--bg-light);
}

/* Light Section - Module Cards */
.section-light .module-card {
    background: var(--bg-light);
    border-color: var(--border-light);
}

.section-light .module-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.section-light .module-icon {
    color: var(--text-light-secondary);
}

.section-light .module-card h3 {
    color: var(--text-light-primary);
}

.section-light .module-card > p {
    color: var(--text-light-muted);
}

.section-light .module-features li {
    color: var(--text-light-secondary);
}

.section-light .module-included {
    color: var(--text-light-muted);
}

.section-subtitle {
    color: var(--text-secondary);
    margin-top: 12px;
}

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

.module-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
}

.module-card:hover {
    border-color: var(--text-muted);
    transform: translateY(-4px);
}

.module-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.module-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.module-card > p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.module-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.module-features li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
}

.module-features li:last-child {
    border-bottom: none;
}

.module-included {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 10px;
    background: var(--bg-secondary);
    border-radius: 4px;
}

/* Core Features */
.core-features-section {
    padding: var(--section-padding) 0;
}

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

.core-feature {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.section-light .core-feature {
    background: white;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.section-light .core-feature h4 {
    color: var(--text-light-primary);
}

.section-light .core-feature p {
    color: var(--text-light-secondary);
}

.section-light .core-icon {
    color: var(--accent-color);
}

.core-icon {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.core-icon svg {
    width: 28px;
    height: 28px;
}

.core-feature h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.core-feature p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive Pricing New */
@media (max-width: 1200px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .core-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-hero-new {
        padding: 120px 0 60px;
    }
    
    .pricing-title-logo .brand-text,
    .pricing-title-logo .highlight {
        font-size: 1.5rem;
    }
    
    .hero-price-dual {
        gap: 16px;
    }
    
    .hero-price-dual .price-number {
        font-size: 1.8rem;
    }
    
    .price-plus {
        font-size: 1.2rem;
    }
    
    .price-main {
        padding: 14px 24px;
    }
    
    .price-number {
        font-size: 2rem;
    }
    
    .price-currency {
        font-size: 0.9rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .core-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .price-main {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .price-meta {
        align-items: center;
    }
    
    .core-features-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Buttons */
.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--text-muted);
}

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

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.faq-section.section-light {
    background: var(--bg-light);
}

/* Light Section - FAQ */
.section-light .faq-item-accordion {
    border-color: var(--border-light);
}

.section-light .faq-question {
    color: var(--text-light-primary);
}

.section-light .faq-question:hover {
    color: var(--text-light-secondary);
}

.section-light .faq-icon {
    color: var(--text-light-muted);
}

.section-light .faq-answer p {
    color: var(--text-light-secondary);
}

.section-light .faq-more p {
    color: var(--text-light-muted);
}

.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.faq-more {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.faq-more p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.faq-item-accordion {
    border-bottom: 1px solid var(--border-color);
}

.faq-item-accordion:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--text-secondary);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item-accordion.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-accordion.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Legacy FAQ Grid (for other pages) */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Footer Logo */
.footer-logo {
    height: 80px;
}

/* Nav Active State */
.nav-links a.active {
    color: var(--text-primary);
}

/* ========================================
   DEMO CHAT MODAL - Elegant Design
   ======================================== */

.demo-chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-chat-overlay.active {
    opacity: 1;
    visibility: visible;
}

.demo-chat-modal {
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    width: 90%;
    max-width: 420px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.95) translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.demo-chat-overlay.active .demo-chat-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.demo-chat-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-chat-close svg {
    width: 16px;
    height: 16px;
}

.demo-chat-close:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.demo-chat-header {
    padding: 28px 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-chat-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, rgba(255,255,255,0.15), 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;
    position: relative;
}

.demo-chat-avatar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: #34c759;
    border-radius: 50%;
    border: 3px solid rgba(28, 28, 30, 0.95);
}

.demo-chat-avatar svg {
    width: 26px;
    height: 26px;
    color: rgba(255, 255, 255, 0.9);
}

.demo-chat-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.demo-chat-title .brand-name {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.demo-chat-status {
    font-size: 0.8rem;
    font-weight: 500;
    color: #34c759;
    letter-spacing: 0.02em;
}

.demo-chat-status::before {
    display: none;
}

.demo-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 280px;
    max-height: 360px;
}

.demo-chat-messages::-webkit-scrollbar {
    width: 4px;
}

.demo-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.demo-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.chat-message {
    display: flex;
    gap: 12px;
    animation: chatFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.chat-message.bot .chat-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.chat-message.bot .chat-avatar svg {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.chat-bubble {
    background: rgba(255, 255, 255, 0.06);
    padding: 14px 18px;
    border-radius: 20px;
    border-top-left-radius: 6px;
    max-width: 85%;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message.user .chat-bubble {
    background: rgba(255, 255, 255, 0.95);
    color: #1c1c1e;
    border-radius: 20px;
    border-top-right-radius: 6px;
    font-weight: 500;
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    border-top-left-radius: 6px;
    width: fit-content;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: elegantBounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.15s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes elegantBounce {
    0%, 60%, 100% { 
        transform: translateY(0);
        opacity: 0.4;
    }
    30% { 
        transform: translateY(-6px);
        opacity: 1;
    }
}

.demo-chat-input-area {
    padding: 20px 28px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chat-option-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.chat-option-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1c1c1e;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chat-text-input {
    display: flex;
    gap: 12px;
    width: 100%;
}

.chat-text-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
    outline: none;
    transition: all 0.25s ease;
    letter-spacing: -0.01em;
}

.chat-text-input input:focus {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.chat-text-input input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.chat-text-input.textarea-mode {
    flex-direction: column;
}

.chat-text-input textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
    outline: none;
    transition: all 0.25s ease;
    resize: none;
    font-family: inherit;
    letter-spacing: -0.01em;
}

.chat-text-input textarea:focus {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.chat-text-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.chat-text-input.textarea-mode .chat-send-btn {
    align-self: flex-end;
}

.chat-send-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 14px 24px;
    border-radius: 14px;
    color: #1c1c1e;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.chat-send-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chat-send-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Success state */
.demo-chat-success {
    text-align: center;
    padding: 56px 40px;
    animation: successFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.demo-chat-success svg {
    width: 64px;
    height: 64px;
    color: #34c759;
    margin-bottom: 24px;
    animation: successCheck 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

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

.demo-chat-success h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
}

.demo-chat-success p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-label {
        display: none;
    }
    
    .tab-icon {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

/* ========================================
   AUTOMATION VIDEO IN SHOWCASE
   ======================================== */

.automation-video-container {
    position: relative;
    margin-top: 24px;
    margin-left: -40px;
    margin-right: -40px;
    margin-bottom: -40px;
    cursor: pointer;
    overflow: hidden;
    background: #000;
}

.automation-video {
    width: 100%;
    display: block;
}

.automation-video-container .video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.automation-video-container:hover .video-play-overlay,
.automation-video-container.paused .video-play-overlay {
    opacity: 1;
}

.automation-video-container .video-play-overlay svg {
    width: 24px;
    height: 24px;
    color: var(--bg-primary);
}

.automation-video-container .play-icon {
    display: none;
}

.automation-video-container.paused .play-icon {
    display: block;
}

.automation-video-container.paused .pause-icon {
    display: none;
}

.automation-video-container .video-status {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* ========================================
   BUCHHALTUNG VIDEO IN SHOWCASE
   ======================================== */

.buchhaltung-video-container {
    position: relative;
    margin-top: 24px;
    margin-left: -40px;
    margin-right: -40px;
    margin-bottom: -40px;
    cursor: pointer;
    overflow: hidden;
    background: #000;
}

.buchhaltung-video {
    width: 100%;
    display: block;
}

.buchhaltung-video-container .video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.buchhaltung-video-container:hover .video-play-overlay,
.buchhaltung-video-container.paused .video-play-overlay {
    opacity: 1;
}

.buchhaltung-video-container .video-play-overlay svg {
    width: 24px;
    height: 24px;
    color: var(--bg-primary);
}

.buchhaltung-video-container .play-icon {
    display: none;
}

.buchhaltung-video-container.paused .play-icon {
    display: block;
}

.buchhaltung-video-container.paused .pause-icon {
    display: none;
}

.buchhaltung-video-container .video-status {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* ========================================
   BENTO GRID - Premium Glassmorphism
   ======================================== */

.bento-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
}

.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.bento-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}

/* Bento Card Sizes */
.bento-large {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 420px;
}

.bento-medium {
    grid-column: span 5;
    min-height: 200px;
    cursor: pointer;
}

.bento-wide {
    grid-column: span 7;
    min-height: 220px;
    cursor: pointer;
}

.bento-small {
    grid-column: span 5;
    grid-row: span 2;
    min-height: 420px;
}

/* Bento Content */
.bento-content {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-content-center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bento-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.bento-icon-large {
    width: 72px;
    height: 72px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
}

.bento-icon-large svg {
    width: 36px;
    height: 36px;
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Bento Chat Demo */
.bento-chat-demo {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento-chat-demo .chat-bubble {
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 90%;
}

.bento-chat-demo .chat-bubble.user {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.2);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.bento-chat-demo .chat-bubble.ai {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

/* Bento Video */
.bento-video-wrapper {
    position: absolute;
    inset: 0;
}

.bento-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.bento-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.bento-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Video Play Indicator on Bento Cards */
.bento-card.bento-medium .bento-video-wrapper::after,
.bento-card.bento-wide .bento-video-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

.bento-card.bento-medium:hover .bento-video-wrapper::after,
.bento-card.bento-wide:hover .bento-video-wrapper::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Expand hint */
.bento-card.bento-medium::before,
.bento-card.bento-wide::before {
    content: 'Klick zum Vergrössern';
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    z-index: 10;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.3s ease;
}

.bento-card.bento-medium:hover::before,
.bento-card.bento-wide:hover::before {
    opacity: 1;
    transform: translateY(0);
}

/* Security Badges */
.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.security-badges span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Responsive Bento */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .bento-large {
        grid-column: span 6;
        grid-row: span 1;
        min-height: 350px;
    }
    
    .bento-medium {
        grid-column: span 3;
    }
    
    .bento-wide {
        grid-column: span 6;
    }
    
    .bento-small {
        grid-column: span 6;
        grid-row: span 1;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .bento-large,
    .bento-medium,
    .bento-wide,
    .bento-small {
        grid-column: span 1;
        min-height: auto;
    }
    
    .bento-large {
        min-height: 350px;
    }
    
    .bento-medium,
    .bento-wide {
        min-height: 220px;
    }
    
    .bento-small {
        min-height: 200px;
    }
    
    .bento-content {
        padding: 24px;
    }
}

/* ========================================
   COMPARISON SLIDER
   ======================================== */

.comparison-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.comparison-section.section-light {
    background: var(--bg-light);
}

.comparison-slider {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-container {
    position: relative;
    cursor: ew-resize;
    user-select: none;
}

.comparison-image {
    position: relative;
}

.comparison-image img {
    width: 100%;
    height: auto;
    display: block;
}

.comparison-before {
    position: relative;
}

.comparison-after {
    position: absolute;
    inset: 0;
    clip-path: inset(0 0 0 50%);
}

.comparison-label {
    position: absolute;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
}

.comparison-label-before {
    left: 20px;
}

.comparison-label-after {
    right: 20px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: ew-resize;
    z-index: 10;
}

.handle-line {
    flex: 1;
    width: 3px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.handle-circle {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.handle-circle svg {
    width: 24px;
    height: 24px;
    color: var(--bg-primary);
}

/* ========================================
   VIDEO LIGHTBOX MODAL
   ======================================== */

.video-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.video-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-lightbox-content {
    width: 90%;
    max-width: 1200px;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-lightbox-overlay.active .video-lightbox-content {
    transform: scale(1);
}

.video-lightbox-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.video-lightbox-wrapper video {
    width: 100%;
    display: block;
}

.video-lightbox-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.video-lightbox-wrapper:hover .video-lightbox-play-overlay {
    opacity: 1;
}

.video-lightbox-wrapper.paused .video-lightbox-play-overlay {
    opacity: 1;
}

.video-lightbox-play-overlay svg {
    width: 32px;
    height: 32px;
    color: #000;
}

.video-lightbox-play-overlay svg.play-icon {
    margin-left: 4px;
    display: none;
}

.video-lightbox-play-overlay svg.pause-icon {
    display: block;
}

.video-lightbox-wrapper.paused .video-lightbox-play-overlay svg.play-icon {
    display: block;
}

.video-lightbox-wrapper.paused .video-lightbox-play-overlay svg.pause-icon {
    display: none;
}

.video-lightbox-title {
    text-align: center;
    margin-top: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

/* Image Lightbox */
.image-lightbox-wrapper {
    display: none;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.image-lightbox-wrapper.active {
    display: block;
}

.image-lightbox-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hide video wrapper when showing image */
.video-lightbox-wrapper.hidden {
    display: none;
}

/* Make bento-large clickable */
.bento-card.bento-clickable {
    cursor: pointer;
}

.bento-card.bento-clickable::before {
    content: 'Klick zum Vergrössern';
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    z-index: 10;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.3s ease;
}

.bento-card.bento-clickable:hover::before {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   TWO MODES SECTION (unter Comparison Slider)
   ======================================== */

.two-modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.mode-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.mode-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.mode-card.mode-ai {
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
}

.mode-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mode-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.mode-ai .mode-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
}

.mode-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.mode-card > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.mode-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.mode-features li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.mode-features li:last-child {
    border-bottom: none;
}

.mode-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.mode-example {
    background: var(--bg-primary);
    border-radius: 8px;
    padding: 12px 16px;
}

.mode-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.mode-example code {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.two-modes-tagline {
    text-align: center;
    margin-top: 64px;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-muted);
    font-weight: 300;
}

/* Light mode for Two Modes */
.section-light .mode-card {
    background: var(--bg-light);
    border-color: var(--border-light);
}

.section-light .mode-card.mode-ai {
    border-color: rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), transparent);
}

.section-light .mode-icon {
    background: var(--bg-light-secondary);
    color: var(--text-light-secondary);
}

.section-light .mode-ai .mode-icon {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-light-primary);
}

.section-light .mode-card h3 {
    color: var(--text-light-primary);
}

.section-light .mode-card > p {
    color: var(--text-light-secondary);
}

.section-light .mode-features li {
    color: var(--text-light-secondary);
    border-color: var(--border-light);
}

.section-light .mode-features li::before {
    color: var(--text-light-muted);
}

.section-light .mode-example {
    background: var(--bg-light-secondary);
}

.section-light .mode-label {
    color: var(--text-light-muted);
}

.section-light .mode-example code {
    color: var(--text-light-secondary);
}

.section-light .mode-badge {
    background: var(--text-light-primary);
    color: var(--bg-light);
}

.section-light .two-modes-tagline {
    color: var(--text-light-muted);
}

/* Light mode Comparison Slider */
.section-light .comparison-slider {
    border-color: var(--border-light);
}

.section-light .comparison-label {
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-primary);
}

/* Light Section - Slider Handle */
.section-light .slider-handle {
    background: var(--text-light-primary);
}

.section-light .slider-handle::before,
.section-light .slider-handle::after {
    border-color: var(--text-light-primary);
}

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

/* ========================================
   FEATURES OVERVIEW SECTION
   ======================================== */

.features-overview {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.features-overview .section-header {
    margin-bottom: 64px;
}

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

.feature-overview-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

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

.feature-overview-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    margin-bottom: 24px;
    background: var(--bg-light);
}

.feature-overview-icon svg {
    color: var(--accent-color);
}

.feature-overview-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light-primary);
    margin-bottom: 12px;
}

.feature-overview-card p {
    font-size: 0.95rem;
    color: var(--text-light-secondary);
    line-height: 1.7;
}

.features-overview-note {
    text-align: center;
    margin-top: 64px;
    font-size: 1rem;
    color: var(--text-light-secondary);
}

.features-overview-note .brand-name {
    color: var(--accent-color);
    font-weight: 600;
}

.features-overview-note a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.features-overview-note a:hover {
    text-decoration: underline;
}

.features-overview-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 24px auto 0;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 100px;
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.features-overview-footer {
    text-align: center;
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-overview-cta:hover {
    background: var(--accent-color);
    color: white;
}

.features-overview-cta svg {
    transition: transform 0.3s ease;
}

.features-overview-cta:hover svg {
    transform: translateX(4px);
}

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

@media (max-width: 768px) {
    .features-overview-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .feature-overview-card {
        padding: 32px 24px;
    }
}

/* ========================================
   PROBLEMS SECTION
   ======================================== */

.problems-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.problem-card-dark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.problem-card-dark:hover {
    background: var(--accent-hover);
}

.problem-card-dark .problem-number,
.problem-card-dark h3,
.problem-card-dark p {
    color: white;
}

.problem-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 24px;
    display: block;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.problems-solution {
    text-align: center;
    margin-top: 64px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.problems-solution .brand-name {
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 64px auto 0;
    }
}

@media (max-width: 768px) {
    .problem-card {
        padding: 32px 24px;
    }
    
    .problem-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   TARGET SECTION (Zielgruppen)
   ======================================== */

.target-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    background: var(--accent-color);
    color: white;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 8px;
}

/* Minimal Target Grid - Apple Style */
.target-grid-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-color);
    max-width: 1200px;
    margin: 0 auto;
}

.target-item {
    background: var(--bg-secondary);
    padding: 64px 48px;
    text-align: center;
}

.target-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.target-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

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

@media (max-width: 768px) {
    .target-grid-minimal {
        grid-template-columns: 1fr;
    }
    
    .target-item {
        padding: 48px 32px;
    }
}

/* Light Section - Target Grid Minimal */
.section-light .target-grid-minimal {
    background: var(--border-light);
}

.section-light .target-item {
    background: var(--bg-light);
}

.section-light .target-item h3 {
    color: var(--text-light-primary);
}

.section-light .target-item p {
    color: var(--text-light-secondary);
}

/* Legacy Target Grid */
.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.target-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.target-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.target-card.target-soon {
    opacity: 0.7;
}

.target-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.target-status.status-live {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.target-status.status-soon {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.target-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.target-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.target-card > p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.target-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.target-features li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.target-features li:last-child {
    border-bottom: none;
}

.target-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .target-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ========================================
   AI FEATURES SECTION
   ======================================== */

.ai-features-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.ai-features-section.section-light {
    background: var(--bg-light);
}

/* Minimal Features - Apple Style */
.features-minimal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 120px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-minimal-item {
    text-align: left;
}

.feature-minimal-item h3 {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-minimal-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-light .feature-minimal-item h3 {
    color: var(--text-light-primary);
}

.section-light .feature-minimal-item p {
    color: var(--text-light-secondary);
}

@media (max-width: 768px) {
    .features-minimal {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ai-feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: var(--transition);
}

.ai-feature-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.ai-feature-card.ai-feature-large {
    grid-column: span 3;
    display: flex;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), transparent);
    border-color: rgba(59, 130, 246, 0.2);
}

.ai-feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.5;
}

.ai-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.ai-feature-large .ai-feature-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 0;
}

.ai-feature-content {
    flex: 1;
}

.ai-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.ai-feature-large h3 {
    font-size: 1.35rem;
}

.ai-feature-card > p,
.ai-feature-content > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.ai-feature-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.ai-feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Feature Flow - Clean Design */
.ai-feature-flow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-primary);
    flex: 1;
    transition: all 0.3s ease;
}

.flow-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.flow-number {
    width: 28px;
    height: 28px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Light mode AI Features */
.section-light .ai-feature-card {
    background: var(--bg-light);
    border-color: var(--border-light);
}

.section-light .ai-feature-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.section-light .ai-feature-number {
    color: rgba(0, 0, 0, 0.04);
}

.section-light .ai-feature-icon {
    background: var(--bg-light-secondary);
    color: var(--text-light-primary);
}

.section-light .ai-feature-card h3 {
    color: var(--text-light-primary);
}

.section-light .ai-feature-card > p,
.section-light .ai-feature-content > p {
    color: var(--text-light-secondary);
}

.section-light .ai-feature-tag {
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-light-muted);
}

.section-light .flow-step {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--border-light);
    color: var(--text-light-secondary);
}

.section-light .flow-step:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.15);
}

.section-light .flow-number {
    background: var(--text-light-primary);
    color: var(--bg-light);
}

.section-light .flow-arrow {
    background: var(--border-light);
}

.flow-arrow {
    width: 24px;
    height: 1px;
    background: var(--border-color);
    position: relative;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--text-muted);
    border-top: 1px solid var(--text-muted);
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-feature-card.ai-feature-large {
        grid-column: span 1;
        flex-direction: column;
        gap: 20px;
    }
    
    .ai-feature-flow {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        align-self: center;
    }
}

/* ========================================
   COMPARISON TABLE SECTION
   ======================================== */

.comparison-table-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.comparison-header {
    background: var(--bg-primary);
}

.comparison-cell {
    padding: 16px 20px;
    font-size: 0.9rem;
}

.comparison-header .comparison-cell {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.cell-task {
    font-weight: 500;
    color: var(--text-primary);
}

.cell-before {
    background: rgba(239, 68, 68, 0.05);
    color: var(--text-secondary);
    border-left: 1px solid var(--border-color);
}

.cell-after {
    background: rgba(34, 197, 94, 0.05);
    color: var(--text-primary);
    border-left: 1px solid var(--border-color);
}

.comparison-header .cell-before {
    color: #ef4444;
}

.comparison-header .cell-after {
    color: #22c55e;
}

@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        padding: 12px 16px;
    }
    
    .cell-task {
        background: var(--bg-primary);
        font-weight: 600;
    }
    
    .cell-before,
    .cell-after {
        border-left: none;
        padding-left: 32px;
        position: relative;
    }
    
    .cell-before::before {
        content: 'Vorher: ';
        color: #ef4444;
        font-weight: 500;
    }
    
    .cell-after::before {
        content: 'Jetzt: ';
        color: #22c55e;
        font-weight: 500;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.testimonials-section.section-light {
    background: var(--bg-light);
}

/* Hero Quote Section - Apple Style */
.quote-section {
    padding: 200px 0;
    background: var(--bg-primary);
}

.quote-section.section-light {
    background: var(--bg-light);
}

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

.hero-quote p {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.hero-quote cite {
    font-size: 1rem;
    font-style: normal;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.section-light .hero-quote p {
    color: var(--text-light-primary);
}

.section-light .hero-quote cite {
    color: var(--text-light-muted);
}

/* Testimonial Minimal */
.testimonial-minimal {
    padding: 100px 0;
    text-align: center;
}

.testimonial-text-minimal {
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.testimonial-author-minimal {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.section-light .testimonial-text-minimal {
    color: var(--text-light-secondary);
}

.section-light .testimonial-author-minimal {
    color: var(--text-light-muted);
}

/* Feature Pages */
.feature-hero {
    padding: 180px 0 120px;
    text-align: center;
}

.feature-hero-desc {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.feature-coming-soon {
    margin-top: 24px;
    font-size: var(--text-sm);
    color: var(--accent);
    background: rgba(0, 122, 255, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    display: inline-block;
}

.feature-details {
    padding: var(--section-padding) 0;
}

.feature-benefits {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.feature-benefits.section-light {
    background: var(--bg-light);
}

/* Roadmap Section - Apple Style */
.roadmap-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.roadmap-hours {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 16px;
}

.roadmap-timeline {
    max-width: 600px;
    margin: 80px auto 0;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border-color);
}

.roadmap-item {
    display: flex;
    align-items: baseline;
    gap: 48px;
    padding: 20px 0;
    position: relative;
}

.roadmap-item::after {
    content: '';
    position: absolute;
    left: 116px;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
}

.roadmap-date {
    width: 100px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: right;
    flex-shrink: 0;
}

.roadmap-text {
    font-size: 1rem;
    color: var(--text-secondary);
    padding-left: 24px;
}

.roadmap-current::after {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(0, 122, 255, 0.4);
}

.roadmap-current .roadmap-text {
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 640px) {
    .roadmap-timeline::before {
        left: 0;
    }
    
    .roadmap-item {
        flex-direction: column;
        gap: 8px;
        padding-left: 24px;
    }
    
    .roadmap-item::after {
        left: -4px;
    }
    
    .roadmap-date {
        width: auto;
        text-align: left;
    }
    
    .roadmap-text {
        padding-left: 0;
    }
}

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

.testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.testimonial-quote {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--accent);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

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

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ========================================
   PAGE HERO (Unterseiten)
   ======================================== */

.page-hero {
    padding: 160px 0 80px;
    background: var(--bg-primary);
    text-align: center;
}

.page-hero .container {
    max-width: 800px;
}

.page-hero .hero-tag {
    display: inline-block;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero .hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
}

/* ========================================
   PARTNERSHIP PAGE
   ======================================== */

.partnership-form-section {
    padding: var(--section-padding) 0;
}

.partnership-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.partnership-form-header {
    text-align: center;
    margin-bottom: 48px;
}

.partnership-form-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: 12px;
}

.partnership-form-header p {
    color: var(--text-secondary);
}

.partnership-form .form-group {
    margin-bottom: 28px;
}

.partnership-form label {
    display: block;
    font-size: var(--text-base);
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.partnership-form input,
.partnership-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    transition: var(--transition);
}

.partnership-form input:focus,
.partnership-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-secondary);
}

.partnership-form textarea {
    resize: vertical;
    min-height: 100px;
}

.partnership-form .btn-large {
    width: 100%;
    padding: 18px 32px;
    font-size: var(--text-lg);
    justify-content: center;
    gap: 12px;
}

.partnership-success {
    text-align: center;
    padding: 64px 32px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.partnership-success .success-icon {
    color: #22c55e;
    margin-bottom: 24px;
}

.partnership-success h3 {
    font-size: var(--text-2xl);
    margin-bottom: 12px;
}

.partnership-success p {
    color: var(--text-secondary);
}

/* ========================================
   HELP CENTER PAGE
   ======================================== */

.help-search {
    position: relative;
    max-width: 500px;
    margin: 32px auto 0;
}

.help-search input {
    width: 100%;
    padding: 18px 24px;
    padding-left: 56px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-primary);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    transition: var(--transition);
}

.help-search input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-secondary);
}

.help-search svg {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.help-categories {
    padding: var(--section-padding) 0;
}

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

.help-card {
    display: block;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    transition: var(--transition);
}

.help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.help-card-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-light-primary);
}

.help-card h3 {
    font-size: var(--text-lg);
    color: var(--text-light-primary);
    margin-bottom: 8px;
}

.help-card p {
    color: var(--text-light-secondary);
    font-size: var(--text-sm);
}

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

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
}

.faq-section h2 {
    font-size: var(--text-3xl);
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: var(--text-base);
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    text-align: left;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   SUPPORT PAGE
   ======================================== */

.support-options {
    padding: var(--section-padding) 0;
}

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

.support-card {
    display: block;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.support-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-light-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-light-primary);
}

.support-card h3 {
    font-size: var(--text-lg);
    color: var(--text-light-primary);
    margin-bottom: 8px;
}

.support-detail {
    color: var(--text-light-primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.support-time {
    color: var(--text-light-secondary);
    font-size: var(--text-sm);
}

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

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

/* Support Promise */
.support-promise {
    padding: var(--section-padding) 0;
    text-align: center;
}

.support-promise h2 {
    font-size: var(--text-3xl);
    margin-bottom: 48px;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.promise-item {
    text-align: center;
}

.promise-number {
    display: block;
    font-size: var(--text-4xl);
    font-weight: 600;
    margin-bottom: 12px;
}

.promise-item p {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Quick Help */
.quick-help {
    padding: 80px 0;
}

.quick-help h2 {
    font-size: var(--text-2xl);
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-light-primary);
}

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

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--text-light-primary);
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.quick-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========================================
   COMPARISON PAGE
   ======================================== */

.compare-main {
    padding: var(--section-padding) 0;
}

.compare-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.compare-hero-item {
    padding: 32px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.compare-hero-item h3 {
    font-size: var(--text-xl);
    color: var(--text-light-primary);
    margin-bottom: 12px;
}

.compare-hero-item p {
    color: var(--text-light-secondary);
    line-height: 1.7;
}

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

/* Comparison Table */
.compare-table-section {
    padding: var(--section-padding) 0;
}

.compare-table-section h2 {
    font-size: var(--text-3xl);
    text-align: center;
    margin-bottom: 48px;
}

.compare-table-wrapper {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: var(--text-sm);
}

.compare-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-top: 24px;
    opacity: 0.7;
}

.compare-table th,
.compare-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.compare-table th {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.compare-table th.highlight {
    color: var(--text-primary);
}

.compare-table td {
    color: var(--text-secondary);
}

.compare-table td.highlight {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.compare-table .check {
    color: #22c55e;
    font-size: 1.2em;
}

.compare-table .cross {
    color: #ef4444;
    font-size: 1.2em;
}

.compare-table .partial,
.compare-table .extra {
    color: #f59e0b;
    font-size: var(--text-sm);
}

/* Why Switch */
.why-switch {
    padding: var(--section-padding) 0;
}

.why-switch h2 {
    font-size: var(--text-3xl);
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-light-primary);
}

.switch-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.switch-reason {
    padding: 32px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.switch-quote {
    display: block;
    font-size: var(--text-lg);
    color: var(--text-light-primary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.switch-type {
    color: var(--text-light-secondary);
    font-size: var(--text-sm);
}

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

/* Migration Section */
.migration-section {
    padding: var(--section-padding) 0;
    text-align: center;
}

.migration-section h2 {
    font-size: var(--text-3xl);
    margin-bottom: 48px;
}

.migration-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.migration-step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: 16px;
}

.migration-step h3 {
    font-size: var(--text-lg);
    margin-bottom: 8px;
}

.migration-step p {
    color: var(--text-secondary);
}

.migration-cta .btn-large {
    padding: 18px 48px;
    font-size: var(--text-lg);
}

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

/* ========================================
   BLOG PAGE
   ======================================== */

.blog-section {
    padding: var(--section-padding) 0;
}

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

.blog-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 28px;
}

.blog-card-date {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-light-secondary);
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: var(--text-xl);
    color: var(--text-light-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light-primary);
    font-weight: 500;
    text-decoration: none;
    font-size: var(--text-sm);
}

.blog-read-more:hover {
    text-decoration: underline;
}

.blog-loading,
.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px;
    color: var(--text-light-secondary);
}

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

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

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    text-align: center;
}

.newsletter-section h2 {
    font-size: var(--text-2xl);
    margin-bottom: 12px;
}

.newsletter-section > .container > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-primary);
    font-size: var(--text-base);
    font-family: var(--font-primary);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form .btn {
    border-radius: 100px;
}

@media (max-width: 640px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: var(--text-2xl);
    margin-bottom: 12px;
    color: var(--text-light-primary);
}

.cta-section > .container > p {
    color: var(--text-light-secondary);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-light .cta-buttons .btn-secondary {
    background: var(--bg-light);
    color: var(--text-light-primary);
    border: 1px solid var(--border-light);
}

/* ========================================
   WORKFLOW FLOW SECTION
   ======================================== */

.workflow-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    overflow: hidden;
}

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

.workflow-section .section-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.workflow-section .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.workflow-section .section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.workflow-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-step {
    flex: 1;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 12px;
}

.workflow-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.workflow-step:hover .workflow-step-icon {
    background: var(--bg-secondary);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.workflow-step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
    opacity: 0.9;
}

.workflow-step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-step-title {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.workflow-step-desc {
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: 1.5;
}

.workflow-hint {
    text-align: center;
    font-size: var(--text-sm);
    font-style: italic;
    color: var(--text-muted);
    margin-top: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Connector Line */
.workflow-connector {
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 1px;
    z-index: 1;
}

.workflow-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--border-color) 0%, rgba(255,255,255,0.15) 50%, var(--border-color) 100%);
}

.workflow-connector-arrow {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    opacity: 0.5;
}

.workflow-connector-arrow svg {
    width: 12px;
    height: 12px;
}

/* Last step has no connector */
.workflow-step:last-child .workflow-connector {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .workflow-flow {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }
    
    .workflow-step {
        max-width: 280px;
    }
    
    .workflow-connector {
        top: auto;
        bottom: -32px;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 32px;
    }
    
    .workflow-connector::before {
        width: 1px;
        height: 100%;
        background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, var(--border-color) 100%);
    }
    
    .workflow-connector-arrow {
        right: auto;
        bottom: -6px;
        top: auto;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
}

/* ========================================
   FEATURES PAGE
   ======================================== */

/* Features Page Hero */
.features-page-hero {
    padding-bottom: 60px;
}

/* Sticky Category Navigation */
.features-nav {
    position: sticky;
    top: 70px;
    z-index: 50;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.features-nav-inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 16px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.features-nav-inner::-webkit-scrollbar {
    display: none;
}

.features-nav-item {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 100px;
    white-space: nowrap;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.features-nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.features-nav-item.active {
    color: white;
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Features Category Section */
.features-category {
    padding: var(--section-padding) 0;
}

.features-category .section-header {
    margin-bottom: 64px;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Feature Row */
.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-row:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(8px);
}

.section-light .feature-row {
    background: white;
    border-color: var(--border-light);
}

.section-light .feature-row:hover {
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Feature Number */
.feature-number {
    flex-shrink: 0;
    width: 80px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

/* Feature Content - Features Page */
.feature-row .feature-content {
    flex: 1;
    min-width: 0;
    display: block !important;
}

/* Feature Content */
.feature-row .feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-light .feature-row .feature-content h3 {
    color: var(--text-light-primary);
}

.feature-row .feature-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-light .feature-row .feature-content p {
    color: var(--text-light-secondary);
}

/* Feature Examples List */
.feature-examples {
    margin-top: 16px;
    padding-left: 20px;
}

.feature-examples li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.6;
}

.section-light .feature-examples li {
    color: var(--text-light-secondary);
}

/* Feature Icon */
.feature-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-left: auto;
}

.feature-icon svg {
    color: var(--accent-color);
}

.section-light .feature-icon {
    background: var(--bg-light);
    border-color: var(--border-light);
}

/* Feature Highlight */
.feature-highlight {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(0, 122, 255, 0.02));
    border-color: rgba(0, 122, 255, 0.3);
}

.section-light .feature-highlight {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.08), rgba(0, 122, 255, 0.02));
    border-color: rgba(0, 122, 255, 0.2);
}

/* Coming Soon Features */
.features-coming-soon .feature-row {
    opacity: 0.7;
}

.features-coming-soon .feature-row:hover {
    opacity: 1;
}

/* Features CTA */
.features-cta {
    padding: var(--section-padding) 0;
    text-align: center;
    background: var(--bg-primary);
}

.features-cta .section-header {
    margin-bottom: 40px;
}

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

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active,
.no-js .reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: Show content after short delay if JS fails */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        animation: revealFallback 0s ease forwards;
        animation-delay: 1s;
    }
    
    .reveal.active {
        animation: none;
    }
}

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

/* Staggered Animation Delays */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ========================================
   FEATURES PAGE RESPONSIVE
   ======================================== */

@media (max-width: 900px) {
    .feature-row {
        gap: 24px;
        padding: 32px;
    }
    
    .feature-icon {
        display: none;
    }
    
    .feature-number {
        width: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .features-nav {
        top: 60px;
    }
    
    .features-nav-inner {
        padding: 12px 0;
    }
    
    .features-nav-item {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    
    .feature-number {
        width: auto;
        font-size: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .feature-row:hover {
        transform: none;
    }
}
