* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #1a1a2e;
            background: #fafbfc;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .gradient-text {
            background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ===== NAVIGATION ===== */
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            background: white;
            border-bottom: 1px solid #f0f0f0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        @media (min-width: 768px) {
            .nav {
                padding: 20px 40px;
            }
        }

        @media (min-width: 1024px) {
            .nav {
                padding: 20px 80px;
            }
        }

        .nav-logo img {
            height: 32px;
            width: auto;
        }

        @media (min-width: 768px) {
            .nav-logo img {
                height: 40px;
            }
        }

        /* Desktop Nav Links */
        .nav-links {
            display: none;
            gap: 32px;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-links>a {
            color: #4b5563;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            text-decoration: none;
        }

        .nav-links>a:hover {
            color: #059669;
        }

        .nav-links .btn-primary {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            text-decoration: none;
        }

        .nav-links:hover .btn-primary {
            color: #fff;

        }

        .nav-links>a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #059669, #0891b2);
            transition: width 0.3s ease;
        }

        .nav-links>a:hover::after {
            width: 100%;
        }

        /* Dropdown */
        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #4b5563;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: color 0.3s ease;
            background: none;
            border: none;
            font-family: inherit;
        }

        .nav-dropdown-toggle:hover {
            color: #059669;
        }

        .nav-dropdown-toggle svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .nav-dropdown:hover .nav-dropdown-toggle svg {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
            padding: 12px;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            margin-top: 4px;
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 12px 16px;
            color: #4b5563;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .nav-dropdown-menu a:hover {
            background: #f0fdf4;
            color: #059669;
        }

        .nav-cta {
            padding: 12px 24px !important;
            font-size: 0.9rem !important;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            gap: 6px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background: #f3f4f6;
        }

        @media (min-width: 1024px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: #1a1a2e;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 65px;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            z-index: 999;
            overflow-y: auto;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }

        @media (min-width: 768px) {
            .mobile-menu {
                top: 81px;
            }
        }

        .mobile-menu.active {
            display: block;
        }

        @media (min-width: 1024px) {
            .mobile-menu {
                display: none !important;
            }
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mobile-menu-links>a,
        .mobile-menu-links>button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            color: #1a1a2e;
            font-size: 1.1rem;
            font-weight: 500;
            border-radius: 12px;
            transition: all 0.2s ease;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            font-family: inherit;
            cursor: pointer;
        }

        .mobile-menu-links>a:hover,
        .mobile-menu-links>button:hover {
            background: #f0fdf4;
            color: #059669;
        }

        .mobile-submenu {
            display: none;
            padding-left: 20px;
            margin-top: 8px;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-submenu.active {
            display: flex;
        }

        .mobile-submenu a {
            padding: 12px 20px;
            color: #6b7280;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .mobile-submenu a:hover {
            background: #f0fdf4;
            color: #059669;
        }

        .mobile-menu-cta {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid #e5e7eb;
        }

        .mobile-menu-cta .btn-primary {
            width: 100%;
            padding: 16px 28px;
            font-size: 1.1rem;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
            color: white;
            padding: 16px 36px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #1a1a2e;
            padding: 16px 36px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: #059669;
            color: #059669;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 80px;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Section Styles */
        section {
            padding: 80px 80px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.08), rgba(8, 145, 178, 0.08));
            border-radius: 100px;
            margin-bottom: 24px;
            border: 1px solid rgba(5, 150, 105, 0.15);
            color: #059669;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        h1 {
            font-size: 4.2rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 32px;
            letter-spacing: -2px;
        }

        h2 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 28px;
            letter-spacing: -1.5px;
            line-height: 1.15;
        }

        h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* Hero Section */
        .hero {
            padding: 90px 80px 100px;
            background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(5, 150, 105, 0.1);
            border-radius: 100px;
            margin-bottom: 32px;
            border: 1px solid rgba(5, 150, 105, 0.2);
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #059669;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.4;
            }

            50% {
                opacity: 1;
            }
        }

        /* Grid Layouts */
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        /* Cards */
        .card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            border-color: #059669;
            box-shadow: 0 20px 60px rgba(5, 150, 105, 0.15);
            transform: translateY(-8px);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #059669, #0891b2);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        /* Challenge Solution Cards */
        .challenge-card {
            background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
            border-radius: 28px;
            padding: 50px;
            border: 2px solid #fee2e2;
            position: relative;
        }

        .solution-card {
            background: white;
            border-radius: 28px;
            padding: 50px;
            border: 2px solid #d1fae5;
            box-shadow: 0 20px 60px rgba(5, 150, 105, 0.08);
            position: relative;
        }

        /* Tabs */
        .tab-container {
            display: flex;
            gap: 12px;
            margin-bottom: 60px;
            background: white;
            padding: 12px;
            border-radius: 16px;
            width: fit-content;
            margin: 0 auto 60px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            overflow-x: auto;
        }

        .tab-btn {
            padding: 14px 28px;
            border: none;
            background: transparent;
            color: #6b7280;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            border-radius: 10px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .tab-btn:hover {
            color: #059669;
            background: rgba(5, 150, 105, 0.05);
        }

        .tab-btn.active {
            background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
        }

        .tab-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            background: white;
            padding: 60px;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        }

        .tab-panel {
            display: none;
        }

        .tab-panel.active {
            display: grid;
        }

        /* Responsive Media Queries */
        @media (max-width: 1200px) {

            .container,
            section {
                padding-left: 40px;
                padding-right: 40px;
            }

            nav {
                padding: 20px 40px;
            }

            h1 {
                font-size: 3.5rem;
            }

            h2 {
                font-size: 2.5rem;
            }

            .hero-container {
                gap: 60px;
            }
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            h1 {
                font-size: 3rem;
            }

            h2 {
                font-size: 2.2rem;
            }

            h3 {
                font-size: 1.8rem;
            }

            .hero-container,
            .grid-2,
            .tab-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .grid-3 {
                grid-template-columns: 1fr;
            }

            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }

            .challenge-card,
            .solution-card {
                padding: 40px 30px;
            }

            .timeline-card {
                grid-template-columns: 1fr !important;
                padding: 40px !important;
            }
        }

        @media (max-width: 768px) {

            .container,
            section,
            .hero {
                padding-left: 20px;
                padding-right: 20px;
                padding-top: 60px;
                padding-bottom: 60px;
            }

            nav {
                padding: 15px 20px;
            }

            nav img {
                height: 35px;
            }

            h1 {
                font-size: 2.5rem;
                letter-spacing: -1px;
            }

            h2 {
                font-size: 2rem;
                letter-spacing: -1px;
            }

            h3 {
                font-size: 1.5rem;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .btn-primary,
            .btn-secondary {
                padding: 14px 28px;
                font-size: 0.95rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
           

            .hero-buttons button {
                width: 100%;
            }

            .hero-stats {
                gap: 30px;
                flex-wrap: wrap;
            }

            .card {
                padding: 30px 20px;
            }

            .challenge-card,
            .solution-card {
                padding: 30px 20px;
            }

            .card-badge {
                font-size: 0.75rem;
                padding: 8px 16px;
            }

            .grid-4 {
                grid-template-columns: 1fr;
            }

            .tab-container {
                width: 100%;
                overflow-x: auto;
                justify-content: flex-start;
            }

            .tab-btn {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .tab-content {
                padding: 30px 20px;
                gap: 40px;
            }

            .result-badge {
                flex-direction: column;
                gap: 8px;
                padding: 20px;
                text-align: center;
            }

            .before-after {
                flex-direction: column;
                gap: 15px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            blockquote {
                font-size: 1.5rem !important;
            }

            .notification-card {
                position: static !important;
                margin-top: 20px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .stat-value {
                font-size: 2rem;
            }

            .metric-value {
                font-size: 2rem;
            }

            blockquote {
                font-size: 1.3rem !important;
                padding: 0 10px;
            }
        }

        /* Additional Responsive Utilities */
        .hide-mobile {
            display: block;
        }

        .show-mobile {
            display: none;
        }

        @media (max-width: 768px) {
            .hide-mobile {
                display: none;
            }

            .show-mobile {
                display: block;
            }
        }

        /* Stats */
        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 2.5rem;
            font-weight: 700;
            color: #059669;
            margin-bottom: 4px;
        }

        .stat-label {
            color: #6b7280;
            font-size: 0.95rem;
        }

        /* Dashboard Preview */
        .dashboard-preview {
            background: white;
            border-radius: 24px;
            padding: 28px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
            border: 1px solid #e5e7eb;
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }

        @media (max-width: 768px) {
            .dashboard-grid {
                grid-template-columns: 1fr;
            }

            .dashboard-preview {
                padding: 20px;
            }
        }

        /* Icon Box */
        .icon-box {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(8, 145, 178, 0.1));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }

        /* Timeline */
        .timeline-card {
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfeff 100%);
            border-radius: 32px;
            padding: 60px 70px;
            border: 2px solid rgba(5, 150, 105, 0.2);
            box-shadow: 0 20px 60px rgba(5, 150, 105, 0.08);
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
            margin-top: 120px;
        }

        .timeline-steps {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .timeline-step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: white;
            padding: 20px 24px;
            border-radius: 14px;
            border: 1px solid rgba(5, 150, 105, 0.1);
        }

        .week-badge {
            padding: 8px 16px;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 700;
            white-space: nowrap;
            min-width: 80px;
            text-align: center;
            color: white;
        }


        /* ===== FAQ SECTION ===== */
        .faq-section {
            padding: 48px 20px;
            background: #fafbfc;
        }

        @media (min-width: 768px) {
            .faq-section {
                padding: 80px 40px;
            }
        }

        @media (min-width: 1024px) {
            .faq-section {
                padding: 80px 80px;
            }
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 32px;
        }

        @media (min-width: 768px) {
            .faq-header {
                margin-bottom: 60px;
            }
        }

        .faq-header h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a1a2e;
            letter-spacing: -0.5px;
        }

        @media (min-width: 768px) {
            .faq-header h2 {
                font-size: 2.2rem;
                letter-spacing: -1px;
                margin-bottom: 16px;
            }
        }

        @media (min-width: 1024px) {
            .faq-header h2 {
                font-size: 2.5rem;
            }
        }

        .faq-header p {
            color: #6b7280;
            font-size: 1rem;
        }

        @media (min-width: 768px) {
            .faq-header p {
                font-size: 1.1rem;
            }
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        @media (min-width: 768px) {
            .faq-list {
                gap: 16px;
            }
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            padding: 18px 20px;
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }

        @media (min-width: 768px) {
            .faq-item {
                border-radius: 16px;
                padding: 28px 32px;
            }
        }

        .faq-item:hover {
            border-color: #d1fae5;
        }

        .faq-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        @media (min-width: 768px) {
            .faq-item-header {
                gap: 16px;
            }
        }

        .faq-item h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: #1a1a2e;
            flex: 1;
        }

        @media (min-width: 768px) {
            .faq-item h4 {
                font-size: 1.15rem;
            }
        }

        .faq-toggle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        @media (min-width: 768px) {
            .faq-toggle {
                width: 32px;
                height: 32px;
            }
        }

        .faq-toggle svg {
            width: 14px;
            height: 14px;
            color: #6b7280;
            transition: transform 0.3s ease;
        }

        @media (min-width: 768px) {
            .faq-toggle svg {
                width: 16px;
                height: 16px;
            }
        }

        .faq-item.active .faq-toggle {
            background: #059669;
        }

        .faq-item.active .faq-toggle svg {
            color: white;
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 250px;
            padding-top: 14px;
        }

        @media (min-width: 768px) {
            .faq-item.active .faq-answer {
                padding-top: 16px;
            }
        }

        .faq-answer p {
            color: #6b7280;
            line-height: 1.7;
            font-size: 0.9rem;
        }

        @media (min-width: 768px) {
            .faq-answer p {
                font-size: 1rem;
            }
        }


        /* ROI Cards */
        .roi-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            border: 2px solid #e5e7eb;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .roi-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(5, 150, 105, 0.15);
            border-color: #059669;
        }

        .color-bar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
        }

        .before-after {
            display: flex;
            gap: 20px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }

        .before-after>div {
            flex: 1;
        }

        /* Integration Cards */
        .integration-card {
            background: white;
            border-radius: 20px;
            padding: 32px;
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .integration-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(5, 150, 105, 0.2);
            border-color: #059669;
        }



        /* Footer */
        footer {
            padding: 60px 80px;
            background: #1a1a2e;
            color: white;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2.3fr 1fr 0.6fr 1.4fr 1.2fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #059669;
        }

        @media (max-width: 768px) {
            footer {
                padding: 40px 20px !important;
            } 

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .mb-4 {
            margin-bottom: 40px;
        }

        .mt-4 {
            margin-top: 40px;
        }
        
        @media (max-width: 768px) {
  section {
    padding: 100px 20px !important;
  }
}
