@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,300,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

:root {
    /* Color Palette - Premium Cinematic Theme */
    --bg-dark: #00112D;
    --navy-deep: #000D21;
    --accent-teal: #3FB5B0;
    --accent-teal-dark: #098783;
    --accent-teal-bright: #3DFDED;
    --accent-orange: #FF7A00;
    --accent-gold: #FFB800;
    --accent-blue: #002C77;
    
    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-black: #282828;
    --text-grey: #555555;
    
    /* Spacing & Layout */
    --container-max: 1440px;
    --navbar-height: 90px;
    --section-padding: 120px;
    
    /* Design Tokens */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    
    --gradient-cta: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain; /* Prevent stretching */
    flex-shrink: 0; /* Prevent compression in flexbox */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', sans-serif;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Layout Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 120px;
}

@media (max-width: 1440px) {
    .container { padding: 0 80px; }
}

@media (max-width: 1200px) {
    .container { padding: 0 60px; }
}

@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    :root { --section-padding: 80px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    :root { --section-padding: 60px; }
}

/* Glassmorphism System */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
}

/* Grid Background Pattern */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 120px 120px;
    background-position: center top;
    pointer-events: none;
    z-index: 1;
}

/* Decorative Background Blobs */
.blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.3;
}

.blob-1 { width: 400px; height: 400px; background: var(--accent-blue); top: -100px; right: 0; }
.blob-2 { width: 500px; height: 500px; background: var(--accent-teal); bottom: -100px; left: -100px; opacity: 0.1; }
.blob-3 { width: 300px; height: 300px; background: var(--accent-teal); top: 20%; right: 10%; opacity: 0.05; }

/* Typography styles */
.text-gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-arrow {
    width: 8px;
    height: 10px;
    object-fit: contain;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--text-white);
    color: var(--accent-blue);
    position: relative;
    overflow: hidden;
    height: 48px;
    min-width: 168px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

.btn-gradient {
    background: var(--gradient-cta);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 48px;
    min-width: 159px;
}

.btn-gradient:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(63, 181, 176, 0.2);
}

/* Navbar */
.navbar {
    height: var(--navbar-height);
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-header .logo img{ width:30px; height:30px; }
.logo {
    display: flex;
    align-items: center;
    max-width: 240px;
    height: 45px;
    overflow: hidden;
    flex-shrink: 0;
}

.navbar.scrolled {
    /*background: rgba(0, 13, 36, 0.8) !important;*/
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 70px;
    box-shadow: 0 0px 10px 10px rgba(0,0,0,0.1);
}

.navbar .logo img {
    height: 45px !important;
    width: 45px !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
    
    display: block !important;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 28.8px;
    font-weight: 700;
    color: var(--text-white);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #282828;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--accent-teal);
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(140% 120% at 50% 0%, #001D4B 0%, #00112D 60%, #000D21 100%);
    /*background: url('assets/images/Hero.png');*/
    overflow: hidden;
    background-size: cover;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(80% 50% at 50% 100%, rgba(63, 181, 176, 0.15) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    /*display: none;*/
}

.hero-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding-top: 80px;
    text-align: center;
}

.hero-badge {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.hero-title {
    font-size: 79px;
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 850px;
    margin: 0 auto 52px;
    line-height: 1.6;
    letter-spacing: -0.1px;
}

/* Decorative Glass Grids */
.glass-decoration {
    position: absolute;
    top: 90px;
    display: grid;
    grid-template-columns: repeat(2, 120px);
    grid-template-rows: repeat(4, 120px); /* Increased for alignment */
    z-index: 5;
    pointer-events: none;
}

.glass-decoration.left {
    left: 140px;
}

.glass-decoration.right {
    right: 140px;
}

.glass-cell {
    width: 120px;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(153, 153, 153, 0.04) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Precise grid alignment from Figma 3313:3 */
.glass-decoration.left .cell-1 { grid-column: 2; grid-row: 3; }
.glass-decoration.left .cell-2 { grid-column: 1; grid-row: 2; }
.glass-decoration.left .cell-3 { grid-column: 2; grid-row: 1; }

.glass-decoration.right .cell-1 { grid-column: 1; grid-row: 1; transform: rotate(180deg); }
.glass-decoration.right .cell-2 { grid-column: 2; grid-row: 2; transform: rotate(180deg); }
.glass-decoration.right .cell-3 { grid-column: 1; grid-row: 3; transform: rotate(180deg); }

/* Animation Classes */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Problem Section */
.problems-section {
    padding: 120px 0;
    background: #FFFFFF;
    color: var(--text-black);
    position: relative;
    z-index: 20;
}

.problems-section .container {
    padding: 0 40px; /* Base padding */
}

.problems-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.problems-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000000;
}

.problems-desc {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-grey);
    line-height: 1.4;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.problem-card {
    height: 270px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease;
}

.card-dark {
    background-color: var(--accent-blue);
    color: #FFFFFF;
    transition: all 0.05s;
}
.card-teal:hover,
.card-dark:hover {
    background-color: var(--accent-teal-dark);
}

.card-teal {
    background-color: var(--accent-blue);
    color: #FFFFFF;
    border: none;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background: linear-gradient(135.71deg, rgba(195, 192, 255, 0.05) 0%, rgba(195, 192, 255, 0) 100%);
    pointer-events: none;
}

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

.card-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 40px;
    opacity: 0.2;
}

.teal-number { opacity: 0.4; color: rgba(195, 192, 255, 1); }

.card-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.card-heading {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.card-teal .card-heading {
    font-weight: 700;
}

.problems-cta {
    display: flex;
    justify-content: center;
}

.btn-outline-blue {
    border: 1px solid var(--accent-blue);
    background: #FFFFFF;
    color: var(--accent-blue);
    min-width: 265px;
    height: 48px;
    border-radius: 0;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
}

.btn-outline-blue:hover {
    background: rgba(0, 44, 119, 0.05);
    transform: translateY(-2px);
}

/* Intelligence Section (Section 3) */
.intelligence-section {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
    z-index: 20;
}

.intelligence-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
}

.intelligence-header {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.intelligence-header h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    letter-spacing: -0.5px;
}

.intelligence-header p {
    font-size: 20px;
    color: #555555;
    line-height: 1.5;
    font-weight: 500;
}

/* Vertical Tabs & Progress Rail */
.tabs-sidebar {
    position: relative;
    padding-left: 56px;
}

.progress-rail {
    position: absolute;
    left: 20px;
    top: 6px;
    width: 2px;
    height: 100%;
    background: #EAEAEA;
    overflow: visible;
}

.rail-dot {
    position: absolute;
    left: -7px;
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border: 3px solid #EAEAEA;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
}

.rail-dot.active {
    background: #157F89;
    border-color: #157F89;
    box-shadow: 0 0 10px rgba(21, 127, 137, 0.4);
    transform: scale(1.2);
}

.active-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    background: #157F89;
    transform-origin: top;
    z-index: 1;
    transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1); /* Default for jumps */
}

