/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 120px 0 80px;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    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='%236366f1' fill-opacity='0.1'%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");
    opacity: 0.15;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.bg-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: "Inter", sans-serif;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    display: inline-block;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.gradient-text::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 40%;
    bottom: -10px;
    left: -10%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(20, 184, 166, 0.2) 100%);
    z-index: -1;
    transform: skewX(-15deg) rotate(-2deg);
    filter: blur(10px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.2) 0%, 
        rgba(20, 184, 166, 0.2) 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #6366f1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.stat-item:hover .stat-icon {
    background: #6366f1;
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px -10px rgba(99, 102, 241, 0.5);
}

.stat-content h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.stat-content p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.btn-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    border: none;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #14b8a6 0%, #6366f1 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-gradient:hover::before {
    opacity: 1;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.5);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.trusted-by {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trusted-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.trusted-logos img {
    height: 30px;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.trusted-logos img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInUp 1s ease 0.4s backwards;
    padding: 2rem;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    opacity: 0.15;
    z-index: -1;
    filter: blur(40px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -50px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.1;
    }
}

.hero-image {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(20, 184, 166, 0.2) 100%);
    pointer-events: none;
}

.hero-image:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-1 {
    top: 10%;
    right: -30px;
    animation: floatCard 5s ease-in-out infinite;
}

.card-2 {
    bottom: 30%;
    left: -30px;
    animation: floatCard 5s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 10%;
    right: 10%;
    animation: floatCard 5s ease-in-out infinite 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, -10px);
    }
}

.floating-card .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.floating-card .content {
    flex: 1;
}

.floating-card .title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #0f172a;
}

.floating-card .subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}

.tech-badges {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 10;
}

