/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');

/* ROVERON Font for Headings - Using Rubik as fallback until ROVERON is provided */
@font-face {
    font-family: 'ROVERON';
    src: url('fonts/ROVERON.woff2') format('woff2'),
         url('fonts/ROVERON.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'ROVERON', 'Rubik', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    opacity: 0.8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(18, 93, 254, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 35px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #125DFE;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #125DFE;
    transition: width 0.3s ease;
}

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

.btn-sticky {
    background: linear-gradient(135deg, #125DFE, #6133E4);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 93, 254, 0.3);
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 93, 254, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 93, 254, 0.8), rgba(97, 51, 228, 0.8));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-text {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #125DFE, #6133E4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(18, 93, 254, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(18, 93, 254, 0.4);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(18, 93, 254, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #125DFE, #6133E4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #000000;
}

.service-card p {
    font-size: 1rem;
}

/* Clients Section */
.clients {
    position: relative;
    color: white;
}

.clients-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.clients-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clients-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(97, 51, 228, 0.8), rgba(18, 93, 254, 0.8));
    z-index: -1;
}

.clients-content {
    text-align: center;
}

.clients .section-title {
    color: white;
    margin-bottom: 3rem;
}

.clients-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.client-item i {
    font-size: 1.5rem;
    color: #125DFE;
    min-width: 30px;
}

.client-item span {
    color: white;
    font-weight: 500;
}

/* Why Section */
.why {
    background: #f8f9fa;
}

.section-description {
    max-width: 800px;
    margin: 1.5rem auto 0;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(18, 93, 254, 0.08);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #125DFE, #6133E4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(18, 93, 254, 0.2);
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #125DFE, #6133E4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.why-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6133E4, #31BF39);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.why-item:hover .why-icon::after {
    opacity: 1;
}

.why-icon i {
    font-size: 1.75rem;
    color: white;
    z-index: 1;
    transition: transform 0.4s ease;
}

.why-item:hover .why-icon i {
    transform: scale(1.1);
}

.why-item h3 {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.why-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Why Section */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

/* About Section */
.about {
    position: relative;
    color: white;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.about-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 191, 57, 0.8), rgba(18, 93, 254, 0.8));
    z-index: -1;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about .section-title {
    color: white;
    margin-bottom: 3rem;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    position: relative;
    color: white;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.contact-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(97, 51, 228, 0.6));
    z-index: -1;
}

.contact-content {
    text-align: center;
}

.contact .section-title {
    color: white;
    margin-bottom: 3rem;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.hubspot-form {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

/* HubSpot Form Styling */
.hubspot-form .hbspt-form {
    color: white;
}

.hubspot-form .hs-form fieldset {
    max-width: none;
}

.hubspot-form .hs-form .hs-form-field {
    margin-bottom: 1.5rem;
}

.hubspot-form .hs-form .hs-form-field label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.hubspot-form .hs-form .hs-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.hubspot-form .hs-form .hs-input:focus {
    outline: none;
    border-color: #125DFE;
    box-shadow: 0 0 0 2px rgba(18, 93, 254, 0.2);
}

.hubspot-form .hs-form .hs-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hubspot-form .hs-form .hs-button {
    background: linear-gradient(135deg, #125DFE, #6133E4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hubspot-form .hs-form .hs-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(18, 93, 254, 0.3);
}

.contact-info {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.contact-email {
    color: #125DFE;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #6133E4;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact h4,
.footer-social h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-contact a {
    color: #125DFE;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #6133E4;
}

.footer-contact .phone-link {
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #125DFE;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in-up:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in-up:nth-child(3) {
    animation-delay: 0.4s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .clients-list {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .btn-sticky {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .badge-grid {
        gap: 15px;
    }

    .badge-item {
        width: 100px;
        height: 100px;
    }

    .badge-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .filter-btn {
        width: 80%;
        text-align: center;
    }

    .faq-item summary {
        padding: 1rem 1.5rem;
    }

    .faq-item p {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

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

    .hero-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .about-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .client-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Certifications Section */
.certifications {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 50%, #2a2a4a 100%);
    position: relative;
    color: white;
}

.certifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.certifications .section-title,
.certifications .section-subtitle,
.certifications .skills {
    color: white;
}

.badge-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #125DFE, #6133E4);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 93, 254, 0.4);
    border-color: #125DFE;
}

.badge-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 3rem 0;
    perspective: 1000px;
}

.badge-item {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
}

.badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 93, 254, 0.1), rgba(97, 51, 228, 0.05));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.badge-item:hover {
    transform: scale(1.05) translateY(-8px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(18, 93, 254, 0.2);
    border-color: rgba(18, 93, 254, 0.3);
}

.badge-item:hover::before {
    opacity: 1;
}

.badge-item.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.badge-item img {
    width: 100%;
    height: auto;
    max-width: 100px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(20px);
}

.badge-item:hover img {
    filter: 
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5)) 
        brightness(1.1) 
        contrast(1.05);
    transform: translateZ(30px) scale(1.02);
}

.bright-badge img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) brightness(1.3);
    transform: translateZ(20px);
}

.bright-badge:hover img {
    filter: 
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5)) 
        brightness(1.4) 
        contrast(1.05);
    transform: translateZ(30px) scale(1.02);
}