.active-line.is-progressing {
    transition: height 6s linear !important;
}

.active-line.no-transition {
    transition: none !important;
}

.intelligence-tabs {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.intel-tab {
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    opacity: 1;
}

.intel-tab span {
    display: block;
}

.intel-tab .tab-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #888888;
    transition: color 0.3s ease;
}

.intel-tab.active .tab-title {
    font-weight: 500;
    color: #111111;
}

.intel-tab .tab-sub {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.2;
    display: none; /* Hidden based on design */
}

/* Feature Showcase & Dashboard Mockups */
.showcase-area {
    position: relative;
    min-height: 500px;
}

.dashboard-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    background: transparent;
    padding: 0;
}

.dashboard-pane.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    z-index: 5;
}

.showcase-header-content {
    margin-bottom: 40px;
}

.showcase-header-content h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 34px;
    color: #157F89; /* Teal */
    font-weight: 500;
    margin-bottom: 16px;
}

.showcase-header-content p {
    font-size: 20px;
    color: #666666;
    font-weight: 500;
    line-height: 1.5;
    max-width: 90%;
}

.dashboard-preview {
    /*background: radial-gradient(100% 100% at 0% 0%, #03144C 0%, #000412 100%);*/
    /*border-radius: 12px;*/
    /*padding: 60px 48px; /* Inner padding for dark background */
    /*display: grid;*/
    /*grid-template-columns: 1.2fr 1.8fr;*/
    /*gap: 32px;*/
    /*border: none;*/
    /*box-shadow: 0 20px 40px rgba(0,0,0,0.1);*/
}

.dashboard-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px 32px;
    border: none;
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 15px;
    font-weight: 700;
    color: #666;
    text-align: center;
    margin-bottom: 32px;
    display: block;
}

.score-value {
    font-size: 64px;
    font-weight: 800;
    color: #002C77; /* Deep blue from design */
    line-height: 1;
    text-align: center;
    margin-bottom: 8px;
}

.score-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.score-circle .label {
    font-size: 11px;
    font-weight: 800;
    color: #157F89;
    letter-spacing: 1.5px;
}

.dashboard-card p.card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin-top: auto;
}

.prioritized-opps {
    position: relative;
}

.prioritized-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.prioritized-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.prioritized-card {
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.prioritized-card .tag {
    font-size: 10px;
    font-weight: 800;
    background: rgba(20, 184, 166, 0.1);
    color: #098783;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    display: inline-block;
}

.prioritized-card .title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.prioritized-card .desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.prioritized-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #EAEAEA;
    margin-top: auto;
}

.footer-metric {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #FF8A00;
}

.footer-value {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.badge-low-effort {
    background: rgba(20, 184, 166, 0.1);
    color: var(--accent-teal);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .intelligence-grid {
        grid-template-columns: 1fr;
    }
    .intelligence-header {
        flex-direction: column;
        gap: 20px;
    }
    .tabs-sidebar {
        padding-left: 0;
    }
    .intelligence-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 16px;
    }
    .progress-rail {
        display: none;
    }
    .intel-tab {
        min-width: 200px;
    }
}

/* =========================================================================
   SECTION 4: Gaps To Growth: Revenue Engine
   ========================================================================= */

.revenue-engine-section {
    position: relative;
    background-color: #01102b;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    padding: 120px 0 0 0;
    overflow: hidden;
    color: #FFF;
}

.revenue-bg-effects {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.revenue-bg-effects .rev-blob-1 {
    position: absolute;
    top: 0; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(29, 0, 165, 0.4) 0%, rgba(29, 0, 165, 0) 70%);
    filter: blur(80px);
}
.revenue-bg-effects .rev-blob-2 {
    position: absolute;
    bottom: -10%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(133, 1, 115, 0.3) 0%, rgba(133, 1, 115, 0) 70%);
    filter: blur(80px);
}

.revenue-engine-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}
.revenue-engine-header h2 {
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.revenue-engine-header p {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 500;
}

.revenue-dashboard-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 10;
}

.revenue-dashboard-frame {
    background: none;
    border: 0;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;

    /*box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);*/
    overflow: hidden;
    line-height: 0;
}

.revenue-dashboard-frame img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.revenue-btn-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
}

