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

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

/* Logo Link Styles - Remove underlines from all logo links */
.nav-brand a,
.footer-logo a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

/* Service Card Interactive States */
.product-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.product-card.active {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #3b82f6;
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px) scale(1.02);
}

.product-card.active .product-icon svg circle {
    fill: #3b82f6;
}

.product-card.active .product-title {
    color: #1e40af;
    font-weight: 700;
}

.product-card.active .product-description {
    color: #3730a3;
}

.product-card.active .learn-more-link {
    display: none;
}

/* Sub-Service Navigation States */
.nav-item {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    opacity: 0.6;
    transform: scale(0.95);
}

.nav-item:hover {
    text-decoration: none;
}

.nav-item.highlighted {
    opacity: 1;
    transform: scale(1);
    border: 2px solid #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    background: rgba(59, 130, 246, 0.05);
}

.nav-item.dimmed {
    opacity: 0.4;
    transform: scale(0.9);
}

/* Responsive touch support */
@media (hover: none) and (pointer: coarse) {
    .product-card:active {
        transform: scale(0.98);
    }
    
    .nav-item:active {
        transform: scale(0.95);
    }
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #8B5CF6 0%, #06B6D4 100%);
    padding: 12px 24px;
    text-align: center;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.close-banner {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-banner:hover {
    opacity: 0.8;
}

/* ========== NEW NAVIGATION SYSTEM ========== */

/* Main Header */
.main-header {
    background: #0f172a;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    flex-shrink: 0;
}

.nav-brand a {
    text-decoration: none;
    display: block;
}

.nav-brand svg {
    height: 32px;
    width: auto;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown {
    position: relative;
}

.nav-button {
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.nav-button:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.1);
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
    margin-top: 8px;
    padding: 24px;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
}

.dropdown-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-header h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.dropdown-header p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-links a {
    color: #e2e8f0;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.dropdown-links a:before {
    content: "•";
    color: #10b981;
    font-weight: bold;
    margin-right: 8px;
}

.dropdown-links a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #ffffff;
    transform: translateX(4px);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #e2e8f0;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f172a;
    z-index: 1500;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-content {
    padding: 20px;
}

.mobile-section {
    margin-bottom: 8px;
}

.mobile-category {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: inherit;
}

.mobile-category:hover {
    color: #10b981;
}

.mobile-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-category.active .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-links {
    display: none;
    padding: 8px 0 16px 0;
    margin-left: 16px;
}

.mobile-links.active {
    display: block;
}

.mobile-links a {
    display: block;
    color: #e2e8f0;
    text-decoration: none;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-links a:hover {
    color: #10b981;
    padding-left: 8px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .main-nav {
        padding: 0 16px;
        height: 56px;
    }
    
    .nav-brand svg {
        height: 28px;
    }
}

/* Desktop Hide Mobile Elements */
@media (min-width: 769px) {
    .mobile-toggle,
    .mobile-nav {
        display: none !important;
    }
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-item:hover {
    color: #ffffff;
}

.nav-item.dropdown {
    position: relative;
    margin-right: 8px;
}

.nav-item.dropdown:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item.dropdown:hover .category-megamenu {
    opacity: 1 !important;
    visibility: visible;
    transform: translateY(0);
}

/* Megamenu Styles */
.megamenu {
    position: absolute;
    top: 100%;
    left: -200px;
    width: 800px;
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0;
    overflow: hidden;
}

.megamenu-content {
    display: flex;
    min-height: 400px;
}

.megamenu-sidebar {
    width: 280px;
    background: #1e293b;
    padding: 24px 0;
    border-right: 1px solid #334155;
}

.megamenu-category {
    display: block;
    padding: 12px 24px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.megamenu-category:hover,
.megamenu-category.active {
    background: #334155;
    color: #ffffff;
    border-left-color: #10B981;
}

.megamenu-main {
    flex: 1;
    padding: 24px;
    background: #0f172a;
}

.megamenu-header {
    margin-bottom: 20px;
}

.megamenu-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.megamenu-description {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

.megamenu-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.megamenu-subcategory {
    display: block;
    padding: 10px 16px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.megamenu-subcategory:hover {
    background: #1e293b;
    color: #ffffff;
    border-left-color: #10B981;
    transform: translateX(4px);
}

.megamenu-subcategory::before {
    content: "•";
    color: #10B981;
    font-weight: bold;
    margin-right: 12px;
}

/* Category Megamenu Styles */
/* Fix for fully opaque dropdown menus - Apply exact specifications */
.dropdown-menu {
  background-color: #000000 !important;  /* solid black */
  opacity: 1 !important;                 /* fully opaque */
  backdrop-filter: none !important;     /* remove any blur or transparency */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* match existing shadow if used */
}

.dropdown-menu * {
  background-color: transparent;
  color: #ffffff;                        /* ensure text remains readable */
  text-decoration: none;                /* prevent underline on links */
}

/* Apply the same fixes to category-megamenu (current class name) */
/* ULTIMATE DROPDOWN OPACITY FIX - FORCE SOLID BLACK */
.category-megamenu,
.category-megamenu-content,
.dropdown-menu,
.nav-item.dropdown:hover .category-megamenu,
.nav-item:hover .dropdown-menu {
    background-color: #000000 !important;  /* solid black background */
    background: #000000 !important;        /* override any gradient backgrounds */
    backdrop-filter: none !important;      /* remove blur effects */
    -webkit-backdrop-filter: none !important; /* Safari support */
}

/* Force opacity to 1 when visible - override transitions */
.nav-item.dropdown:hover .category-megamenu {
    opacity: 1 !important;
    visibility: visible !important;
    background-color: #000000 !important;
    background: #000000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.category-megamenu * {
    background-color: transparent;
    color: #ffffff !important;
    text-decoration: none;
}

.category-megamenu .category-info h3 {
    color: #ffffff !important;
}

.category-megamenu .category-info p {
    color: #94a3b8 !important;
}

.category-megamenu .category-services ul li a {
    color: #ffffff !important;
    text-decoration: none;
}

.category-megamenu .category-services ul li a:hover {
    color: #10B981 !important;
}

.category-megamenu .category-services ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.category-megamenu .category-services ul li:before {
    content: "•";
    color: #10B981;
    font-weight: bold;
    position: absolute;
    left: 0;
}
.category-megamenu {
    position: absolute;
    top: 100%;
    left: -120px;
    width: 400px;
    background-color: #000000 !important;  /* solid black */
    border: 1px solid #1e293b;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    opacity: 0 !important;
    visibility: hidden;
    transform: translateY(-10px);
    transition: visibility 0.3s ease, transform 0.3s ease;
    /* Remove all opacity transitions that cause transparency */
    z-index: 1001;
    padding: 0;
    overflow: hidden;
    backdrop-filter: none !important;     /* remove any blur or transparency */
}

.category-megamenu:hover,
.nav-item.dropdown:hover .category-megamenu {
    opacity: 1 !important;                 /* fully opaque when visible */
    visibility: visible !important;
    transform: translateY(0) !important;
    background-color: #000000 !important;  /* ensure solid black */
    backdrop-filter: none !important;
}

.category-megamenu-content {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: #000000 !important;  /* solid black */
    width: 100%;
    height: 100%;
    opacity: 1 !important;                 /* fully opaque */
    backdrop-filter: none !important;     /* remove any blur or transparency */
}

.category-info {
    margin-bottom: 20px;
}

.category-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.category-info p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.category-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-services li {
    display: flex;
    align-items: center;
}

.category-services li::before {
    content: "•";
    color: #10B981;
    font-weight: bold;
    margin-right: 12px;
    font-size: 16px;
}

.category-services a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    display: block;
    padding: 8px 0;
}

.category-services a:hover {
    color: #ffffff;
}



/* Mobile Megamenu Styles */
@media (max-width: 768px) {
    .megamenu {
        position: static;
        width: 100%;
        left: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        background: #1e293b;
        margin-top: 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }
    
    .megamenu-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .megamenu-sidebar {
        width: 100%;
        padding: 16px 0;
        background: #334155;
        border-right: none;
        border-bottom: 1px solid #475569;
    }
    
    .megamenu-category {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .megamenu-main {
        padding: 16px;
    }
    
    .megamenu-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .megamenu-description {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .megamenu-grid {
        gap: 6px;
        margin-top: 6px;
    }
    
    .megamenu-subcategory {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .megamenu-subcategory::before {
        margin-right: 8px;
    }
    
    /* Hide megamenu by default on mobile, show when parent has class */
    .nav-item.dropdown .megamenu {
        display: none;
    }
    
    .nav-item.dropdown.mobile-active .megamenu {
        display: block;
    }
    
    /* Category Megamenu Mobile Styles */
    .category-megamenu {
        position: static;
        width: 100%;
        left: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        background: #000000;
        margin-top: 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        display: none;
    }
    
    .nav-item.dropdown.mobile-active .category-megamenu {
        display: block;
    }
    
    .category-megamenu-content {
        padding: 16px;
        background: #000000;
    }
    
    .category-info h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .category-info p {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .category-services a {
        font-size: 13px;
        padding: 6px 0;
    }
}

.nav-item svg {
    width: 12px;
    height: 8px;
    color: #94a3b8;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #475569;
    color: #e2e8f0;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: #64748b;
    color: #ffffff;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-login {
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.btn-login:hover {
    color: #ffffff;
}

/* Main Content */
.main {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 100vh;
    position: relative;
}

/* Hero Section */
.hero {
    padding: 80px 24px 120px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

/* Mobile Hero Styles */
@media (max-width: 768px) {
    .hero {
        padding: 40px 16px 80px;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 32px;
        line-height: 1.2;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .search-wrapper {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }
    
    .search-input {
        margin-bottom: 8px;
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .search-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 32px 12px 60px;
    }
    
    .hero-title {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 1.1;
    }
}

.highlight-orange {
    color: #f97316;
}

.highlight-blue {
    color: #3b82f6;
}

/* Search Container */
.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-wrapper {
    display: flex;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 16px;
    padding: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    gap: 8px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Dashboard Preview */
.dashboard-preview {
    position: relative;
    height: 400px;
    margin-top: 40px;
}

.dashboard-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease;
    border: 1px solid rgba(71, 85, 105, 0.3);
}

.dashboard-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
}

.dashboard-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-1 {
    top: 20px;
    left: 0;
    width: 280px;
    height: 200px;
    z-index: 5;
}

.card-2 {
    top: 0;
    left: 200px;
    width: 300px;
    height: 220px;
    z-index: 4;
}

.card-3 {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 280px;
    z-index: 6;
}

.card-4 {
    top: 60px;
    right: 200px;
    width: 280px;
    height: 200px;
    z-index: 3;
}

.card-5 {
    top: 80px;
    right: 0;
    width: 260px;
    height: 180px;
    z-index: 2;
}

/* Trusted By Section */
.trusted-by {
    background: rgba(15, 23, 42, 0.8);
    padding: 10px 24px 60px;
    text-align: center;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.trusted-text {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 40px;
    font-weight: 500;
}

.logo-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 60px;
    padding: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.logo-container::-webkit-scrollbar {
    display: none;
}

.logo-item {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item text {
    fill: #ffffff !important;
}

/* Add animation for continuous scroll */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-container {
    animation: scroll 30s linear infinite;
}

.logo-container:hover {
    animation-play-state: paused;
}

/* AI Dream Team Section */
.ai-team {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 100px 0;
    position: relative;
}

.ai-team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.ai-team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-team-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
    line-height: 1.2;
}

.highlight-green {
    color: #10b981;
}

/* AI Team Cards */
.ai-team-card, .ai-team-card-right {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ai-team-card-right {
    margin-top: 40px;
    max-width: 400px;
    margin-left: auto;
}

.card-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.card-title, .card-title-right {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.card-title-right {
    font-size: 28px;
}

.card-description, .card-description-right {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.6;
}

.card-actions, .card-actions-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-demo {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-learn {
    background: none;
    border: none;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-learn:hover {
    color: #2563eb;
}

/* AI Characters */
.ai-characters {
    position: relative;
    height: 400px;
    margin-bottom: 40px;
}

.ai-character {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    animation: float 3s ease-in-out infinite;
}

.ai-character img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.char-1 {
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
    animation-delay: 0s;
}

.char-2 {
    top: 40px;
    right: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    animation-delay: 0.5s;
}

.char-3 {
    bottom: 80px;
    left: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    animation-delay: 1s;
}

.char-4 {
    bottom: 40px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design for AI Team Section */
@media (max-width: 1024px) {
    .ai-team-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .ai-team-title {
        font-size: 40px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .ai-characters {
        height: 300px;
    }
    
    .ai-character {
        width: 100px;
        height: 100px;
    }
    
    .ai-character img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .ai-team {
        padding: 60px 0;
    }
    
    .ai-team-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .ai-team-card, .ai-team-card-right {
        padding: 24px;
        margin-top: 20px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .ai-characters {
        display: none !important;
    }
    
    .card-title, .card-title-right {
        font-size: 24px;
        text-align: center;
    }
    
    .card-description, .card-description-right {
        font-size: 14px;
        text-align: center;
    }
    
    .card-actions, .card-actions-right {
        flex-direction: column;
        gap: 12px;
        justify-content: center;
    }
    
    .btn-demo, .btn-learn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .ai-characters {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .ai-character {
        width: 80px;
        height: 80px;
    }
    
    .ai-character img {
        width: 60px;
        height: 60px;
    }
    
    .char-1 {
        top: 10px;
        left: 10px;
    }
    
    .char-2 {
        top: 20px;
        right: 20px;
    }
    
    .char-3 {
        bottom: 40px;
        left: 30px;
    }
    
    .char-4 {
        bottom: 20px;
        right: 10px;
    }
}

/* Solutions Section */
.solutions {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 100px 0;
    position: relative;
}

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

.solutions-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.solutions-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.highlight-orange {
    color: #f59e0b;
}

.solutions-nav-btn {
    background: rgba(51, 65, 85, 0.8);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.solutions-nav-btn:hover {
    background: rgba(71, 85, 105, 0.8);
    color: #ffffff;
    transform: translateX(4px);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(71, 85, 105, 0.5);
}

.solution-header {
    margin-bottom: 32px;
}

.solution-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.solution-description {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.solution-demo {
    position: relative;
}

.demo-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.8);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.demo-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
}

.demo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

/* Widget Styles */
.chart-widget, .metric-widget, .analytics-widget, .ads-widget {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 16px;
    min-width: 140px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.chart-widget h4, .metric-widget h4, .analytics-widget h4, .ads-widget h4 {
    font-size: 12px;
    color: #374151;
    margin-bottom: 12px;
    font-weight: 600;
}

.chart-bars {
    display: flex;
    gap: 4px;
    align-items: end;
    height: 40px;
}

.bar {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    width: 12px;
    border-radius: 2px;
    transition: height 0.3s ease;
}

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.heat-cell {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.heat-cell.high {
    background: #ef4444;
}

.heat-cell.medium {
    background: #f59e0b;
}

.heat-cell.low {
    background: #10b981;
}

.pie-chart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: conic-gradient(#3b82f6 0deg 120deg, #10b981 120deg 240deg, #f59e0b 240deg 360deg);
}

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

.ad-price {
    font-size: 16px;
    font-weight: 700;
    color: #059669;
}

.ad-rating {
    color: #f59e0b;
    font-size: 12px;
}

/* Responsive Design for Solutions Section */
@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .solutions-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .solutions {
        padding: 60px 0;
    }
    
    .solutions-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .solutions-title {
        font-size: 32px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .solution-card {
        padding: 24px;
    }
    
    .solution-title {
        font-size: 20px;
    }
    
    .solution-description {
        font-size: 13px;
    }
    
    .demo-image {
        height: 160px;
    }
    
    .chart-widget, .metric-widget, .analytics-widget, .ads-widget {
        padding: 12px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .solutions-title {
        font-size: 32px;
    }
    
    .solution-card {
        padding: 20px;
    }
    
    .demo-image {
        height: 140px;
    }
    
    .chart-widget, .metric-widget, .analytics-widget, .ads-widget {
        padding: 10px;
        min-width: 100px;
    }
}

/* Products Section */
.products {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
}

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

.products-header {
    text-align: center;
    margin-bottom: 80px;
}

.products-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.highlight-purple {
    color: #8b5cf6;
}

.products-navigation-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 24px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.prev-arrow-products,
.next-arrow-products {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.prev-arrow-products:hover,
.next-arrow-products:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: scale(1.05);
}

.prev-arrow-products {
    margin-right: 16px;
}

.next-arrow-products {
    margin-left: 16px;
}

/* Mobile responsive styling for products navigation */
@media (max-width: 768px) {
    .products-navigation-wrapper {
        margin-bottom: 60px;
    }
    
    .prev-arrow-products,
    .next-arrow-products {
        width: 40px;
        height: 40px;
        margin: 0 8px;
    }
    
    .products-grid {
        padding: 0 12px;
        gap: 16px;
    }
    
    .prev-arrow-products {
        margin-right: 8px;
    }
    
    .next-arrow-products {
        margin-left: 8px;
    }
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    flex: 0 0 280px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.product-card.featured {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.product-icon {
    margin: 0 auto 24px;
    width: 64px;
    height: 64px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon svg {
    width: 100%;
    height: 100%;
    opacity: 1;
    filter: none;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.product-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
}

.learn-more-link {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.learn-more-link:hover {
    color: #2563eb;
}

/* Products Navigation */
.products-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 24px 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin: 0 auto;
    max-width: 1200px;
}

.nav-arrow {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-arrow:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 24px;
    scroll-behavior: smooth;
}

.nav-items::-webkit-scrollbar {
    display: none;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 100px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.nav-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-item.active {
    color: #3b82f6;
}

.nav-item.active .nav-icon {
    background: #eff6ff;
    border-color: #3b82f6;
}

/* Enhanced highlighting and dimming for nav items */
.nav-item.highlighted {
    opacity: 1;
    transform: scale(1.02);
    background: rgba(248, 250, 252, 0.9);
    border-color: #94a3b8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.nav-item.highlighted .nav-icon {
    background: #f8fafc;
    border-color: #64748b;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    color: #475569;
}

.nav-item.highlighted .nav-label {
    color: #475569;
    font-weight: 600;
}

.nav-item.dimmed {
    opacity: 0.4;
    transition: all 0.3s ease;
}

.nav-item.dimmed .nav-icon {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #94a3b8;
}

.nav-item.dimmed .nav-label {
    color: #94a3b8;
}

.nav-icon {
    width: 72px;
    height: 72px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #64748b;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.nav-item:hover .nav-icon {
    background: #f8fafc;
    border-color: #94a3b8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.nav-item.active .nav-icon {
    color: #3b82f6;
}

.nav-label {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
}

.nav-item.active .nav-label {
    color: #3b82f6;
    font-weight: 600;
}

/* Responsive Design for Products Section */
@media (max-width: 1200px) {
    .products-grid {
        gap: 20px;
        padding: 0 20px;
    }
    
    .product-card {
        flex: 0 0 260px;
    }
    
    .products-title {
        font-size: 40px;
    }
    
    .nav-items {
        gap: 24px;
    }
    
    .nav-item {
        min-width: 70px;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }
    
    .products-header {
        margin-bottom: 60px;
    }
    
    .products-title {
        font-size: 32px;
    }
    
    .products-grid {
        gap: 16px;
        padding: 0 16px;
    }
    
    .product-card {
        flex: 0 0 240px;
        padding: 24px 20px;
    }
    
    .product-card.featured {
        transform: scale(1.02);
    }
    
    .product-card.featured:hover {
        transform: scale(1.02) translateY(-4px);
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .product-description {
        font-size: 13px;
    }
    
    .products-navigation {
        gap: 20px;
        padding: 20px 16px;
        margin: 0 16px;
    }
    
    .nav-items {
        gap: 16px;
        padding: 0 16px;
    }
    
    .nav-item {
        min-width: 80px;
        flex-shrink: 0;
        padding: 10px 6px;
    }
    
    .nav-icon {
        width: 60px;
        height: 60px;
    }
    
    .nav-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .nav-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .products-title {
        font-size: 32px;
    }
    
    .products-grid {
        gap: 12px;
        padding: 0 12px;
    }
    
    .product-card {
        flex: 0 0 220px;
        padding: 20px 16px;
    }
    
    .products-navigation {
        gap: 12px;
        padding: 16px 12px;
        margin: 0 12px;
    }
    
    .nav-items {
        gap: 12px;
        padding: 0 12px;
    }
    
    .nav-item {
        min-width: 70px;
        flex-shrink: 0;
        padding: 8px 4px;
    }
    
    .nav-icon {
        width: 52px;
        height: 52px;
    }
    
    .nav-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .nav-label {
        font-size: 12px;
    }
    
    .nav-arrow {
        width: 36px;
        height: 36px;
    }
}

/* Advanced Data Services Section */
.data-services {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 50%, #a5b4fc 100%) !important;
    padding: 100px 0 !important;
    position: relative;
    min-height: 600px;
    display: block !important;
    visibility: visible !important;
    z-index: 1;
    width: 100% !important;
    clear: both;
}

.data-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.data-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.data-services-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #cbd5e1;
}

.service-visual {
    height: 240px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 32px;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.service-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-contact {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-learn-more {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-learn-more:hover {
    color: #2563eb;
}

/* Responsive Design for Data Services Section */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .data-services-title {
        font-size: 40px;
    }
    
    .service-visual {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .data-services {
        padding: 60px 0;
    }
    
    .data-services-header {
        margin-bottom: 60px;
    }
    
    .data-services-title {
        font-size: 32px;
    }
    
    .service-content {
        padding: 24px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .service-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-contact {
        width: 100%;
        text-align: center;
    }
    
    .service-visual {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .data-services-title {
        font-size: 32px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .service-visual {
        height: 160px;
    }
}

/* Global Data Repository Section */
.global-data {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.global-data::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/network-connections.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.global-data-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.global-data-header {
    text-align: center;
    margin-bottom: 80px;
}

.global-data-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight-orange {
    color: #f97316;
}

.highlight-blue {
    color: #3b82f6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 48px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-4px);
}

.stat-icon {
    color: #60a5fa;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.explore-button-container {
    text-align: center;
    margin-bottom: 80px;
}

.explore-data-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.explore-data-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.earth-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earth-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earth-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.earth-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.earth-title {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.highlight-earth {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.platform-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-icon:hover {
    transform: scale(1.1);
}

.platform-icon.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
}

.platform-icon.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0891b2 100%);
}

.platform-icon.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
}

.platform-icon.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #c62828 100%);
}

/* Responsive Design for Global Data Section */
@media (max-width: 1024px) {
    .global-data-title {
        font-size: 48px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 32px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    .earth-section {
        height: 500px;
    }
    
    .earth-container {
        height: 400px;
    }
    
    .earth-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .global-data {
        padding: 80px 0;
    }
    
    .global-data-title {
        font-size: 12px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .stats-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 24px;
        -webkit-overflow-scrolling: touch;
    }
    
    .stat-item {
        flex: 0 0 250px;
        scroll-snap-align: start;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .earth-section {
        height: 400px;
    }
    
    .earth-container {
        height: 300px;
    }
    
    .earth-title {
        font-size: 24px;
    }
    
    .platform-icons {
        gap: 12px;
    }
    
    .platform-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .global-data {
        padding: 60px 0;
    }
    
    .global-data-title {
        font-size: 32px;
    }
    
    .stats-grid {
        padding: 20px;
        gap: 16px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .explore-data-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .earth-title {
        font-size: 20px;
    }
    
    .earth-overlay {
        bottom: 40px;
    }
}

/* Customer Insights Section */
.customer-insights {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0;
    position: relative;
}

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

.insights-header {
    text-align: center;
    margin-bottom: 80px;
}

.insights-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight-dark {
    color: #334155;
}

.testimonials-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 0 40px 0;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 320px;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.card-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.consulting-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
}

.consulting-card .card-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.resource-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
}

.resource-card .card-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.card-content {
    margin-bottom: 24px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.company-logo {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.consulting-card .company-logo {
    color: #ffffff;
}

.resource-card .company-logo {
    color: #ffffff;
}

.video-content {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
}

.play-button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.metric-content {
    text-align: center;
    padding: 20px 0;
}

.metric-value {
    font-size: 48px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.metric-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    text-align: left;
}

.profile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.profile-card .company-logo {
    font-size: 20px;
    color: #1e293b;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: inherit;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: #64748b;
}

.consulting-card .author-title,
.resource-card .author-title {
    color: #cbd5e1;
}

.company-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #1e293b;
}

/* Responsive Design for Customer Insights Section */
@media (max-width: 1024px) {
    .insights-title {
        font-size: 40px;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .customer-insights {
        padding: 80px 0;
    }
    
    .insights-title {
        font-size: 32px;
    }
    
    .insights-header {
        margin-bottom: 60px;
    }
    
    .testimonial-card {
        min-width: 260px;
        padding: 20px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .company-logo {
        font-size: 20px;
    }
    
    .metric-value {
        font-size: 40px;
    }
    
    .metric-label {
        font-size: 16px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .video-content {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .insights-title {
        font-size: 32px;
    }
    
    .testimonial-card {
        min-width: 240px;
        padding: 16px;
    }
    
    .card-title {
        font-size: 15px;
    }
    
    .company-logo {
        font-size: 18px;
    }
    
    .metric-value {
        font-size: 36px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-name {
        font-size: 14px;
    }
    
    .author-title {
        font-size: 12px;
    }
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 120px 0;
    position: relative;
    text-align: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.cta-visual {
    position: relative;
}

.cta-image {
    width: 400px;
    height: 300px;
    object-fit: contain;
}

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

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 40px;
}

.cta-title .highlight-orange {
    color: #f97316;
}

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

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #374151;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #60a5fa;
    color: #60a5fa;
    transform: translateY(-2px);
}

/* Mobile CTA Styles */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-container {
        padding: 0 16px;
        gap: 40px;
    }
    
    .cta-image {
        width: 300px;
        height: 225px;
    }
    
    .cta-title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-container {
        gap: 32px;
        padding: 0 12px;
    }
    
    .cta-image {
        width: 250px;
        height: 188px;
    }
    
    .cta-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 100%;
        padding: 14px 20px;
    }
}

/* Footer */
.footer,
.site-footer {
    background: #0f172a !important;
    color: #cbd5e1;
    padding: 80px 0 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #334155;
    color: #3b82f6;
}

.footer-address p {
    font-size: 14px;
    color: #94a3b8;
}

.btn-extension {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
}

.btn-extension:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 24px 0;
}

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

.dropdown-btn {
    background: transparent;
    border: 1px solid #374151;
    color: #cbd5e1;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-btn:hover {
    border-color: #60a5fa;
    color: #60a5fa;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.language-select {
    background: transparent;
    border: 1px solid #374151;
    color: #cbd5e1;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s ease;
}

.footer-links-bottom a:hover {
    color: #3b82f6;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-copyright p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.chat-widget {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 20px;
}

.chat-widget:hover {
    background: #2563eb;
    transform: scale(1.05);
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 0;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        text-align: center;
        gap: 20px;
    }
    
    .btn-extension {
        margin: 0 auto;
        display: block;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .footer-column li {
        margin-bottom: 10px;
    }
    
    .footer-column a {
        font-size: 13px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-links-bottom {
        justify-content: center;
        gap: 16px;
    }
    
    .btn-extension {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-links-bottom {
        gap: 12px;
    }
    
    .footer-links-bottom a {
        font-size: 11px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Thank You Page Styles */

.thank-you-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.thank-you-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.thank-you-content {
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(30, 41, 59, 0.9);
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.success-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thank-you-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff !important;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.thank-you-message {
    font-size: 20px;
    color: #e2e8f0 !important;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    background: rgba(51, 65, 85, 0.6);
    padding: 24px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #cbd5e1 !important;
    line-height: 1.5;
    margin: 0;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.thank-you-actions .btn-primary,
.thank-you-actions .btn-secondary {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
    border: none;
    cursor: pointer;
}

.thank-you-actions .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.thank-you-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.thank-you-actions .btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #60a5fa !important;
}

.thank-you-actions .btn-secondary:hover {
    background: rgba(96, 165, 250, 0.1) !important;
    border-color: #3b82f6 !important;
    color: #60a5fa !important;
    transform: translateY(-2px);
}

/* Mobile Thank You Styles */
@media (max-width: 768px) {
    .thank-you-hero {
        padding: 80px 0 60px;
    }
    
    .thank-you-container {
        padding: 0 16px;
    }
    
    .thank-you-content {
        padding: 40px 24px;
        background: rgba(30, 41, 59, 0.95);
    }
    
    .thank-you-title {
        font-size: 36px !important;
        color: #ffffff !important;
    }
    
    .thank-you-message {
        font-size: 18px !important;
        color: #e2e8f0 !important;
        margin-bottom: 40px;
    }
    
    .next-steps h3 {
        font-size: 20px !important;
        color: #ffffff !important;
        margin-bottom: 32px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 20px 16px;
        background: rgba(51, 65, 85, 0.7);
    }
    
    .step-number {
        flex-shrink: 0;
        margin-top: 4px;
        width: 40px;
        height: 40px;
        font-size: 16px;
        color: #ffffff !important;
    }
    
    .step-content h4 {
        color: #ffffff !important;
        font-size: 16px;
    }
    
    .step-content p {
        color: #cbd5e1 !important;
        font-size: 14px;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 40px;
    }
    
    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        text-align: center;
        min-width: auto;
    }
    
    .thank-you-actions .btn-primary {
        color: #ffffff !important;
    }
    
    .thank-you-actions .btn-secondary {
        color: #ffffff !important;
        border-color: #60a5fa !important;
    }
}

@media (max-width: 480px) {
    .thank-you-hero {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .thank-you-content {
        padding: 32px 20px;
        margin: 0 8px;
    }
    
    .thank-you-title {
        font-size: 28px !important;
        color: #ffffff !important;
    }
    
    .thank-you-message {
        font-size: 16px !important;
        color: #e2e8f0 !important;
    }
    
    .success-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
        color: #ffffff !important;
    }
    
    .step-content h4 {
        font-size: 15px !important;
        color: #ffffff !important;
    }
    
    .step-content p {
        font-size: 13px !important;
        color: #cbd5e1 !important;
    }
    
    .step-item {
        padding: 16px 12px;
    }
    
    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-secondary {
        width: 100%;
        max-width: 100%;
        padding: 16px 20px;
        font-size: 15px;
    }
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 50%, #06B6D4 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    background: #F8FAFC;
    padding: 100px 0;
}

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

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-form-description {
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #EFF6FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.contact-info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px;
}

.contact-info-content p {
    font-size: 16px;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1E293B;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94A3B8;
}

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

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.form-disclaimer {
    margin-top: 16px;
    text-align: center;
}

.form-disclaimer p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

.form-disclaimer a {
    color: #3B82F6;
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 36px;
    }
    
    .contact-hero-description {
        font-size: 18px;
    }
    
    .contact-form-section {
        padding: 80px 0;
    }
    
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-title {
        font-size: 28px;
    }
    
    .contact-form-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .contact-info {
        gap: 24px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .contact-info-content h3 {
        font-size: 16px;
    }
    
    .contact-info-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-hero-container {
        padding: 0 16px;
    }
    
    .contact-hero-title {
        font-size: 28px;
    }
    
    .contact-hero-description {
        font-size: 16px;
    }
    
    .contact-form-container {
        padding: 0 16px;
    }
    
    .contact-form-title {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 24px 16px;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
    }
}

/* Corporate Strategy Page Styles */

/* Strategy Hero Section */
.strategy-hero {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 50%, #06B6D4 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 500px;
}

.strategy-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.strategy-hero-content {
    flex: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 14px;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #ffffff;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 500;
}

.strategy-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.strategy-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.strategy-hero-btn {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.strategy-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

/* Video Container Styles */
.strategy-hero-video {
    position: relative;
    z-index: 3;
}

.video-container {
    position: relative;
    width: 480px;
    height: 270px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.spokesperson-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
    border-radius: 14px;
    z-index: 10;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B82F6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.video-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 16px;
    color: white;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.video-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}

/* Hero Background Graphics */
.strategy-hero-graphics {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.hero-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 15%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.hero-circle-2 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 35%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.hero-circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 5%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}

/* Strategy Features Section */
.strategy-features {
    background: #F8FAFC;
    padding: 80px 0;
}

.strategy-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.strategy-features-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 24px;
    line-height: 1.3;
}

.strategy-features-description {
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Statistics Grid */
.strategy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.strategy-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.strategy-stat-icon {
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.strategy-stat-icon:hover {
    transform: translateY(-4px);
}

.strategy-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #06B6D4;
    margin-bottom: 8px;
    line-height: 1;
}

.strategy-stat-label {
    font-size: 18px;
    color: #64748B;
    font-weight: 500;
}

/* Responsive Styles for Strategy Page */
@media (max-width: 1024px) {
    .strategy-hero-container {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }
    
    .video-container {
        width: 420px;
        height: 236px;
    }
    
    .strategy-hero-title {
        font-size: 40px;
    }
    
    .strategy-features-title {
        font-size: 32px;
    }
    
    .strategy-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .strategy-hero {
        padding: 100px 0 60px;
        min-height: 400px;
    }
    
    .strategy-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .video-container {
        width: 400px;
        height: 225px;
        margin: 0 auto;
    }
    
    .strategy-hero-title {
        font-size: 32px;
    }
    
    .strategy-hero-description {
        font-size: 16px;
    }
    
    .strategy-features {
        padding: 60px 0;
    }
    
    .strategy-features-title {
        font-size: 28px;
    }
    
    .strategy-features-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .strategy-stats {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .strategy-stat-number {
        font-size: 40px;
    }
    
    .strategy-stat-label {
        font-size: 16px;
    }
    
    .breadcrumb {
        font-size: 13px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .strategy-hero {
        padding: 80px 0 40px;
    }
    
    .strategy-hero-container {
        padding: 0 16px;
    }
    
    .video-container {
        width: 350px;
        height: 197px;
    }
    
    .strategy-hero-title {
        font-size: 28px;
    }
    
    .strategy-hero-description {
        font-size: 15px;
    }
    
    .strategy-hero-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .strategy-features-container {
        padding: 0 16px;
    }
    
    .strategy-features-title {
        font-size: 24px;
    }
    
    .strategy-stat-number {
        font-size: 36px;
    }
}

/* Digital Performance Analytics Section */
.digital-analytics {
    background: #ffffff;
    padding: 100px 0;
}

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

.analytics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.analytics-row:last-child {
    margin-bottom: 0;
}

.analytics-row.reverse {
    direction: rtl;
}

.analytics-row.reverse > * {
    direction: ltr;
}

.analytics-content {
    padding: 20px 0;
}

.analytics-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.3;
    margin-bottom: 24px;
}

.analytics-description {
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
    max-width: 500px;
}

.analytics-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.analytics-overlay {
    position: absolute;
    top: 20px;
    right: -40px;
    width: 280px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    background: white;
}

.competitive-dashboard {
    width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

/* Market Share Table */
.market-share-table {
    background: #3B82F6;
    border-radius: 12px;
    padding: 20px;
    color: white;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 16px 32px rgba(59, 130, 246, 0.2);
}

.table-header {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.table-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 8px;
}

.column {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 12px;
    padding: 8px 0;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row:last-child {
    border-bottom: none;
}

.company {
    font-size: 12px;
    font-weight: 500;
    color: white;
}

.country {
    font-size: 14px;
    text-align: center;
}

.traffic {
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.trend {
    text-align: center;
    font-size: 14px;
}

.organic {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* Responsive Design for Analytics Section */
@media (max-width: 1024px) {
    .analytics-row {
        gap: 60px;
        margin-bottom: 100px;
    }
    
    .analytics-title {
        font-size: 32px;
    }
    
    .analytics-overlay {
        right: -20px;
        width: 240px;
    }
}

@media (max-width: 768px) {
    .digital-analytics {
        padding: 80px 0;
    }
    
    .analytics-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
        text-align: center;
    }
    
    .analytics-row.reverse {
        direction: ltr;
    }
    
    .analytics-title {
        font-size: 28px;
    }
    
    .analytics-description {
        font-size: 16px;
        max-width: none;
    }
    
    .analytics-overlay {
        position: static;
        width: 100%;
        max-width: 280px;
        margin-top: 20px;
    }
    
    .table-columns {
        grid-template-columns: 1.5fr 0.8fr 1fr 0.8fr 1fr;
        gap: 8px;
    }
    
    .table-row {
        grid-template-columns: 1.5fr 0.8fr 1fr 0.8fr 1fr;
        gap: 8px;
    }
    
    .column {
        font-size: 9px;
    }
    
    .company {
        font-size: 11px;
    }
    
    .traffic {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .digital-analytics-container {
        padding: 0 16px;
    }
    
    .analytics-title {
        font-size: 24px;
    }
    
    .analytics-description {
        font-size: 15px;
    }
    
    .market-share-table {
        padding: 16px;
    }
    
    .table-columns {
        grid-template-columns: 1.2fr 0.6fr 0.8fr 0.6fr 0.8fr;
        gap: 6px;
    }
    
    .table-row {
        grid-template-columns: 1.2fr 0.6fr 0.8fr 0.6fr 0.8fr;
        gap: 6px;
    }
    
    .column {
        font-size: 8px;
    }
    
    .company {
        font-size: 10px;
    }
    
    .traffic {
        font-size: 10px;
    }
    
    .country {
        font-size: 12px;
    }
}

/* Behind-the-Scenes Digital World Section */
.behind-scenes {
    background: #F8FAFC !important;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.behind-scenes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.behind-scenes-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-interface {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.behind-scenes-right {
    padding: 20px 0;
}

.behind-scenes-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.3;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px;
    line-height: 1.4;
}

.feature-description {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
}

/* Corporate Strategy page CTA section - different from home page */
.behind-scenes .cta-section {
    text-align: center;
    padding: 60px 0 40px;
    background: #F8FAFC;
    position: relative;
    z-index: 2;
}

.btn-trial {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-trial:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
}

/* Responsive Design for Behind-the-Scenes Section */
@media (max-width: 1024px) {
    .behind-scenes-content {
        gap: 60px;
    }
    
    .behind-scenes-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .behind-scenes {
        padding: 80px 0;
    }
    
    .behind-scenes-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .behind-scenes-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .features-list {
        gap: 20px;
    }
    
    .feature-item {
        text-align: left;
        gap: 12px;
    }
    
    .feature-title {
        font-size: 15px;
    }
    
    .feature-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .behind-scenes-container {
        padding: 0 16px;
    }
    
    .behind-scenes-title {
        font-size: 24px;
    }
    
    .feature-item {
        gap: 10px;
    }
    
    .feature-title {
        font-size: 14px;
    }
    
    .feature-description {
        font-size: 12px;
    }
    
    .btn-trial {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Responsive Design for CTA and Footer */
@media (max-width: 1024px) {
    .cta-image {
        width: 320px;
        height: 240px;
    }
    
    .cta-title {
        font-size: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-container {
        gap: 40px;
    }
    
    .cta-image {
        width: 280px;
        height: 210px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .site-footer {
        padding: 60px 0 0;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 32px;
    }
    
    .cta-image {
        width: 240px;
        height: 180px;
    }
    
    .footer-brand {
        gap: 20px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-column h4 {
        font-size: 14px;
    }
    
    .footer-column a {
        font-size: 13px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .dashboard-preview {
        height: 300px;
    }
    
    .card-1, .card-2, .card-4, .card-5 {
        width: 200px;
        height: 140px;
    }
    
    .card-3 {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 16px 80px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .search-wrapper {
        flex-direction: column;
        gap: 8px;
    }
    
    .search-dropdown,
    .search-input,
    .search-btn {
        width: 100%;
    }
    
    .search-container {
        text-align: center;
    }
    
    .dashboard-preview {
        height: 200px;
        margin-top: 20px;
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .dashboard-card {
        position: relative !important;
        flex: 0 0 280px !important;
        height: 180px !important;
        scroll-snap-align: start;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin-bottom: 0;
    }
    
    .logo-container {
        gap: 20px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .btn-secondary,
    .btn-primary,
    .btn-login {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .top-banner {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 18px;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .nav {
        padding: 0 16px;
    }
    
    .trusted-by {
        padding: 20px 16px;
    }
    
    .trusted-text {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .logo-container {
        flex-direction: row;
        gap: 30px;
        padding: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .logo-item {
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .logo-item svg {
        width: auto;
        height: 20px;
    }
    
    .logo-item svg text {
        font-size: 14px;
    }
}

/* Privacy Policy Section */
.privacy-policy {
    background: #FFFFFF;
    padding: 120px 0 80px;
    min-height: 100vh;
}

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

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #E2E8F0;
}

.privacy-title {
    font-size: 48px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
    line-height: 1.2;
}

.privacy-subtitle {
    font-size: 18px;
    color: #64748B;
    font-weight: 500;
}

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

.privacy-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #F1F5F9;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 24px;
    line-height: 1.3;
}

.privacy-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
    margin: 32px 0 16px 0;
    line-height: 1.4;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.privacy-section ul {
    margin: 16px 0 24px 0;
    padding-left: 0;
}

.privacy-section li {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.privacy-section li::before {
    content: "•";
    color: #10B981;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.contact-details {
    background: #F8FAFC;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #10B981;
    margin: 24px 0;
}

.contact-details p {
    margin-bottom: 16px;
    color: #334155;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.privacy-section a {
    color: #10B981;
    text-decoration: none;
    font-weight: 500;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.contact-button-container {
    margin-top: 20px;
    text-align: center;
}

.btn-contact-us {
    display: inline-block;
    padding: 12px 24px;
    background: #10B981 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.4;
}

.btn-contact-us:hover {
    background: #059669 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    text-decoration: none !important;
}

.btn-contact-us:visited {
    color: white !important;
    text-decoration: none !important;
}

.btn-contact-us:active {
    color: white !important;
    text-decoration: none !important;
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 60px;
    }
    
    .privacy-container {
        padding: 0 16px;
    }
    
    .privacy-title {
        font-size: 36px;
    }
    
    .privacy-subtitle {
        font-size: 16px;
    }
    
    .privacy-section h2 {
        font-size: 24px;
    }
    
    .privacy-section h3 {
        font-size: 18px;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 15px;
    }
    
    .contact-details {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-policy {
        padding: 80px 0 40px;
    }
    
    .privacy-header {
        margin-bottom: 40px;
        padding-bottom: 24px;
    }
    
    .privacy-title {
        font-size: 28px;
    }
    
    .privacy-section {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }
    
    .privacy-section h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }
}

/* FAQ Section */
.faq-section {
    background: #FFFFFF;
    padding: 80px 0;
    border-top: 1px solid #E2E8F0;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.2;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3B82F6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #3B82F6;
}

.faq-question span {
    flex: 1;
    margin-right: 16px;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #64748B;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #3B82F6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    border-top: 1px solid #E2E8F0;
}

.faq-answer p {
    padding: 24px;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 16px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 16px;
        font-size: 14px;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.dashboard-card {
    animation: fadeInUp 1s ease forwards;
}

.dashboard-card:nth-child(1) { animation-delay: 0.1s; }
.dashboard-card:nth-child(2) { animation-delay: 0.2s; }
.dashboard-card:nth-child(3) { animation-delay: 0.3s; }
.dashboard-card:nth-child(4) { animation-delay: 0.4s; }
.dashboard-card:nth-child(5) { animation-delay: 0.5s; }

/* ===== FINAL DROPDOWN TRANSPARENCY FIX ===== */
/* Override ALL transparency effects - highest priority */
.category-megamenu,
.dropdown-menu {
    background: rgb(0, 0, 0) !important;
    background-color: rgb(0, 0, 0) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.nav-item.dropdown:hover .category-megamenu,
.nav-item:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    background: rgb(0, 0, 0) !important;
    background-color: rgb(0, 0, 0) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.category-megamenu-content {
    background: rgb(0, 0, 0) !important;
    background-color: rgb(0, 0, 0) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
