:root {
    --primary-blue: #03071e;
    --secondary-blue: #0a0f2e;
    --accent-blue: #1a1f3e;
    --dark-gray: #323130;
    --medium-gray: #605e5c;
    --light-gray: #f3f2f1;
    --white: #ffffff;
    --success-green: #107c10;
    --warning-orange: #ff8c00;
    --error-red: #d13438;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 2rem;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.1);
}

.logo:hover {
    text-decoration: none;
}

.cta-header {
    background: var(--white);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Header Badges */
.header-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ms-badge{
    height: 32px;
    width: auto;
    /*filter: brightness(0) invert(1);*/
    opacity: 0.8;
    transition: all 0.3s ease;
}

.ms-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(3, 7, 30, 0.85) 0%, rgba(10, 15, 46, 0.9) 100%), url('./imgs/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff5722, #ff9800);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:active {
    transform: translateY(-2px) scale(1.02);
}

/* Main Content */
.main-content {
    padding-top: 80px;
}

/* Solution Logos */
.solution-logos {
    text-align: center;
    margin: 3rem 0 2rem 0;
}

.solution-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.solution-logo {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    /*filter: grayscale(100%);*/
}

.solution-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive adjustments for solution logos */
@media (max-width: 768px) {
    .solution-logos-container {
        gap: 2rem;
    }
    
    .solution-logo {
        height: 50px;
    }
}

/* Video Integration */
.video-integration {
    text-align: center;
    margin-top: 4rem;
}

/* Video Context - Modern Design */
.video-context {
    margin-bottom: 3rem;
}

.video-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 24px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.video-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.video-badge i {
    color: var(--success-green);
    font-size: 1rem;
}

.video-hero h4 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.video-stats {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
    margin-top: 1.5rem !important;
}

.stat-card {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.15)) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(59, 130, 246, 0.4) !important;
    border-radius: 12px !important;
    padding: 1rem 1.25rem !important;
    min-width: 120px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2) !important;
}

.stat-card:hover {
    transform: translateY(-2px) !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.25)) !important;
    border-color: rgba(59, 130, 246, 0.6) !important;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3) !important;
}

