/* 2VID LANDING V12 - FULL SCREEN VIDEO + CAROUSEL */
/* Полноэкранное видео, карусель фото, секции из v10 в стиле v11 */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

.gradient-text {
    background: linear-gradient(135deg, #ef4444, #f97316, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Space Grotesk', sans-serif;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(31, 41, 55, 0.8);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ef4444;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    transition: width 0.3s ease;
}

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

.header-cta {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* New Intro Section */
.intro-section {
    padding: 120px 0 80px;
    background: #ffffff;
    position: relative;
}

.solution-section .intro-section {
    padding: 100px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    padding-right: 2rem;
    text-align: left;
}

.intro-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000000;
    /*font-family: 'Manrope', sans-serif;*/
}

.intro-description {
    font-size: 1.2rem;
    color: rgba(31, 41, 55, 0.8);
    line-height: 1.6;
    max-width: 600px;
}

.intro-video-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.video-slider-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: #000;
    margin-bottom: 1.5rem;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.video-slide.active {
    opacity: 1;
    pointer-events: all;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.video-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

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

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.nav-arrow:active {
    transform: scale(0.95);
}

.video-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

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

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

.video-dot.active {
    background: #60a5fa;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}






/* Section Header - Used in multiple sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(31, 41, 55, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.first-solution-section {
    padding: 100px 0 !important;
}
/* Solution Section */
.solution-section {
    padding: 40px 0;
    /*
    background: #f9fafb;
    margin: 40px auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    */
    max-width: calc(100% - 40px);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.solution-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-column h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ef4444, #f97316, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.solution-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(31, 41, 55, 0.9);
}

.solution-column p {
    color: rgba(31, 41, 55, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.solution-column .benefit-content {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: #ffffff;
    margin: 40px auto;
    /*
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    */
    max-width: calc(100% - 40px);
}


.how-it-works-cta {
    text-align: center;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #f97316 100%);
    border-radius: 25px;
    padding: 3rem;
    color: white;
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.3);
    margin-top: 4rem;
}

.how-it-works-cta .cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.how-it-works-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.how-it-works-cta .primary-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.how-it-works-cta .primary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Partnership Section */
.partnership-section {
    padding: 50px 0;
    background: #ffffff;
    margin: 40px auto;
    /*
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(229, 231, 235, 0.5);
    */
    max-width: calc(100% - 40px);
}

.partnership-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.partnership-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1f2937;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1rem;
}

.partnership-offer {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ef4444, #f97316, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.offer-description,
.offer-details,
.offer-benefits,
.offer-contact {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(31, 41, 55, 0.8);
    margin-bottom: 1rem;
}

.offer-description {
    font-size: 1.2rem;
    color: rgba(31, 41, 55, 0.9);
    margin-bottom: 1.5rem;
}

.highlight {
    color: #f97316;
    font-weight: 600;
    background: rgba(249, 115, 22, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.partnership-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.partnership-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    min-width: 280px;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
}

.partnership-btn.positive {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.partnership-btn.positive:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.partnership-btn.negative {
    background: rgba(239, 68, 68, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.1);
}

.partnership-btn.negative:hover {
    transform: translateY(-3px);
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.2);
}

.btn-text {
    flex: 1;
    text-align: center;
}

.btn-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Solution Demo */
.solution-demo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.solution-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #10b981, #34d399, #6ee7b7);
}

.demo-container {
    position: relative;
    min-height: 300px;
}

.demo-step {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.demo-step.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.step-visual {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.upload-icon {
    font-size: 3rem;
    color: #10b981;
}

.uploaded-files {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 250px;
}

.file-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.file-more {
    background: #10b981;
    color: white;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.effects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.effect-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.effect-item.active {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.effect-preview {
    font-size: 2rem;
}

.effect-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.result-preview {
    display: flex;
    justify-content: center;
}

.video-result {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    max-width: 200px;
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.format-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.format-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.step-info {
    text-align: center;
}

.step-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.demo-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.demo-btn.active {
    border-color: #10b981;
    background: #10b981;
    color: white;
}

.demo-btn:hover {
    border-color: #10b981;
    color: #10b981;
}

.demo-btn.active:hover {
    color: white;
}








/* How It Works Videos Section */
.how-it-works-videos-section {
    padding: 100px 0;
    background: #ffffff;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: transparent;
}

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

/* Primary Button - Used in CTA sections */
.primary-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}




/* Footer */
.main-footer {
    background: #ffffff;
    padding: 60px 0 40px;
    /*
    border-top: 1px solid rgba(229, 231, 235, 0.5);
    */
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.footer-logo-text .logo-tagline {
    color: rgba(31, 41, 55, 0.6);
    font-size: 12px;
    margin-top: 0.25rem;
}

.footer-description {
    color: rgba(31, 41, 55, 0.7);
    line-height: 1.6;
    max-width: 400px;
}

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

.social-link {
    color: rgba(31, 41, 55, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ef4444;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.footer-section a {
    display: block;
    color: rgba(31, 41, 55, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ef4444;
}

.footer-bottom {
    /*
    border-top: 1px solid rgba(229, 231, 235, 0.5);
    */
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    color: rgba(31, 41, 55, 0.6);
    font-size: 14px;
}

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

.footer-legal a {
    color: rgba(31, 41, 55, 0.6);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ef4444;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .intro-text {
        padding-right: 0;
        order: 1;
        text-align: left;
    }
    
    .intro-video-slider {
        order: 2;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .solution-column {
        gap: 1rem;
    }
    
    .solution-column h3 {
        font-size: 1.2rem;
    }
    
    .how-it-works-section {
        margin: 20px auto;
        padding: 60px 0;
        max-width: calc(100% - 20px);
    }
    
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .partnership-section {
        margin: 20px auto;
        padding: 60px 0;
        max-width: calc(100% - 20px);
    }
    
    .partnership-offer {
        padding: 2rem;
        text-align: left;
    }
    
    .partnership-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partnership-btn {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Phone frame adjustments for tablet */
    .phone-frame {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-cta {
        padding: 8px 16px;
        font-size: 13px;
    }
    .first-solution-section {
        padding: 0px 0 !important;
    }
    
    .solution-section {
        margin: 20px auto;
        padding: 80px 0 0px 0;
        text-align: center;
        max-width: calc(100% - 20px);
    }
    
    /* First solution section needs extra top padding on mobile */
    .solution-section:first-of-type {
        padding-top: 60px;
    }
    
    .intro-section {
        padding: 120px 0 60px;
    }
    
    .intro-content {
        gap: 2rem;
        text-align: center;
        justify-items: center;
        align-items: center;
    }
    
    /* Force centering of intro-content children */
    .solution-section .intro-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .solution-section .intro-content .intro-video-slider {
        align-self: center !important;
        margin: 0 auto !important;
    }
    
    .intro-text {
        text-align: left;
        padding-right: 0;
    }
    
    .intro-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        margin-top: 1rem;
        text-align: left;
    }
    
    .intro-description {
        font-size: 1.1rem;
        line-height: 1.5;
        text-align: left;
        margin: 0 auto;
    }
    
    /* Phone frame mobile optimization */
    .phone-frame {
        max-width: 280px !important;
        margin: 0 auto !important;
        flex-shrink: 0 !important;
    }
    
    /* Specific targeting for intro-video-slider phone frame */
    .intro-video-slider .phone-frame {
        margin: 0 auto !important;
        flex-shrink: 0 !important;
    }
    
    .phone-screen {
        border-radius: 25px;
    }
    
    /* Ensure intro video slider fits mobile */
    .intro-video-slider {
        min-height: 400px !important;
        padding: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .video-slider-container {
        height: 250px;
    }
    
    .video-navigation {
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .video-dots {
        gap: 0.5rem;
    }
    
    .video-dot {
        width: 10px;
        height: 10px;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    .main-nav {
        display: none;
    }
    
    .solution-column .benefit-content {
        padding: 1rem;
    }
    
    .step-item {
        max-width: 100%;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .how-it-works-cta {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .how-it-works-cta .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .how-it-works-cta .cta-content p {
        font-size: 1rem;
    }
    
    .partnership-title {
        font-size: 2rem;
    }
    
    .offer-title {
        font-size: 1.3rem;
    }
    
    .offer-description,
    .offer-details,
    .offer-benefits,
    .offer-contact {
        font-size: 1rem;
    }
    
    .partnership-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-section {
        margin: 20px auto;
        padding: 60px 0;
        max-width: calc(100% - 20px);
    }
    
    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-info-title,
    .form-title {
        font-size: 1.3rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        padding: 0.75rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
    }
    
    .contact-details a {
        font-size: 0.9rem;
    }
    
    .contact-form .form-group {
        gap: 0.4rem;
    }
    
    .contact-form label {
        font-size: 13px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px 14px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    /* Contact Section Mobile Grid Fix */
    .contact-info-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .form-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .orange-submit-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* Animated steps mobile optimization */
    .animated-steps-container {
        gap: 2rem;
    }
    
    .animated-step-box {
        padding: 1.5rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    /* Video container mobile optimization */
    .video-container {
        margin-bottom: 1rem;
    }
    
    .promo-video {
        border-radius: 12px;
    }
    
    /* Ensure all headings are centered on mobile */
    .section-title {
        text-align: center !important;
        margin: 0 auto;
    }
    
    .section-subtitle {
        text-align: center !important;
        margin: 0 auto;
    }
    
    .section-header {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    .first-solution-section {
        padding: 0px 0 !important;
    }
    
    .solution-section {
        margin: 15px auto;
        padding: 0px 0px 0;
        text-align: center;
        max-width: calc(100% - 10px);
    }
    
    /* First solution section needs extra top padding on small mobile */
    .solution-section:first-of-type {
        padding-top: 40px;
        margin-top: 80px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .intro-section {
        padding: 100px 0 40px;
    }
    
    .intro-text {
        text-align: left;
        padding-right: 0;
    }
    
    .intro-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-top: 1rem;
        text-align: left;
    }
    
    .intro-description {
        font-size: 1rem;
        line-height: 1.4;
        text-align: left;
        margin: 0 auto;
    }
    
    /* Phone frame extra small mobile optimization */
    .phone-frame {
        max-width: 250px !important;
        margin: 0 auto !important;
        flex-shrink: 0 !important;
    }
    
    /* Specific targeting for intro-video-slider phone frame on small mobile */
    .intro-video-slider .phone-frame {
        margin: 0 auto !important;
        flex-shrink: 0 !important;
    }
    
    /* Ensure intro video slider fits extra small mobile */
    .intro-video-slider {
        min-height: 350px !important;
        padding: 5px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .video-slider-container {
        height: 200px;
    }
    
    .video-navigation {
        gap: 1rem;
        margin-top: 0.75rem;
    }
    
    .nav-arrow {
        width: 36px;
        height: 36px;
    }
    
    .video-dots {
        gap: 0.4rem;
    }
    
    .video-dot {
        width: 8px;
        height: 8px;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center !important;
        margin: 0 auto;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center !important;
        margin: 0 auto;
    }
    
    .section-header {
        text-align: center !important;
    }
    
    /* Header mobile optimization */
    .header-content {
        padding: 0.5rem 0;
    }
    
    .header-cta {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Animated steps extra small mobile */
    .animated-steps-container {
        gap: 1.5rem;
    }
    
    .animated-step-box {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .step-number-badge {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        margin: 15px auto;
        padding: 40px 0;
        max-width: calc(100% - 10px);
    }
    
    .contact-content {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .contact-info-title,
    .form-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-methods {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-method {
        padding: 0.75rem;
        border-radius: 12px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .contact-details h4 {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    
    .contact-details a {
        font-size: 0.85rem;
    }
    
    .contact-note {
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .contact-note p {
        font-size: 0.8rem;
    }
    
    .contact-form {
        gap: 1.2rem;
    }
    
    .contact-form .form-group {
        gap: 0.3rem;
    }
    
    .contact-form label {
        font-size: 12px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .contact-form textarea {
        min-height: 80px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        border-radius: 12px;
    }
    
    .form-message {
        padding: 0.75rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    /* Partnership section mobile */
    .partnership-section {
        margin: 15px auto;
        padding: 0px 0;
        max-width: calc(100% - 10px);
    }
    
    .partnership-offer {
        padding: 1.5rem;
    }
    
    .offer-description {
        font-size: 0.95rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .contact-section {
        margin: 15px auto;
        padding: 30px 0;
        max-width: calc(100% - 6px);
    }
    
    .contact-info,
    .contact-form-container {
        padding: 1rem;
    }
    
    .contact-info-title,
    .form-title {
        font-size: 1.1rem;
    }
    
    .contact-method {
        padding: 0.6rem;
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 8px 10px;
        font-size: 13px;
    }
}

/* Contact Section */
.contact-section {
    padding: 0px 0;
    background: #ffffff;
    margin: 0px auto;
    /*
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    */
    max-width: calc(100% - 40px);
}

.simplified-contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ef4444, #f97316, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    border-color: rgba(239, 68, 68, 0.3);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: rgba(31, 41, 55, 0.9);
}

.contact-details a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #f97316;
}

.contact-note {
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.contact-note p {
    color: rgba(31, 41, 55, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ef4444, #f97316, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-weight: 600;
    color: rgba(31, 41, 55, 0.9);
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    font-family: 'Inter', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(31, 41, 55, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
    background: rgba(255, 255, 255, 1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.submit-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    font-family: 'Space Grotesk', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669, #047857);
}

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

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-loader.hidden {
    display: none;
}

.form-message {
    padding: 1rem;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

/* Simple Contact Form Styles */
.simple-contact-form {
    width: 100%;
    max-width: 600px;
}

.single-field-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input-group {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.form-input-group input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-input-group input::placeholder {
    color: rgba(31, 41, 55, 0.5);
}

.form-input-group input:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
    background: rgba(255, 255, 255, 1);
}

.orange-submit-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap;
}

.orange-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.5);
}

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

/* Contact Information Row */
.contact-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.contact-item .contact-icon {
    font-size: 2rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.contact-item .contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(31, 41, 55, 0.9);
    font-family: 'Space Grotesk', sans-serif;
}

.contact-item .contact-details a {
    color: #ef4444;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item .contact-details a:hover {
    color: #f97316;
}

.simplified-contact-content .contact-note {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 15px;
    max-width: 400px;
}

.simplified-contact-content .contact-note p {
    color: rgba(31, 41, 55, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Vedro Floating Button and Modal */
.vedro-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
}

.vedro-floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.vedro-floating-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.vedro-btn-image {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.vedro-btn-text {
    font-size: 14px;
    font-weight: 600;
    color: #1e1b4b;
    white-space: nowrap;
}

/* Vedro Modal */
.vedro-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.vedro-modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.vedro-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.vedro-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    width: 1200px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.vedro-modal:not(.hidden) .vedro-modal-content {
    transform: scale(1);
}

.vedro-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vedro-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
}

.vedro-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 80vh;
    max-height: 600px;
}

.vedro-left-column {
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    overflow: hidden;
}

.vedro-left-column .vedro-gallery-title {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
}

.vedro-list-image {
    max-width: 100%;
    height: auto;
    max-height: calc(100% - 80px);
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-shrink: 1;
}

.vedro-right-column {
    padding: 30px;
    overflow-y: auto;
    background: white;
}

.vedro-gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.vedro-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.vedro-gallery-item {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vedro-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.vedro-gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vedro-gallery-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.vedro-gallery-caption {
    padding: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    background: white;
}

/* Sample Video Modal */
.sample-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sample-video-modal.active {
    opacity: 1;
    visibility: visible;
}

.sample-video-modal-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    max-width: 1200px;
    max-height: 800px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.sample-video-modal.active .sample-video-modal-content {
    transform: scale(1);
}

.sample-video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.sample-video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.sample-video-modal-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.sample-video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
}


/* Mobile responsive */
@media (max-width: 768px) {
    .sample-video-modal-content {
        width: 95vw;
        height: 85vh;
        border-radius: 10px;
    }
    
    .sample-video-modal-close {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
        font-size: 20px;
    }
}

/* Responsive Design for Vedro Modal */
@media (max-width: 768px) {
    .vedro-floating-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        max-width: 160px;
    }
    
    .vedro-btn-image {
        height: 30px;
    }
    
    .vedro-btn-text {
        font-size: 12px;
    }
    
    .vedro-modal-content {
        width: 95vw;
        height: 90vh;
    }
    
    .vedro-modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        height: auto;
        max-height: none;
    }
    
    .vedro-left-column {
        max-height: 300px;
    }
    
    .vedro-right-column {
        padding: 20px;
    }
    
    .vedro-gallery {
        grid-template-columns: 1fr;
    }
    
    .vedro-gallery-image {
        height: 120px;
    }
}