.tech-badge {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-badge:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.tech-badge img {
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.tech-badge:hover img {
    transform: scale(1.1);
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.why-us::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    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='%236366f1' 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");
    opacity: 0.5;
}

.why-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.why-card:hover .card-overlay {
    opacity: 1;
}

.why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #6366f1;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.icon-blur {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    color: #fff;
    box-shadow: 0 15px 30px -10px rgba(99, 102, 241, 0.4);
}

.why-card:hover .icon-blur {
    opacity: 0.5;
}

.why-card h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.why-stats {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat .value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat .value small {
    font-size: 1.25rem;
    vertical-align: super;
}

.stat .label {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

.why-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.why-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #334155;
    font-size: 1rem;
}

.why-features li i {
    color: #6366f1;
    font-size: 1rem;
}

.why-card:hover .why-features li i {
    animation: checkmark 0.5s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 991.98px) {
    .why-us {
        padding: 60px 0;
    }
    
    .why-card {
        padding: 2rem;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .why-card h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .why-card {
        margin-bottom: 2rem;
    }
    
    .stat .value {
        font-size: 2rem;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bg-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    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='%236366f1' fill-opacity='0.1'%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");
    opacity: 0.1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(20, 184, 166, 0.08) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.25);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.active {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 30px 60px -20px rgba(99, 102, 241, 0.3);
}

.card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(20, 184, 166, 0.15) 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: rotate(-5deg);
}

.icon-blur {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(15px);
    opacity: 0.5;
    transition: all 0.5s ease;
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    color: #fff;
    box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.5);
}

.feature-card:hover .icon-blur {
    opacity: 0.8;
    filter: blur(20px);
}

.feature-card h3 {
    color: #1e293b;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.feature-stats {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.feature-stats .stat {
    text-align: center;
}

.feature-stats .value {
    color: #6366f1;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-stats .label {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

.feature-list {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.feature-list li {
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #6366f1;
    font-size: 1.2rem;
    background: rgba(99, 102, 241, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-list li i {
    background: #6366f1;
    color: #fff;
    transform: scale(1.1);
}

.feature-link {
    color: #6366f1;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    text-decoration: none;
}

.feature-link i {
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: #14b8a6;
    gap: 1rem;
}

.feature-link:hover i {
    transform: translateX(5px);
}

.feature-link:hover i {
    transform: translateX(8px);
}

@keyframes checkmark {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 991.98px) {
    .features {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
    }
    
    .feature-stats .value {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

/* Integrations Section */
.integrations {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.integrations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='%236366f1' 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");
    animation: patternMove 30s linear infinite;
    opacity: 0.5;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.integration-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.integration-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.integration-item:hover {
    transform: translateY(-15px);
    border-color: rgba(99, 102, 241, 0.3);
}

.integration-item:hover::before {
    opacity: 1;
}

.integration-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(20, 184, 166, 0.2) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.5s ease;
    transform: rotate(-5deg);
}

.integration-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.5));
}

.integration-item:hover .integration-icon {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.integration-item h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.integration-item p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    min-height: 60px;
}

.integration-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.brand-tag {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.brand-tag:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.integration-item .feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.integration-item .feature-link:hover {
    color: #fff;
    gap: 1rem;
}

.integration-item .feature-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.integration-item .feature-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .integration-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .integration-item {
        padding: 2rem;
    }
    
    .integration-item h4 {
        font-size: 1.25rem;
    }
    
    .integration-item p {
        font-size: 1rem;
        min-height: auto;
        margin-bottom: 1rem;
    }
    
    .brand-tag {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 767.98px) {
    .integrations {
        padding: 60px 0;
    }
    
    .integration-icon {
        width: 70px;
        height: 70px;
    }
    
    .integration-icon i {
        font-size: 2rem;
    }
    
    .integration-item h4 {
        font-size: 1.25rem;
    }
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    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='%236366f1' 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");
    opacity: 0.5;
    animation: patternMove 30s linear infinite;
}

.price-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    padding: 2rem;
}

.price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(20, 184, 166, 0.08) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.price-card:hover {
    transform: translateY(-15px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.25);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card.popular {
    border: 2px solid #6366f1;
    box-shadow: 0 30px 60px -20px rgba(99, 102, 241, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.popular-badge i {
    color: #fff;
    font-size: 0.875rem;
    animation: starPulse 2s infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.price-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(20, 184, 166, 0.15) 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transform: rotate(-5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.5));
}

.price-card:hover .price-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
}

.price-card:hover .price-icon i {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.price {
    margin: 1.5rem 0;
    position: relative;
    display: inline-flex;
    align-items: baseline;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    color: #6366f1;
    margin-right: 0.25rem;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.period {
    font-size: 1rem;
    color: #64748b;
    margin-left: 0.5rem;
}

.card-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.card-body {
    position: relative;
    z-index: 1;
}

.price-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.price-card .feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #334155;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.price-card .feature-list li:last-child {
    border-bottom: none;
}

.price-card .feature-list li i {
    color: #6366f1;
    font-size: 1.2rem;
    background: rgba(99, 102, 241, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.price-card:hover .feature-list li i {
    background: #6366f1;
    color: #fff;
    transform: scale(1.1);
}

.card-action {
    position: relative;
    z-index: 1;
}

.card-action .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-action .btn i {
    transition: transform 0.3s ease;
}

.card-action .btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .pricing {
        padding: 60px 0;
    }
    
    .price-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .price-icon {
        width: 70px;
        height: 70px;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .currency {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .price-card {
        margin-bottom: 1.5rem;
    }
    
    .popular-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .card-header h3 {
        font-size: 1.5rem;
    }
    
    .price-card .feature-list li {
        font-size: 1rem;
    }
}

/* CTA Section */
.cta {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 150px 0;
    color: #fff;
    overflow: hidden;
    margin-top: 6rem;
    border-radius: 60px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.cta::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: 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='%236366f1' fill-opacity='0.1'%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");
    opacity: 0.1;
    animation: patternMove 30s linear infinite;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.cta h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #14b8a6);
    border-radius: 2px;
}

.cta .lead {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta .btn-wrapper {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
}

.cta .btn-wrapper::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.cta .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(99, 102, 241, 0.5);
}

.cta .btn-primary:hover::before {
    transform: translateX(0);
}

.cta .btn-outline-primary {
    background: #ffffff;
    color: #0f172a;
    border: 2px solid #ffffff;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.cta .btn-outline-primary:hover {
    background: #ffd700;
    border-color: #ffd700;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.cta .btn-primary i,
.cta .btn-outline-primary i {
    transition: transform 0.3s ease;
}

.cta .btn-primary:hover i,
.cta .btn-outline-primary:hover i {
    transform: translateX(5px);
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}

@media (max-width: 991.98px) {
    .cta {
        padding: 100px 0;
        border-radius: 40px;
        margin-top: 4rem;
    }

    .cta h2 {
        font-size: 3rem;
    }

    .cta .lead {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .cta {
        padding: 80px 0;
        border-radius: 30px;
        margin-top: 3rem;
    }

    .cta h2 {
        font-size: 2.5rem;
    }

    .cta .lead {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .cta .btn-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .cta .btn-primary,
    .cta .btn-outline-primary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .trusted-logos {
        gap: 1rem;
    }

    .trusted-logos img {
        height: 25px;
    }
}

@media (max-width: 767.98px) {
    .service-hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-content h3 {
        font-size: 2rem;
    }

    .trusted-by {
        margin-top: 2rem;
    }

    .trusted-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 3rem;
    }

    .tech-badges {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 2rem;
    }

    .why-card {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .btn-glass,
    .btn-outline-glass,
    .btn-gradient {
        width: 100%;
        margin-bottom: 1rem;
    }
} 