.stat-icon {
    width: 32px !important;
    height: 32px !important;
    background: linear-gradient(135deg, #f97316, #ea580c) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3) !important;
}

.stat-icon i {
    font-size: 0.9rem !important;
    color: var(--white) !important;
}

.stat-number {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #f97316 !important;
    line-height: 1 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.stat-label {
    font-size: 0.75rem !important;
    color: #fef3c7 !important;
    margin-top: 0.15rem !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-hero {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .video-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .stat-card {
        min-width: 120px;
        justify-content: center;
    }
    
    .video-hero h4 {
        font-size: 1.5rem;
    }
    
    .video-hero p {
        font-size: 1rem;
    }
}

.video-integration video {
    max-width: 780px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.video-source {
    font-size: 0.85rem;
    color:  #D3D3D3 !important;
    margin-top: 0.5rem;
    font-style: italic;
    opacity: 0.8;
}

/* Responsive adjustments for video integration */
@media (max-width: 768px) {
    .video-integration {
        margin-top: 3rem;
    }
    
    .video-integration iframe {
        height: 253px; /* 16:9 aspect ratio for mobile */
    }
}

.section {
    margin-bottom: 100px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Problem Section */
.problem-section {
    background: var(--light-gray);
    padding: 80px 0;
    margin: 80px 0;
}

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

.problem-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.problem-icon {
    width: 40px;
    height: 40px;
    background: var(--error-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon i {
    color: var(--white);
    font-size: 1rem;
}

/* Solution Section */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Clients Section */
.clients-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.clients-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    padding: 0;
}

.clients-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.clients-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.clients-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Certification Badges */
.certification-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.cert-badge {
    height: 60px;
    width: auto;
    /*filter: grayscale(100%);
    opacity: 0.7;*/
    transition: all 0.4s ease;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cert-badge:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.clients-grid {
    display: flex;
    align-items: center;
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    left: 50%;
    transform: translateX(-50%);
}

.clients-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 120, 212, 0.1), transparent);
    transition: left 0.6s ease;
}

.client-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--primary-blue);
}

.client-logo:hover::before {
    left: 100%;
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    opacity: 0.7;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.clients-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.solution-item {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.solution-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.solution-item p {
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: #03071f;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(135deg, var(--success-green), #0f6b0f);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.urgency-badge {
    background: var(--warning-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
}

.urgency-box {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.urgency-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.urgency-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.urgency-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.urgency-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.urgency-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.urgency-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.urgency-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.urgency-benefits span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
}

.urgency-benefits i {
    color: #ff6b35;
    font-size: 0.8rem;
}

.testimonials {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 3rem;
    border-radius: 24px;
    margin-top: 3rem;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonials::after {
    content: '"';
    position: absolute;
    bottom: -60px;
    right: 30px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

/* Testimonials Section */
.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 20px 20px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    word-wrap: break-word;
    hyphens: auto;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.testimonial-role {
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-nav i {
    font-size: 1.1rem;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonials-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        min-height: 350px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .testimonials-controls {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-nav {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-nav i {
        font-size: 1rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-controls {
        gap: 1rem;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-nav i {
        font-size: 0.9rem;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo-link {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    color: inherit;
}

.footer-logo-link:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-logo-link:hover .footer-logo span {
    color: #ff6b35;
}

.footer-logo-img {
    height: 2.5rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.footer-social i {
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    opacity: 1;
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -20px;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-item i {
    width: 20px;
    color: #ff6b35;
    font-size: 1rem;
}

.contact-item span {
    font-size: 0.95rem;
}

.footer-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: #ff6b35;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.form-header p {
    color: var(--medium-gray);
    font-size: 1rem;
}

.form-fields {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white);
    color: var(--dark-gray);
}

.form-group input::placeholder {
    color: var(--medium-gray);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
    transform: translateY(-2px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--success-green), #0f6b0f);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--light-gray);
}

.form-divider span {
    background: var(--white);
    padding: 0 1rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.whatsapp-btn {
    background: #25d366;
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.form-footer p {
    margin-bottom: 0.5rem;
}

.success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    color: var(--success-green);
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.success-message i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--success-green);
}

.success-message h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.success-message p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-badges {
        display: none;
    }
    
    .certification-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cert-badge {
        height: 50px;
    }
    
    .hero {
        background-attachment: scroll;
        background-position: center center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-header {
        display: block;
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .hero {
        padding: 100px 0 60px;
        margin-top: 0;
    }

    .hero-cta {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.4rem;
        white-space: normal;
        text-align: center;
        min-width: 250px;
    }

    .hero-cta i {
        font-size: 0.8rem;
    }

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

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

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

    .container {
        padding: 0 15px;
    }

    .contact-form-container {
        padding: 2rem;
        margin: 2rem 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .clients-grid {
        padding: 1rem 0;
    }

    .clients-track {
        gap: 2rem;
        animation-duration: 20s;
    }

    .client-logo {
        padding: 1.5rem;
        height: 100px;
        min-width: 150px;
    }

    .clients-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials {
        padding: 2rem;
    }

    .testimonial-item {
        padding: 1.5rem;
    }

    .urgency-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .urgency-box {
        padding: 2rem;
    }

    .urgency-benefits {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: ripple 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

/* Video Section */
.video-section {
    margin: 80px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.video-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.video-container h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.video-container p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    background: var(--white);
    position: relative;
}

.video-wrapper iframe {
    border-radius: 16px;
}

.video-arrow {
    text-align: center;
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

.video-arrow i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.video-arrow i:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive adjustments for video */
@media (max-width: 768px) {
    .video-section {
        margin: 60px 0;
        padding: 40px 0;
    }
    
    .video-container h3 {
        font-size: 1.3rem;
    }
    
    .video-container p {
        font-size: 1rem;
    }
}

/* Hero Video Section */
.hero-video-section {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    padding: 80px 0;
    margin: 0;
}

.hero-video-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-video-container h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.hero-video-container p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: var(--white);
    position: relative;
    margin-bottom: 2rem;
    border: none;
}

.hero-video-wrapper iframe {
    border-radius: 16px;
    border: none !important;
    outline: none;
}

.hero-video-wrapper video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}

.hero-video-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    opacity: 0.7;
}

/* Forçar remoção de bordas do Vimeo */
.hero-video-wrapper iframe,
.hero-video-wrapper iframe * {
    border: none !important;
    outline: none !important;
}

.hero-video-arrow {
    text-align: center;
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

.hero-video-arrow i {
    font-size: 1.5rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    display: block;
}

.hero-video-arrow span {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Responsive adjustments for hero video */
@media (max-width: 768px) {
    .hero-video-section {
        padding: 60px 0;
    }
    
    .hero-video-container {
        margin: 1.5rem 0;
    }
    
    .hero-video-container h3 {
        font-size: 1.5rem;
    }
    
    .hero-video-container p {
        font-size: 1rem;
    }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    text-align: center;
    margin-top: 3rem;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hero-scroll-indicator i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-scroll-indicator {
        margin-top: 2rem;
    }
}

/* Hero Logos */
.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.hero-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hero-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-logos {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .hero-logo {
        height: 32px;
    }
}

/* SharePoint Demo Section */
.sharepoint-demo-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sharepoint-demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="demo-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23demo-grid)"/></svg>');
    opacity: 0.3;
}

.demo-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.demo-header {
    margin-bottom: 3rem;
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(3, 7, 30, 0.3);
}

.demo-badge i {
    font-size: 1.1rem;
}

.demo-header h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.demo-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.demo-video-container {
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.demo-video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: var(--white);
    position: relative;
    margin-bottom: 2rem;
}

.demo-video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.demo-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    color: var(--success-green);
    font-size: 1rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.demo-cta {
    margin-top: 2rem;
}

.demo-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.demo-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: var(--white);
}

.demo-btn:hover::before {
    left: 100%;
}

.demo-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sharepoint-demo-section {
        padding: 60px 0;
    }
    
    .demo-header h3 {
        font-size: 1.5rem;
    }
    
    .demo-header p {
        font-size: 1rem;
    }
    
    .demo-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.6rem 1.2rem;
    }
    
    .demo-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* SharePoint Video in Solution Section */
.sharepoint-video-container {
    text-align: center;
    margin: 3rem 0;
}

.sharepoint-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: transparent;
    position: relative;
}

.sharepoint-video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.demo-video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: transparent;
    position: relative;
}

.demo-video-wrapper iframe {
    border-radius: 16px;
    border: none !important;
    outline: none;
    display: block;
    width: 100%;
    height: 100%;
}

.video-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
    opacity: 0.8;
}

.video-source i {
    font-size: 0.8rem;
    color: var(--primary-blue);
}

/* Intranet Gallery */
.intranet-gallery {
    margin: 4rem 0;
    text-align: center;
}

.gallery-header {
    margin-bottom: 3rem;
}

.gallery-header h4 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.gallery-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.gallery-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 7, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.gallery-caption {
    padding: 1.5rem;
    text-align: left;
}

.gallery-caption h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.gallery-caption p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .intranet-gallery {
        margin: 3rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-caption {
        padding: 1.2rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sharepoint-video-container {
        margin: 2rem 0;
    }
}