/* Global Styles */
:root {
    --primary-color: #6366f1;
    --secondary-color: #0ea5e9;
    --dark-color: #1e293b;
    --light-bg: #f8fafc;
    --purple-light: #f3e8ff;
    --blue-light: #dbeafe;
    --pink-light: #fce7f3;
    --yellow-light: #fef3c7;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    color: #334155;
    line-height: 1.7;
}

/* Remove number spinners */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 100%);
    padding: 200px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(147, 197, 253, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.hero-badge {
    display: inline-block;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-color);
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
    color: white;
}

.btn-secondary-hero {
    background: white;
    color: var(--dark-color);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-note {
    font-size: 0.875rem;
    color: #94a3b8;
}

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

.hero-main-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.hero-mobile-image {
    position: absolute;
    right: 40px;
    bottom: -40px;
    width: 200px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.section-badge {
    display: inline-block;
    background: var(--purple-light);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.15rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 970px;
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 600px;
}

.feature-card {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
}

.feature-icon-purple {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
}

.feature-icon-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.feature-icon-pink {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
}

.feature-icon-yellow {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.feature-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

/* Benefits Section with Image */
.benefits-image-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #fff;
}

.benefit-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.benefit-content p {
    color: #64748b;
    margin: 0;
    line-height: 1.7;
    font-size: 16px;
}

.benefit-image {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Use Cases Section */
.use-cases-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.use-cases-section .section-title {
    color: white;
}

.use-cases-section .section-description {
    color: #cbd5e1;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
}

.use-case-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-8px);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.2) 0%,
        rgba(139, 92, 246, 0.2) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.use-case-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.use-case-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #94a3b8;
}

