.navbar,
body::before {
    position: fixed;
    top: 0;
    left: 0;
}

.btn,
.nav-logo {
    font-weight: 500;
}

.gradient-text,
.result-number,
.stat-number,
.stat-value {
    -webkit-text-fill-color: transparent;
}

.audit-cta,
.case-studies-cta,
.contact-card,
.footer-bottom,
.hero-content,
.pain-point-card,
.result-item,
.section-header,
.stat-item {
    text-align: center;
}

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

body {
    font-family: Inter, sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

body::before {
    content: '';
    width: 100%;
    height: 100%;
    background-size: 30px 30px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, .02) 1px, transparent 1px);
    pointer-events: none;
    z-index: -1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: .3s;
    font-size: 14px;
}

.footer-section ul li a,
.nav-link {
    text-decoration: none;
    transition: color .3s;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
}

.btn-primary {
    background: #7c3aed;
    color: #fff;
}

.btn-ghost,
.btn-outline {
    background: 0 0;
    color: #fff;
}

.btn-primary:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #7c3aed;
}

.btn-outline:hover {
    background: rgba(124, 58, 237, .2);
}

.btn-ghost:hover {
    color: #a855f7;
}

.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.gradient-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
}

.navbar {
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    /* animation: .5s ease-out slideDown; */
    height: 135px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    max-width: 1600px;
    margin: 0 auto;
    /* padding: 16px 24px; */
}

@media screen and (max-width: 768px) {
    .navbar {
        height: 135px;
        padding: 0 8px;
        transform: translateY(-20px);
    }

}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

.footer-icon,
.nav-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    color: #7c3aed;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;


}

.nav-link {
    color: #d1d5db;
    position: relative;
}

.nav-link:hover {
    color: #7c3aed;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    background: 0 0;
    border: none;
    color: #fff;
    cursor: pointer;
}

.feature-card,
.floating-paper,
.pain-point-card {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

.main-content {
    position: relative;
    min-height: 100vh;
}

.floating-papers,
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particles-container {
    z-index: 1;
}

#particles-canvas {
    width: 100%;
    height: 100%;
}

.floating-papers {
    z-index: 2;
}

.floating-paper {
    position: absolute;
    width: 64px;
    height: 80px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: 20s linear infinite float;
}

.case-studies,
.featured-image,
.features,
.hero,
.stats {
    position: relative;
}

.floating-paper svg {
    width: 32px;
    height: 32px;
    color: rgba(124, 58, 237, .5);
}

@keyframes float {
    from {
        transform: translateY(100vh) rotate(0);
    }

    to {
        transform: translateY(-100px) rotate(360deg);
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    margin-top: 100px;
}

.hero-description {
    font-size: 20px;
    color: #9ca3af;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    animation: .8s ease-out .6s both fadeInUp;
}

.case-study-card,
.feature-card,
.stat-item {
    animation: .6s ease-out fadeInUp;
}

.pain-point-card {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 24px;
}

.pain-point-card h3 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

.pain-point-card p,
.result-label {
    color: #9ca3af;
    font-size: 14px;
}

@keyframes pulse {

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

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

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

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


.features,
.stats {
    padding: 60px 0;
    z-index: 10;
}

/* Schedule Call Modal Styles */
.calendly-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

}

.calendly-modal.show {
    opacity: 1;
    visibility: visible;
}

.calendly-modal-content {
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.calendly-modal.show .calendly-modal-content {
    transform: translateY(0) scale(1);
}

.calendly-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(124, 58, 237, 0.1);
}



.calendly-modal-header h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.close-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.close-btn svg {
    width: 24px;
    height: 24px;
}

.calendly-embed-container {
    flex: 1;
    min-height: 600px;
    overflow: hidden;
    background: white;
    border-radius: 0 0 16px 16px;
}

/* Already scheduled message styles */
/* .already-scheduled {
    display: none;
    padding: 40px 24px;
    height: 100%;
    text-align: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 0 0 16px 16px;
    border-top: 1px solid rgba(34, 197, 94, 0.3);
}

.already-scheduled h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.already-scheduled>p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.appointment-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.appointment-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #22c55e;
    font-weight: 500;
    font-size: 16px;
}

.appointment-date svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.3));
}

.already-scheduled a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.already-scheduled a:hover {
    color: #16a34a;
    text-decoration: underline;
}

.already-scheduled .btn {
    margin-top: 16px;
    min-width: 120px;
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.already-scheduled .btn:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
} */

/* Contact card buttons - use standard button styles */
.contact-card .btn {
    width: 100%;
}

/* Loading animation for Calendly */
.calendly-embed-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(124, 58, 237, 0.3);
    border-top: 3px solid #7c3aed;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.calendly-embed-container .calendly-inline-widget {
    position: relative;
    z-index: 2;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Success pulse animation */
@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
    }
}