.btn-revenue-cta {
    background: #FFFFFF;
    color: #002C77; 
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 14px 44px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-revenue-cta:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.revenue-btn-overlay:hover .btn-revenue-cta {
    transform: translateY(-5px);
}

.btn-revenue-cta img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 992px) {
    .revenue-engine-header h2 { font-size: 40px; }
    .revenue-engine-header p { font-size: 16px; padding: 0 20px; }
    .revenue-dashboard-frame { border-width: 10px; }
    .btn-revenue-cta { padding: 12px 30px; font-size: 16px; }
}

/* =========================================================================
   SECTION 5: Source of Truth / Agentic Workflows
   ========================================================================= */

.truth-section {
    padding: 120px 0;
    background: #FFFFFF;
    color: #101010;
    overflow: hidden;
}

.truth-header {
    text-align: center;
    margin-bottom: 60px;
}
.truth-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.1;
    text-transform: capitalize;
}
.truth-header p {
    font-size: 20px;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 500;
}

/* Tab Nav */
.truth-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 0 solid #E2E2E2;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.truth-tab {
    background: transparent;
    padding: 20px 32px;
    font-size: 14px;
    font-weight: 600;
    color: #575757;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border-bottom: 2px solid #E2E2E2;
    margin-bottom: -2px;

}
.truth-tab img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}
.truth-tab:hover {
    color: #000;
}
.truth-tab.active {
    background: #177a81;
    color: #FFF;
    border-radius: 0;
}
.truth-tab.active img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Workflow Container */
.workflow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    display: none;
}
.workflow-container.active {
    display: block;
}

.workflow-line {
    position: absolute;
    top: 42px;
    left: 100px;
    right: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(195,192,255,0.2) 0%, rgba(255,173,229,0.5) 50%, rgba(195,192,255,0.2) 100%);
    z-index: 1;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: flex-start;
    z-index: 2;
    position: relative;
    /*top: -40px;*/
}

.flow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.flow-icon-wrap {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    width: 100%;
}

.flow-icon-box {
    width: 66px;
    height: 66px;
    background: #002c77;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    border: 1px solid rgba(70,69,85,0.2);
    position: relative;
}


/* Highlighted Step 3 */
.flow-step.step-highlight {
    transform: scale(1.1);
}
.large-box {
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, #002c77 0%, #239fd6 100%);
    border-radius: 8px;
    flex-direction: column;
    gap: 8px;
}
.large-box img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}
.large-box .badge {
    font-size: 8px;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.flow-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: #101010;
    margin-bottom: 4px;
}
.flow-text p {
    font-size: 10px;
    color: #555;
    white-space: nowrap;
}

.tag-row {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 4px;
}
.tag {
    font-size: 8px;
    color: #afafaf;
    border: 1px solid #c8c8c8;
    padding: 2px 6px;
    border-radius: 2px;
}

@media (max-width: 992px) {
    .workflow-line { display: none; }
    .workflow-steps {
        flex-direction: column;
        gap: 40px;
    }
    .flow-step {
        flex-direction: row;
        text-align: left;
    }
    .flow-text {
        text-align: left;
    }
    .tag-row {
        justify-content: flex-start;
    }
}

/* =========================================================================
   SECTION 6: Multi-Agent Intelligence System
   ========================================================================= */

.agents-section {
    padding: 120px 0 30px 0;
    background: #FFFFFF;
    text-align: center;
}

.agents-header {
    margin-bottom: 80px;
}
.agents-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.1;
    text-transform: capitalize;
}
.agents-header p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.5;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.agent-card {
    background: #FFFFFF;
    border: 1px solid #DBDBDB;
    border-radius: 12px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.agent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);
    border-color: #177a81;
}

.agent-icon {
    height: 42px !important;
    width: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 4px !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
}
.agent-icon img {
    max-width: 100%;
    max-height: 100%;
    width: 35px;
    height: 35px;
    
}

.agent-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #282828;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1100px) {
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .agents-grid {
        grid-template-columns: 1fr;
    }
    .agents-header h2 {
        font-size: 32px;
    }
}

/* =========================================================================
   SECTION 7: What Business Leaders Get
   ========================================================================= */

.benefits-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}
.benefits-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}
.benefits-header p {
    font-size: 20px;
    color: #555;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
}

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

.benefit-card {
    background: #002c77;
    border-radius: 12px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.card-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    opacity: 0.8;
    pointer-events: none;
}
.p-sq {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
}
.sq-1 { top: 0; right: 0; background: rgba(255, 255, 255, 0.08); border-top-right-radius: 12px; }
.sq-2 { top: 48px; right: 0; }
.sq-3 { top: 0; right: 48px; }

.benefit-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.benefit-list li img {
    max-width: 100%;
    height: 16px;
    width: 16px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 1100px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card {
        padding: 40px 30px;
    }
}

/* =========================================================================
   SECTION 8: Trusted By
   ========================================================================= */

.trusted-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.trusted-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 60px;
}
.header-main {
    flex: 0 0 55%;
}
.header-main h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    line-height: 1.25;
}
.header-sub {
    flex: 0 0 35%;
}
.header-sub p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.trusted-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.metrics-column {
    flex: 0 0 55%;
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}
.metric-num {
    font-size: 44px;
    font-weight: 600;
    color: #006b62;
    margin-bottom: 8px;
    letter-spacing: 0.44px;
}
.metric-label {
    font-size: 16px;
    color: #0f172a;
    font-weight: 500;
}

