/* Hero Section */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8faff 0%, #e8f0fe 100%);
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.text-gradient {
    background: linear-gradient(45deg, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content {
    padding-right: 50px;
}

.hero-buttons {
    margin-top: 40px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
}

.stats-container {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #2563eb;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
}

.feature-card {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #4f46e5;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Integration Section */
.integration-section {
    padding: 100px 0;
    background: #f8faff;
}

.code-preview {
    background: #1e293b;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.code-header {
    background: #2d3748;
    padding: 15px;
    display: flex;
    align-items: center;
}

.code-dots {
    display: flex;
    gap: 8px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dots span:nth-child(1) { background: #ff5f56; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #27c93f; }

.code-title {
    margin-left: 20px;
    color: #a0aec0;
    font-size: 0.9rem;
}

.code-preview pre {
    margin: 0;
    padding: 20px;
}

.integration-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.integration-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
}

.integration-features i {
    color: #4f46e5;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
}

.testimonial-card {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-size: 1.1rem;
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1e293b;
}

.author-info p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-buttons {
    margin-top: 40px;
}

.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }

    .stats-container {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    .integration-section .col-lg-6:first-child {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .feature-card {
        margin-bottom: 30px;
    }

    .testimonial-card {
        margin-bottom: 30px;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}