/* Modal entrance animation */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

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

.calendly-modal.show .calendly-modal-content {
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .calendly-modal-content {
        width: 98%;
        max-height: 95vh;
        margin: 10px;
    }

    .calendly-modal-header {
        padding: 20px;
    }

    .calendly-modal-header h3 {
        font-size: 18px;
    }

    .calendly-embed-container {
        min-height: 500px;
    }

    .already-scheduled {
        padding: 24px 16px;
    }

    .already-scheduled h3 {
        font-size: 20px;
    }

    .appointment-details {
        padding: 16px;
    }

    .appointment-date {
        font-size: 14px;
        gap: 8px;
    }

    .appointment-date svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .calendly-modal-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .calendly-embed-container {
        min-height: 450px;
        border-radius: 0;
    }

    .already-scheduled {
        border-radius: 0;
        padding: 20px 12px;
    }

    .calendly-modal-header {
        padding: 16px;
    }

    .close-btn {
        padding: 6px;
    }

    .close-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    .calendly-modal-content {
        background: rgba(0, 0, 0, 0.95);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .calendly-modal-header {
        background: rgba(124, 58, 237, 0.15);
        border-bottom-color: rgba(255, 255, 255, 0.15);
    }
}

/* Accessibility improvements */
.calendly-modal:focus-within {
    outline: none;
}

.close-btn:focus {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

.already-scheduled .btn:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .calendly-modal-content {
        border: 2px solid white;
    }

    .calendly-modal-header {
        border-bottom: 2px solid white;
    }

    .appointment-details {
        border: 2px solid #22c55e;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .calendly-modal,
    .calendly-modal-content,
    .close-btn,
    .contact-card button.btn {
        transition: none;
    }

    .calendly-modal.show .calendly-modal-content {
        animation: none;
    }

    @keyframes successPulse {

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

.section-header {
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
}

.section-header p {
    font-size: 20px;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 32px;
    transition: .3s;
}

.case-study-card-home:hover,
.case-study-card:hover,
.contact-card:hover,
.feature-card:hover {
    border-color: rgba(124, 58, 237, .5);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 58, 237, .2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: #a855f7;
}

.case-study-card-home h4,
.feature-card h3 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 18px;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.6;
}

.case-studies {
    padding: 96px 0;
    z-index: 10;
    background: rgba(0, 0, 0, .2);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.case-study-card {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 40px;
    transition: .3s;
}

.case-study-header {
    margin-bottom: 32px;
}

.case-study-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(124, 58, 237, .2);
    color: #a855f7;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(124, 58, 237, .3);
}

.case-study-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.case-study-subtitle {
    color: #9ca3af;
    font-size: 16px;
    margin: 0;
}

.case-study-content {
    display: grid;
    gap: 32px;
}

.challenge,
.results,
.solution {
    padding: 24px;
    border-radius: 12px;
}

.challenge {
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .2);
}

.solution {
    background: rgba(59, 130, 246, .1);
    border: 1px solid rgba(59, 130, 246, .2);
}

.results {
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .2);
}

.challenge h4,
.results h4,
.solution h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

.challenge p,
.solution p {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

.solution-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d1d5db;
}

.solution-item svg {
    width: 20px;
    height: 20px;
    color: #3b82f6;
    flex-shrink: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
}

.result-number {
    font-size: 2rem;
    color: #22c55e;
}

.testimonial {
    background: rgba(124, 58, 237, .1);
    border: 1px solid rgba(124, 58, 237, .2);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid #7c3aed;
}

.testimonial blockquote {
    color: #d1d5db;
    font-style: italic;
    margin: 0 0 16px;
    line-height: 1.6;
    font-size: 16px;
}

.audit-cta p,
.case-studies-cta p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial cite {
    color: #a855f7;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
}

.case-studies-cta {
    padding: 48px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .2), rgba(236, 72, 153, .2));
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, .3);
}