.brand-card-column {
    flex: 0 1 40%;
}
.brand-gradient-card {
    background: linear-gradient(180deg, #002c77 0%, #006b62 100%);
    border-radius: 8px;
    padding: 60px;
    height: 244px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}
.brand-card-logo {
    height: 65px;
    width: 271.253px;
}

@media (max-width: 1100px) {
    .trusted-header {
        flex-direction: column;
        gap: 30px;
    }
    .trusted-content {
        flex-direction: column;
        gap: 60px;
    }
    .header-main, .header-sub, .metrics-column, .brand-card-column {
        flex: 1 1 100%;
    }
    .brand-gradient-card {
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .header-main h2 {
        font-size: 32px;
    }
}

/* =========================================================================
   SECTION 9: Success Stories
   ========================================================================= */

.success-section {
    padding: 120px 0;
    background: #FFFFFF;
    text-align: center;
}

.success-header {
    margin-bottom: 60px;
}
.success-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}
.success-header p {
    font-size: 20px;
    color: #555;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
}

.success-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 2px solid #E2E2E2;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.success-tab {
    background: transparent;
    border: none;
    padding: 20px 32px;
    font-size: 14px;
    font-weight: 600;
    color: #575757;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}
.success-tab.active {
    background: #177a81;
    color: #FFF;
    border-radius: 0;
}

.success-content {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
}
.success-content.active {
    display: block;
}

.success-grid {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: left;
    justify-content: center;
    align-content: center;
}

.success-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.success-stat {
    font-size: 40px;
    font-weight: 600;
    color: #002c77;
    letter-spacing: 0.44px;
    line-height: 1.2;
}
.success-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}
.success-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
.dashboard-preview img {
        position: relative;
        left: -45px;
    }
@media (max-width: 1100px) {
    
}
@media (max-width: 1100px) {
    .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .success-grid {
        grid-template-columns: 1fr;
    }
    .success-header h2 {
        font-size: 32px;
    }
    .success-tabs-nav {
        flex-direction: column;
        gap: 0;
    }
}

/* =========================================================================
   SECTION 10: Frequently Asked Questions
   ========================================================================= */

.faq-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.container-narrow {
    max-width: 1000px;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}
.faq-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}
.faq-header p {
    font-size: 20px;
    color: #555;
}

.faq-list {
    margin-bottom: 60px;
}

.faq-item {
    border-bottom: 1px solid #E2E2E2;
}

