/* =============================================================================
   PRICEWISE PRO LANDING PAGE - COMPLETE STYLESHEET
   Version: 1.0 - SVG Icons & Blue Borders Update
   All emoji icons replaced with SVG
   All borders updated to 2px light blue
   ============================================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; 
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Inter');
}

.problem-card,
.feature-card,
.testimonial-card,
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
}

html.fonts-loaded .problem-card,
html.fonts-loaded .feature-card,
html.fonts-loaded .testimonial-card,
html.fonts-loaded .pricing-card {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #00A3FF;
    --accent: #CCE5FF;
    --secondary: #10b981;
    --dark: #001429;
    --dark-purple: #0a1929;
    --gray: #64748b;
    --light: #fafafa;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #ffffff;
}

.admin-bar .nav {
    top: 32px;
}

.admin-bar .mobile-menu {
    padding-top: 132px;
}

@media screen and (max-width: 782px) {
    .admin-bar .nav {
        top: 46px;
    }
    
    .admin-bar .mobile-menu {
        padding-top: 146px;
    }
}

@media screen and (max-width: 600px) {
    .admin-bar .nav {
        position: fixed;
        top: 0;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.custom-logo-link:hover {
    opacity: 0.9;
}

.custom-logo {
    height: 45px;
    width: auto;
    max-width: 100%;
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .custom-logo {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .custom-logo {
        height: 30px;
    }
}

.site-title-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    font-size: 24px;
    font-weight: 800;
    transition: opacity 0.3s ease;
}

.site-title-link:hover {
    opacity: 0.9;
}

.custom-logo-link img {
    max-height: 45px;
    width: auto;
}

/* =============================================================================
   NAVIGATION
   ============================================================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: padding 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent; 
}

.nav.scrolled {
    padding: 20px 40px;
    background: transparent; 
}

.nav-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    background: rgba(10, 25, 41, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 60px;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: 
        max-width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-radius 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        padding 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav.scrolled .nav-container {
    max-width: 1400px;
    padding: 20px 40px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0a1929, #001429);
    backdrop-filter: none;
    border-top: 2px solid #0066FF;
    border-left: 2px solid #0066FF;
    border-right: 2px solid #0066FF;
    border-bottom: 2px solid #0066FF;
    box-shadow: 
        0 0 40px rgba(0, 102, 255, 0.3),
        0 10px 30px rgba(0, 102, 255, 0.2),
        0 4px 12px rgba(0, 163, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

.nav-container:hover::before {
    left: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    position: relative;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 
        0 4px 12px rgba(0, 102, 255, 0.4),
        inset 0 -2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-icon img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.logo:hover .logo-icon {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 
        0 6px 16px rgba(0, 102, 255, 0.6),
        inset 0 -2px 8px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
    position: relative;
    z-index: 10;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066FF, #00A3FF);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 4px 16px rgba(0, 102, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.nav-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.6s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 8px 24px rgba(0, 102, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #0052CC, #0066FF);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-cta:active {
    transform: translateY(0) scale(0.98);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #00A3FF;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.4);
}

.menu-toggle:hover span {
    background: #CCE5FF;
    box-shadow: 0 2px 12px rgba(0, 102, 255, 0.6);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #001429 0%, #0a1929 100%);
    z-index: 1000;
    padding: 100px 40px 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.mobile-menu-links a:hover {
    color: #00A3FF;
    border-bottom-color: #0066FF;
    padding-left: 10px;
}

.mobile-menu-cta {
    margin-top: 40px;
}

.mobile-menu {
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 968px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle,
    .mobile-menu {
        display: flex;
    }

    .nav.scrolled {
        padding: 15px 20px;
    }

    .nav-container {
        padding: 20px 30px;
    }

    .nav.scrolled .nav-container {
        padding: 16px 24px;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .nav.scrolled {
        padding: 12px 15px;
    }

    .nav-container {
        padding: 18px 25px;
    }

    .nav.scrolled .nav-container {
        padding: 14px 20px;
        border-radius: 16px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .nav.scrolled {
        padding: 10px;
    }

    .nav-container {
        padding: 16px 20px;
    }

    .nav.scrolled .nav-container {
        padding: 12px 16px;
        border-radius: 14px;
    }

    .mobile-menu-links a {
        font-size: 20px;
    }
}

.nav-container,
.nav-cta,
.logo-icon {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* =============================================================================
   SECTION LABELS & COMMON ELEMENTS
   ============================================================================= */

