/* PAGE-SPECIFIC STYLES ONLY - base/nav/footer/reset CSS is in main.css */

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

        .section-alt {
            background: var(--bg-darker);
        }

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

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

        .section-label {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(81, 45, 168, 0.1);
            border: 1px solid rgba(81, 45, 168, 0.3);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Hero Section */
        .hero-section {
            padding: 90px 0 40px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

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

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

        /* Trust Badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(81, 45, 168, 0.15), rgba(0, 86, 210, 0.15));
            border: 1px solid rgba(81, 45, 168, 0.3);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        .hero-badge i {
            color: var(--primary);
        }

        .hero-title {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .hero-subtitle strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            flex-wrap: nowrap;
        }

        /* Enhanced Button with Pulse */
        .btn-pulse {
            position: relative;
            overflow: hidden;
        }

        .btn-pulse::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-pulse:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-subtext {
            display: block;
            font-size: 11px;
            font-weight: 400;
            opacity: 0.9;
            margin-top: 2px;
        }

        /* Hero button icon + text layout */
        .btn-icon-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.1rem;
        }

        .btn-text-wrap {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.2;
        }

        /* Value Props List */
        .hero-values {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 24px;
            margin-bottom: 32px;
        }

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

        .value-item i {
            color: #10B981;
            font-size: 16px;
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 40px;
        }

        .stat-mini {
            flex: 1;
        }

        .stat-value {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
            font-feature-settings: 'tnum';
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Hero Visual */
        .hero-visual {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            position: relative;
        }

        .visual-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(81, 45, 168, 0.2) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            pointer-events: none;
            animation: pulse-glow 3s ease-in-out infinite;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }

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

        .visual-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-secondary);
            background: var(--bg-card);
            padding: 8px 16px;
            border-radius: 50px;
            border: 1px solid var(--border-color);
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .visual-header i {
            color: var(--primary);
            margin-right: 8px;
        }

        .visual-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 24px;
        }

        .metric-box {
            background: rgba(81, 45, 168, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 16px;
            text-align: center;
            position: relative;
        }

        .metric-box .value {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .metric-box .label {
            font-size: 12px;
            color: var(--text-secondary);
            text-transform: uppercase;
        }

        .metric-highlight {
            border: 2px solid var(--primary) !important;
            background: linear-gradient(135deg, rgba(81, 45, 168, 0.2), rgba(0, 86, 210, 0.1)) !important;
            position: relative;
        }

        .metric-trend {
            position: absolute;
            top: 8px;
            right: 8px;
            color: #10B981;
            font-size: 12px;
        }

        /* Before/After Comparison Chart */
        .comparison-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .comparison-section {
            background: rgba(81, 45, 168, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 16px;
            position: relative;
        }

        .comparison-section.before {
            border-left: 4px solid #EF4444;
        }

        .comparison-section.after {
            border-left: 4px solid #10B981;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(81, 45, 168, 0.05));
        }

        .comparison-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .comparison-label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-secondary);
        }

        .comparison-section.before .comparison-label {
            color: #EF4444;
        }

        .comparison-section.after .comparison-label {
            color: #10B981;
        }

        .efficiency-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
        }

        .comparison-section.before .efficiency-badge {
            background: rgba(239, 68, 68, 0.1);
            color: #EF4444;
        }

        .comparison-section.after .efficiency-badge {
            background: rgba(16, 185, 129, 0.1);
            color: #10B981;
        }

        .workload-bars {
            display: flex;
            gap: 8px;
            align-items: flex-end;
            height: 60px;
        }

        .workload-bar {
            flex: 1;
            border-radius: 4px 4px 0 0;
            position: relative;
            transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .comparison-section.before .workload-bar {
            background: linear-gradient(180deg, #EF4444, #F87171);
        }

        .comparison-section.after .workload-bar {
            background: linear-gradient(180deg, var(--primary), var(--accent));
        }

        .workload-bar.overloaded {
            background: linear-gradient(180deg, #DC2626, #EF4444) !important;
        }

        .workload-bar.underloaded {
            background: linear-gradient(180deg, #F59E0B, #FBBF24) !important;
        }

        .takt-line {
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--text-secondary);
            top: 15px;
        }

        .takt-line::before {
            content: 'Takt';
            position: absolute;
            right: 0;
            top: -18px;
            font-size: 10px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .station-labels {
            display: flex;
            gap: 8px;
            margin-top: 6px;
        }

        .station-label {
            flex: 1;
            text-align: center;
            font-size: 10px;
            color: var(--text-secondary);
        }

        .improvement-arrow {
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary);
            font-size: 20px;
            animation: bounce-down 1.5s ease-in-out infinite;
        }

        @keyframes bounce-down {

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

            50% {
                transform: translateY(4px);
            }
        }

        .improvement-stats {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
        }

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

        .improvement-stat .value {
            font-size: 20px;
            font-weight: 700;
            color: #10B981;
        }

        .improvement-stat .label {
            font-size: 11px;
            color: var(--text-secondary);
            text-transform: uppercase;
        }

        /* Problems Section */
        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
            gap: 24px;
        }

        .problem-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 28px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .problem-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.4s ease;
            border-radius: 50%;
            pointer-events: none;
        }

        .problem-card:hover {
            border-color: var(--primary);
            transform: translateY(-8px) scale(1.02);
            box-shadow:
                0 20px 60px rgba(239, 68, 68, 0.15),
                0 0 0 1px rgba(81, 45, 168, 0.1);
        }

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

        .problem-card:hover::after {
            transform: translate(-50%, -50%) scale(1);
        }

        .problem-icon {
            font-size: 40px;
            margin-bottom: 16px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            display: inline-block;
        }

        .problem-card:hover .problem-icon {
            transform: scale(1.2) rotate(10deg);
            filter: drop-shadow(0 4px 12px rgba(239, 68, 68, 0.3));
        }

        .problem-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

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

        .problem-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .problem-card:hover p {
            color: var(--text-primary);
        }

        /* Tools Section */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .tool-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 28px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

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

        .tool-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(81, 45, 168, 0.08) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .tool-card:hover {
            border-color: var(--primary);
            transform: translateY(-8px) scale(1.02);
            box-shadow:
                0 20px 60px rgba(81, 45, 168, 0.2),
                0 0 0 1px rgba(81, 45, 168, 0.1);
        }

        .tool-card:hover::before {
            transform: scaleY(1);
        }

        .tool-card:hover::after {
            opacity: 1;
        }

        .tool-card:hover .tool-icon {
            transform: scale(1.1) rotate(5deg);
            color: var(--primary-light);
        }

        .tool-card:hover .tool-badge {
            transform: scale(1.05);
        }

        .tool-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .tool-icon {
            font-size: 32px;
            color: var(--primary);
            transition: all 0.3s;
        }

        .tool-badge {
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: rgba(81, 45, 168, 0.1);
            color: var(--primary);
            border: 1px solid rgba(81, 45, 168, 0.3);
            transition: transform 0.3s ease;
        }

        .tool-badge.soon {
            background: rgba(251, 146, 60, 0.1);
            color: #FB923C;
            border-color: rgba(251, 146, 60, 0.3);
        }

        .tool-body {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .tool-body h3 {
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .tool-body p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .tool-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tool-tag {
            padding: 4px 10px;
            background: rgba(81, 45, 168, 0.08);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* How It Works */
        .steps-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .step {
            text-align: center;
        }

        .step-num {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
        }

        .step h3 {
            font-size: 22px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .step p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 15px;
        }

        /* Stats Ticker Section */
        .stats-ticker-section {
            background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
            padding: 0;
            overflow: hidden;
        }

        .stats-ticker-track {
            display: flex;
            animation: stats-scroll 25s linear infinite;
            width: max-content;
        }

        .stats-ticker-content {
            display: flex;
            align-items: center;
            padding: 24px 0;
        }

        .stats-ticker-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 48px;
            white-space: nowrap;
            border-right: 1px solid rgba(255, 255, 255, 0.15);
        }

        .stats-ticker-item:last-child {
            border-right: none;
        }

        .stats-ticker-item .stat-icon {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.9);
        }

        .stats-ticker-item .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: white;
        }

        .stats-ticker-item .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
        }

        @keyframes stats-scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .stats-ticker-section:hover .stats-ticker-track {
            animation-play-state: paused;
        }

        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials-section {
            background: var(--bg-darker);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
            gap: 24px;
            margin-bottom: 60px;
        }

        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 28px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 120px;
            color: rgba(81, 45, 168, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: 0 12px 40px rgba(81, 45, 168, 0.15);
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .testimonial-stars i {
            color: #FDB022;
            font-size: 16px;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-primary);
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 15px;
            margin-bottom: 2px;
        }

        .author-role {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .testimonial-metric {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .metric-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }

        .metric-label {
            font-size: 12px;
            color: var(--text-secondary);
        }

        /* Trust Logos */
        .trust-logos {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid var(--border-color);
        }

        .trust-text {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            font-weight: 600;
        }

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

        .logo-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 16px 24px;
            border-radius: 8px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            opacity: 0.7;
        }

        .logo-placeholder:hover {
            opacity: 1;
            transform: translateY(-2px);
            border-color: var(--primary);
        }

        .logo-placeholder i {
            font-size: 28px;
            color: var(--primary);
        }

        .logo-placeholder span {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item.active {
            border-color: var(--primary);
        }

        .faq-q {
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.2s;
        }

        .faq-q:hover {
            color: var(--primary);
        }

        .faq-icon {
            color: var(--text-secondary);
            transition: transform 0.3s;
            font-size: 14px;
        }

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

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

        .faq-item.active .faq-a {
            max-height: 200px;
        }

        .faq-a-inner {
            padding: 0 24px 20px 24px;
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 15px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-dark) 100%);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-gradient-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(126, 87, 194, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 86, 210, 0.3) 0%, transparent 50%);
            animation: gradient-shift 8s ease-in-out infinite;
        }

        @keyframes gradient-shift {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 0.8;
            }
        }

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

        .cta-icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .cta-icon-wrapper i {
            font-size: 36px;
            color: white;
        }

        .cta-title {
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .cta-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-subtitle strong {
            color: white;
            font-weight: 600;
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            font-size: 15px;
        }

        .cta-feature i {
            color: #10B981;
            font-size: 18px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .cta-section .cta-buttons .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-width: 220px;
            font-weight: 700;
            letter-spacing: 0.2px;
            line-height: 1.2;
            border-width: 1.5px;
            text-shadow: none;
        }

        .cta-section .btn-white {
            background: #ffffff !important;
            color: #0f172a !important;
            border-color: #ffffff !important;
            box-shadow: 0 10px 30px rgba(2, 6, 23, 0.2);
        }

        .cta-section .btn-white i,
        .cta-section .btn-white .btn-arrow {
            color: #0f172a !important;
            opacity: 1;
        }

        .cta-section .btn-white:hover {
            background: #f8fafc !important;
            color: #020617 !important;
            transform: translateY(-2px);
            box-shadow: 0 14px 34px rgba(2, 6, 23, 0.26);
        }

        .cta-section .btn-ghost {
            background: rgba(255, 255, 255, 0.16) !important;
            color: #ffffff !important;
            border-color: rgba(255, 255, 255, 0.55) !important;
            box-shadow: 0 8px 24px rgba(2, 6, 23, 0.16);
        }

        .cta-section .btn-ghost i {
            color: #ffffff !important;
        }

        .cta-section .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.24) !important;
            border-color: rgba(255, 255, 255, 0.8) !important;
            transform: translateY(-2px);
        }

        html.dark .cta-section .btn-ghost {
            background: rgba(255, 255, 255, 0.2) !important;
            border-color: rgba(255, 255, 255, 0.65) !important;
        }

        .btn-arrow {
            display: inline-block;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .btn:hover .btn-arrow {
            transform: translateX(4px);
        }

        .cta-note {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .cta-note i {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Newsletter */
        .newsletter-section {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, #faf5ff 0%, #e0e7ff 100%);
            border-top: 1px solid rgba(81, 45, 168, 0.2);
            border-bottom: 1px solid rgba(81, 45, 168, 0.2);
            position: relative;
        }

        .newsletter-section .section-label,
        .newsletter-section .section-title,
        .newsletter-section .section-subtitle {
            color: #0F172A;
        }

        .newsletter-section .section-label {
            background: rgba(81, 45, 168, 0.1);
            border-color: rgba(81, 45, 168, 0.3);
            color: var(--primary);
        }

        .newsletter-section .section-subtitle {
            color: #475569;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 32px auto 0;
            display: flex;
            gap: 12px;
        }

        .newsletter-input {
            flex: 1;
            padding: 14px 20px;
            border: 1px solid rgba(81, 45, 168, 0.3);
            border-radius: 8px;
            background: white;
            color: #0F172A;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.2s;
        }

        .newsletter-input::placeholder {
            color: #94A3B8;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(81, 45, 168, 0.15);
            background: white;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

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

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

        .animate-fade-up {
            animation: fadeUp 0.8s ease-out forwards;
            opacity: 0;
        }

        .animate-fade-left {
            animation: fadeLeft 0.8s ease-out forwards;
            opacity: 0;
        }

        /* Light Mode - Newsletter stays light, Footer stays dark */
        html.dark .newsletter-section {
            background: linear-gradient(135deg, #faf5ff 0%, #e0e7ff 100%);
        }

        html.dark .newsletter-section .section-label,
        html.dark .newsletter-section .section-title,
        html.dark .newsletter-section .section-subtitle {
            color: #0F172A;
        }

        html.dark .newsletter-section .section-label {
            background: rgba(81, 45, 168, 0.1);
            border-color: rgba(81, 45, 168, 0.3);
            color: var(--primary);
        }

        html.dark .newsletter-section .section-subtitle {
            color: #475569;
        }

        html.dark .newsletter-input {
            background: white;
            border-color: rgba(81, 45, 168, 0.3);
            color: #0F172A;
        }

        html.dark .newsletter-input::placeholder {
            color: #94A3B8;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-visual {
                order: -1;
            }

            .hero-title {
                font-size: 42px;
            }

            .hero-values {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

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

            .logos-row {
                gap: 24px;
            }

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

            .chaos-container {
                height: 360px;
            }

            .processor-gate {
                width: 60px;
                height: 220px;
            }

            .gate-pulse {
                width: 80px;
                height: 240px;
            }
        }

        @media (max-width: 640px) {
            .hero-section {
                padding: 80px 0 30px;
                min-height: auto;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

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

            .hero-stats {
                flex-direction: column;
                gap: 16px;
            }

            .stat-mini {
                width: 100%;
            }

            .section-title {
                font-size: 32px;
            }

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

            .hero-badge {
                font-size: 11px;
                padding: 6px 12px;
            }

            .cta-title {
                font-size: 32px;
            }

            .cta-subtitle {
                font-size: 16px;
            }

            .cta-features {
                flex-direction: column;
                gap: 12px;
            }

            .cta-icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .cta-icon-wrapper i {
                font-size: 28px;
            }

            .visual-metrics {
                grid-template-columns: 1fr 1fr;
            }

            .visual-glow {
                width: 250px;
                height: 250px;
            }

            .improvement-stats {
                flex-wrap: wrap;
                gap: 12px;
            }

            .improvement-stat .value {
                font-size: 18px;
            }

            .stats-ticker-item {
                padding: 0 24px;
            }

            .stats-ticker-item .stat-number {
                font-size: 24px;
            }

            .stats-ticker-item .stat-label {
                font-size: 12px;
            }

            .chaos-container {
                height: 280px;
            }

            .processor-gate {
                width: 50px;
                height: 180px;
            }

            .gate-pulse {
                width: 70px;
                height: 200px;
            }

            .processor-gate i {
                font-size: 24px !important;
            }

            .label-chaos,
            .label-order {
                font-size: 11px;
                bottom: 15px;
            }

            .label-chaos {
                left: 15px;
            }

            .label-order {
                right: 15px;
            }

            .particle {
                width: 28px;
                height: 28px;
                font-size: 10px;
            }

            .faq-q {
                padding: 16px;
                font-size: 15px;
            }

            .faq-a-inner {
                padding: 0 16px 16px;
                font-size: 14px;
            }

            .logo-placeholder {
                padding: 12px 16px;
            }

            .logos-row {
                gap: 16px;
            }

            .cta-section {
                padding: 50px 0;
            }

            .cta-section .cta-buttons .btn {
                min-width: 100%;
            }
        }

        /* Ticker Bar */
        .ticker {
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            z-index: 99;
            background: linear-gradient(90deg, rgba(81, 45, 168, 0.15), rgba(0, 86, 210, 0.15));
            border-bottom: 1px solid var(--border-color);
            overflow: hidden;
        }

        html.dark .ticker {
            background: linear-gradient(90deg, rgba(81, 45, 168, 0.1), rgba(0, 86, 210, 0.1));
        }

        .ticker-inner {
            display: flex;
            gap: 2.5rem;
            white-space: nowrap;
            animation: ticker-scroll 20s linear infinite;
            padding: 0.65rem 1rem;
        }

        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--text-primary);
        }

        .ticker-item i {
            color: var(--primary);
        }

        @keyframes ticker-scroll {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .ticker-inner {
                animation-duration: 28s;
            }

            .stats-ticker-content {
                padding: 16px 0;
            }
        }

        @media (max-width: 480px) {
            .ticker {
                top: 50px;
            }

            .hero-section {
                padding-top: 70px;
            }

            .visual-metrics {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                padding: 16px;
            }

            .comparison-container {
                gap: 12px;
            }

            .comparison-section {
                padding: 12px;
            }

            .workload-bars {
                height: 50px;
            }

            .problem-card {
                padding: 20px;
            }

            .tool-card {
                padding: 20px;
            }

            .newsletter-section {
                padding: 50px 0;
            }
        }

        /* Glassmorphism Overrides */
        :root {
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(0, 0, 0, 0.12);
            --glass-blur: 12px;
            --glow-color: rgba(81, 45, 168, 0.15);
        }

        html.dark {
            --glass-bg: rgba(20, 27, 45, 0.6);
            --glass-border: rgba(255, 255, 255, 0.25);
            --glow-color: rgba(81, 45, 168, 0.25);
        }

        .problem-card,
        .tool-card,
        .testimonial-card {
            background: var(--glass-bg) !important;
            backdrop-filter: blur(var(--glass-blur));
            -webkit-backdrop-filter: blur(var(--glass-blur));
            border: 1px solid var(--glass-border) !important;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        /* Glow Effect - controlled by JS */
        .problem-card::before,
        .tool-card::after,
        .testimonial-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                    var(--glow-color),
                    transparent 40%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        /* Specific tweaks for cards that already have pseudos */
        .problem-card::after {
            /* Disable old after if it exists and conflicts, or reuse it?
               The problem-card had ::after for a hover effect. We are replacing it.
               We need to make sure we don't break the layout.
               The old ::after was:
               background: radial-gradient(...)
               transform: scale(0)
            */
            transform: none !important;
            width: 100% !important;
            height: 100% !important;
            top: 0 !important;
            left: 0 !important;
            border-radius: 0 !important;
            background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                    var(--glow-color),
                    transparent 40%) !important;
            opacity: 0;
        }

        .problem-card:hover::before,
        .tool-card:hover::after,
        .testimonial-card:hover::after,
        .problem-card:hover::after {
            opacity: 1;
        }

        /* Enhanced Chaos to Order Animation */
        .chaos-container {
            position: relative;
            height: 480px;
            background: linear-gradient(135deg, rgba(20, 27, 45, 0.4), rgba(81, 45, 168, 0.05));
            border-radius: 16px;
            border: 1px solid var(--glass-border);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .zone {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 50%;
            z-index: 1;
        }

        .zone-chaos {
            left: 0;
            background: radial-gradient(circle at 30% 50%, rgba(239, 68, 68, 0.05), transparent 70%);
        }

        .zone-order {
            right: 0;
            background: radial-gradient(circle at 70% 50%, rgba(16, 185, 129, 0.05), transparent 70%);
        }

        /* Conveyor Line */
        .conveyor-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #10B981 20%, #10B981 80%, transparent);
            opacity: 0.3;
            transform: translateY(16px);
            /* Below particles slightly */
        }

        .conveyor-line::after {
            content: '';
            position: absolute;
            top: -4px;
            left: 0;
            right: 0;
            bottom: -4px;
            background-image: linear-gradient(90deg, transparent 50%, rgba(16, 185, 129, 0.5) 50%);
            background-size: 40px 100%;
            animation: conveyor-move 1s linear infinite;
        }

        @keyframes conveyor-move {
            0% {
                background-position: 0 0;
            }

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

        .processor-gate {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            z-index: 10;
            backdrop-filter: blur(4px);
            box-shadow: 0 0 30px rgba(81, 45, 168, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gate-pulse {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 320px;
            border: 2px solid var(--primary);
            border-radius: 16px;
            opacity: 0;
            animation: gate-pulse 2s infinite;
            z-index: -1;
        }

        @keyframes gate-pulse {

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

            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.5;
            }
        }

        /* The laser scanner line */
        .processor-gate::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, #10B981, transparent);
            filter: drop-shadow(0 0 5px #10B981);
            animation: scan-vertical 2s linear infinite;
        }

        @keyframes scan-vertical {

            0%,
            100% {
                top: 5%;
                opacity: 0.5;
            }

            50% {
                top: 95%;
                opacity: 1;
            }
        }

        /* Labels */
        .label-chaos,
        .label-order {
            position: absolute;
            bottom: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 5;
        }

        .label-chaos {
            left: 40px;
            color: #EF4444;
            opacity: 0.8;
        }

        .label-order {
            right: 40px;
            color: #10B981;
            opacity: 0.9;
        }


        .particle {
            position: absolute;
            width: 36px;
            height: 36px;
            background: #EF4444;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            z-index: 5;
            animation: flow-complex 10s infinite cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Particles starting in chaos (Left) */
        .p1 {
            animation-delay: 0s;
        }

        .p2 {
            animation-delay: 2s;
        }

        .p3 {
            animation-delay: 4s;
        }

        .p4 {
            animation-delay: 6s;
        }

        .p5 {
            animation-delay: 8s;
        }

        @keyframes flow-complex {
            0% {
                left: -60px;
                top: 20%;
                transform: rotate(-10deg) scale(0.9);
                background: #EF4444;
                box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
            }

            10% {
                top: 70%;
                transform: rotate(20deg);
            }

            20% {
                top: 30%;
                transform: rotate(-15deg);
                /* Chaos jitter */
            }

            30% {
                top: 60%;
                transform: rotate(10deg);
            }

            40% {
                left: 40%;
                top: 50%;
                transform: translateY(-50%) rotate(45deg) scale(1.1);
                /* Entering Gate Zone */
                background: #F59E0B;
                box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
            }

            45% {
                left: 45%;
                top: 50%;
                transform: translateY(-50%) rotate(90deg) scale(0.8);
                /* Squeezed in Gate */
                background: white;
            }

            50% {
                left: 50%;
                top: 50%;
                transform: translateY(-50%) rotate(0deg) scale(1);
                /* Processed */
                background: #10B981;
                box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
            }

            55% {
                left: 55%;
                top: 50%;
                /* Locked to center line now */
                transform: translateY(-50%);
            }

            100% {
                left: 110%;
                top: 50%;
                transform: translateY(-50%);
                /* Smooth exit */
                background: var(--primary);
                box-shadow: 0 4px 12px rgba(81, 45, 168, 0.4);
            }
        }

        /* ROI Calculator Styles - Glassmorphism Polish */
        #roi-calculator {
            background: #0f172a;
            /* Dark base */
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        /* Ambient Glow Effects */
        #roi-calculator::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        #roi-calculator::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        .roi-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .roi-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .roi-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .input-card h3 {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 20px;
            color: #fff;
        }

        .input-group {
            margin-bottom: 12px;
        }

        .input-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            color: rgba(255, 255, 255, 0.7);
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-wrapper i {
            position: absolute;
            left: 16px;
            color: var(--primary-light);
            opacity: 0.9;
        }

        .input-wrapper input {
            width: 100%;
            padding: 10px 16px 10px 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.2);
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .input-wrapper input:focus {
            border-color: var(--primary-light);
            background: rgba(0, 0, 0, 0.4);
            outline: none;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
        }

        /* Force light text for all ROI labels/inputs regardless of theme */
        #roi-calculator label,
        #roi-calculator .section-title,
        #roi-calculator .section-subtitle,
        #roi-calculator .section-label,
        #roi-calculator h3,
        #roi-calculator p,
        #roi-calculator small,
        #roi-calculator .slider-value {
            color: #ffffff !important;
        }

        #roi-calculator .section-subtitle,
        #roi-calculator small,
        #roi-calculator label {
            color: rgba(255, 255, 255, 0.8) !important;
        }

        #roi-calculator small {
            display: block;
            margin-top: 4px;
            font-size: 12px;
        }

        .shift-selector {
            display: flex;
            gap: 8px;
        }

        .shift-btn {
            flex: 1;
            padding: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.7);
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s;
        }

        .shift-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .shift-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
        }

        .result-card {
            background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
            color: white;
            text-align: center;
            position: sticky;
            top: 100px;
        }

        .result-header h3 {
            color: white;
            font-size: 24px;
            margin-bottom: 8px;
        }

        .result-header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .annual-savings {
            font-size: 56px;
            font-weight: 800;
            margin: 16px 0 4px;
            color: #10B981;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .currency {
            font-size: 32px;
            opacity: 0.8;
            margin-top: 12px;
        }

        .savings-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .secondary-metrics {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .metric {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .metric .value {
            font-size: 24px;
            font-weight: 700;
        }

        .metric .label {
            font-size: 12px;
            opacity: 0.7;
        }

        .cta-note {
            margin-top: 12px;
            font-size: 12px;
            opacity: 0.6;
        }

        .highlight-cta {
            background: linear-gradient(135deg, #F59E0B, #D97706) !important;
            border-color: #F59E0B !important;
            box-shadow: 0 0 20px rgba(245, 158, 11, 0.4) !important;
            animation: pulse-gold 2s infinite;
        }

        @keyframes pulse-gold {
            0% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
            }
        }

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