.faq-question {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-question h3 {
    font-size: 24px;
    font-weight: 500;
    color: #252525;
    margin: 0;
}
.faq-toggle {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}
.faq-answer p {
    padding-bottom: 40px;
    font-size: 20px;
    line-height: 1.6;
    color: #252525;
    opacity: 0.8;
}

.faq-item.active .faq-question h3 {
    color: #002c77;
    font-size: 32px;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-footer {
    text-align: center;
}

.btn-load-more {
    background: transparent;
    border: 1px solid #002c77;
    color: #002c77;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-load-more:hover {
    background: rgba(0, 44, 119, 0.05);
}
.btn-load-more img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .faq-question h3 { font-size: 20px; }
    .faq-item.active .faq-question h3 { font-size: 24px; }
    .faq-answer p { font-size: 16px; }
}

/* =========================================================================
   SECTION 11: Lead Generation Form
   ========================================================================= */

.contact-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.container-wide {
    max-width: 1300px;
}

.contact-layout {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: flex-start;
}

.contact-left.contact { position:sticky; top:110px; }
.contact-left {
    flex: 0 0 40%;
}
.contact-left h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    color: #000;
    margin-bottom: 80px;
}
.contact-branding {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-logo {
    height: 48px;
}
.contact-branding .brand-name {
    color: #002c77;
    font-size: 36px;
    font-weight: 600;
}
.contact-branding .brand-ai {
    color: #098783;
    font-size: 36px;
    font-weight: 600;
}

.contact-right {
    flex: 0 0 55%;
}
.lead-form-card {
    background: #062f2f;
    border-radius: 8px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    color: #FFF;
}

.blur-glow {
    position: absolute;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}
.blur-top-right { top: -128px; right: -128px; background: rgba(133, 1, 115, 0.2); }
.blur-bottom-left { bottom: -128px; left: -128px; background: rgba(99, 91, 255, 0.15); }

.lead-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}
.section-num {
    font-size: 36px;
    font-weight: 700;
    color: #FFF;
}
.section-title h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.section-title h4 small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.6;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-left: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 40px;
}
.form-field.full-width { grid-column: span 2; }

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-field label {
    font-size: 14px;
    font-weight: 400;
    color: rgba(199, 196, 216, 0.6);
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.form-field input {
    background: rgba(20, 58, 58, 0.5);
    border: none;
    border-bottom: 2px solid rgba(70, 69, 85, 0.3);
    padding: 12px 14px;
    color: #FFF;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}
.form-field input:focus { border-color: #FFF; }

.selection-box { margin-bottom: 32px; }
.selection-label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #C7C4D8;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.selection-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.select-btn {
    background: transparent;
    border: 1px solid rgba(70, 69, 85, 0.3);
    border-radius: 6px;
    padding: 12px 24px;
    color: #C7C4D8;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.select-btn.active {
    background: #FFFFFF;
    color: #002c77;
    border-color: #FFFFFF;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .contact-layout { flex-direction: column; gap: 60px; }
    .contact-left, .contact-right { flex: 1 1 100%; }
    .contact-left h2 { margin-bottom: 40px; }
}

@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-field.full-width { grid-column: span 1; }
    .lead-form-card { padding: 30px; }
}

.contact-logo-watermark {
    width: 271.253px;
    height: 64.999px;
}

.contact-branding.animate-ready {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.contact-branding.animate-ready.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   FOOTER SECTION
   ========================================================================= */

.site-footer {
    padding: 100px 0 40px;
    background: #000d24;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}
.watermark-text {
    font-size: 224px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    flex: 0 1 350px;
}
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.footer-logo {
    height: 36px;
    width: auto;
    display: block;
}
.footer-tagline {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 40px;
}

.footer-contact {
    margin-bottom: 40px;
}
.contact-link {
    display: block;
    font-size: 20px;
    color: #00ffea;
    text-decoration: none;
    margin-bottom: 12px;
}
.contact-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}
.social-icon {
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.social-icon:hover {
    transform: translateY(-5px);
}
.social-icon img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

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

.footer-column h4 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 500;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}
.footer-column ul li a:hover {
    color: #FFFFFF;
}

.mt-pill {
    margin-top: 60px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.footer-legal {
    display: flex;
    gap: 30px;
}
.footer-legal a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .footer-top {
        flex-direction: column;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .footer-nav {
        grid-template-columns: 1fr;
    }
    .watermark-text {
        font-size: 100px;
    }
}


/* =========================================================================
   FINAL IMAGE REMEDIATION (CLEANED)
   ========================================================================= */

/* Header & Footer Branding */
.navbar .logo img, .footer-logo {
    /* height: 45px !important; */
    width: 188px !important;
    flex-shrink: 0 !important;
}

.footer-logo {
    height: 46px !important;
    width: 192px !important;
}

/* Button & UI Icons */
.btn img, 
.btn-arrow, 
.submit-btn img, 
.revenue-btn-overlay img, 
.btn-revenue-cta img,
.dashboard-btn-arrow,
.btn-load-more img {
    height: 14px !important;
    width: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    flex-shrink: 0 !important;
    
    display: inline-block !important;
}

/* FAQ & Social */
.faq-toggle {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
    
}

.social-icon img {
    height: 18px !important;
    width: 18px !important;
    flex-shrink: 0 !important;
    
}

/* Agent & Process Icons */


/* Specific Containers */


/* General Reset Consistency */
img {
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

/* FINAL SPECIFICITY OVERRIDES */
.btn img, .btn-arrow, .submit-btn img, .revenue-btn-overlay img, .btn-revenue-cta img, .dashboard-btn-arrow, .btn-load-more img { height: 14px !important; width: 14px !important; min-width: 14px !important; min-height: 14px !important; flex-shrink: 0 !important;  display: inline-block !important; vertical-align: middle !important; }

.agent-icon { width: 48px !important; height: 48px !important; }
.flow-icon-box {  }
.card-icon { width: 32px !important; height: 32px !important; }
.truth-tab img { width: 18px !important; height: 18px !important; }
img { max-width: 100%; height: auto; object-fit: contain; }
.flow-icon-box img {
    width: 30px;
    height: 30px;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

/* Navbar & Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--accent-blue);
    transition: all 0.3s ease;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 2000;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 13, 36, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

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

.close-drawer {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--accent-blue);
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.drawer-links a {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.drawer-btn {
    margin-top: 20px;
    width: 100%;
}

/* Source of Truth Tab Nav */
.truth-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.truth-tab {
    background: transparent;
    border: none;
    padding: 12px 24px;
    color: #575757;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.truth-tab.active,
.truth-tab:hover {
    color: var(--text-white);
    background: #177A81 !important;
}



.truth-tab.active img {
    filter: invert(1);
}

/* Truth Content Switching */
.truth-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.truth-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* SEARCH Flow Layers */
.search-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

#search .search-flow {
    gap: 14.5px;
    align-items: flex-start;
    position: relative;
}

#search .search-flow::before {
    content: '';
    position: absolute;
    top: 36.25px;
    bottom: 36.25px;
    left: 36.25px;
    width: 2px;
    background: rgba(0, 72, 226, 0.15);
    z-index: 0;
}

.search-layer {
    background: var(--text-white);
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 1160px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(172, 179, 183, 0.2);
}

#search .search-layer {
    display: flex !important;
    gap: 29px;
    align-items: flex-start;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    width: 100%;
    position: relative;
    z-index: 1;
}

#search .flow-pipe {
    opacity: 0;
}

#search .layer-icon-box {
    background: #dce4e8;
    width: 72.5px !important;
    height: 72.5px !important;
    border-radius: 7.25px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0px 0.906px 1.813px 0px rgba(0,0,0,0.05);
    overflow: hidden;
}

#search .layer-icon-box img {
    max-width: 32px !important;
    max-height: 32px !important;
    width: auto !important;
    height: auto !important;
}

#search .layer-icon-box.highlight {
    background: #0048e2;
    box-shadow: 0px 9.063px 13.594px -2.719px rgba(0,72,226,0.2), 0px 3.625px 5.438px -3.625px rgba(0,72,226,0.2);
}

#search .layer-icon-box.monitoring {
    background: #006b62;
    box-shadow: 0px 9.063px 13.594px -2.719px rgba(0,107,98,0.2), 0px 3.625px 5.438px -3.625px rgba(0,107,98,0.2);
}

#search .layer-card {
    flex: 1;
    padding: 29px;
    border-radius: 7.25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 18.125px 36.25px 0px rgba(0, 0, 0, 0.07);
}

.layer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.layer-title h4 {
    color: #2C3437;
    font-size: 18px;
    letter-spacing: 0.1em;
    margin: 4px 0 0;
}

.layer-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-blue);
    opacity: 0.6;
}

.stream-label {
    background: #EAEFF2;
    color: #596064;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
}

/* Flow Pipes */
.flow-pipe {
    width: 2px;
    height: 40px;
    background: #ACB3B7;
    opacity: 0.3;
}

/* Layer 1: Signals */
.signals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.signal-card {
    background: #F0F4F7;
    padding: 16px;
    border-radius: 6px;
    text-align: center;
}

.signal-card h6 {
    color: #2C3437;
    margin-bottom: 12px;
    font-size: 14px;
}

