:root {
        --primary-color: #1F65E6;
        --primary-dark: #1854C4;
        --primary-light: #3B7BF2;
        --secondary-color: #42B883;
        --secondary-dark: #35A173;
        --accent-color: #FF6B6B;
        --dark-color: #1A2342;
        --dark-color-light: #2D3B6E;
        --light-color: #F5F8FF;
        --gray-color: #94A3B8;
        --white: #FFFFFF;
        --text-color: #333333;
        --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #6EE7B7);
        --gradient-dark: linear-gradient(135deg, var(--dark-color), var(--dark-color-light));
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        scroll-behavior: smooth;
    }

    body {
        color: var(--text-color);
        background-color: var(--light-color);
        line-height: 1.6;
        overflow-x: hidden;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
    }

    /* Shapes & Background Elements */
    .shape {
        position: absolute;
        z-index: -1;
    }

    .shape-blob1 {
        top: 15%;
        right: -5%;
        width: 600px;
        height: 600px;
        background: rgba(31, 101, 230, 0.05);
        border-radius: 50% 30% 70% 50% / 40% 60% 30% 60%;
        transform: rotate(20deg);
    }

    .shape-blob2 {
        bottom: 5%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: rgba(66, 184, 131, 0.05);
        border-radius: 70% 50% 50% 30% / 30% 60% 40% 60%;
        transform: rotate(-15deg);
    }

    .shape-circle {
        position: absolute;
        border-radius: 50%;
        opacity: 0.03;
    }

    .circle1 {
        top: 20%;
        left: 5%;
        width: 150px;
        height: 150px;
        background: var(--primary-color);
    }

    .circle2 {
        bottom: 15%;
        right: 8%;
        width: 200px;
        height: 200px;
        background: var(--secondary-color);
    }

    /* Header/Navigation - Enhanced */
    header {
        background-color: var(--white);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        position: fixed;
        width: 100%;
        z-index: 1000;
        transition: all 0.4s ease;
    }

    header.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 8px 0;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
        transition: padding 0.3s ease;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo-icon {
        position: relative;
        width: 40px;
        height: 40px;
        background: var(--gradient-primary);
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 12px;
        box-shadow: 0 4px 12px rgba(31, 101, 230, 0.3);
    }

    .logo-icon i {
        color: white;
        font-size: 20px;
    }

    .logo h1 {
        font-size: 1.5rem;
        color: var(--dark-color);
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    .nav-links {
        display: flex;
        align-items: center;
    }

    .nav-links li {
        list-style: none;
        margin-left: 35px;
        position: relative;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--dark-color);
        font-weight: 500;
        transition: var(--transition);
        position: relative;
        padding-bottom: 5px;
    }

    .nav-links a:not(.btn)::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-links a:not(.btn):hover {
        color: var(--primary-color);
    }

    /* Buttons - Enhanced */
    .btn {
        display: inline-block;
        padding: 12px 24px;
        background: var(--gradient-primary);
        color: var(--white);
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(31, 101, 230, 0.25);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-secondary);
        z-index: -1;
        transition: opacity 0.5s ease;
        opacity: 0;
    }

    .btn:hover::before {
        opacity: 1;
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(31, 101, 230, 0.35);
    }

    .btn-light {
        background: var(--white);
        color: var(--primary-color);
        border: 1px solid rgba(31, 101, 230, 0.3);
        box-shadow: 0 4px 12px rgba(31, 101, 230, 0.1);
    }

    .btn-light::before {
        background: linear-gradient(135deg, #F5F8FF, #E6EDF9);
    }

    .btn-light:hover {
        color: var(--primary-dark);
        box-shadow: 0 6px 15px rgba(31, 101, 230, 0.15);
    }

    .btn-green {
        background: var(--gradient-secondary);
        box-shadow: 0 4px 12px rgba(66, 184, 131, 0.25);
    }

    .btn-green::before {
        background: linear-gradient(135deg, #42B883, #3B7BF2);
    }

    .btn-green:hover {
        box-shadow: 0 6px 15px rgba(66, 184, 131, 0.35);
    }

    .btn-sm {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 1.1rem;
    }

    .btn i {
        margin-right: 8px;
    }

    /* Hero Section - Enhanced */
    .hero {
        background: var(--gradient-primary);
        position: relative;
        color: var(--white);
        padding: 180px 0 120px;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.4;
    }

    .hero-content {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .hero h2 {
        font-size: 3.2rem;
        font-weight: 800;
        margin-bottom: 25px;
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.25rem;
        margin-bottom: 40px;
        opacity: 0.95;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
    }

    .hero-image {
        margin-top: 60px;
        position: relative;
    }

    .hero-dashboard {
        width: 100%;
        max-width: 900px;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        transform: translateY(0);
        animation: float 6s ease-in-out infinite;
        margin: 0 auto;
        transition: transform 0.5s ease;
    }

    .hero-dashboard:hover {
        transform: translateY(-10px);
    }

    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
    }

    /* Features Section - Enhanced */
    .features {
        padding: 120px 0 100px;
        position: relative;
    }

    .section-title {
        text-align: center;
        margin-bottom: 70px;
        position: relative;
    }

    .section-tag {
        display: inline-block;
        padding: 8px 16px;
        background-color: rgba(31, 101, 230, 0.1);
        border-radius: 30px;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.85rem;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .section-title h3 {
        font-size: 2.5rem;
        color: var(--dark-color);
        margin-bottom: 20px;
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    .section-title p {
        color: var(--gray-color);
        max-width: 650px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 40px;
    }

    .feature-card {
        background-color: var(--white);
        border-radius: 16px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
        z-index: -1;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

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

    .feature-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(31, 101, 230, 0.1), rgba(59, 123, 242, 0.1));
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 25px;
        transition: var(--transition);
    }

    .feature-card:hover .feature-icon {
        background: var(--gradient-primary);
        transform: rotate(5deg) scale(1.1);
    }

    .feature-icon i {
        font-size: 2rem;
        color: var(--primary-color);
        transition: var(--transition);
    }

    .feature-card:hover .feature-icon i {
        color: var(--white);
    }

    .feature-card h4 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: var(--dark-color);
        position: relative;
        padding-bottom: 15px;
    }

    .feature-card h4::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background-color: var(--primary-light);
    }

    .feature-card p {
        color: var(--gray-color);
        font-size: 1rem;
        line-height: 1.7;
    }

    /* How It Works Section - New */
    .how-it-works {
        padding: 100px 0;
        background-color: rgba(31, 101, 230, 0.02);
        position: relative;
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 50px;
    }

    .step-card {
        background-color: var(--white);
        border-radius: 16px;
        padding: 40px 30px;
        position: relative;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        transition: var(--transition);
        overflow: hidden;
    }

    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .step-number {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--gradient-primary);
        color: white;
        border-radius: 50%;
        font-weight: 700;
        font-size: 1.2rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, rgba(31, 101, 230, 0.1), rgba(59, 123, 242, 0.1));
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 25px;
    }

    .step-icon i {
        font-size: 1.8rem;
        color: var(--primary-color);
    }

    .step-card h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: var(--dark-color);
    }

    .step-card p {
        color: var(--gray-color);
        margin-bottom: 20px;
    }

    .step-card .step-link {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: var(--transition);
    }

    .step-card .step-link i {
        margin-left: 5px;
        transition: var(--transition);
    }

    .step-card .step-link:hover {
        color: var(--primary-dark);
    }

    .step-card .step-link:hover i {
        transform: translateX(5px);
    }

    /* Dashboard Preview - Enhanced */
    .dashboard-preview {
        padding: 120px 0;
        background-color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .preview-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    .preview-text {
        flex: 1;
        max-width: 550px;
    }

    .preview-text h3 {
        font-size: 2.2rem;
        margin-bottom: 25px;
        color: var(--dark-color);
        line-height: 1.3;
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    .preview-text p {
        margin-bottom: 25px;
        color: var(--text-color);
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .feature-list {
        margin-bottom: 30px;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .feature-check {
        min-width: 24px;
        height: 24px;
        background-color: rgba(31, 101, 230, 0.1);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 15px;
        margin-top: 2px;
    }

    .feature-check i {
        color: var(--primary-color);
        font-size: 0.8rem;
    }

    .feature-text {
        font-size: 1.05rem;
        color: var(--text-color);
    }

    .preview-image {
        flex: 1;
        position: relative;
    }

    .device-frame {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .device-frame:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
    }

    .device-screen {
        width: 100%;
        display: block;
        border-radius: 12px;
    }

    /* Statistics Section - New */
    .statistics {
        padding: 80px 0;
        background: var(--gradient-dark);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .statistics::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        text-align: center;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-value {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #FFFFFF, #E6EDF9);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

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

    /* Testimonials - Enhanced */
    .testimonials {
        padding: 120px 0;
        position: relative;
    }

    .testimonials-slider {
        position: relative;
        margin-top: 50px;
        padding: 20px 10px;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 40px;
    }

    .testimonial-card {
        background-color: var(--white);
        border-radius: 16px;
        padding: 35px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        position: relative;
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .testimonial-rating {
        margin-bottom: 20px;
    }

    .testimonial-rating i {
        color: #FFD700;
        font-size: 1rem;
        margin-right: 3px;
    }

    .testimonial-text {
        font-style: italic;
        margin-bottom: 25px;
        color: var(--text-color);
        font-size: 1.05rem;
        line-height: 1.7;
        position: relative;
    }

    .testimonial-text::before {
        content: '\201C';
        font-size: 60px;
        color: rgba(31, 101, 230, 0.1);
        position: absolute;
        top: -20px;
        left: -10px;
        font-family: serif;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-right: 15px;
        overflow: hidden;
        background-color: #ddd;
        border: 3px solid rgba(31, 101, 230, 0.1);
    }

    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author-info h5 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: var(--dark-color);
    }

    .author-info p {
        color: var(--primary-color);
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Pricing - Enhanced */
    .pricing {
        background-color: rgba(31, 101, 230, 0.02);
        padding: 120px 0;
        position: relative;
    }

    .pricing-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 40px 0 60px;
    }

    .toggle-label {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 15px;
    }

    .toggle-switch {
        position: relative;
        width: 60px;
        height: 32px;
        background: var(--gradient-primary);
        border-radius: 34px;
        cursor: pointer;
        display: inline-block;
    }

    .toggle-switch::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: white;
        top: 4px;
        left: 4px;
        transition: all 0.3s;
    }

    .toggle-switch.annual::after {
        transform: translateX(28px);
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 20px;
    }

    .pricing-card {
        background-color: var(--white);
        border-radius: 16px;
        padding: 50px 30px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .pricing-card.featured {
        background: linear-gradient(#FFFFFF, #F5F8FF);
        border: 2px solid var(--primary-color);
        transform: scale(1.05) translateY(-5px);
        z-index: 2;
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-15px);
    }

    .pricing-badge {
        position: absolute;
        top: 0;
        right: 0;
        background: var(--primary-color);
        color: white;
        padding: 10px 15px;
        font-size: 0.8rem;
        font-weight: 600;
        border-bottom-left-radius: 16px;
    }

    .pricing-type {
        display: inline-block;
        padding: 8px 16px;
        background-color: rgba(31, 101, 230, 0.1);
        color: var(--primary-color);
        border-radius: 30px;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .pricing-card.featured .pricing-type {
        background-color: rgba(31, 101, 230, 0.2);
    }

    .pricing-price {
        font-size: 3rem;
        font-weight: 700;
        color: var(--dark-color);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pricing-price .currency {
        font-size: 1.5rem;
        margin-right: 5px;
        color: var(--gray-color);
        align-self: flex-start;
        margin-top: 10px;
    }

    .pricing-price .period {
font-size: 1rem;
color: var(--gray-color);
margin-left: 5px;
font-weight: normal;
align-self: flex-end;
margin-bottom: 10px;
}

.pricing-description {
color: var(--gray-color);
margin-bottom: 25px;
font-size: 1rem;
}

.pricing-features {
margin-bottom: 30px;
text-align: left;
}

.pricing-feature {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
padding-left: 10px;
}

.feature-icon-check {
color: var(--secondary-color);
margin-right: 10px;
font-size: 1rem;
}

.feature-icon-times {
color: var(--accent-color);
margin-right: 10px;
font-size: 1rem;
}

.feature-text {
color: var(--text-color);
font-size: 0.95rem;
}

/* CTA Section - Enhanced */
.cta {
padding: 100px 0;
background: var(--gradient-primary);
color: var(--white);
position: relative;
overflow: hidden;
}

.cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
opacity: 0.4;
}

.cta-content {
max-width: 700px;
margin: 0 auto;
text-align: center;
position: relative;
z-index: 2;
}

.cta h3 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 20px;
line-height: 1.3;
}

.cta p {
font-size: 1.2rem;
margin-bottom: 30px;
opacity: 0.95;
}

.cta-buttons {
display: flex;
justify-content: center;
gap: 20px;
}

/* FAQ Section - New */
.faq {
padding: 120px 0;
position: relative;
}

.accordion {
max-width: 800px;
margin: 50px auto 0;
}

.accordion-item {
background: var(--white);
border-radius: 12px;
margin-bottom: 20px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
overflow: hidden;
transition: var(--transition);
}

.accordion-item:hover {
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.accordion-header {
padding: 20px 30px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
transition: var(--transition);
}

.accordion-header:hover {
background-color: rgba(31, 101, 230, 0.03);
}

.accordion-title {
font-size: 1.1rem;
font-weight: 600;
color: var(--dark-color);
}

.accordion-icon {
color: var(--primary-color);
font-size: 1.2rem;
transition: transform 0.3s ease;
}

.accordion-content {
padding: 0 30px;
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-content p {
color: var(--gray-color);
padding-bottom: 20px;
line-height: 1.7;
}

.accordion-item.active .accordion-header {
background-color: rgba(31, 101, 230, 0.05);
}

.accordion-item.active .accordion-icon {
transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
max-height: 300px;
padding-top: 10px;
}

/* Newsletter Section - Enhanced */
.newsletter {
padding: 80px 0;
background-color: rgba(31, 101, 230, 0.02);
position: relative;
}

.newsletter-container {
max-width: 650px;
margin: 0 auto;
text-align: center;
}

.newsletter h3 {
font-size: 1.8rem;
margin-bottom: 20px;
color: var(--dark-color);
}

.newsletter p {
color: var(--gray-color);
margin-bottom: 30px;
font-size: 1.1rem;
}

.newsletter-form {
display: flex;
gap: 10px;
max-width: 500px;
margin: 0 auto;
position: relative;
}

.newsletter-input {
flex: 1;
padding: 16px 20px;
border-radius: 8px;
border: 1px solid rgba(0, 0, 0, 0.1);
background-color: var(--white);
font-size: 1rem;
transition: var(--transition);
color: var(--text-color);
}

.newsletter-input:focus {
outline: none;
border-color: var(--primary-light);
box-shadow: 0 0 0 3px rgba(31, 101, 230, 0.1);
}

.newsletter-btn {
padding: 12px 24px;
border-radius: 8px;
background: var(--gradient-primary);
color: var(--white);
font-weight: 600;
border: none;
cursor: pointer;
transition: var(--transition);
box-shadow: 0 4px 12px rgba(31, 101, 230, 0.25);
}

.newsletter-btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(31, 101, 230, 0.35);
}

/* Footer - Enhanced */
.footer {
background-color: var(--dark-color);
color: var(--white);
padding: 100px 0 60px;
position: relative;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 50px;
}

.footer-col {
position: relative;
}

.footer-logo {
display: flex;
align-items: center;
margin-bottom: 20px;
}

.footer-logo-icon {
width: 40px;
height: 40px;
background: var(--gradient-primary);
border-radius: 12px;
display: flex;
justify-content: center;
align-items: center;
margin-right: 12px;
}

.footer-logo-icon i {
color: white;
font-size: 20px;
}

.footer-logo h2 {
font-size: 1.5rem;
font-weight: 700;
letter-spacing: -0.5px;
}

.footer-about {
margin-bottom: 20px;
color: rgba(255, 255, 255, 0.7);
line-height: 1.7;
}

.footer-social {
display: flex;
gap: 15px;
}

.social-link {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
display: flex;
justify-content: center;
align-items: center;
transition: var(--transition);
}

.social-link:hover {
background-color: var(--primary-color);
transform: translateY(-3px);
}

.social-link i {
color: white;
font-size: 1rem;
}

.footer-col h4 {
font-size: 1.2rem;
margin-bottom: 25px;
position: relative;
display: inline-block;
}

.footer-col h4::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 40px;
height: 2px;
background-color: var(--primary-color);
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: var(--transition);
display: inline-flex;
align-items: center;
}

.footer-links a i {
margin-right: 8px;
font-size: 0.8rem;
opacity: 0;
transition: var(--transition);
}

.footer-links a:hover {
color: var(--white);
transform: translateX(5px);
}

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

.footer-contact {
margin-bottom: 15px;
display: flex;
align-items: flex-start;
}

.contact-icon {
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-right: 15px;
}

.contact-icon i {
color: var(--primary-light);
font-size: 1rem;
}

.contact-text {
color: rgba(255, 255, 255, 0.7);
font-size: 0.95rem;
line-height: 1.6;
}

.footer-bottom {
margin-top: 70px;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
color: rgba(255, 255, 255, 0.5);
font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
display: none;
background: none;
border: none;
color: var(--dark-color);
font-size: 1.5rem;
cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1200px) {
.container {
    width: 95%;
}

.preview-content {
    flex-direction: column;
}

.preview-text {
    max-width: 100%;
    order: 1;
}

.preview-image {
    order: 0;
    margin-bottom: 50px;
}
}

@media (max-width: 992px) {
.hero h2 {
    font-size: 2.8rem;
}

.section-title h3 {
    font-size: 2.2rem;
}

.pricing-card.featured {
    transform: scale(1);
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
}
}

@media (max-width: 768px) {
.header-content {
    padding: 12px 0;
}

.nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: left 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-links.active {
    left: 0;
}

.nav-links li {
    margin: 0 0 25px 0;
}

.mobile-menu-toggle {
    display: block;
}

.hero {
    padding: 150px 0 100px;
}

.hero h2 {
    font-size: 2.5rem;
}

.hero-buttons {
    flex-direction: column;
    gap: 15px;
}

.hero-buttons .btn {
    width: 100%;
}

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

.stats-grid {
    grid-template-columns: repeat(2, 1fr);
}

.cta-buttons {
    flex-direction: column;
    gap: 15px;
}

.cta-buttons .btn {
    width: 100%;
}

.newsletter-form {
    flex-direction: column;
}

.newsletter-btn {
    width: 100%;
}
}

@media (max-width: 576px) {
.logo h1 {
    font-size: 1.3rem;
}

.logo-icon {
    width: 35px;
    height: 35px;
}

.hero h2 {
    font-size: 2rem;
}

.hero p {
    font-size: 1.1rem;
}

.hero-dashboard {
    margin-top: 40px;
}

.section-title h3 {
    font-size: 1.8rem;
}

.feature-card,
.step-card,
.testimonial-card,
.pricing-card {
    padding: 30px 20px;
}

.stats-grid {
    grid-template-columns: 1fr;
}

.stat-value {
    font-size: 2.5rem;
}

.footer-content {
    grid-template-columns: 1fr;
}

.accordion-title {
    font-size: 1rem;
}

.accordion-header {
    padding: 15px 20px;
}

.accordion-content {
    padding: 0 20px;
}
}

/* Animations */
.animate-fadeIn {
animation: fadeIn 1s ease forwards;
}

.animate-fadeInUp {
animation: fadeInUp 1s ease forwards;
}

.animate-fadeInDown {
animation: fadeInDown 1s ease forwards;
}

.animate-fadeInLeft {
animation: fadeInLeft 1s ease forwards;
}

.animate-fadeInRight {
animation: fadeInRight 1s ease forwards;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

@keyframes fadeInUp {
from { 
    opacity: 0;
    transform: translateY(40px);
}
to { 
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes fadeInDown {
from { 
    opacity: 0;
    transform: translateY(-40px);
}
to { 
    opacity: 1;
    transform: translateY(0);
}
}

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

@keyframes fadeInRight {
from { 
    opacity: 0;
    transform: translateX(40px);
}
to { 
    opacity: 1;
    transform: translateX(0);
}
}