.case-studies-cta h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.case-studies-cta p {
    color: #d1d5db;
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 8px;
}

.case-studies-home {
    padding: 96px 0;
    position: relative;
}

.featured-case-study-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
    animation: .8s ease-out .4s both fadeInUp;
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-block;
    background: rgba(124, 58, 237, .2);
    color: #a855f7;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(124, 58, 237, .3);
    width: fit-content;
}

.featured-content h3,
.result-number {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
}

.featured-content h3 {
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.featured-content p {
    color: #9ca3af;
    margin-bottom: 32px;
    font-size: 16px;
}

.results-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.case-studies-grid-home,
.contact-content {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.result-number {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 8px;
}

.featured-image {
    height: 100%;
    min-height: 350px;
}

.image-container,
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 85%;
    width: 100%;
}

.image-container {
    background: linear-gradient(135deg, rgba(124, 58, 237, .3), rgba(236, 72, 153, .3));
    border-radius: 12px;
    overflow: hidden;
}

.image-overlay {
    background: rgba(0, 0, 0, .2);
    backdrop-filter: blur(5px);
}

.case-study-card-home,
.contact-card,
.footer {
    backdrop-filter: blur(10px);
}

.case-studies-grid-home {
    display: grid;
    gap: 32px;
    margin-bottom: 48px;
}

.case-study-card-home {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 24px;
    transition: .3s;
    animation: .6s ease-out fadeInUp;
}

.case-study-tag {
    display: inline-block;
    background: rgba(124, 58, 237, .2);
    color: #a855f7;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.case-study-card-home p {
    color: #9ca3af;
    margin-bottom: 24px;
    font-size: 14px;
}

.contact-card h3,
.footer-section ul li {
    margin-bottom: 8px;
}

.case-study-stats {
    display: flex;
    gap: 24px;
}

.stat {
    flex: 1;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    color: #9ca3af;
    font-size: 12px;
}

.case-studies-cta-home {
    text-align: center;
    animation: .8s ease-out .6s both fadeInUp;
}

.footer-bottom p,
.footer-column a {
    color: rgba(255, 255, 255, .7);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.powered-by a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #7c3aed !important;
    font-size: .9rem;
    text-decoration: none;
}

.powered-by a:hover {
    color: rgba(255, 255, 255, .7) !important;
    transition: .3s;
}

.powered-by a:not(:hover) {
    transition: .3s;
}

.contact-section {
    padding: 96px 0;
    /* background: rgba(0, 0, 0, .3); */
    position: relative;
    z-index: 10;
}

.contact-content {
    display: grid;
    gap: 64px;
    position: relative;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 32px;
    transition: .3s;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: rgba(124, 58, 237, .2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    color: #a855f7;
}

.contact-card h3 {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.contact-card p {
    color: #9ca3af;
    margin-bottom: 20px;
}

.footer {
    background: rgba(0, 0, 0, .5);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 64px 0;
    position: relative;
    z-index: 10;
}

.audit-cta {
    margin-bottom: 64px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .2), rgba(236, 72, 153, .2));
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, .3);
}

.audit-cta h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.audit-cta p {
    color: #d1d5db;
    margin-bottom: 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.footer-section:first-child {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 24px;
    max-width: 400px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #9ca3af;
}

.contact-item svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.footer-section h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #9ca3af;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 32px;
}

.footer-bottom p {
    color: #9ca3af;
}

.case-study-card:first-child,
.feature-card:first-child,
.stat-item:first-child {
    animation-delay: .1s;
}

.feature-card:nth-child(2),
.stat-item:nth-child(2) {
    animation-delay: .2s;
}

.case-study-card:nth-child(2),
.feature-card:nth-child(3),
.stat-item:nth-child(3) {
    animation-delay: .3s;
}

.feature-card:nth-child(4),
.stat-item:nth-child(4) {
    animation-delay: .4s;
}

.case-study-card:nth-child(3),
.feature-card:nth-child(5) {
    animation-delay: .5s;
}

.feature-card:nth-child(6) {
    animation-delay: .6s;
}

