.elementor-31079 .elementor-element.elementor-element-5be85a5{--display:flex;}/* Start custom CSS for container, class: .elementor-element-5be85a5 *//* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-primary: #0A1931;
    --color-secondary: #f0b90b;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-light: #f4f7f6;
    --color-gray-medium: #ddd;
    --color-gray-dark: #333;
    --color-text: #1d1d1f;
    --color-text-light: #86868b;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 10px;
    --spacing-sm: 20px;
    --spacing-md: 40px;
    --spacing-lg: 60px;
    --spacing-xl: 100px;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-black);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--color-secondary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
}

.nav-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    height: 100%;
    background: var(--color-secondary);
    width: 0%;
    transition: width 0.3s ease;
}

/* ===================================
   HORIZONTAL SCROLL WRAPPER
   =================================== */
.horizontal-scroll-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.scroll-container {
    display: flex;
    height: 100vh;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   PANEL BASE STYLES
   =================================== */
.panel {
    min-width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel.visible {
    opacity: 1;
    transform: translateX(0);
}

.panel-content {
    max-width: 1200px;
    width: 100%;
    z-index: 2;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #1a2f4a 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(240, 185, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(240, 185, 11, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-title {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 300;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* ===================================
   PROBLEM SECTION
   =================================== */
.problem-section {
    background: var(--color-gray-light);
    text-align: center;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--color-primary);
}

.section-description {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    color: var(--color-text);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pain-point-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: var(--transition-fast);
}

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pain-point-card .icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.pain-point-card h3 {
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.pain-point-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
}

/* ===================================
   MENTOR SECTION
   =================================== */
.mentor-section {
    background: var(--color-primary);
    color: var(--color-white);
}

.mentor-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.mentor-image {
    text-align: center;
}

.image-placeholder {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.2) 0%, rgba(240, 185, 11, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-secondary);
    border: 2px solid rgba(240, 185, 11, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mentor-label {
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.mentor-text .section-title {
    color: var(--color-white);
    margin-top: 10px;
}

.mentor-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

.link-gold {
    color: var(--color-secondary);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.link-gold:hover {
    opacity: 0.8;
}

.mentor-quote {
    border-left: 4px solid var(--color-secondary);
    padding-left: 25px;
    font-size: 18px;
    font-style: italic;
    color: var(--color-gray-medium);
    line-height: 1.6;
    margin-top: 30px;
}

/* ===================================
   ECOSYSTEM SECTION
   =================================== */
.ecosystem-section {
    background: var(--color-white);
    text-align: center;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ecosystem-card {
    background: var(--color-gray-light);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: left;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-secondary);
    transform: scaleY(0);
    transition: var(--transition-fast);
}

.ecosystem-card:hover::before {
    transform: scaleY(1);
}

.ecosystem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-secondary);
    opacity: 0.3;
    margin-bottom: 10px;
}

.ecosystem-card h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.ecosystem-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
}

/* Copy first 433 lines from original styles.css, then add new AI section styles */

/* ===================================
   AI HYBRID OFFICE SECTION
   =================================== */
.ai-section {
    background: var(--color-gray-light);
}

.hybrid-office-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===================================
   CIRCULAR FLOATING SHIELD LAYOUT
   =================================== */
.ai-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.ai-visual-hero-circular {
    position: relative;
    width: 550px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Central Floating Shield */
.ai-shield-center {
    position: absolute;
    width: 180px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    animation: floatShield 4s ease-in-out infinite;
}

@keyframes floatShield {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Floating Cards Container */
.floating-cards-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Individual Floating Card */
.floating-card {
    position: absolute;
    background: var(--color-white);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 140px;
    z-index: 5;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.floating-card.visible {
    opacity: 1;
    transform: scale(1);
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.card-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.card-desc {
    font-size: 11px;
    color: var(--color-text-light);
    line-height: 1.3;
}

/* Circular Positioning (7 cards around shield) */
.floating-card:nth-child(1) {
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatCard1 7s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    top: 12%;
    right: 8%;
    animation: floatCard2 6.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.floating-card:nth-child(3) {
    top: 40%;
    right: 0%;
    animation: floatCard3 7.2s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-card:nth-child(4) {
    bottom: 12%;
    right: 8%;
    animation: floatCard4 6.8s ease-in-out infinite;
    animation-delay: 1.5s;
}

.floating-card:nth-child(5) {
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatCard5 7.5s ease-in-out infinite;
    animation-delay: 2s;
}

.floating-card:nth-child(6) {
    bottom: 12%;
    left: 8%;
    animation: floatCard6 6.3s ease-in-out infinite;
    animation-delay: 2.5s;
}

.floating-card:nth-child(7) {
    top: 40%;
    left: 0%;
    animation: floatCard7 7.8s ease-in-out infinite;
    animation-delay: 3s;
}

/* Float Animations for Each Card */
@keyframes floatCard1 {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

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

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

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

@keyframes floatCard5 {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-14px); }
}

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

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

/* ===================================
   TABS SECTION (Right Side)
   =================================== */
.hybrid-tabs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tab-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-button {
    flex: 1;
    min-width: 200px;
    padding: 16px 24px;
    background: var(--color-white);
    border: 2px solid var(--color-gray-medium);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-button:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-button.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.tab-icon {
    font-size: 20px;
}

.tab-text {
    font-size: 14px;
}

.tab-description {
    background: var(--color-white);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tab-description p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */
@media (max-width: 1024px) {
    .hybrid-office-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ai-visual-hero-circular {
        width: 450px;
        height: 450px;
    }

    .ai-shield-center {
        width: 140px;
    }

    .floating-card {
        min-width: 120px;
        padding: 12px 16px;
    }

    .card-icon {
        font-size: 28px;
    }

    .card-title {
        font-size: 12px;
    }

    .card-desc {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .ai-visual-hero-circular {
        width: 350px;
        height: 350px;
    }

    .ai-shield-center {
        width: 100px;
    }

    .floating-card {
        min-width: 100px;
        padding: 10px 12px;
        gap: 8px;
    }

    .card-icon {
        font-size: 24px;
    }

    .card-title {
        font-size: 11px;
    }

    .card-desc {
        display: none;
    }

    .tab-button {
        min-width: 100%;
        font-size: 14px;
    }
}
   COMPARISON SECTION
   =================================== */
.comparison-section {
    background: var(--color-white);
    text-align: center;
}

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
}

.comparison-table thead {
    background: var(--color-gray-light);
}

.comparison-table th {
    padding: 25px 20px;
    font-size: 16px;
    text-align: left;
    color: var(--color-text);
    font-weight: 600;
}

.comparison-table th.highlight {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.comparison-table td {
    padding: 25px 20px;
    font-size: 15px;
    border-top: 1px solid var(--color-gray-light);
    text-align: left;
}

.comparison-table td.feature-name {
    font-weight: 600;
    color: var(--color-primary);
}

.comparison-table td.highlight {
    background: rgba(244, 247, 246, 0.5);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.cta-section .section-title {
    color: var(--color-white);
}

.cta-description {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-weight: 300;
}

.cta-highlight {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--color-secondary);
    font-weight: 700;
}

.cta-note {
    font-size: 14px;
    color: var(--color-gray-medium);
    margin-top: 20px;
    opacity: 0.8;
}

/* ===================================
   BUTTONS
   =================================== */
.cta-button {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-black);
    font-size: 18px;
    padding: 18px 40px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 20px rgba(240, 185, 11, 0.3);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(240, 185, 11, 0.4);
}

.cta-button.large {
    font-size: 20px;
    padding: 22px 50px;
}

/* ===================================
   SCROLL INDICATOR
   =================================== */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 14px;
    z-index: 100;
    opacity: 0.7;
    animation: fadeInOut 2s ease-in-out infinite;
}

.arrow-right {
    font-size: 24px;
    animation: slideRight 1.5s ease-in-out infinite;
}

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

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mentor-content,
    .ai-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
    
    /* AI Visual Hero Mobile */
    .ai-visual-hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
        aspect-ratio: auto;
        padding: 30px 20px;
    }
    
    .ai-shield,
    .floating-icon,
    .floating-stat {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        position: relative;
        animation: none !important;
        width: auto;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .ai-shield {
        width: 120px;
        margin-bottom: 20px;
    }
    
    .hero-grid-background {
        display: none;
    }
}

@media (max-width: 768px) {
    .panel {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .pain-points-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
    
    .scroll-indicator {
        bottom: 20px;
        right: 20px;
        font-size: 12px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

strong {
    font-weight: 600;
    color: var(--color-primary);
}

em {
    font-style: italic;
}/* End custom CSS */