.mini-progress {
    height: 6px;
    background: rgba(0, 72, 226, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.mini-progress .bar {
    height: 100%;
    background: #0048E2;
}

.mini-progress.blocker {
    background: rgba(168, 56, 54, 0.2);
}

.mini-progress.blocker .bar {
    background: #A83836;
}

/* Layer 2: Observation */
.observation-pills {
    display: flex;
    gap: 20px;
}

.obs-pill {
    background: var(--text-white);
    border: 1px solid rgba(172, 179, 183, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    color: #2C3437;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* Layer 3: Agents Highlight */
.layer-agents-highlight .layer-card {
    background: #0048E2;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 72, 226, 0.2);
}

.layer-agents-highlight .layer-title h4,
.layer-agents-highlight .layer-tag {
    color: var(--text-white);
}

.layer-agents-highlight .stream-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.agents-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.agent-box-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 10px;
    color: var(--text-white);
}

.box-icon {
    font-size: 24px;
    margin-bottom: 16px;
}

.agent-box-card h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-white);
}

.agent-box-card p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.4;
    color: var(--text-white);
}

/* Layer 4: Intelligence */
.intel-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.intel-item label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #596064;
    margin-bottom: 6px;
}

.intel-item span {
    font-size: 18px;
    font-weight: 700;
    color: #2C3437;
}

/* Layer 5: Execution */
.execution-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--text-white);
    border: 1px solid rgba(172, 179, 183, 0.1);
    padding: 16px 24px;
    border-radius: 6px;
}

.exec-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #2C3437;
}

.status-tag {
    font-size: 12px;
    font-weight: 700;
    color: #596064;
}

/* Layer 6: Monitoring */
.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mon-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mon-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid #EAEFF2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.mon-icon-wrap.blue { background: rgba(0, 72, 226, 0.1); border: none; }
.mon-icon-wrap.teal { background: rgba(0, 107, 98, 0.1); border: none; }

.mon-text strong {
    display: block;
    color: #2C3437;
    font-size: 15px;
}

.mon-text span {
    font-size: 13px;
    color: #596064;
}

@media (max-width: 1280px) {
    .intelligence-grid {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
    
    .intelligence-header {
        gap: 40px;
    }
    
    .intel-tab .tab-title {
        font-size: 20px;
    }
    
    .showcase-header-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 800px) {

    #search .search-flow::before{ display:none;  }
    #search .layer-icon-box {    display: none !important; }
    .signals-grid {
    flex-wrap: wrap !important;
    display: flex;
}
.observation-pills {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.monitoring-grid,
.intel-summary-grid,
.agents-box-grid {
    flex-wrap: wrap;
    display: flex;
}
#aso .search-flow::before,
#geo .search-flow::before {
    left: 50% !important;
}

    .intelligence-tabs {
        gap: 4px !important;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        text-align: center;

        display: none;
    }
    .dashboard-pane{ display: block !important; opacity:1 }
    .dashboard-preview img {    left: -21px; }
    .showcase-header-content p{ max-width:100%; }

    .flow-step{ flex-wrap:wrap; align-items:center; justify-content: center; }
    .flow-step .flow-text{ text-align:center; }

    .workflow-steps {
        flex-direction: inherit;
        gap: 20px;
        flex-wrap: wrap;
    }
    .intelligence-section {
        padding: 20px 0 100px 0;
    }
    .agents-section {
        padding: 80px 0 0px 0;
    }
    .workflow-container {
        padding: 40px 0 0px 0;
    }
    .large-box{ width:66px; height:66px; }
    .truth-section {
        padding: 80px 0 0px 0;
    }
    .truth-tabs-nav {
        display: flex;
        flex-wrap: wrap;gap: 12px;
    }
    .truth-tabs-nav .truth-tab {
        padding: 20px 18px;
    }
    .agents-grid {
        grid-template-columns: auto-fill !important;
    }
    .trusted-section {
        padding: 0px 0;
    }
    .success-grid {
    flex-wrap: wrap;
}

    .metric-num, .success-stat {
        font-size: 32px;
    }
    .success-section {
        padding: 110px 0 20px 0;
        background: #FFFFFF;
        text-align: center;
    }
}
@media (max-width: 1024px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    
    .hero-title { font-size: 56px; }
    .glass-decoration { display: none; }
    
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    
    .intelligence-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tabs-sidebar {
        padding-left: 0;
        margin-bottom: 20px;
        position: relative;
    }
    
    .progress-rail {
        position: absolute;
        left: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        height: 2px;
        background: #EAEAEA;
    }
    
    .rail-dot { display: none; }
    
    .intelligence-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 24px;
        scrollbar-width: none;
        position: relative;
    }
    
    .intelligence-tabs::-webkit-scrollbar { display: none; }
    
    .intel-tab { padding: 8px 0; }
    .intel-tab .tab-title { white-space: nowrap; font-size: 16px; font-weight: 500; }
    
    .active-line {
        top: auto;
        bottom: 0;
        height: 2px;
        transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1), transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    }
    
    .active-line.is-progressing {
        transition: width 6s linear !important;
    }
    
    .showcase-area { min-height: auto; }
    .dashboard-pane { position: relative; display: none; transform: none; padding-top: 20px; }
    .dashboard-pane.active { display: block; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 40px; }
    .hero-desc { font-size: 18px; }
    
    .card-grid { grid-template-columns: 1fr; }
    
    .intelligence-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .revenue-engine-header h2 { font-size: 32px; }
    
    .agents-grid { grid-template-columns: repeat(2, 1fr); }
    
    .benefits-grid { grid-template-columns: 1fr; }
    
    .trusted-content { flex-direction: column; gap: 40px; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    
    .contact-layout { grid-template-columns: 1fr; }
    .contact-left { padding-right: 0; margin-bottom: 40px; }
}

@media (max-width: 480px) {
    h2, .problems-title{ font-size:26px !important; }

    h2 br, .problems-title br,
    .hero-title br{ display:none; }
    .hero-title { font-size: 32px; }
    .logo-text { font-size: 24px; }
    .footer-bottom {
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 10px;
}
    
}

