        :root {
            --primary: #6B436E;
            --primary-dark: #593759;
            --primary-light: #9A83A3;
            --primary-lighter: #C0ADC5;
            --secondary: #FFD166;
            --accent: #06D6A0;
            --dark: #333333;
            --light: #F8F9FA;
            --gray: #6C757D;
            --border-radius: 10px;
            --header-height: 70px;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
        }
        
        .display-heading {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }
        
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            line-height: 1.6;
        }
        
        /* Navigation */
        .navbar {
            height: var(--header-height);
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark);
            padding: 0.5rem 1rem !important;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }
        
        /* Buttons */
        .btn {
            padding: 0.65rem 1.75rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.2s ease-in-out;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-primary:hover, .btn-primary:focus {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(156, 39, 176, 0.2);
        }
        
        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-outline-primary:hover, .btn-outline-primary:focus {
            background-color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(156, 39, 176, 0.1);
        }
        
        .btn-lg {
            padding: 0.75rem 2rem;
            font-size: 1.1rem;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            padding: 120px 0 100px;
            background: linear-gradient(150deg, #ffffff 0%, #F8F9FD 100%);
            overflow: hidden;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c0adc5' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title-highlight {
            position: relative;
            display: inline;
        }
        
        .hero-title-highlight::after {
            content: "";
            position: absolute;
            bottom: 0.15em;
            left: 0;
            width: 100%;
            height: 0.3em;
            background-color: var(--secondary);
            z-index: -1;
            opacity: 0.6;
        }
        
        .browser-mockup {
            position: relative;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .browser-mockup:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .browser-bar {
            background: #f0f0f0;
            border-bottom: 1px solid #ddd;
            padding: 10px;
            display: flex;
            align-items: center;
        }
        
        .browser-dots {
            display: flex;
            gap: 5px;
            margin-right: 10px;
        }
        
        .browser-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        
        .browser-dot.red { background-color: #FF5F57; }
        .browser-dot.yellow { background-color: #FFBD2E; }
        .browser-dot.green { background-color: #28CA42; }
        
        .browser-address {
            background: #fff;
            border-radius: 4px;
            height: 20px;
            flex-grow: 1;
        }
        
        .features-section {
            padding: 100px 0;
        }
        
        .feature-card {
            padding: 2rem;
            border-radius: var(--border-radius);
            background-color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            margin-bottom: 1.5rem;
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background-color: var(--primary-lighter);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .integrations-section {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .integration-logo {
            height: 80px;
            width: auto;
            transition: transform 0.3s ease;
            filter: grayscale(100%);
            opacity: 0.7;
        }
        
        .integration-logo:hover {
            transform: scale(1.1);
            filter: grayscale(0%);
            opacity: 1;
        }
        
        .workflow-section {
            padding: 100px 0;
        }
        
        .testimonial-section {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .testimonial-card {
            background-color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        
        .avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(150deg, var(--primary-light) 0%, var(--primary) 100%);
            color: white;
        }
        
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }
        
        footer a:hover {
            color: white;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            margin-right: 10px;
            transition: background-color 0.3s ease;
        }
        
        .social-link:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Sections common */
        .section-heading {
            margin-bottom: 3rem;
        }
        
        .section-title {
            margin-bottom: 1rem;
            font-size: 2.5rem;
        }
        
        .section-subtitle {
            color: var(--gray);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Animation utilities */
        .fade-in-up {
            animation: fadeInUp 1s ease forwards;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Form styling */
        .signup-form {
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .form-control {
            padding: 0.75rem 1rem;
            font-size: 1rem;
            border-radius: 8px;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .form-control:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 0.25rem rgba(156, 39, 176, 0.25);
        }
        
        .form-label {
            font-weight: 500;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .display-heading {
                font-size: 2.5rem;
            }
            
            .hero {
                padding: 80px 0 60px;
            }
            
            .browser-mockup {
                margin-top: 40px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .features-section, 
            .integrations-section, 
            .workflow-section, 
            .testimonial-section, 
            .cta-section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 767.98px) {
            .display-heading {
                font-size: 2rem;
            }
            
            .hero {
                padding: 60px 0 40px;
            }
            
            .browser-mockup {
                margin-top: 30px;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .features-section, 
            .integrations-section, 
            .workflow-section, 
            .testimonial-section, 
            .cta-section {
                padding: 40px 0;
            }
        }
