        /* Index Page Specific Styles */
        header {
            transition: all 0.3s ease-in-out;
        }

        header.hidden {
            transform: translateY(-100%);
        }

        .logo {
            transition: all 0.3s;
            cursor: pointer;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 0.25rem;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: #475569;
            font-weight: 600;
            padding: 0.75rem 1rem;
            border-radius: 10px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.95rem;
            position: relative;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            color: #6366f1;
        }

        .nav-links a:hover::before {
            width: 80%;
        }

        .nav-links .dropdown-toggle::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.65rem;
            margin-left: 0.35rem;
            transition: transform 0.3s;
            opacity: 0.7;
        }

        .nav-links li:hover .dropdown-toggle::after {
            transform: rotate(180deg);
            opacity: 1;
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            padding: 0.75rem;
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 0.75rem;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

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

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: white;
            border-left: 1px solid rgba(0, 0, 0, 0.05);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            transform: translateX(-50%) rotate(45deg);
        }

        .dropdown-menu a {
            display: flex;
            flex-direction: column;
            padding: 1rem;
            border-radius: 10px;
            gap: 0.35rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .dropdown-menu a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #6366f1, #8b5cf6);
            transform: scaleY(0);
            transition: transform 0.3s;
        }

        .dropdown-menu a:hover::before {
            transform: scaleY(1);
        }

        .dropdown-menu a:hover {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
            padding-left: 1.25rem;
        }

        .dropdown-item-title {
            font-weight: 700;
            color: #1e293b;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dropdown-item-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
        }

        .dropdown-item-desc {
            font-size: 0.85rem;
            color: #64748b;
            font-weight: 400;
            line-height: 1.5;
        }

        /* Nav CTA animation effect for index page */
        .nav-cta {
            position: relative;
            overflow: hidden;
        }

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

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

        .mobile-menu {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #1e293b;
            width: 30px;
            height: 30px;
            position: relative;
            transition: all 0.3s ease;
        }

        .mobile-menu:hover {
            color: #673de6;
        }

        .hamburger {
            position: relative;
            width: 24px;
            height: 2px;
            background: currentColor;
            transition: all 0.3s ease;
        }

        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 2px;
            background: currentColor;
            transition: all 0.3s ease;
        }

        .hamburger::before {
            top: -8px;
        }

        .hamburger::after {
            top: 8px;
        }

        .mobile-menu.active .hamburger {
            background: transparent;
        }

        .mobile-menu.active .hamburger::before {
            top: 0;
            transform: rotate(45deg);
        }

        .mobile-menu.active .hamburger::after {
            top: 0;
            transform: rotate(-45deg);
        }

        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
        }

        .mobile-nav.active {
            max-height: calc(100vh - 70px);
            padding: 1rem;
            overflow-y: auto;
        }

        .mobile-nav-links {
            list-style: none;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
        }

        .mobile-nav.active .mobile-nav-links {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav-links li {
            border-bottom: 1px solid #f1f5f9;
            animation: slideIn 0.3s ease forwards;
            opacity: 0;
        }

        .mobile-nav.active .mobile-nav-links li {
            animation: slideIn 0.3s ease forwards;
        }

        .mobile-nav.active .mobile-nav-links li:nth-child(1) {
            animation-delay: 0.1s;
        }

        .mobile-nav.active .mobile-nav-links li:nth-child(2) {
            animation-delay: 0.15s;
        }

        .mobile-nav.active .mobile-nav-links li:nth-child(3) {
            animation-delay: 0.2s;
        }

        .mobile-nav.active .mobile-nav-links li:nth-child(4) {
            animation-delay: 0.25s;
        }

        .mobile-nav.active .mobile-nav-links li:nth-child(5) {
            animation-delay: 0.3s;
        }

        .mobile-nav.active .mobile-nav-links li:nth-child(6) {
            animation-delay: 0.35s;
        }

        .mobile-nav.active .mobile-nav-links li:nth-child(7) {
            animation-delay: 0.4s;
        }

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

            from {
                opacity: 0;
                transform: translateX(-20px);
            }
        }

        .mobile-nav-links a {
            display: block;
            padding: 1rem;
            color: #1e293b;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.2s ease, padding-left 0.2s ease;
        }

        .mobile-nav-links a:hover {
            background: #f8fafc;
            padding-left: 1.5rem;
        }

        .mobile-dropdown-content {
            padding-left: 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

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

        .mobile-dropdown-content a {
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }

        .mobile-nav-links .fa-chevron-down {
            transition: transform 0.3s ease;
        }

        .mobile-nav-links a.expanded .fa-chevron-down {
            transform: rotate(180deg);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
            color: white;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(217, 70, 239, 0.2) 0%, transparent 50%);
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.8;
            }
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            animation: fadeInLeft 0.8s ease-out;
        }

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

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-badge i {
            color: #10b981;
        }

        .hero-text h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .hero-text h1 .highlight {
            display: block;
            font-size: 3rem;
            margin-top: 0.5rem;
            background: linear-gradient(to right, #10b981, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            color: #6366f1;
            padding: 1.1rem 2.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .cta-button i {
            transition: transform 0.3s;
        }

        .cta-button:hover i {
            transform: translateX(3px);
        }

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

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

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
        }

        .hero-stat-number {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .hero-stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .hero-visual {
            position: relative;
            animation: fadeInRight 0.8s ease-out;
        }

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

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

        .integration-flow {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .integration-flow::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
            border-radius: 24px;
            z-index: -1;
        }

        .flow-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .flow-header h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .flow-header p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .flow-steps {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .flow-step {
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: float 3s ease-in-out infinite;
        }

        .flow-step:nth-child(2) {
            animation-delay: 0.5s;
        }

        .flow-step:nth-child(3) {
            animation-delay: 1s;
        }

        @keyframes float {

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

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

        .flow-item {
            background: rgba(255, 255, 255, 0.95);
            padding: 1.5rem;
            border-radius: 16px;
            text-align: center;
            flex: 1;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .flow-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .flow-item i {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .flow-item svg {
            width: 2.5rem;
            height: 2.5rem;
            margin-bottom: 0.75rem;
            fill: #6366f1;
        }

        .flow-item-title {
            font-weight: 600;
            color: #1e293b;
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .flow-item-desc {
            font-size: 0.85rem;
            color: #64748b;
        }

        .flow-arrow {
            color: #10b981;
            font-size: 1.5rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

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

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

        .hero-decoration {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .hero-decoration-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }

        .hero-decoration-2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
            animation: float 8s ease-in-out infinite reverse;
        }

        /* Social Proof */
        .social-proof {
            background: white;
            padding: 4rem 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .trust-statement {
            text-align: center;
            margin-bottom: 3rem;
        }

        .trust-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #64748b;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .trust-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .trust-logo-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: #f8fafc;
            border-radius: 12px;
            transition: all 0.3s;
            border: 1px solid #e2e8f0;
        }

        .trust-logo-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-color: #6366f1;
        }

        .trust-logo-item i {
            font-size: 2rem;
            color: #6366f1;
        }

        .trust-logo-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .trust-logo-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            line-height: 1;
        }

        .trust-logo-label {
            font-size: 0.85rem;
            color: #64748b;
            margin-top: 0.25rem;
        }

        .testimonial-section {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
            padding: 3rem;
            border-radius: 20px;
            position: relative;
            border: 1px solid #e2e8f0;
        }

        .testimonial-section::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 2rem;
            font-size: 6rem;
            color: #6366f1;
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial {
            font-size: 1.3rem;
            color: #1e293b;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .testimonial-author {
            font-weight: 600;
            color: #1e293b;
            font-size: 1rem;
        }

        .testimonial-role {
            font-size: 0.9rem;
            color: #64748b;
        }

        .testimonial-stars {
            color: #fbbf24;
            margin-top: 0.25rem;
        }

        /* What Is AFI */
        .what-is-afi {
            padding: 5rem 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .what-is-afi::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .what-is-afi-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .what-is-afi-text {
            text-align: left;
        }

        .what-is-afi-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #eff6ff, #e0e7ff);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #6366f1;
            margin-bottom: 1.5rem;
            border: 1px solid #c7d2fe;
        }

        .what-is-afi-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #1e293b;
            line-height: 1.2;
        }

        .what-is-afi-title .gradient-text {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .what-is-afi-description {
            font-size: 1.2rem;
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .what-is-afi-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .what-is-afi-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }

        .what-is-afi-feature:hover {
            border-color: #6366f1;
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
        }

        .what-is-afi-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .what-is-afi-feature-text {
            flex: 1;
        }

        .what-is-afi-feature-title {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.25rem;
        }

        .what-is-afi-feature-desc {
            font-size: 0.9rem;
            color: #64748b;
        }

        .what-is-afi-visual {
            position: relative;
        }

        .what-is-afi-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            position: relative;
        }

        .what-is-afi-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6, #d946ef);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.1;
        }

        .what-is-afi-diagram {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .diagram-row {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .diagram-box {
            flex: 1;
            background: linear-gradient(135deg, #f8fafc, #e0e7ff);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            border: 2px solid #e2e8f0;
            transition: all 0.3s;
        }

        .diagram-box:hover {
            border-color: #6366f1;
            transform: scale(1.05);
        }

        .diagram-box i {
            font-size: 2rem;
            color: #6366f1;
            margin-bottom: 0.5rem;
        }

        .diagram-box-title {
            font-weight: 600;
            color: #1e293b;
            font-size: 0.95rem;
        }

        .diagram-arrow {
            color: #6366f1;
            font-size: 1.5rem;
            animation: slideRight 2s ease-in-out infinite;
        }

        @keyframes slideRight {

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

            50% {
                transform: translateX(5px);
            }
        }

        .diagram-connector {
            text-align: center;
            color: #64748b;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1e293b;
        }

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

        /* Key Benefits */
        .benefits {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            padding: 6rem 0;
            position: relative;
        }

        .benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        }

        .benefits-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .benefits-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #eff6ff, #e0e7ff);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #6366f1;
            margin-bottom: 1rem;
            border: 1px solid #c7d2fe;
        }

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

        .benefits-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            line-height: 1.7;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid #e2e8f0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #d946ef);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

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

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: #6366f1;
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
        }

        .benefit-card-inner {
            position: relative;
            z-index: 1;
        }

        .benefit-icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            transition: all 0.4s;
        }

        .benefit-card:hover .benefit-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .benefit-icon-wrapper::after {
            content: '';
            position: absolute;
            inset: -4px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 18px;
            opacity: 0.2;
            z-index: -1;
            transition: all 0.4s;
        }

        .benefit-card:hover .benefit-icon-wrapper::after {
            inset: -8px;
            opacity: 0.3;
        }

        .benefit-icon {
            font-size: 2rem;
            color: white;
        }

        .benefit-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #1e293b;
            line-height: 1.3;
        }

        .benefit-description {
            color: #64748b;
            line-height: 1.7;
            font-size: 1rem;
        }

        .benefit-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #6366f1;
            font-weight: 600;
            margin-top: 1rem;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .benefit-link i {
            transition: transform 0.3s;
        }

        .benefit-link:hover {
            gap: 0.75rem;
        }

        .benefit-link:hover i {
            transform: translateX(3px);
        }

        .benefit-number {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 3rem;
            font-weight: 800;
            color: #f1f5f9;
            line-height: 1;
            transition: all 0.4s;
        }

        .benefit-card:hover .benefit-number {
            color: #e0e7ff;
            transform: scale(1.2);
        }

        /* How It Works */
        .how-it-works {
            padding: 6rem 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .how-it-works-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
            position: relative;
            z-index: 1;
        }

        .how-it-works-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #eff6ff, #e0e7ff);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #6366f1;
            margin-bottom: 1rem;
            border: 1px solid #c7d2fe;
        }

        .how-it-works-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .how-it-works-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            line-height: 1.7;
        }

        .steps-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .steps-timeline {
            position: absolute;
            left: 50%;
            top: 80px;
            bottom: 80px;
            width: 2px;
            background: linear-gradient(180deg, #6366f1, #8b5cf6, #d946ef);
            transform: translateX(-50%);
            z-index: 0;
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .step {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            align-items: center;
        }

        .step:nth-child(even) .step-content {
            order: 3;
            text-align: left;
        }

        .step:nth-child(odd) .step-content {
            order: 1;
            text-align: right;
        }

        .step-content {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid #e2e8f0;
            transition: all 0.4s;
            position: relative;
        }

        .step-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 2px;
            background: #6366f1;
        }

        .step:nth-child(odd) .step-content::before {
            right: -22px;
            transform: translateY(-50%);
        }

        .step:nth-child(even) .step-content::before {
            left: -22px;
            transform: translateY(-50%);
        }

        .step-content:hover {
            border-color: #6366f1;
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
        }

        .step-number-wrapper {
            order: 2;
            position: relative;
            z-index: 2;
        }

        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            border-radius: 50%;
            font-size: 2rem;
            font-weight: 800;
            position: relative;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
            transition: all 0.4s;
        }

        .step-number::before {
            content: '';
            position: absolute;
            inset: -8px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 50%;
            opacity: 0.2;
            z-index: -1;
        }

        .step:hover .step-number {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        }

        .step-icon {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 35px;
            height: 35px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6366f1;
            font-size: 0.9rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .step-placeholder {
            order: 3;
        }

        .step:nth-child(even) .step-placeholder {
            order: 1;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #1e293b;
        }

        .step-description {
            color: #64748b;
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .step-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .step-feature-tag {
            background: #f1f5f9;
            color: #6366f1;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .step-time {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #10b981;
            font-weight: 600;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .step-time i {
            font-size: 0.8rem;
        }

        /* Integrations Gallery */
        .integrations {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            padding: 6rem 0;
            position: relative;
        }

        .integrations::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        }

        .integrations-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .integrations-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #eff6ff, #e0e7ff);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #6366f1;
            margin-bottom: 1rem;
            border: 1px solid #c7d2fe;
        }

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

        .integrations-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            line-height: 1.7;
        }

        .integrations-categories {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .category-filter {
            padding: 0.75rem 1.5rem;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-weight: 600;
            color: #64748b;
            cursor: pointer;
            transition: all 0.3s;
        }

        .category-filter:hover,
        .category-filter.active {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            border-color: #6366f1;
            transform: translateY(-2px);
        }

        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 2rem;
        }

        .integration-logo {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            border: 2px solid #e2e8f0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .integration-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #d946ef);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .integration-logo:hover::before {
            transform: scaleX(1);
        }

        .integration-logo:hover {
            transform: translateY(-8px);
            border-color: #6366f1;
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
        }

        .integration-icon-wrapper {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, #f8fafc, #e0e7ff);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s;
        }

        .integration-logo:hover .integration-icon-wrapper {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            transform: scale(1.1) rotate(5deg);
        }

        .integration-logo i {
            font-size: 2rem;
            color: #6366f1;
            transition: all 0.4s;
        }

        .integration-logo:hover i {
            color: white;
        }

        .integration-name {
            font-size: 1rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .integration-category {
            font-size: 0.8rem;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .integration-badge {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .integration-popular {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .integrations-cta {
            text-align: center;
            margin-top: 4rem;
            padding: 3rem;
            background: linear-gradient(135deg, #eff6ff, #e0e7ff);
            border-radius: 20px;
            border: 2px solid #c7d2fe;
        }

        .integrations-cta-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .integrations-cta-text {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 2rem;
        }

        .integrations-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

        .integrations-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        }

        /* Features */
        .features {
            padding: 6rem 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        }

        .features-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .features-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #eff6ff, #e0e7ff);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #6366f1;
            margin-bottom: 1rem;
            border: 1px solid #c7d2fe;
        }

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

        .features-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            border: 2px solid #e2e8f0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #6366f1, #8b5cf6, #d946ef);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.4s ease;
        }

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

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: #6366f1;
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
        }

        .feature-header {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .feature-icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            transition: all 0.4s;
        }

        .feature-card:hover .feature-icon-wrapper {
            transform: scale(1.1) rotate(-5deg);
        }

        .feature-icon-wrapper::after {
            content: '';
            position: absolute;
            inset: -4px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 18px;
            opacity: 0.2;
            z-index: -1;
            transition: all 0.4s;
        }

        .feature-card:hover .feature-icon-wrapper::after {
            inset: -8px;
            opacity: 0.3;
        }

        .feature-icon {
            font-size: 2rem;
            color: white;
        }

        .feature-header-text {
            flex: 1;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1e293b;
        }

        .feature-label {
            display: inline-block;
            background: linear-gradient(135deg, #eff6ff, #e0e7ff);
            color: #6366f1;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .feature-description {
            color: #64748b;
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .feature-benefits {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .feature-benefit {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #475569;
            font-size: 0.95rem;
        }

        .feature-benefit i {
            color: #10b981;
            font-size: 0.9rem;
        }

        .feature-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #6366f1;
            font-weight: 600;
            margin-top: 1.5rem;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .feature-link i {
            transition: transform 0.3s;
        }

        .feature-link:hover {
            gap: 0.75rem;
        }

        .feature-link:hover i {
            transform: translateX(3px);
        }

        .feature-visual {
            margin-top: 1.5rem;
            padding: 1rem;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }

        .feature-code {
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            color: #6366f1;
            line-height: 1.6;
        }

        /* Use Cases */
        .use-cases {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            padding: 6rem 0;
            position: relative;
        }

        .use-cases::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        }

        .use-cases-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .use-cases-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #eff6ff, #e0e7ff);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #6366f1;
            margin-bottom: 1rem;
            border: 1px solid #c7d2fe;
        }

        .use-cases-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .use-cases-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            line-height: 1.7;
        }

        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 3rem;
        }

        .use-case-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid #e2e8f0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 300px;
        }

        .use-case-card:hover {
            transform: translateY(-8px);
            border-color: #6366f1;
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
        }

        .use-case-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .use-case-icon-wrapper {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.4s;
        }

        .use-case-card:hover .use-case-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .use-case-icon {
            font-size: 1.8rem;
            color: white;
        }

        .use-case-category {
            display: inline-block;
            background: linear-gradient(135deg, #eff6ff, #e0e7ff);
            color: #6366f1;
            padding: 0.35rem 0.85rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .use-case-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1e293b;
            line-height: 1.3;
        }

        .use-case-description {
            color: #64748b;
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .use-case-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .use-case-stat {
            display: flex;
            flex-direction: column;
        }

        .use-case-stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #6366f1;
            line-height: 1;
        }

        .use-case-stat-label {
            font-size: 0.85rem;
            color: #64748b;
            margin-top: 0.25rem;
        }

        .use-case-features {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .use-case-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #475569;
            font-size: 0.95rem;
        }

        .use-case-feature i {
            color: #10b981;
            font-size: 0.9rem;
        }

        .use-case-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #6366f1;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .use-case-link i {
            transition: transform 0.3s;
        }

        .use-case-link:hover {
            gap: 0.75rem;
        }

        .use-case-link:hover i {
            transform: translateX(3px);
        }

        .use-case-visual {
            background: linear-gradient(135deg, #f8fafc, #e0e7ff);
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .use-case-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(99,102,241,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .use-case-diagram {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
        }

        .use-case-flow-item {
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s;
        }

        .use-case-card:hover .use-case-flow-item {
            border-color: #6366f1;
        }

        .use-case-flow-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .use-case-flow-text {
            flex: 1;
            font-size: 0.9rem;
            font-weight: 600;
            color: #1e293b;
        }

        .use-case-flow-arrow {
            text-align: center;
            color: #6366f1;
            font-size: 1.2rem;
        }

        /* Comparison Table */
        .comparison {
            padding: 4rem 0;
        }

        .comparison-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            margin-top: 3rem;
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }

        .comparison-table th {
            background: #f8fafc;
            font-weight: 600;
            color: #1e293b;
        }

        .comparison-table .highlight {
            background: #eff6ff;
        }

        .check {
            color: #10b981;
            font-size: 1.2rem;
        }

        .cross {
            color: #ef4444;
            font-size: 1.2rem;
        }

        /* Pricing */
        .pricing {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            padding: 6rem 0;
            position: relative;
        }

        .pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        }

        .pricing-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        .pricing-badge-header {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #eff6ff, #e0e7ff);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #6366f1;
            margin-bottom: 1rem;
            border: 1px solid #c7d2fe;
        }

        .pricing-title-main {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .pricing-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            line-height: 1.7;
        }

        .pricing-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .pricing-toggle-label {
            font-weight: 600;
            color: #64748b;
        }

        .pricing-toggle-label.active {
            color: #6366f1;
        }

        .pricing-toggle-switch {
            position: relative;
            width: 60px;
            height: 30px;
            background: #e2e8f0;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pricing-toggle-switch.active {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
        }

        .pricing-toggle-slider {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

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

        .pricing-save-badge {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-card {
            background: white;
            padding: 3rem;
            border-radius: 24px;
            border: 2px solid #e2e8f0;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured {
            border: 2px solid #6366f1;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
            box-shadow: 0 25px 70px rgba(99, 102, 241, 0.25);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        }

        .pricing-card-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #f1f5f9;
        }

        .pricing-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f8fafc, #e0e7ff);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.8rem;
            color: #6366f1;
        }

        .pricing-card.featured .pricing-icon {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
        }

        .pricing-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1e293b;
        }

        .pricing-description {
            font-size: 0.95rem;
            color: #64748b;
            margin-bottom: 1.5rem;
        }

        .pricing-price {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1e293b;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .pricing-card.featured .pricing-price {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-period {
            font-size: 1rem;
            color: #64748b;
            font-weight: 500;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: #475569;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.95rem;
        }

        .pricing-features li i {
            color: #10b981;
            font-size: 1rem;
            margin-top: 0.15rem;
            flex-shrink: 0;
        }

        .pricing-cta {
            display: block;
            width: 100%;
            padding: 1rem 2rem;
            background: white;
            border: 2px solid #6366f1;
            color: #6366f1;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            text-align: center;
        }

        .pricing-cta:hover {
            background: #6366f1;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
        }

        .pricing-card.featured .pricing-cta {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            border: none;
        }

        .pricing-card.featured .pricing-cta:hover {
            background: linear-gradient(135deg, #5730c9, #7c3aed);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .pricing-note {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #64748b;
        }

        .pricing-footer {
            text-align: center;
            margin-top: 4rem;
            padding: 3rem;
            background: linear-gradient(135deg, #eff6ff, #e0e7ff);
            border-radius: 20px;
            border: 2px solid #c7d2fe;
        }

        .pricing-footer-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .pricing-footer-text {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 2rem;
        }

        .pricing-footer-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

        .pricing-footer-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        }

        /* FAQ */
        .faq {
            padding: 6rem 0;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
        }

        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        }

        .faq-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .faq-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #eff6ff, #e0e7ff);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #6366f1;
            margin-bottom: 1rem;
            border: 1px solid #c7d2fe;
        }

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

        .faq-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            line-height: 1.7;
        }

        .faq-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            border: 2px solid #e2e8f0;
            transition: all 0.3s;
            overflow: hidden;
        }

        .faq-item:hover {
            border-color: #6366f1;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
        }

        .faq-item.active {
            border-color: #6366f1;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
        }

        .faq-question {
            padding: 1.75rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1e293b;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .faq-question:hover {
            color: #6366f1;
        }

        .faq-question-text {
            flex: 1;
            padding-right: 1rem;
        }

        .faq-icon-wrapper {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f8fafc, #e0e7ff);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon-wrapper {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
        }

        .faq-toggle {
            color: #6366f1;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .faq-item.active .faq-toggle {
            color: white;
            transform: rotate(180deg);
        }

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

        .faq-answer.active {
            max-height: 500px;
            padding: 0 1.75rem 1.75rem;
        }

        .faq-answer-content {
            color: #64748b;
            line-height: 1.8;
            font-size: 1rem;
        }

        .faq-answer-content a {
            color: #6366f1;
            text-decoration: none;
            font-weight: 600;
        }

        .faq-answer-content a:hover {
            text-decoration: underline;
        }

        .faq-sidebar {
            background: linear-gradient(135deg, #eff6ff, #e0e7ff);
            padding: 3rem;
            border-radius: 20px;
            border: 2px solid #c7d2fe;
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .faq-sidebar-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .faq-sidebar-text {
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .faq-sidebar-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            padding: 1rem 1.75rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
            width: 100%;
            justify-content: center;
        }

        .faq-sidebar-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        }

        .faq-sidebar-links {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid #c7d2fe;
        }

        .faq-sidebar-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            color: #475569;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .faq-sidebar-link:hover {
            color: #6366f1;
            padding-left: 0.5rem;
        }

        .faq-sidebar-link i {
            color: #6366f1;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
            color: white;
            padding: 4rem 0 0;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            max-width: 350px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .footer-logo i {
            color: #6366f1;
            font-size: 1.75rem;
        }

        .footer-tagline {
            color: #94a3b8;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

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

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-color: #6366f1;
            color: white;
            transform: translateY(-3px);
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-column-title {
            font-size: 1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }

        .footer-links a i {
            font-size: 0.8rem;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .footer-links a:hover i {
            opacity: 1;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 0;
            color: #64748b;
            font-size: 0.9rem;
        }

        .footer-copyright {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

        .footer-legal a {
            color: #64748b;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: white;
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #10b981;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 1rem;
        }

        .footer-badge i {
            font-size: 0.7rem;
        }

        /* Responsive Design */
        @media (max-width: 968px) {

            .nav-center,
            .nav-right {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .hero {
                min-height: auto;
                padding: 100px 0 60px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text h1 .highlight {
                font-size: 2rem;
            }

            .hero-cta-group {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-decoration-1,
            .hero-decoration-2 {
                display: none;
            }

            .what-is-afi-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .what-is-afi-text {
                text-align: center;
            }

            .what-is-afi-title {
                font-size: 2rem;
            }

            .what-is-afi-features {
                max-width: 500px;
                margin: 0 auto;
            }

            .diagram-row {
                flex-direction: column;
            }

            .diagram-arrow {
                transform: rotate(90deg);
            }

            .integrations-categories {
                overflow-x: auto;
                justify-content: flex-start;
                padding-bottom: 0.5rem;
            }

            .integrations-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }

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

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

            .use-case-visual {
                min-height: 250px;
            }

            .faq-container {
                grid-template-columns: 1fr;
            }

            .faq-sidebar {
                position: static;
                margin-top: 2rem;
            }

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

            .benefits-grid,
            .features-grid,
            .use-cases-grid,
            .pricing-cards {
                grid-template-columns: 1fr;
            }

            .steps-timeline {
                display: none;
            }

            .step {
                grid-template-columns: 1fr !important;
                gap: 1rem;
            }

            .step-content,
            .step-placeholder {
                order: 2 !important;
                text-align: center !important;
            }

            .step-number-wrapper {
                order: 1 !important;
                margin: 0 auto;
            }

            .step-placeholder {
                display: none;
            }

            .step-content::before {
                display: none;
            }

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

            .footer-brand {
                max-width: 100%;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

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

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

            .comparison-table {
                overflow-x: auto;
            }
        }

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

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

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
