* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #f8f8f8;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo-img {
    height: 40px;
}

.cta-button {
    background-color: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 5rem 5%;
    background-color: #f0f0f0;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content, .hero-image {
        flex: none;
        width: 100%;
    }

    .hero-content {
        padding-right: 0;
        margin-top: 2rem;
    }

    .hero-image img {
        max-width: 80%;
    }
}

.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.icon {
    width: 64px;
    height: 64px;
    background-color: #f5f3ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon svg {
    color: #6366f1;
    width: 32px;
    height: 32px;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

p {
    color: #6b7280;
    font-size: 0.975rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features {
        padding: 2rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section {
    margin: 4rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.reverse .section-content {
    flex-direction: row-reverse;
}

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

.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.workspace {
    border-radius: 8px;
    background-color: #fff;
}

.text-content {
    flex: 1;
    padding: 2rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.highlight {
    background-color: #ffeb3b;
    padding: 0 0.5rem;
}

p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.button {
    background-color: #6366f1;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #4f46e5;
}

@media (max-width: 968px) {
    .section-content {
        flex-direction: column;
        gap: 2rem;
    }

    .reverse .section-content {
        flex-direction: column;
    }

    h2 {
        font-size: 2rem;
    }

    .text-content {
        padding: 1rem 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Add these styles to the existing CSS file */

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background-color: #f8f9ff;
}

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

.pricing-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.pricing-card {
    background: #6366f1;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.profit {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.pricing-card li {
    margin: 0.75rem 0;
    font-size: 0.95rem;
}

.pricing-button {
    background: white;
    color: #6366f1;
    border: none;
    width: 100%;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pricing-button:hover {
    background: #f8f9ff;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background-color: white;
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.button.secondary {
    background-color: transparent;
    border: 2px solid #6366f1;
    color: #6366f1;
}

.button.secondary:hover {
    background-color: #6366f1;
    color: white;
}

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

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .stats-buttons {
        flex-direction: column;
        max-width: 200px;
        margin: 1.5rem auto 0;
    }
}

/* Animation classes (add to existing animations) */
.pricing-card, .stat-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing-card.animate, .stat-card.animate {
    opacity: 1;
    transform: translateY(0);
}
/* Add these styles to your existing CSS file */

/* Pricing Section Styles */
.pricing-section {
    padding: 4rem 0;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.pricing-card {
    background: #6366f1;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.plan-type {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.profit {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    margin: 0.8rem 0;
}

.pricing-btn {
    background: white;
    color: #6366f1;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Stats Section Styles */
.stats-section {
    padding: 4rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.stats-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.stats-btn {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stats-btn.primary {
    background: #6366f1;
    color: white;
    border: none;
}

.stats-btn.secondary {
    background: transparent;
    border: 1px solid #6366f1;
    color: #6366f1;
}

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

.stat-card {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* Add these styles to your existing CSS file */
.testimonials-section {
    padding: 4rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.header-content {
    max-width: 600px;
}

.header-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-content p {
    color: #666;
    line-height: 1.6;
}

.testimonial-btn {
    background: #6366f1;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: #4f46e5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.quote-mark {
    font-size: 4rem;
    color: #6366f1;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1rem;
    line-height: 1;
}

.quote-text {
    position: relative;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.client-info {
    margin-top: auto;
}

.client-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.client-info span {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
/* Add these styles to your existing CSS file */
.site-footer {
    background-color: #f8f9ff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    margin-bottom: 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.footer-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-copyright {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #666;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

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