.solutions-hero {
    min-height: 50vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 35px;
    background: linear-gradient(45deg, #6366f1, #7c3aed, #ec4899, #10b981);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
    animation: borderGlow 10s infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icons i {
    font-size: 20px;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 8s infinite;
    opacity: 0.8;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
}

.feature-card:hover {
    transform: translateZ(30px) rotateX(10deg);
    background: rgba(255, 255, 255, 0.1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.feature-card:hover::after {
    left: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 32px;
}

.icon-pulse {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.parallax-card {
    background: var(--purple-gradient);
    border-radius: 30px;
    padding: 4rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.parallax-content {
    position: relative;
    z-index: 1;
    transform: translateZ(50px);
    transition: transform 0.3s ease;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.3;
    animation: shapeFloat 10s infinite;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 20px) rotate(90deg);
    }

    50% {
        transform: translate(-20px, 30px) rotate(180deg);
    }

    75% {
        transform: translate(-30px, -20px) rotate(270deg);
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-card i {
    font-size: 32px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--blue-gradient);
    border-radius: 2px;
}

.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.2;
    animation: glowPulse 10s infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

.glow-1 {
    background: #6366f1;
    top: -200px;
    left: 10%;
}

.glow-2 {
    background: #7c3aed;
    bottom: -200px;
    right: 10%;
}

.glow-3 {
    background: #10b981;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

.cta-button {
    background: var(--blue-gradient);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
    color: white;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.cta-button:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
}


.features-showcase {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 3rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-card:hover::before {
    opacity: 1;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    position: relative;
}

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #6366f1, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--blue-gradient);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-content.left {
    margin-right: 55%;
}

.timeline-content.right {
    margin-left: 55%;
}

.timeline-content.left::before {
    right: -60px;
}

.timeline-content.right::before {
    left: -60px;
}

/* Integration Section */
.integration-section {
    padding: 6rem 0;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.integration-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.integration-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
}

.integration-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.integration-item:hover::after {
    transform: translateX(100%);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    background: var(--blue-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    position: relative;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
    background: var(--purple-gradient);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 4rem;
    transform: rotate(45deg);
    font-size: 0.875rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 2rem 0;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card.featured .price-amount {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-card {
    background: var(--blue-gradient);
    border-radius: 40px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatShape 10s infinite;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(-20px, -20px) rotate(270deg);
    }
}

/* New button styles */
.btn-outline-glow {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
}

.btn-outline-glow:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-content {
        width: 80%;
        margin: 0 !important;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-content::before {
        left: -40px !important;
    }
}