.skills {
    font-style: italic;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 3rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
}

/* Case Studies Section */
.case-studies {
    position: relative;
    color: white;
}

.case-studies-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.case-studies-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-studies-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 93, 254, 0.85), rgba(97, 51, 228, 0.85));
    z-index: -1;
}

/* Enhanced mobile support for case studies */
@media (max-width: 768px) {
    .case-studies {
        min-height: auto;
        padding: 3rem 0;
        background: linear-gradient(135deg, #125DFE, #6133E4) !important;
        position: relative;
    }
    
    .case-studies-background {
        display: none !important;
    }
    
    .case-studies-overlay {
        display: none !important;
    }
    
    .case-study {
        background: rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
        border: 2px solid rgba(255, 255, 255, 0.4) !important;
        margin-bottom: 1.5rem !important;
        padding: 2rem 1.5rem !important;
    }
    
    .case-study h3 {
        color: white !important;
    }
    
    .case-study p {
        color: rgba(255, 255, 255, 0.95) !important;
    }
    
    .case-study blockquote {
        color: rgba(255, 255, 255, 0.98) !important;
        border-left: 3px solid #31BF39 !important;
    }
    
    .case-study cite {
        color: rgba(255, 255, 255, 0.85) !important;
    }
}

.case-studies .section-title,
.case-studies .section-subtitle {
    color: white;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.case-study {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.case-study h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.case-study p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.case-study blockquote {
    border-left: 3px solid #31BF39;
    padding-left: 1rem;
    margin: 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.case-study cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Insights Section */
.insights {
    background: #f8f9fa;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.insight-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(18, 93, 254, 0.1);
}

.insight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.insight-item i {
    font-size: 2.5rem;
    color: #125DFE;
    margin-bottom: 1rem;
}

.insight-item h4 {
    margin-bottom: 0.5rem;
    color: #000000;
}

.insight-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.insights-cta {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(18, 93, 254, 0.1);
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #125DFE;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
    background: linear-gradient(135deg, #125DFE, #6133E4);
    color: white;
}

.faq-item summary:hover::after {
    color: white;
}

.faq-item[open] summary {
    background: linear-gradient(135deg, #125DFE, #6133E4);
    color: white;
}

.faq-item[open] summary::after {
    color: white;
}

.faq-item p {
    padding: 1.5rem 2rem;
    margin: 0;
    background: white;
    color: #000000;
    opacity: 0.8;
    line-height: 1.6;
}

/* Scroll behavior enhancements */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .fade-in-up {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