.section-label,
.video-demo-label {
    display: inline-block;
    padding: 10px 26px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: #0066FF;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

/* =============================================================================
   PROBLEM SECTION - UPDATED TO BLUE (from RED)
   ============================================================================= */

.problem-design-2 {
    background: 
        linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%),
        radial-gradient(circle at 20% 30%, rgba(0, 163, 255, 0.05), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(0, 163, 255, 0.03), transparent 60%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.problem-design-2::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.problem-design-2::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.05), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.problem-d2-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.problem-d2-header {
    text-align: center;
    margin-bottom: 80px;
}

.problem-d2-label {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 163, 255, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    color: #0066FF;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 
        0 4px 16px rgba(0, 163, 255, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.problem-d2-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.problem-d2-accent {
    background: linear-gradient(135deg, #0066FF, #00A3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-d2-description {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.problem-d2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.problem-d2-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 28px;
    border: 2px solid rgba(0, 163, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-d2-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.1), transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.problem-d2-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 163, 255, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    border-color: rgba(0, 163, 255, 0.5);
}

.problem-d2-card:hover::before {
    transform: translate(-30%, 30%) scale(1.5);
}

.problem-d2-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(204, 229, 255, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 2px solid rgba(0, 163, 255, 0.3);
    box-shadow: 
        0 8px 24px rgba(0, 163, 255, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.problem-d2-card:hover .problem-d2-icon-wrapper {
    background: linear-gradient(135deg, #0066FF, #00A3FF);
    border-color: #0066FF;
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 12px 40px rgba(0, 163, 255, 0.35);
}

.problem-d2-icon {
    width: 40px;
    height: 40px;
    color: #0066FF;
    transition: all 0.6s ease;
}

.problem-d2-card:hover .problem-d2-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.problem-d2-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.problem-d2-card-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.problem-d2-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: rgba(204, 229, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(0, 163, 255, 0.2);
    position: relative;
    z-index: 1;
}

.problem-d2-stat-label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.problem-d2-stat-value {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #0066FF, #00A3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .problem-design-2 {
        padding: 80px 20px;
    }

    .problem-d2-title {
        font-size: 36px;
    }

    .problem-d2-description {
        font-size: 16px;
    }

    .problem-d2-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .problem-d2-card {
        padding: 40px 30px;
    }
}

/* =============================================================================
   SECTION CONTAINERS & HEADERS
   ============================================================================= */

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-size: 13px;
    font-weight: 800;
    color: #0066FF;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #0a0a0a;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =============================================================================
   TRANSITION SECTIONS
   ============================================================================= */

.section-transition {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-transition::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-transition-alt {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.transition-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.transition-icon {
    margin-bottom: 20px;
    line-height: 1;
    animation: float 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transition-icon svg {
    width: 56px;
    height: 56px;
    color: #0066FF;
    stroke: currentColor;
    fill: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-transition h3 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-transition p {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .section-transition {
        padding: 60px 20px;
    }
    
    .transition-icon svg {
        width: 42px;
        height: 42px;
    }
    
    .section-transition h3 {
        font-size: 28px;
    }
    
    .section-transition p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .section-transition {
        padding: 50px 20px;
    }
    
    .transition-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .section-transition h3 {
        font-size: 24px;
    }
    
    .section-transition p {
        font-size: 16px;
    }
}

/* =============================================================================
   SOLUTION SECTION
   ============================================================================= */

.solution {
    padding: 100px 40px;
    background: #0066FF;
    position: relative;
}

.solution .section-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solution-intro {
    text-align: center;
    margin-bottom: 60px;
}

.solution .section-label {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.solution .section-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.solution .section-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.benefit-card {
    background: #ffffff;
    border: none;
    padding: 40px 30px;
    border-radius: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066FFa6 0%, #0052CCb3 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    line-height: 1;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    stroke: currentColor;
    fill: none;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 15px;
    opacity: 1;
    line-height: 1.7;
    margin: 0;
    color: #666;
}

.solution-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.5;
    color: white;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff;
    color: #0066FF;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solution {
        padding: 80px 20px;
    }

    .solution .section-title {
        font-size: 36px;
    }

    .solution .section-description {
        font-size: 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 25px;
    }

    .cta-text {
        font-size: 20px;
    }

    .btn-primary-large {
        font-size: 16px;
        padding: 18px 40px;
    }
}

/* =============================================================================
   VIDEO DEMO SECTION
   ============================================================================= */

.video-demo-section {
    background: white;
    padding: 100px 40px;
    position: relative;
}

.video-demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
}

.video-demo-container {
    max-width: 1100px;
    margin: 0 auto;
}

.video-demo-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-demo-label {
    display: inline-block;
    padding: 10px 26px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: #0066FF;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.video-demo-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.video-demo-title .gradient-text {
    background: linear-gradient(135deg, #0066FF, #00A3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-demo-description {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.video-container-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
}

.video-wrapper-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-wrapper-main iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-cta {
    text-align: center;
}

.video-cta p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .video-demo-section {
        padding: 80px 20px;
    }
    
    .video-demo-title {
        font-size: 36px;
    }
    
    .video-demo-description {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .video-demo-section {
        padding: 60px 20px;
    }
    
    .video-demo-title {
        font-size: 28px;
    }
    
    .video-demo-label {
        font-size: 11px;
        padding: 8px 20px;
    }
}

/* =============================================================================
   FEATURES SECTION
   ============================================================================= */

.features {
    padding: 100px 40px;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.features .section-header {
    position: relative;
    z-index: 1;
}

.features .section-label {
    font-size: 13px;
    font-weight: 800;
    color: #00A3FF;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 50px;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.features .section-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.features .section-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.features .feature-card {
    background: transparent;
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(0, 163, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.features .feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, transparent 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.features .feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 163, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 163, 255, 0.25);
}

.features .feature-card:hover::after {
    opacity: 1;
}

.features .feature-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid #00A3FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.features .feature-icon svg {
    width: 32px;
    height: 32px;
    color: #00A3FF;
    stroke: currentColor;
    fill: none;
}

.features .feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    border-color: #00A3FF;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5);
    transform: scale(1.05);
}

.features .feature-card:hover .feature-icon svg {
    color: #ffffff;
}

.features .feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.features .feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 15px;
    position: relative;
    z-index: 1;
    margin: 0;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features {
        padding: 80px 20px;
    }

    .features .section-title {
        font-size: 36px;
    }

    .features .section-description {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .features .feature-card {
        padding: 30px 25px;
    }

    .features .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .features .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .features .feature-card h3 {
        font-size: 20px;
    }

    .features .feature-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 60px 20px;
    }

    .features .section-title {
        font-size: 28px;
    }

    .features .section-label {
        font-size: 11px;
        padding: 6px 18px;
    }
}

/* =============================================================================
   TESTIMONIALS SECTION
   ============================================================================= */

.testimonials {
    padding: 100px 40px;
    background: white;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
}

.featured-testimonial {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    padding: 70px 60px;
    border-radius: 32px;
    margin-bottom: 50px;
    color: white;
    box-shadow: 
        0 20px 60px rgba(0, 102, 255, 0.25),
        0 0 0 1px rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.featured-testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-testimonial::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-content {
    position: relative;
    z-index: 1;
}

.featured-stars {
    color: #fbbf24;
    font-size: 24px;
    margin-bottom: 28px;
    letter-spacing: 4px;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.3));
}

.featured-quote {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 40px;
    font-style: normal;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.featured-info h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.featured-info p {
    opacity: 0.9;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-mini-grid .testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 24px;
    border: 2px solid rgba(0, 163, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-mini-grid .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066FF, #00A3FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-mini-grid .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(0, 163, 255, 0.15),
        0 0 0 1px rgba(0, 163, 255, 0.2);
    border-color: rgba(0, 163, 255, 0.4);
}

.testimonial-mini-grid .testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-mini-grid .stars {
    color: #0066FF;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 2px 6px rgba(0, 102, 255, 0.2);
}

.testimonial-mini-grid .testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 28px;
    font-weight: 400;
    flex: 1;
}

.testimonial-mini-grid .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
}

.testimonial-mini-grid .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.testimonial-mini-grid .author-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.testimonial-mini-grid .author-info p {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 1200px) {
    .testimonial-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 80px 20px;
    }

    .featured-testimonial {
        padding: 50px 35px;
        border-radius: 24px;
        margin-bottom: 40px;
    }

    .featured-quote {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .featured-avatar {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .featured-info h4 {
        font-size: 18px;
    }

    .featured-info p {
        font-size: 14px;
    }

    .testimonial-mini-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-mini-grid .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-mini-grid .testimonial-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .featured-testimonial {
        padding: 40px 25px;
    }

    .featured-quote {
        font-size: 20px;
    }
}

/* =============================================================================
   FAQ SECTION
   ============================================================================= */

.faq {
    padding: 100px 40px;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq .section-label {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #00A3FF;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq .section-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00A3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.faq .section-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.faq-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.faq-tab-btn {
    padding: 14px 32px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.faq-tab-btn:hover {
    background: rgba(0, 102, 255, 0.2);
    color: #ffffff;
    border-color: rgba(0, 102, 255, 0.5);
    transform: scale(1.05);
}

.faq-tab-btn.active {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    border-color: #0066FF;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.faq-content-wrapper {
    position: relative;
    min-height: 500px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-tab-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.faq-tab-content.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
}

.faq-item {
    background: rgba(10, 25, 41, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 163, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1; 
    transform: translate(0, 0) scale(1);
    transform-origin: center center;
}

.faq-tab-content:not(.active) .faq-item {
    opacity: 0;
    pointer-events: none;
}

.faq-tab-content.active .faq-item {
    opacity: 1;
    pointer-events: auto;
}

.faq-item:hover {
    border-color: rgba(0, 163, 255, 0.4);
}

.faq-item.active-item {
    border-color: rgba(0, 163, 255, 0.6);
    box-shadow: 0 8px 24px rgba(0, 163, 255, 0.25);
}

.faq-question {
    padding: 26px 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-question {
    color: #CCE5FF;
    padding-left: 35px;
}

.faq-toggle {
    font-size: 16px;
    color: #0066FF;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    font-weight: 700;
}

.faq-item.active-item .faq-toggle {
    transform: rotate(180deg);
    color: #00A3FF;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active-item .faq-answer {
    max-height: 600px;
}

.faq-answer-content {
    padding: 0 30px 0px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s, padding 0.6s ease;
}

.faq-item.active-item .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
    padding: 0 30px 26px;
}

@media (max-width: 768px) {
    .faq {
        padding: 80px 20px;
    }

    .faq .section-title {
        font-size: 36px;
    }

    .faq .section-description {
        font-size: 18px;
    }

    .faq-tab-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .faq-question {
        padding: 22px 24px;
        font-size: 16px;
    }

    .faq-answer-content {
        font-size: 15px;
    }

    .faq-item.active-item .faq-answer-content {
        padding: 0 24px 22px;
    }
}

@media (max-width: 480px) {
    .faq .section-title {
        font-size: 32px;
    }

    .faq-tabs {
        gap: 8px;
    }

    .faq-tab-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* =============================================================================
   FOOTER
   ============================================================================= */

footer {
    padding: 60px 40px 40px;
    background: var(--dark);
    color: white;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand h3 {
        font-size: 20px;
    }

    .footer-brand p {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .nav-container {
        padding: 20px 30px;
    }

    .section-title {
        font-size: 48px;
    }
}

@media (max-width: 968px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle,
    .mobile-menu {
        display: flex;
    }

    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }
}

/* =============================================================================
   SCROLLBAR STYLING
   ============================================================================= */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a1929;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0066FF 0%, #0052CC 100%);
    border-radius: 10px;
    border: 2px solid #0a1929;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00A3FF 0%, #0066FF 100%);
}

* {
    scrollbar-width: thin;
    scrollbar-color: #0066FF #0a1929;
}

select,
select option,
.select2-results,
.select2-dropdown {
    scrollbar-width: thin !important;
    scrollbar-color: #0066FF rgba(0, 102, 255, 0.1) !important;
}

select::-webkit-scrollbar,
.select2-results::-webkit-scrollbar,
.select2-dropdown::-webkit-scrollbar {
    width: 10px !important;
}

select::-webkit-scrollbar-track,
.select2-results::-webkit-scrollbar-track,
.select2-dropdown::-webkit-scrollbar-track {
    background: rgba(0, 102, 255, 0.1) !important;
    border-radius: 10px;
}

select::-webkit-scrollbar-thumb,
.select2-results::-webkit-scrollbar-thumb,
.select2-dropdown::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0066FF 0%, #0052CC 100%) !important;
    border-radius: 10px;
    border: 2px solid rgba(10, 25, 41, 0.3);
}

select::-webkit-scrollbar-thumb:hover,
.select2-results::-webkit-scrollbar-thumb:hover,
.select2-dropdown::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00A3FF 0%, #0066FF 100%) !important;
}

/* =============================================================================
   HEADER TRANSPARENCY FIX FOR DIFFERENT PAGE TYPES
   ============================================================================= */

body.woocommerce-checkout .nav-container,
body.woocommerce-account .nav-container,
body.single-product .nav-container,
body.single .nav-container,
body.archive:not(.post-type-archive-product) .nav-container,
body.search .nav-container,
body.page-template-page-privacy .nav-container,
body.page-template-page-terms .nav-container,
body.page-template-page-refund .nav-container {
    background: linear-gradient(135deg, #0a1929 0%, #001429 100%) !important;
    backdrop-filter: none !important;
    box-shadow: 0 4px 24px rgba(0, 102, 255, 0.2), 0 2px 12px rgba(0, 102, 255, 0.1) !important;
    border-bottom: 1px solid rgba(0, 102, 255, 0.5) !important;
}

body.woocommerce-page .nav.scrolled .nav-container,
body.woocommerce-cart .nav.scrolled .nav-container,
body.woocommerce-checkout .nav.scrolled .nav-container,
body.woocommerce-account .nav.scrolled .nav-container,
body.single-product .nav.scrolled .nav-container,
body.single .nav.scrolled .nav-container,
body.archive .nav.scrolled .nav-container,
body.search .nav.scrolled .nav-container,
body.page-template-page-privacy .nav.scrolled .nav-container,
body.page-template-page-terms .nav.scrolled .nav-container,
body.page-template-page-refund .nav.scrolled .nav-container {
    background: linear-gradient(135deg, #2a1b3e 0%, #0a1929 100%) !important;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.25), 0 4px 16px rgba(0, 102, 255, 0.15) !important;
    border: 1px solid rgba(0, 102, 255, 0.4) !important;
}

body.home .nav-container,
body.woocommerce-cart .nav-container,
body.page-template-page-about .nav-container,
body.page-template-page-contact .nav-container,
body.page-template-page-services .nav-container,
body.page-template-page-documentation .nav-container,
body.page-template-page-documentation-lemonsqueezy .nav-container,
body.page-template-page-lemon-squeezy .nav-container,
body.page-template-page-pricewise-pro .nav-container {
    background: rgba(10, 25, 41, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

body.home .nav.scrolled .nav-container,
body.woocommerce-cart .nav.scrolled .nav-container,
body.page-template-page-about .nav.scrolled .nav-container,
body.page-template-page-contact .nav.scrolled .nav-container,
body.page-template-page-services .nav.scrolled .nav-container,
body.page-template-page-documentation .nav.scrolled .nav-container,
body.page-template-page-documentation-lemonsqueezy .nav.scrolled .nav-container,
body.page-template-page-lemon-squeezy .nav.scrolled .nav-container,
body.page-template-page-pricewise-pro .nav.scrolled .nav-container {
    background: linear-gradient(135deg, #0a1929, #001429) !important;
}

/* =============================================================================
   MOBILE MENU - ENHANCED STYLING
   ============================================================================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 100px 40px 40px;
}

.mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu.active::before {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    position: relative;
    z-index: 1;
}

.mobile-menu-links li {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mobile-menu.active .mobile-menu-links li:nth-child(1) { 
    opacity: 1; 
    transform: translateX(0); 
    transition-delay: 0.1s; 
}
.mobile-menu.active .mobile-menu-links li:nth-child(2) { 
    opacity: 1; 
    transform: translateX(0); 
    transition-delay: 0.2s; 
}
.mobile-menu.active .mobile-menu-links li:nth-child(3) { 
    opacity: 1; 
    transform: translateX(0); 
    transition-delay: 0.3s; 
}
.mobile-menu.active .mobile-menu-links li:nth-child(4) { 
    opacity: 1; 
    transform: translateX(0); 
    transition-delay: 0.4s; 
}
.mobile-menu.active .mobile-menu-links li:nth-child(5) { 
    opacity: 1; 
    transform: translateX(0); 
    transition-delay: 0.5s; 
}

.mobile-menu-links a {
    display: block;
    padding: 18px 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    transition: left 0.4s ease;
    z-index: -1;
}

.mobile-menu-links a:hover::before {
    left: 0;
}

.mobile-menu-links a:hover {
    border-color: #0066FF;
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.mobile-menu-cta {
    margin-top: auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mobile-menu.active .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.mobile-menu-cta a {
    display: block;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

.mobile-menu-cta a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        max-width: 100%;
        padding: 80px 30px 30px;
    }
    
    .mobile-menu-links a {
        font-size: 16px;
        padding: 16px 20px;
    }
}

/* =============================================================================
   UTILITIES
   ============================================================================= */

html {
    scroll-behavior: smooth;
}

.mobile-menu::before {
    cursor: pointer;
}

/* END OF STYLESHEET */