/* Form Success UI */
.form-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 44, 119, 0.3);
}

.success-icon img {
    width: 40px;
    height: 40px;
}

.form-success h3 {
    font-size: 32px;
    color: #FFF;
    margin-bottom: 12px;
}

.form-success p {
    font-size: 18px;
    color: #FFF;
    max-width: 300px;
    line-height: 1.5;
}

/* =========================================================================
   GEO TAB CONTENT STYLES
   ========================================================================= */

#geo .search-flow {
    gap: 14.5px;
    align-items: flex-start;
    position: relative;
}

#geo .search-flow::before {
    content: '';
    position: absolute;
    top: 36.25px;
    bottom: 36.25px;
    left: 36.25px;
    width: 2px;
    background: rgba(0, 72, 226, 0.15);
    z-index: 0;
}

#geo .search-layer {
    display: flex !important;
    gap: 29px;
    align-items: flex-start;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    width: 100%;
    position: relative;
    z-index: 1;
}

#geo .flow-pipe {
    opacity: 0;
}

#geo .layer-icon-box {
    background: #dce4e8;
    width: 72.5px !important;
    height: 72.5px !important;
    border-radius: 7.25px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0px 0.906px 1.813px 0px rgba(0,0,0,0.05);
    overflow: hidden;
}

#geo .layer-icon-box img {
    max-width: 32px !important;
    max-height: 32px !important;
    width: auto !important;
    height: auto !important;
}

#geo .layer-icon-box.highlight {
    background: #0048e2;
    box-shadow: 0px 9.063px 13.594px -2.719px rgba(0,72,226,0.2), 0px 3.625px 5.438px -3.625px rgba(0,72,226,0.2);
}

#geo .layer-icon-box.monitoring {
    background: #006b62;
    box-shadow: 0px 9.063px 13.594px -2.719px rgba(0,107,98,0.2), 0px 3.625px 5.438px -3.625px rgba(0,107,98,0.2);
}

#geo .layer-card {
    background: white;
    flex: 1;
    padding: 29px;
    border-radius: 7.25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 18.125px 36.25px 0px rgba(0, 0, 0, 0.07);
}

#geo .layer-card.grey {
    background: #eaeff2;
    flex-direction: column;
    align-items: flex-start;
    gap: 21.75px;
}

#geo .layer-card.monitoring {
    background: #f0f4f7;
}

#geo .layer-info {
    display: flex;
    flex-direction: column;
    gap: 3.625px;
}

#geo .layer-label-row {
    display: flex;
    gap: 10.875px;
    align-items: center;
}

#geo .layer-num {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 12.688px;
    color: #0048e2;
}

#geo .layer-card.monitoring .layer-num {
    color: #006b62;
}

#geo .layer-name {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 18.125px;
    color: #2c3437;
}

#geo .layer-desc {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 12.688px;
    color: #596064;
}

#geo .layer-pills {
    display: flex;
    gap: 7.25px;
}

#geo .layer-pill {
    background: #f0f4f7;
    padding: 7.25px 14.5px;
    border-radius: 10.875px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 10.875px;
    color: #596064;
}

#geo .layer-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14.5px;
}

#geo .metric-box {
    background: #f0f4f7;
    padding: 10.875px;
    border-radius: 3.625px;
    text-align: center;
    width: 85px;
}

#geo .metric-val {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 16.313px;
    color: #2c3437;
    display: block;
}

#geo .metric-unit {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 8.7px;
    color: #596064;
    letter-spacing: 0.435px;
    text-transform: uppercase;
}

/* Agent Cards in Layer 03 */
#geo .agents-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21.75px;
    width: 100%;
}

#geo .agent-item {
    background: white;
    padding: 18.125px;
    padding-left: 21.75px;
    border-radius: 7.25px;
    border-left: 3.625px solid #0048e2;
    display: flex;
    flex-direction: column;
    gap: 7.25px;
}

#geo .agent-item.ux { border-left-color: #506076; }
#geo .agent-item.tech { border-left-color: #006b62; }

#geo .agent-item h5 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    color: #2c3437;
}

#geo .agent-item p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 10.875px;
    color: #596064;
    line-height: 1.6;
}

/* Progress bar Layer 04 */
#geo .layer-progress-wrap {
    width: 174px;
    height: 7.25px;
    background: #f0f4f7;
    border-radius: 10.875px;
    overflow: hidden;
    position: relative;
}

#geo .layer-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #0048e2;
    width: 78%;
}

/* Deploy Button Layer 05 */
#geo .btn-deploy {
    background: #506076;
    color: white;
    padding: 10.875px 21.75px;
    border-radius: 3.625px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 12.688px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#geo .btn-deploy:hover {
    background: #3d4a5c;
}

/* Monitoring Share/Delta */
#geo .share-metrics {
    display: flex;
    gap: 21.75px;
    align-items: center;
}

#geo .share-box {
    display: flex;
    flex-direction: column;
}

#geo .share-label {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 8.7px;
    color: #596064;
    text-transform: uppercase;
}

#geo .share-val {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 18.125px;
    color: #2c3437;
}

#geo .share-val.positive {
    color: #006b62;
}

/* Bento Grid */
.geo-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 29px;
    margin-top: 29px;
    width: 100%;
}

.bento-card {
    border-radius: 14.5px;
    padding: 29px;
    display: flex;
    flex-direction: column;
}

.bento-card.large {
    grid-column: span 2;
    background: #f0f4f7;
    position: relative;
    overflow: hidden;
}

.bento-card.vertical {
    background: #dce4e8;
    justify-content: space-between;
}

.bento-header {
    display: flex;
    flex-direction: column;
    gap: 7.25px;
    margin-bottom: 24px;
}