/* Testimonials Section Styles for FlowLab Systems */
.testimonials-section {
    padding: 4rem 0;
    margin: 4rem 0;

    border-radius: 1.5rem;
    scroll-margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
}

.testimonial-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(124, 58, 237, 0.1),
        0 10px 10px -5px rgba(124, 58, 237, 0.04);
    border-color: rgba(124, 58, 237, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    padding: 2px;
    flex-shrink: 0;
}

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

.testimonial-person h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-weight: 600;
}

.testimonial-person p {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin-bottom: 0;
}

.testimonial-content {
    color: #e4e4e7;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonials-section {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-content {
        font-size: 1rem;
    }
}

/* Animation for testimonials when they come into view */
.testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered animation delays */
.testimonial-card:nth-child(1) {
    transition-delay: 0ms;
}

.testimonial-card:nth-child(2) {
    transition-delay: 100ms;
}

.testimonial-card:nth-child(3) {
    transition-delay: 200ms;
}

@media (max-width:768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
    }

    .nav-buttons,
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .cta-buttons,
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid,
    .form-row,
    .pain-points {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-section {
        order: 1;
        position: static;
    }

    .case-study-card,
    .contact-form-card {
        padding: 24px;
    }

    .footer-section:first-child {
        grid-column: span 1;
    }

    .case-studies {
        padding: 64px 0;
    }

    .case-study-content {
        gap: 24px;
    }

    .challenge,
    .results,
    .solution,
    .testimonial {
        padding: 16px;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .case-studies-cta h3,
    .result-number {
        font-size: 1.5rem;
    }

    .case-studies-cta {
        padding: 32px 24px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width:480px) {

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .solution-items {
        gap: 8px;
    }

    .solution-item {
        font-size: 14px;
    }

    .case-study-tags {
        gap: 4px;
    }

    .tag {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* Case Studies Page Specific Styles */
.case-studies-hero {
    min-height: 60vh;
    padding-top: 135px;
}

.case-studies-detailed {
    padding: 96px 0;
    position: relative;
    z-index: 10;
}

.case-study-detailed {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 48px;
    transition: all 0.3s ease;
    animation: 0.6s ease-out fadeInUp;
}

.case-study-detailed:hover {
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(124, 58, 237, 0.1), 0 10px 10px -5px rgba(124, 58, 237, 0.04);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 24px;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.company-logo {
    width: 80px;
    height: 80px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-logo svg {
    color: #a855f7;
}

.company-details h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.company-details p {
    color: #9ca3af;
    font-size: 16px;
    margin-bottom: 12px;
}

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7c3aed;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.company-link:hover {
    color: #a855f7;
}

.case-study-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.testimonial-content {
    margin-bottom: 40px;
}

.testimonial-content blockquote {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-left: 4px solid #7c3aed;
    border-radius: 12px;
    padding: 32px;
    margin: 0 0 24px;
    color: #e4e4e7;
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
}

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

.author-info strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.author-info span {
    color: #a855f7;
    font-size: 14px;
    font-weight: 500;
}

.case-study-results h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-study-results h4::before {
    content: "";
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 2px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.result-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 16px;
}

.result-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.result-stat .stat-label {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e4e4e7;
    font-size: 16px;
    line-height: 1.5;
}

.result-item svg {
    color: #22c55e;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.3));
}

/* Animation delays for staggered effect */
.case-study-detailed:nth-child(1) {
    animation-delay: 0.1s;
}

.case-study-detailed:nth-child(2) {
    animation-delay: 0.2s;
}

.case-study-detailed:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .case-study-detailed {
        padding: 32px 24px;
    }

    .case-study-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .company-info {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .company-logo {
        width: 60px;
        height: 60px;
    }

    .testimonial-content blockquote {
        padding: 24px;
        font-size: 16px;
    }

    .testimonial-author {
        padding-left: 24px;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .result-stat {
        padding: 20px 12px;
    }

    .result-stat .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .case-study-detailed {
        padding: 24px 16px;
    }

    .company-info {
        gap: 16px;
    }

    .company-details h3 {
        font-size: 20px;
    }

    .testimonial-content blockquote {
        padding: 20px;
        font-size: 15px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .case-study-tags {
        gap: 6px;
    }

    .tag {
        font-size: 11px;
        padding: 3px 8px;
    }
}