.use-case-card p {
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonial-card {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.testimonial-stat {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.testimonial-label {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.testimonial-author-title {
    font-size: 0.875rem;
    color: #64748b;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.pricing-card {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 24px;
    padding: 48px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
    transform: scale(1.05);
}

.pricing-card:not(.featured):hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 500;
}

.pricing-period {
    color: #64748b;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: "✓";
    color: #22c55e;
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-cta {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
}

.pricing-cta:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-accordion .accordion-item {
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 24px 28px;
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f0f9ff 0%, #f3e8ff 100%);
    color: var(--primary-color);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-body {
    padding: 0 28px 28px;
    color: #64748b;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: white;
}

.cta-avatars {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.avatar-group {
    display: flex;
    margin-right: 16px;
}

.avatar-group img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

/* Modal Styles */
.modal-content {
    border-radius: 24px;
    border: none;
    overflow: hidden;
}

.modal-header {
    border: none;
    padding: 32px 32px 0;
}

.modal-body {
    padding: 32px;
}

.form-control-modern {
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.range-modern {
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(
        to right,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
}

.range-modern::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-color);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bubble-modern {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    position: absolute;
    transform: translateX(-50%);
    margin-top: -45px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .hero-mobile-image {
        width: 150px;
        right: 20px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .cta-title {
        font-size: 2rem;
    }

    .hero-mobile-image {
        display: none;
    }
}

/* Trusted Brands Section */
.trusted-brands-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.trusted-brands-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #e5e7eb 20%,
        #e5e7eb 80%,
        transparent 100%
    );
}

.trusted-brands-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.trusted-brands-stats {
    position: relative;
    margin-bottom: 16px;
}

.join-text {
    font-family: "Brush Script MT", cursive;
    font-size: 3rem;
    color: #1e293b;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-180px);
    font-style: italic;
    opacity: 0.7;
}

.brands-count {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
    position: relative;
}

.trusted-brands-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 0.2em;
    margin-top: -10px;
}

.brands-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
}

.brand-logo-item {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.brand-logo-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.05) 0%,
        rgba(139, 92, 246, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brand-logo-item:hover {
    border-color: #6366f1;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.brand-logo-item:hover::before {
    opacity: 1;
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.brand-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-logo-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.brands-row:nth-child(2) .brand-logo-item:nth-child(1) {
    animation-delay: 0.1s;
}

.brands-row:nth-child(2) .brand-logo-item:nth-child(2) {
    animation-delay: 0.2s;
}

.brands-row:nth-child(2) .brand-logo-item:nth-child(3) {
    animation-delay: 0.3s;
}

.brands-row:nth-child(2) .brand-logo-item:nth-child(4) {
    animation-delay: 0.4s;
}

.brands-row:nth-child(2) .brand-logo-item:nth-child(5) {
    animation-delay: 0.5s;
}

.brands-row:nth-child(2) .brand-logo-item:nth-child(6) {
    animation-delay: 0.6s;
}

.brands-row:nth-child(3) .brand-logo-item:nth-child(1) {
    animation-delay: 0.2s;
}

.brands-row:nth-child(3) .brand-logo-item:nth-child(2) {
    animation-delay: 0.3s;
}

.brands-row:nth-child(3) .brand-logo-item:nth-child(3) {
    animation-delay: 0.4s;
}

.brands-row:nth-child(3) .brand-logo-item:nth-child(4) {
    animation-delay: 0.5s;
}

.brands-row:nth-child(3) .brand-logo-item:nth-child(5) {
    animation-delay: 0.6s;
}

.brands-row:nth-child(3) .brand-logo-item:nth-child(6) {
    animation-delay: 0.7s;
}

.brands-row:nth-child(4) .brand-logo-item:nth-child(1) {
    animation-delay: 0.3s;
}

.brands-row:nth-child(4) .brand-logo-item:nth-child(2) {
    animation-delay: 0.4s;
}

.brands-row:nth-child(4) .brand-logo-item:nth-child(3) {
    animation-delay: 0.5s;
}

.brands-row:nth-child(4) .brand-logo-item:nth-child(4) {
    animation-delay: 0.6s;
}

.brands-row:nth-child(4) .brand-logo-item:nth-child(5) {
    animation-delay: 0.7s;
}

.brands-row:nth-child(4) .brand-logo-item:nth-child(6) {
    animation-delay: 0.8s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .brands-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .trusted-brands-section {
        padding: 80px 0;
    }

    .trusted-brands-title {
        font-size: 2rem;
    }

    .brands-count {
        font-size: 4.5rem;
    }

    .join-text {
        font-size: 2.5rem;
        transform: translateX(-140px);
        top: -15px;
    }

    .brands-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .brand-logo-item {
        padding: 24px 16px;
        min-height: 100px;
    }
}

@media (max-width: 768px) {
    .trusted-brands-title {
        font-size: 1.75rem;
    }

    .brands-count {
        font-size: 3.5rem;
    }

    .join-text {
        font-size: 2rem;
        transform: translateX(-100px);
        top: -10px;
    }

    .trusted-brands-subtitle {
        font-size: 1.125rem;
    }

    .brands-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .brand-logo-item {
        padding: 20px 12px;
        min-height: 80px;
    }

    .brand-logo-item img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .trusted-brands-section {
        padding: 60px 0;
    }

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

    .join-text {
        position: relative;
        display: block;
        transform: none;
        left: 0;
        top: 0;
        font-size: 1.75rem;
        margin-bottom: 8px;
    }
}

/* Integration Professional Section */
.integration-professional-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #fdf2f8 0%, #fce7f3 50%, #f3e8ff 100%);
    position: relative;
    overflow: hidden;
}

.integration-professional-section::before {
    content: "";
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(236, 72, 153, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.integration-professional-section::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

/* Image Container */
.integration-image-container {
    position: relative;
    z-index: 1;
}

.integration-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.integration-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    animation: floatUpDown 3s ease-in-out infinite;
    border: 2px solid rgba(236, 72, 153, 0.2);
}

.floating-card-1 {
    top: 40px;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 60px;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes floatUpDown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.floating-content {
    flex: 1;
}

.floating-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.floating-value {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 700;
}

/* Content Wrapper */
.integration-content-wrapper {
    position: relative;
    z-index: 1;
}

.section-badge-modern {
    display: inline-flex;
    align-items: center;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description-modern {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Stats Grid */
.integration-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border: 2px solid rgba(236, 72, 153, 0.15);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #ec4899;
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}

/* Features List */
.integration-features-list {
    margin-bottom: 40px;
}

.feature-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-check {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.feature-text strong {
    color: #1e293b;
    font-weight: 700;
}

/* CTA Buttons */
.btn-integration-primary {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-integration-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.4);
    color: white;
}

.btn-integration-secondary {
    background: white;
    color: #1e293b;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-integration-secondary:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .integration-professional-section {
        padding: 80px 0;
    }

    .section-title-modern {
        font-size: 2.25rem;
    }

    .floating-card-1 {
        right: 10px;
        top: 20px;
    }

    .floating-card-2 {
        left: 10px;
        bottom: 40px;
    }

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

@media (max-width: 768px) {
    .integration-professional-section {
        padding: 60px 0;
    }

    .section-title-modern {
        font-size: 1.875rem;
    }

    .section-description-modern {
        font-size: 1rem;
    }

    .floating-card {
        padding: 12px 16px;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .floating-value {
        font-size: 0.875rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .integration-cta .btn {
        width: 100%;
        margin: 8px 0 !important;
        justify-content: center;
    }

    .btn-integration-secondary {
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .floating-card-1,
    .floating-card-2 {
        position: static;
        margin: 12px 0;
    }

    .integration-bg-decoration {
        display: none;
    }
}

/* HR Processes Section */
.hr-processes-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fef3c7 0%, #fef9ef 50%, #fef3c7 100%);
    position: relative;
}

.processes-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.processes-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 32px;
}

.processes-highlight {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.highlight-text {
    background: #fef3c7;
    padding: 8px 20px;
    border-radius: 8px;
    color: #1e293b;
}

.highlight-accent {
    color: #ef4444;
    margin-left: 8px;
}

/* Tab Buttons */
.hr-tabs-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.hr-tab-button {
    background: white;
    border: 3px solid #f1f5f9;
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.hr-tab-button:hover {
    border-color: #ef4444;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.2);
}

.hr-tab-button.active {
    background: white;
    border-color: #ef4444;
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.25);
}

.tab-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fca5a5 0%, #ef4444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.hr-tab-button.active .tab-icon,
.hr-tab-button:hover .tab-icon {
    transform: scale(1.1) rotate(10deg);
}

.tab-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

.hr-tab-more {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hr-tab-more:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.3);
}

.more-badge {
    font-size: 3rem;
    font-weight: 900;
    color: white;
}

/* Tab Content */
.hr-tab-content-wrapper {
    background: white;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.hr-tab-content {
    display: none;
    animation: fadeInContent 0.6s ease-in-out;
}

.hr-tab-content.active {
    display: block;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tab-content-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.7;
}

.tab-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.tab-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.125rem;
    color: #475569;
}

.tab-features-list i {
    color: #ef4444;
    font-size: 1.5rem;
}

.btn-know-more {
    background: #065f46;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-know-more:hover {
    background: #047857;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.3);
    color: white;
}

/* Tab Content Image */
.tab-content-image {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.tab-content-image img {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Mobile Preview Card */

.mobile-screen {
    background: #065f46;
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 8px solid #1e293b;
}

.mobile-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 16px 16px 0 0;
    text-align: center;
}

.mobile-content {
    background: white;
    border-radius: 0 0 16px 16px;
    padding: 24px;
    text-align: center;
}

.mobile-text {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 20px;
}

.employee-card {
    background: #fef3c7;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.employee-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.employee-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.125rem;
}

.btn-confirm {
    background: #065f46;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    font-weight: 600;
    margin-bottom: 12px;
    cursor: pointer;
}

.btn-reject {
    background: white;
    color: #ef4444;
    border: 2px solid #fee2e2;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
}

.btn-reject i {
    margin-left: 8px;
}

/* Quick FAQ */
.quick-faq {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #f1f5f9;
    text-align: center;
}

.faq-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ef4444;
    margin-right: 12px;
}

.faq-link {
    font-size: 1.125rem;
    color: #1e293b;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #ef4444;
}

/* Responsive */
@media (max-width: 1200px) {
    .hr-tabs-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .mobile-preview-card {
        width: 240px;
        right: -20px;
        bottom: -30px;
    }
}

@media (max-width: 992px) {
    .hr-processes-section {
        padding: 80px 0;
    }

    .processes-main-title {
        font-size: 2.25rem;
    }

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

    .hr-tab-content-wrapper {
        padding: 40px;
    }

    .tab-content-title {
        font-size: 2rem;
    }

    .mobile-preview-card {
        position: static;
        width: 100%;
        max-width: 280px;
        margin: 30px auto 0;
    }
}

@media (max-width: 768px) {
    .processes-main-title {
        font-size: 1.875rem;
    }

    .processes-highlight {
        font-size: 1.25rem;
    }

    .hr-tabs-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hr-tab-button {
        padding: 24px 12px;
    }

    .tab-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .tab-title {
        font-size: 0.95rem;
    }

    .hr-tab-content-wrapper {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .tab-content-title {
        font-size: 1.5rem;
    }

    .btn-know-more {
        width: 100%;
        justify-content: center;
    }

    .quick-faq {
        text-align: left;
    }

    .faq-label,
    .faq-link {
        display: block;
        margin-bottom: 8px;
    }
}

/* Client Testimonials Section */
.client-testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.testimonials-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
    max-width: 1100px;
    margin: 0 auto 60px;
    letter-spacing: -0.02em;
}

.brand-highlight {
    color: #2563eb;
    position: relative;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    border-color: #2563eb;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px);
}

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

.testimonial-content {
    padding-right: 20px;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

.watch-video-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2563eb;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.watch-video-link i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.watch-video-link:hover {
    color: #1d4ed8;
    gap: 14px;
}

.watch-video-link:hover i {
    transform: scale(1.2);
}

/* Author Section */
.testimonial-author {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.author-image-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.author-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid #2563eb;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-image {
    transform: scale(1.1);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.3);
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
}

/* View More Button */
.btn-view-more {
    background: white;
    color: #2563eb;
    border: 3px solid #2563eb;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-view-more:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

/* Quote Decoration */
.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: #e0e7ff;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
    z-index: 0;
}

.testimonial-content,
.testimonial-author {
    position: relative;
    z-index: 1;
}

/* Modal Styling */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .client-testimonials-section {
        padding: 80px 0;
    }

    .testimonials-main-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 32px;
    }

    .testimonial-author {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-main-title {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: 24px;
    }

    .company-name {
        font-size: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-image {
        width: 120px;
        height: 120px;
    }

    .btn-view-more {
        width: 100%;
        text-align: center;
    }

    .testimonial-card::after {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .client-testimonials-section {
        padding: 60px 0;
    }

    .testimonials-main-title {
        font-size: 1.5rem;
    }

    .testimonial-content {
        padding-right: 0;
    }
}