.bento-card.large .bento-header {
    margin-bottom: 14.5px;
}

.bento-tag {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 8.7px;
    color: #0048e2;
    text-transform: uppercase;
}

.bento-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 21.75px;
    color: #2c3437;
}

.bento-card.vertical .bento-title {
    font-size: 18.125px;
}

.bento-desc {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 14.5px;
    color: #596064;
    line-height: 1.5;
    max-width: 348px;
}

.bento-stats-list {
    display: flex;
    flex-direction: column;
    gap: 14.5px;
    margin-top: 7.25px;
}

.bento-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bento-stat-label {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 12.688px;
    color: #596064;
}

.bento-stat-val {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 12.688px;
    color: #2c3437;
}

.bento-visual {
    margin-top: 29px;
    height: 116px;
    border-radius: 7.25px;
    overflow: hidden;
}

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

/* Latent Map Visualization */
.latent-map-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14.5px;
    margin-top: 29px;
    padding-top: 14.5px;
    height: 188.5px;
}

.map-node {
    width: 43.5px;
    height: 43.5px;
    border-radius: 10.875px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-node.blue { background: rgba(0, 72, 226, 0.2); }
.map-node.teal { 
    width: 58px; 
    height: 58px; 
    background: rgba(0, 107, 98, 0.2); 
    box-shadow: 0px 9.063px 13.594px -2.719px rgba(0,0,0,0.1), 0px 3.625px 5.438px -3.625px rgba(0,0,0,0.1);
}
.map-node.grey { background: rgba(80, 96, 118, 0.2); }

.node-inner {
    width: 7.25px;
    height: 7.25px;
    border-radius: 50%;
}

.map-node.blue .node-inner { background: #0048e2; }
.map-node.teal .node-inner { width: 14.5px; height: 14.5px; background: #006b62; }
.map-node.grey .node-inner { background: #506076; }

.map-divider {
    width: 43.5px;
    height: 1.359px;
    background: rgba(172, 179, 183, 0.3);
}

.blur-overlay {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 32%;
    height: 54%;
    background: rgba(0, 72, 226, 0.05);
    filter: blur(29px);
    border-radius: 10.875px;
    pointer-events: none;
}


/* ASO Tab Specific Styles
   ========================================================================= */

#aso .search-flow {
    gap: 14.5px;
    align-items: flex-start;
    position: relative;
}

#aso .search-flow::before {
    content: '';
    position: absolute;
    top: 36.25px;
    bottom: 36.25px;
    left: 36.25px;
    width: 1.5px;
    background: #e2e8f0;
    z-index: 0;
}

#aso .search-layer {
    display: flex !important;
    gap: 29px;
    align-items: flex-start;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    width: 100%;
    position: relative;
    z-index: 1;
}

#aso .flow-pipe {
    opacity: 0;
}

#aso .layer-icon-box {
    background: white;
    width: 72.5px !important;
    height: 72.5px !important;
    border-radius: 13.5px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0px 1.125px 2.25px 0px rgba(0,0,0,0.05);
    overflow: hidden;
}

#aso .layer-icon-box img {
    max-width: 32px !important;
    max-height: 32px !important;
    width: auto !important;
    height: auto !important;
}

#aso .layer-icon-box.aso-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2.25px);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#aso .layer-card {
    background: #f0f4f7;
    flex: 1;
    padding: 36.25px;
    border-radius: 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
}

#aso .layer-card.aso-highlight {
    background: #0048e2;
    box-shadow: 0px 28.125px 56.25px -13.5px rgba(0, 72, 226, 0.2);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

#aso .layer-info {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

#aso .layer-label-row {
    display: flex;
    gap: 13.5px;
    align-items: center;
}

#aso .layer-num {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 11.25px;
    color: #0048e2;
    letter-spacing: 1.125px;
    text-transform: uppercase;
}

#aso .layer-num.light {
    color: #edeeff;
    opacity: 0.8;
}

#aso .layer-name {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 22.5px;
    color: #2c3437;
}

#aso .layer-name.light {
    color: white;
    font-size: 27px;
}

#aso .layer-desc {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 14.5px;
    color: #596064;
}

#aso .layer-pills {
    display: flex;
    gap: 13.5px;
    flex-wrap: wrap;
}

#aso .layer-pill {
    background: rgba(211, 228, 254, 0.5);
    padding: 4.5px 13.5px;
    border-radius: 13.5px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 13.5px;
    color: #435368;
    white-space: nowrap;
}

#aso .layer-pill.aso {
    background: rgba(145, 254, 239, 0.3);
    color: #006259;
}

#aso .layer-pill.grey {
    background: #dce4e8;
    color: #2c3437;
}

/* Agent Layer Row for ASO */
#aso .agents-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
}

#aso .agent-item.aso {
    background: rgba(255, 255, 255, 0.1);
    border: 1.125px solid rgba(255, 255, 255, 0.1);
    padding: 19px;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    gap: 4.5px;
}

#aso .agent-item.aso h5 {
    color: white;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 15.75px;
}

#aso .agent-item.aso p {
    color: #edeeff;
    opacity: 0.7;
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 13.5px;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    #geo .search-layer,
    #aso .search-layer {
        flex-direction: column;
        align-items: center;
        gap: 14.5px;
    }

    #geo .layer-card,
    #aso .layer-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14.5px;
        width: 100%;
        padding: 20px;
    }
    
    #geo .agents-row,
    #aso .agents-row {
        grid-template-columns: 1fr;
    }
    
    .geo-bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.large {
        grid-column: span 1;
    }

    #aso .layer-icon-box {
        margin: 0 auto;
    }
}
.faq-item.hidden { display: none; }
.btn-load-more.hidden { display: none; }
