/* home.css — page-specific rules (shared rules in common.css) */

:root {
            --primary-color: #2563eb;
            --primary-dark: #1d4ed8;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --gradient-start: #3b82f6;
            --gradient-end: #8b5cf6;
        }

body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

.navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            padding: 16px 0;
        }

.navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.navbar .nav-link {
            font-weight: 500;
            color: #475569;
            padding: 8px 16px !important;
            transition: color 0.3s ease;
        }

.btn-get-started {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            color: white;
        }

.btn-get-started:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }

.hero-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }

.hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

.hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1e293b;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

.hero-title .highlight {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.hero-subtitle {
            font-size: 1.25rem;
            color: #64748b;
            max-width: 540px;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

.hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

.btn-hero-primary {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border: none;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            color: white;
            transition: all 0.3s ease;
        }

.btn-hero-primary:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }

.btn-hero-secondary {
            background: white;
            border: 2px solid #e2e8f0;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            color: #475569;
            transition: all 0.3s ease;
        }

.btn-hero-secondary:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

.hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 48px;
            flex-wrap: wrap;
        }

.hero-stat {
            text-align: left;
        }

.hero-stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e293b;
            line-height: 1;
        }

.hero-stat-label {
            font-size: 0.95rem;
            color: #64748b;
            margin-top: 4px;
        }

.hero-image {
            position: relative;
        }

.hero-image img {
            max-width: 100%;
            height: auto;
        }

.hero-dashboard {
            background: white;
            border-radius: 16px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            padding: 24px;
            position: relative;
        }

.dashboard-header {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
        }

.dashboard-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

.dashboard-dot.red { background: #ef4444; }

.dashboard-dot.yellow { background: #f59e0b; }

.dashboard-dot.green { background: #10b981; }

.dashboard-content {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
        }

.dashboard-stat-row {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
        }

.dashboard-stat-card {
            flex: 1;
            background: white;
            border-radius: 8px;
            padding: 16px;
            text-align: center;
        }

.dashboard-stat-card.primary { border-left: 4px solid var(--primary-color); }

.dashboard-stat-card.success { border-left: 4px solid var(--success-color); }

.dashboard-stat-card.warning { border-left: 4px solid var(--warning-color); }

.dashboard-stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
        }

.dashboard-stat-label {
            font-size: 0.75rem;
            color: #64748b;
            text-transform: uppercase;
        }

.dashboard-chart {
            background: white;
            border-radius: 8px;
            padding: 16px;
            height: 120px;
            display: flex;
            align-items: flex-end;
            gap: 8px;
        }

.chart-bar {
            flex: 1;
            background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
            border-radius: 4px 4px 0 0;
            opacity: 0.8;
        }

.hero-carousel .hero-dashboard {
            min-height: 380px;
        }

.hero-carousel .carousel-item {
            transition: opacity 0.6s ease;
        }

.hero-carousel .carousel-indicators {
            bottom: -44px;
            margin-bottom: 0;
        }

.hero-carousel .carousel-indicators [data-bs-target] {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            border: none;
            background-color: #94a3b8;
            opacity: 0.5;
            transition: all 0.3s ease;
        }

.hero-carousel .carousel-indicators .active {
            width: 26px;
            border-radius: 6px;
            background-color: var(--primary-color);
            opacity: 1;
        }

.hero-carousel .carousel-control-prev,
        .hero-carousel .carousel-control-next {
            width: 9%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

.hero-carousel:hover .carousel-control-prev,
        .hero-carousel:hover .carousel-control-next {
            opacity: 0.55;
        }

.hero-carousel .carousel-control-prev-icon,
        .hero-carousel .carousel-control-next-icon {
            background-color: rgba(30, 41, 59, 0.55);
            border-radius: 50%;
            padding: 12px;
            background-size: 50%;
        }

.hero-promo {
            text-align: center;
            padding: 26px 18px;
        }

.hero-promo .promo-icon {
            width: 64px;
            height: 64px;
            margin: 6px auto 18px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.75rem;
        }

.hero-promo h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 10px;
        }

.hero-promo p {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 20px;
            max-width: 360px;
            margin-left: auto;
            margin-right: auto;
        }

.promo-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }

.promo-pill {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.85rem;
            padding: 8px 14px;
            border-radius: 999px;
        }

.hero-shot {
            width: 100%;
            border-radius: 10px;
            display: block;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

.features-section {
            padding: 100px 0;
            background: white;
        }

.section-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            color: var(--primary-color);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

.section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 16px;
        }

.section-subtitle {
            font-size: 1.125rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto 48px;
        }

.feature-card {
            background: #f8fafc;
            border-radius: 20px;
            padding: 32px;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

.feature-card:hover {
            background: white;
            border-color: #e2e8f0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-5px);
        }

.feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: white;
            font-size: 1.75rem;
        }

.feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
        }

.feature-desc {
            color: #64748b;
            line-height: 1.7;
            margin: 0;
        }

.how-it-works-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
        }

.step-card {
            text-align: center;
            position: relative;
        }

.step-number {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }

.step-connector {
            position: absolute;
            top: 40px;
            left: 60%;
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            opacity: 0.3;
        }

.step-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
        }

.step-desc {
            color: #64748b;
            max-width: 280px;
            margin: 0 auto;
        }

.trust-section {
            padding: 80px 0;
            background: white;
        }

.trust-badge {
            background: #f8fafc;
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            height: 100%;
        }

.trust-icon {
            font-size: 3rem;
            margin-bottom: 16px;
        }

.trust-value {
            font-size: 2rem;
            font-weight: 800;
            color: #1e293b;
        }

.trust-label {
            color: #64748b;
        }

.testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1e293b, #334155);
        }

.testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 32px;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

.testimonial-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 24px;
        }

.testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

.testimonial-avatar {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.25rem;
        }

.testimonial-name {
            color: white;
            font-weight: 600;
            margin-bottom: 2px;
        }

.testimonial-role {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }

.cta-section {
            padding: 100px 0;
            background: white;
        }

.cta-card {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 32px;
            padding: 64px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

.cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

.cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
        }

.cta-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

.btn-cta {
            background: white;
            color: var(--primary-color);
            padding: 16px 40px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s ease;
        }

.btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            color: var(--primary-dark);
        }

.usecases-section { padding: 100px 0; background: white; }

.usecase-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 28px;
            height: 100%;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

.usecase-card:hover {
            background: white;
            border-color: #e2e8f0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
            transform: translateY(-4px);
        }

.usecase-icon {
            width: 48px; height: 48px;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem; color: white; margin-bottom: 18px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        }

.usecase-title { font-size: 1.1rem; font-weight: 700; color: #1e293b; margin-bottom: 8px; }

.usecase-desc { color: #64748b; font-size: 0.95rem; line-height: 1.6; margin: 0; }

.flow-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
        }

.check-list { list-style: none; padding: 0; margin: 24px 0 0; }

.check-list li {
            display: flex; align-items: flex-start; gap: 12px;
            color: #475569; margin-bottom: 14px; font-size: 1.02rem;
        }

.check-list li i { color: var(--success-color); font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }

.flow-diagram {
            background: white; border-radius: 24px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            padding: 32px;
            display: flex; flex-direction: column; gap: 14px;
        }

.flow-node {
            display: flex; align-items: center; gap: 16px;
            background: #f8fafc; border-radius: 14px; padding: 18px 20px;
            border: 1px solid #e2e8f0;
        }

.flow-node.highlight {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border: none;
        }

.flow-node-icon {
            width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; background: rgba(37, 99, 235, 0.1); color: var(--primary-color);
        }

.flow-node.highlight .flow-node-icon { background: rgba(255, 255, 255, 0.2); color: white; }

.flow-node-title { font-weight: 700; color: #1e293b; }

.flow-node.highlight .flow-node-title { color: white; }

.flow-node-sub { font-size: 0.85rem; color: #64748b; }

.flow-node.highlight .flow-node-sub { color: rgba(255, 255, 255, 0.85); }

.flow-arrow { text-align: center; color: var(--primary-color); font-size: 1.3rem; line-height: 1; opacity: 0.5; }

.flow-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

.flow-tag {
            background: rgba(255, 255, 255, 0.2); color: white;
            border-radius: 20px; padding: 4px 12px; font-size: 0.78rem; font-weight: 600;
        }

.integration-section { padding: 100px 0; background: white; }

.code-window {
            background: #0f172a; border-radius: 16px; overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

.code-window-header {
            display: flex; align-items: center; gap: 8px;
            padding: 14px 18px; background: #1e293b;
        }

.code-window-title { color: #94a3b8; font-size: 0.8rem; margin-left: 8px; }

.code-window pre {
            margin: 0; padding: 24px; color: #e2e8f0;
            font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
            font-size: 0.85rem; line-height: 1.7; overflow-x: auto;
        }

.code-window .tok-key { color: #7dd3fc; }

.code-window .tok-str { color: #86efac; }

.code-window .tok-com { color: #64748b; }

.stack-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.stack-badge {
            background: #f1f5f9; border-radius: 10px; padding: 10px 16px;
            font-weight: 600; color: #475569; font-size: 0.9rem;
            display: flex; align-items: center; gap: 8px;
        }

@media (max-width: 768px) {
            .usecases-section, .flow-section, .integration-section { padding: 60px 0; }
        }

@media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-stats {
                gap: 32px;
            }

            .step-connector {
                display: none;
            }

            .cta-card {
                padding: 48px 24px;
            }

            .cta-title {
                font-size: 2rem;
            }
        }

@media (max-width: 768px) {
            
            body {
                overflow-x: hidden;
            }

            .hero-section {
                padding: 80px 0 60px;
            }

            
            .hero-section::before {
                display: none;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-stats {
                justify-content: center;
                text-align: center;
            }

            .hero-stat {
                text-align: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .footer .row > div {
                text-align: center !important;
            }

            .footer-social {
                justify-content: center;
                margin-top: 16px;
            }

            .footer-links-inline {
                margin: 16px 0;
            }


        }
