 :root {
            --bs-font-sans-serif: 'Inter', sans-serif;
            --primary-color: #4f46e5; /* Indigo 600 */
            --primary-hover: #4338ca; /* Indigo 700 */
            --slate-50: #f8fafc;
            --slate-900: #0f172a;
        }

        body {
            font-family: var(--bs-font-sans-serif);
            background-color: var(--slate-50);
            color: var(--slate-900);
            overflow-x: hidden;
        }

        
        /* Buttons */
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            border-radius: 9999px; /* Pill */
            padding: 0.625rem 1.25rem;
            font-weight: 600;
            font-size: 0.875rem;
            box-shadow: 0 10px 15px -3px rgba(199, 210, 254, 0.5);
            transition: all 0.2s;
        }

        .btn-primary-custom:hover {
            background-color: var(--primary-hover);
            transform: translateY(-1px);
        }

        .btn-xl {
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            font-size: 1.125rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-outline-custom {
            background-color: white;
            border: 1px solid #e2e8f0;
            color: #334155;
            font-weight: 600;
        }

        .btn-outline-custom:hover {
            background-color: #f8fafc;
            border-color: #cbd5e1;
        }

        /* Hero Section */
        .hero-section {
            padding-top: 8rem;
            padding-bottom: 5rem;
            position: relative;
            overflow: hidden;
        }

        /* Background Effects */
        .bg-grid-pattern {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(#4f46e5 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.03;
            z-index: 0;
        }

        .blur-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(64px);
            opacity: 0.3;
            z-index: 0;
            mix-blend-mode: multiply;
        }

        .blob-1 {
            top: 5rem;
            right: -5rem;
            width: 600px;
            height: 600px;
            background-color: #e0e7ff; /* Indigo 100 */
            animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .blob-2 {
            bottom: -8rem;
            left: -5rem;
            width: 500px;
            height: 500px;
            background-color: #f3e8ff; /* Purple 100 */
            animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation-delay: 2s;
        }

        /* Badge */
        .badge-official {
            background-color: #eef2ff;
            border: 1px solid #e0e7ff;
            color: #4338ca;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.025em;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background-color: #22c55e;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        /* Typography */
        h1.hero-title {
            font-weight: 800;
            line-height: 1.15;
            color: var(--slate-900);
            margin-bottom: 1.5rem;
        }

        .text-gradient {
            background: linear-gradient(to right, #4f46e5, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Workflow Animation Cards */
        .workflow-container {
            position: relative;
            max-width: 450px;
            margin: 0 auto;
        }

        .workflow-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            border-left: 2px dashed #a5b4fc;
            transform: translateX(-50%);
            z-index: -1;
        }

        .card-custom {
            border: 1px solid #f1f5f9;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            background: white;
            padding: 1rem;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .card-custom:hover {
            transform: scale(1.05);
        }

        .card-hero {
            background-color: var(--primary-color);
            color: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.25);
            margin-bottom: 1.5rem;
            transform: scale(1.1);
            position: relative;
            z-index: 10;
        }

        .icon-bubble {
            width: 40px;
            height: 40px;
            border-radius: 8px; /* Standard rounded */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: bold;
        }
        
        .icon-bubble-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        /* Features Strip */
        .feature-box {
            text-align: center;
            padding: 1rem;
            transition: all 0.3s;
        }
        
        .feature-icon-wrapper {
            width: 48px;
            height: 48px;
            background-color: #eef2ff;
            color: var(--primary-color);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin: 0 auto 0.75rem auto;
            transition: background-color 0.3s, color 0.3s;
        }

        .feature-box:hover .feature-icon-wrapper {
            background-color: var(--primary-color);
            color: white;
        }

		/* --- NEW: Interactive Benefits Section Styling --- */
        .benefits-section {
            padding: 5rem 0;
            background: #fff;
        }

        /* Navigation Items */
        .feature-nav-item {
            padding: 1.5rem;
            border-radius: 0.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
        }

        .feature-nav-item:hover {
            background-color: var(--slate-50);
        }

        .feature-nav-item.active {
            background-color: var(--primary-light);
            border-color: rgba(79, 70, 229, 0.1);
        }
        
        /* Colored bar indicator on left for active state */
        .feature-nav-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--primary-color);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .feature-nav-item.active::before {
            opacity: 1;
        }

        .feature-nav-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            background-color: white;
            color: #64748b;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-right: 1rem;
        }

        .feature-nav-item.active .feature-nav-icon {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* --- NEW: Feature Deck / Tabs Section --- */
        .feature-deck-section {
            padding: 5rem 0;
            background-color: var(--slate-50);
        }

        .custom-pills {
            background: white;
            padding: 0.5rem;
            border-radius: 1rem;
            display: inline-flex;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
            max-width: 100%;
            overflow-x: auto;
            flex-wrap: nowrap;
            scrollbar-width: none; /* Hide scrollbar Firefox */
        }
        
        .custom-pills::-webkit-scrollbar {
            display: none; /* Hide scrollbar Chrome/Safari */
        }

        .custom-pills .nav-link {
            border-radius: 0.75rem;
            color: var(--slate-600);
            padding: 0.75rem 1.5rem;
            white-space: nowrap;
            font-weight: 500;
        }

        .custom-pills .nav-link.active {
            background-color: var(--primary-color);
            color: white;
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
        }

        .tab-content-card {
            background: white;
            border-radius: 1.5rem;
            padding: 3rem;
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.01);
            margin-top: 2rem;
            min-height: 500px;
            border: 1px solid var(--slate-100);
        }

        .feature-list-styled ul {
            padding-left: 0;
            list-style: none;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        @media(min-width: 768px) {
            .feature-list-styled ul {
                grid-template-columns: 1fr 1fr; /* 2 columns on desktop */
            }
        }

        .feature-list-styled li {
            position: relative;
            padding-left: 1.75rem;
            font-size: 0.95rem;
            color: var(--slate-600);
            line-height: 1.6;
        }

        .feature-list-styled li::before {
            content: '\f00c'; /* FontAwesome check */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary-color);
            font-size: 0.875rem;
        }
        
        .feature-list-styled li strong {
            color: var(--slate-900);
            display: block;
            margin-bottom: 0.25rem;
        }

        /* Image Preview Area */
        .feature-preview-container {
            position: relative;
            height: 100%;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .preview-bg-blob {
            position: absolute;
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(224,231,255,0.4) 0%, rgba(255,255,255,0) 70%);
            z-index: 0;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .preview-image-wrapper {
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: absolute; /* Stack them */
            width: 100%;
            display: none; /* Hidden by default */
        }
        
        .preview-image-wrapper.active {
            opacity: 1;
            transform: translateY(0);
            display: block;
        }
        
        .browser-mockup {
            border-radius: 12px;
            box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1), 0 10px 20px -5px rgba(0,0,0,0.04);
            background: white;
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }
        
        .browser-header {
            background: #f8fafc;
            padding: 10px 16px;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            gap: 6px;
        }
        
        .benefits-section {
            /* Moved base styles here to avoid polluting 'body' */
            font-family: 'Inter', sans-serif;
            background-color: #F9FAFB;
            color: #475569; /* Slate 600 */
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        /* Decorative Background Blobs */
        .benefits-section .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.5;
            z-index: -1;
        }
        .benefits-section .blob-1 {
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background-color: #dbeafe; /* Blue 100 */
        }
        .benefits-section .blob-2 {
            top: 50%;
            left: -100px;
            width: 300px;
            height: 300px;
            background-color: #f3e8ff; /* Purple 100 */
        }

        /* Typography & Header */
        .benefits-section .section-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            background-color: #eff6ff;
            color: #1d4ed8;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 9999px;
            margin-bottom: 1rem;
        }

        .benefits-section .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 1.5rem;
            letter-spacing: -0.025em;
        }

        .benefits-section .gradient-text {
            background: linear-gradient(to right, #2563eb, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .benefits-section .section-desc {
            font-size: 1.125rem;
            line-height: 1.75;
            color: #475569;
        }

        /* Highlight Cards (Top Trio) */
        .benefits-section .highlight-card {
            background: #fff;
            border: 1px solid #f1f5f9;
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .benefits-section .highlight-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .benefits-section .icon-box {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem auto;
            transition: background-color 0.3s ease;
        }

        .benefits-section .icon-box svg {
            width: 28px;
            height: 28px;
            transition: color 0.3s ease;
        }

        /* Highlight Colors - specific nesting */
        .benefits-section .highlight-blue .icon-box { background-color: #eff6ff; }
        .benefits-section .highlight-blue .icon-box svg { color: #2563eb; }
        .benefits-section .highlight-blue:hover .icon-box { background-color: #2563eb; }
        .benefits-section .highlight-blue:hover .icon-box svg { color: #ffffff; }

        .benefits-section .highlight-purple .icon-box { background-color: #faf5ff; }
        .benefits-section .highlight-purple .icon-box svg { color: #9333ea; }
        .benefits-section .highlight-purple:hover .icon-box { background-color: #9333ea; }
        .benefits-section .highlight-purple:hover .icon-box svg { color: #ffffff; }

        .benefits-section .highlight-emerald .icon-box { background-color: #ecfdf5; }
        .benefits-section .highlight-emerald .icon-box svg { color: #059669; }
        .benefits-section .highlight-emerald:hover .icon-box { background-color: #059669; }
        .benefits-section .highlight-emerald:hover .icon-box svg { color: #ffffff; }

        .benefits-section .highlight-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.5rem;
        }

        .benefits-section .highlight-text {
            font-size: 0.875rem;
            color: #64748b;
            line-height: 1.6;
        }

        /* Feature Cards (Bottom Grid) */
        .benefits-section .feature-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 0.75rem;
            padding: 1.5rem;
            height: 100%;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .benefits-section .feature-card:hover {
            border-color: #93c5fd;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .benefits-section .feature-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .benefits-section .feature-icon-sm {
            padding: 0.5rem;
            background-color: #f8fafc;
            border-radius: 0.5rem;
            margin-right: 0.75rem;
            color: #334155;
        }

        .benefits-section .feature-title {
            font-weight: 700;
            color: #0f172a;
            margin: 0;
            font-size: 1.1rem;
        }

        .benefits-section .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .benefits-section .feature-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            color: #475569;
        }

        .benefits-section .feature-list li:last-child {
            margin-bottom: 0;
        }

        .benefits-section .check-icon {
            color: #22c55e;
            margin-top: 0.25rem;
            margin-right: 0.75rem;
            flex-shrink: 0;
            width: 16px;
            height: 16px;
        }
        
        .dot { width: 8px; height: 8px; border-radius: 50%; }
        .dot-red { background: #ef4444; }
        .dot-yellow { background: #fbbf24; }
        .dot-green { background: #22c55e; }


        /* Animations */
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        @keyframes pulse-slow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.4; }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: .5; }
        }
        
        /* --- NEW CTA SECTION STYLES --- */
        .cta-section {
            padding: 80px 0;
            position: relative;
            background: transparent; /* Removed dark background */
        }

        .cta-card {
            background-color: #f8fafc; /* Light Theme: Slate 50 */
            border: 1px solid #e2e8f0;
            border-radius: 2rem;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        /* Decorative blobs for CTA card */
        .cta-card::before {
             content: '';
             position: absolute;
             top: -50px;
             right: -50px;
             width: 250px;
             height: 250px;
             background-color: #dbeafe; /* Blue 100 */
             border-radius: 50%;
             filter: blur(60px);
             opacity: 0.6;
             z-index: 0;
        }
        
        .cta-card::after {
             content: '';
             position: absolute;
             bottom: -50px;
             left: -50px;
             width: 200px;
             height: 200px;
             background-color: #f3e8ff; /* Purple 100 */
             border-radius: 50%;
             filter: blur(50px);
             opacity: 0.6;
             z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section .trusted-text {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            color: #0f172a; /* Dark Text */
        }

        .cta-section .trusted-badge {
            display: inline-block;
            background-color: #eff6ff; /* Light Blue bg */
            color: #1d4ed8; /* Dark Blue text */
            border: 1px solid #dbeafe;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .cta-section .sub-text {
            font-size: 1.1rem;
            color: #64748b; /* Slate 500 */
            margin-bottom: 2.5rem;
        }

        .cta-section .btn-glow {
            background-color: #2563eb; /* Primary Blue Button */
            color: #ffffff;
            padding: 16px 40px;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
        }

        .cta-section .btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
            background-color: #1d4ed8;
            color: #ffffff;
        }

        .cta-section .btn-icon {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .cta-section .btn-glow:hover .btn-icon {
            transform: translateX(4px);
        }