/* Base & Reset */
:root {
    /* Light Theme Palette */
    --bg-dark: #ffffff;
    --bg-darker: #f8fafc;
    /* Slate-50 */
    --primary: #1e3a8a;
    /* Blue-900 (Dark Navy) */
    --primary-glow: #172554;
    /* Blue-950 (Midnight) */
    --secondary: #1e40af;
    /* Blue-800 (Rich Dark Blue) */
    --accent: #0f172a;
    /* Slate-900 (Deepest) */
    --text-main: #1f2937;
    /* Gray-800 */
    --text-muted: #64748b;
    /* Gray-500 */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: #e2e8f0;
    /* Slate-200 */
    --card-bg: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(30, 58, 138, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(30, 58, 138, 0.1), 0 2px 4px -1px rgba(30, 58, 138, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(30, 58, 138, 0.1), 0 10px 10px -5px rgba(30, 58, 138, 0.04);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

.backgroundcustom {
    background-color: #f1f5f9 !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-darker);
    /* Subtle mesh gradient background */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.03), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.03), transparent 25%);
    color: var(--text-main);
    line-height: 1.7;
    /* Increased for better readability */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.03em;
    /* Tighter, more modern tracking */
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    /* Brand gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Navbar */
.navbar {
    padding: 24px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.85);
    /* Light glass */
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.logo .dot {
    color: var(--primary);
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    display: inline-block;
    text-align: center;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
    letter-spacing: -0.01em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.5);
    background-position: 100% 0;
    /* Shimmer effect */
}

.cta-button.small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 50% 10%, rgba(99, 102, 241, 0.08), transparent 60%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 450px;
}

.waitlist-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: white;
    /* Clean white input */
    color: var(--text-main);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
}

.waitlist-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    /* Soft dark shadow */
    border: 1px solid var(--glass-border);
    min-height: 400px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Alternating Section Backgrounds */
.ai-features,
.faq-section {
    background-color: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.suite-features,
.integrations-section {
    background-color: #ffffff;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Problem Solution */
.problem-solution-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--bg-dark);
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-highlight {
    color: var(--secondary);
}

/* Comparison Visuals */
.comparison-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: stretch;
    margin-top: 60px;
    flex-wrap: wrap;
}

.side-card {
    flex: 1;
    min-width: 320px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 20px;
    min-height: 400px;
    /* Reduced height for more compact layout */
    justify-content: flex-end;
    /* Push pill to bottom */
}

/* Chaos Side Styling */
/* Chaos Side Styling */
.chaos-area {
    position: relative;
    width: 100%;
    height: 280px;
}

.float-msg {
    position: absolute;
    padding: 12px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2), 0 5px 10px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 110px;
    transition: transform 0.3s ease;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    z-index: 5;
    border: none;
}

.msg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}


.msg-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    width: 100%;
}

.line {
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 99px;
    width: 100%;
}

.line.short {
    width: 70%;
    background: rgba(255, 255, 255, 0.3);
}

.float-msg:hover {
    transform: scale(1.05) !important;
    z-index: 20;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    /* Red-500 */
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Specific Chaos Bubbles */
/* Specific Chaos Bubbles - Precise Reference Match */
/* Instagram: Top Left, Pink/Purple Gradient */
.m-1 {
    top: 5%;
    left: 0%;
    animation: float1 6s infinite;
    transform: rotate(-12deg);
    background: linear-gradient(135deg, #d62976 0%, #962fbf 100%);
    width: 150px;
}

.m-1 .notification-badge {
    background: #ef4444;
}

/* Mail: Top Middle, Red */
.m-2 {
    top: 15%;
    left: 45%;
    animation: float2 7s infinite;
    transform: rotate(-6deg);
    background: #ef4444;
    width: 140px;
}

.m-2 .notification-badge {
    background: #ef4444;
}

/* Facebook: Top Right, Blue */
.m-6 {
    top: 25%;
    right: -5%;
    animation: float3 8s infinite;
    transform: rotate(5deg);
    background: #1877f2;
    width: 150px;
}

.m-6 .notification-badge {
    background: #ef4444;
}

/* LinkedIn: Center, Light Blue */
.m-4 {
    top: 50%;
    left: 35%;
    animation: float1 9s infinite;
    transform: rotate(-3deg);
    background: #2563eb;
    width: 160px;
    z-index: 4;
}

.m-4 .notification-badge {
    background: #ef4444;
}

/* X (Twitter): Bottom Left, Black */
.m-3 {
    bottom: 15%;
    left: 5%;
    animation: float3 8s infinite;
    transform: rotate(-8deg);
    background: #0f172a;
    width: 160px;
}

.m-3 .notification-badge {
    background: #ef4444;
}

/* WhatsApp: Bottom Right, Green */
.m-5 {
    bottom: 5%;
    right: 15%;
    left: auto;
    /* Clear left */
    animation: float2 7s infinite;
    transform: rotate(8deg);
    background: #00c853;
    width: 150px;
}

.m-5 .notification-badge {
    background: #ef4444;
}

/* Order Side Styling */
.order-card {
    background: rgba(240, 253, 244, 0.5);
    border-radius: 24px;
    border: 1px solid #dcfce7;
    /* justify-content handled by .side-card now */
}

.mock-app-ui {
    margin: auto 0;
    /* Vertically center the UI in the available space above the pill */
}

.mock-app-ui {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.app-header {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    /* Blue gradient matching theme */
    padding: 16px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 600;
    display: flex;
    gap: 8px;
    align-items: center;
}

.bell-icon {
    position: relative;
    cursor: pointer;
}

.dot-badge {
    position: absolute;
    top: 0;
    right: 2px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 1px solid #1e3a8a;
}

.app-list {
    background: white;
}

.app-item {
    display: flex;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
    transition: background 0.2s;
    cursor: pointer;
}

.app-item:hover {
    background: #f8fafc;
}

.app-item:last-child {
    border-bottom: none;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.icon-circle.insta {
    background: linear-gradient(45deg, #f09433, #bc1888);
}

.icon-circle.fb {
    background: #1877f2;
}

.icon-circle.whatsapp {
    background: #25d366;
}

.icon-circle.twitter {
    background: #000000;
}

.content {
    flex: 1;
    text-align: left;
}

.row-1 {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 2px;
}

.row-2 {
    font-size: 0.8rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.time {
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.75rem;
}

.app-footer {
    background: #0ea5e9;
    /* Sky Blue footer highlight */
    color: white;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Status Pills */
.status-pill {
    margin-top: 30px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.chaos-pill {
    background: #fee2e2;
    color: #ef4444;
}

.order-pill {
    background: #dcfce7;
    color: #16a34a;
    /* Green-600 */
}

/* Floating Animations */
@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-15px) rotate(-8deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(15px) rotate(8deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0) rotate(8deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}


.chaos-label,
.order-label {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.bindrix-core {
    font-size: 4rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.4));
}

/* Features Sections */
.features-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

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

.badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: inline-block;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #111827;
}

/* Tabs */
.tabs-container {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    min-height: 380px;
    box-shadow: var(--shadow-lg);
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.tab-btn {
    background: transparent;
    color: var(--text-muted);
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.2s;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.03);
}

.tab-btn.active {
    color: white;
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pane-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.pane-text {
    flex: 1;
    text-align: left;
}

.pane-text h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.pane-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-main);
}

.feature-list li i {
    color: var(--secondary);
}

.pane-visual {
    flex: 1.2;
    background: transparent;
    border-radius: 16px;
    min-height: 240px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Specific Visuals */
.chat-bubble {
    padding: 12px 20px;
    border-radius: 12px;
    max-width: 80%;
    margin-bottom: 12px;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

.chat-bubble.user {
    background: white;
    color: var(--text-main);
    margin-left: auto;
    border-bottom-right-radius: 2px;
    border: 1px solid var(--glass-border);
}

.chat-bubble.ai {
    background: var(--primary);
    color: white;
    border-bottom-left-radius: 2px;
}

.card-visual {
    flex-direction: column;
}

.inventory-visual {
    background: #f8fafc;
}

/* New Inventory Showcase Styles */
.inventory-pane .pane-visual {
    background: transparent;
    height: auto;
    min-height: 300px;
    padding: 0;
}

.inventory-showcase {
    display: flex;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: none;
    align-items: stretch;
    width: 100%;
}

/* Main Panel - Now just the conversation */
.inv-main-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

/* Conversation Panel */
.inv-conversation {
    flex: 1;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.inv-conv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #4F46E5;
    color: white;
}

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

.inv-avatar-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
}

.inv-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.inv-platform-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 26px;
    height: 26px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.inv-user-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 4px;
}

.inv-platform {
    font-size: 0.75rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 4px;
}

.inv-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.inv-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.inv-messages {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f8fafc;
}

.inv-msg {
    max-width: 90%;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    line-height: 1.4;
}

.inv-msg.customer {
    background: white;
    color: #334155;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.inv-msg.ai {
    background: #f1f5f9;
    color: #334155;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.inv-msg.ai strong {
    color: #4F46E5;
}

.inv-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #4F46E5;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.inv-ai-thinking {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    align-self: center;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
}

.inv-think-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    animation: thinkPulse 1s infinite;
}

@keyframes thinkPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.inv-think-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.inv-think-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #92400e;
}

.inv-think-bar {
    width: 100px;
    height: 4px;
    background: rgba(146, 64, 14, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.inv-think-progress {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 4px;
    animation: progressAnim 1.5s ease-in-out infinite;
}

@keyframes progressAnim {
    0% {
        width: 0%;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

/* Inventory Data Panel */
.inv-data-panel {
    flex: 0.8;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.inv-data-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
    color: white;
}

.inv-data-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

.inv-data-title i {
    font-size: 1.1rem;
}

.inv-sync-badge {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.inv-sync-badge i {
    font-size: 0.65rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.inv-product-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.inv-product-img {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    font-size: 1.3rem;
}

.inv-product-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.inv-product-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
}

.inv-product-sku {
    font-size: 0.7rem;
    color: #94a3b8;
}

.inv-stock-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 14px 16px;
}

.inv-size-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.inv-size-item.active {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #22c55e;
}

.inv-size {
    font-weight: 700;
    font-size: 0.85rem;
    color: #475569;
}

.inv-size-item.active .inv-size {
    color: #16a34a;
}

.inv-qty {
    font-size: 0.75rem;
    font-weight: 500;
}

.inv-qty.in {
    color: #16a34a;
}

.inv-qty.out {
    color: #dc2626;
}

.inv-qty.low {
    color: #f59e0b;
}

.inv-check {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.55rem;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.inv-meta {
    display: flex;
    justify-content: space-around;
    padding: 12px 16px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.inv-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}

.inv-meta-item i {
    font-size: 0.75rem;
}

.inv-meta-item:first-child {
    color: #16a34a;
}

.inv-meta-item:last-child i {
    color: #f97316;
}

/* Inventory Status Card */
.inv-status-card {
    flex: 0.8;
    min-width: 180px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.inv-status-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

.inv-product-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
}

.inv-prod-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    font-size: 1.1rem;
}

.inv-prod-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.inv-prod-name {
    font-weight: 600;
    font-size: 0.8rem;
    color: #1e293b;
}

.inv-prod-sku {
    font-size: 0.65rem;
    color: #94a3b8;
}

.inv-stock-status {
    padding: 10px 14px;
}

.inv-stock-bar {
    height: 8px;
    background: #fee2e2;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.inv-stock-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.inv-stock-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
}

.inv-stock-current {
    color: #16a34a;
}

.inv-stock-current strong {
    font-size: 0.85rem;
}

.inv-stock-requested {
    color: #dc2626;
    font-weight: 500;
}

.inv-restock-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Owner Notification Panel */
.inv-notify-panel {
    flex: 0.7;
    min-width: 180px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.inv-notify-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
}

.inv-notify-badge {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.inv-notify-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    flex: 1;
}

.inv-notify-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.inv-notify-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.inv-notify-title {
    font-weight: 700;
    font-size: 0.78rem;
    color: #1e293b;
}

.inv-notify-desc {
    font-size: 0.7rem;
    color: #64748b;
    line-height: 1.35;
}

.inv-notify-actions {
    display: flex;
    gap: 6px;
    padding: 0 12px 10px;
}

.inv-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.inv-action-btn.primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
}

.inv-action-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.inv-action-btn.secondary {
    background: white;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.inv-action-btn.secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.inv-notify-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.inv-notify-time {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.6rem;
    color: #94a3b8;
}

.inv-notify-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
}

.inv-notify-tag.high {
    background: #fee2e2;
    color: #dc2626;
}

/* Old styles kept for backwards compatibility */
.mock-inventory-card {
    background: white;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.inventory-header {
    background: #5c3ee8;
    /* Shopify-like Purple */
    color: white;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.item-img {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #64748b;
}

.inventory-footer {
    padding: 8px 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: #f8fafc;
}

.status.in-stock {
    color: #16a34a;
    font-weight: 600;
    font-size: 0.8rem;
}

.status.out-stock {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.8rem;
}

.label-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 4px;
    font-weight: 600;
}

.label-tag.urgent {
    background: #fee2e2;
    color: #b91c1c;
}

.label-tag.lead {
    background: #fef9c3;
    color: #a16207;
}

.label-tag.support {
    background: #dbeafe;
    color: #1d4ed8;
}

.label-tag.order {
    background: #f3e8ff;
    color: #7e22ce;
}

/* Platform Hub - Dynamic Integrations */
.integrations-section {
    padding: 60px 0;
    background: #f8fafc;
    overflow: hidden;
}

.platform-hub {
    position: relative;
    max-width: 800px;
    height: 400px;
    margin: 60px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-center {
    position: relative;
    z-index: 10;
}

.hub-logo {
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 800;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
    position: relative;
    transform: rotate(-5deg);
}

.hub-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.1;
    animation: hubPulse 3s infinite;
}

@keyframes hubPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.hub-platforms {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.platform-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.platform-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid #f1f5f9;
    z-index: 2;
    overflow: hidden;
}

.platform-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.platform-item::after {
    content: attr(data-name);
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.platform-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}


/* Position Icons in Orbit */
.platform-item.instagram {
    top: 10%;
    left: 15%;
    animation: float 4s ease-in-out infinite;
}

.platform-item.facebook {
    top: 50%;
    left: 5%;
    animation: float 5s ease-in-out infinite 0.5s;
}

.platform-item.whatsapp {
    bottom: 10%;
    left: 20%;
    animation: float 4.5s ease-in-out infinite 1s;
}

.platform-item.twitter {
    top: 10%;
    right: 15%;
    animation: float 4s ease-in-out infinite 0.2s;
}

.platform-item.linkedin {
    top: 50%;
    right: 5%;
    animation: float 5s ease-in-out infinite 0.7s;
}

.platform-item.shopify {
    bottom: 10%;
    right: 20%;
    animation: float 4.5s ease-in-out infinite 1.2s;
}

.platform-item.woocommerce {
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    animation: float 6s ease-in-out infinite;
}

/* Brand Colors - Now Default for Attraction */
.platform-item .platform-icon {
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.platform-item.instagram .platform-icon {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 10px 20px rgba(214, 36, 159, 0.2);
}

.platform-item.facebook .platform-icon {
    background: #1877F2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.2);
}

.platform-item.whatsapp .platform-icon {
    background: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.platform-item.twitter .platform-icon {
    background: #000000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.platform-item.linkedin .platform-icon {
    background: #0077B5;
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.2);
}

.platform-item.shopify .platform-icon {
    background: #96bf48;
    box-shadow: 0 10px 20px rgba(150, 191, 72, 0.2);
}

.platform-item.woocommerce .platform-icon {
    background: #96588a;
    box-shadow: 0 10px 20px rgba(150, 88, 138, 0.2);
    border: 1px solid #f1f5f9;
}

.platform-item.woocommerce .platform-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

/* Hover Enhancements */
.platform-item:hover .platform-icon {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-15px) translateX(10px);
    }
}

.coming-soon {
    margin-top: 40px;
    font-weight: 600;
    color: #64748b;
}

.coming-soon a {
    color: var(--secondary);
    text-decoration: none;
    margin-left: 10px;
    font-weight: 700;
}


/* Performance Results Section */
.results-section {
    padding: 80px 0;
    background: #f1f5f9;
    /* Darker background for card contrast */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 800px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* New UI-Card Styles */
.benefit-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    text-align: left;
    border: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
    /* Ensure uniform height */
}

/* Card Header with Icon + Stat */
.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-header-row .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.stat-highlight {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Impact Visuals (UI Badges) */
.impact-visual {
    margin-top: auto;
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Time Impact */
.impact-badge {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.impact-badge.old {
    background: #fee2e2;
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.7;
}

.impact-badge.new {
    background: #dbeafe;
    color: #2563eb;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.impact-arrow {
    color: #94a3b8;
}

/* Shopify Notification */
.ui-notification {
    justify-content: flex-start;
    background: #fff;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.notif-icon {
    width: 40px;
    height: 40px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.notif-text {
    display: flex;
    flex-direction: column;
}

.notif-text .title {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}

.notif-text .sub {
    font-size: 0.8rem;
    color: #64748b;
}

/* Inbox Zero Success */
.ui-success {
    background: #ecfdf5;
    border-color: #6ee7b7;
    color: #065f46;
    font-weight: 700;
}

.success-icon {
    background: #34d399;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Trend Visual */
.ui-trend {
    justify-content: space-between;
}

.trend-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
}

.trend-pill {
    background: #ecfdf5;
    color: #10b981;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Permanent Color accents for each card */
.time-card {
    border-top: 5px solid #3b82f6;
}

.engagement-card {
    border-top: 5px solid #8b5cf6;
}

.leads-card {
    border-top: 5px solid #10b981;
}

.growth-card {
    border-top: 5px solid #f43f5e;
}

/* Make icons colorful by default */
.time-card .icon-box {
    background: #eff6ff;
    color: #3b82f6;
}

.engagement-card .icon-box {
    background: #f5f3ff;
    color: #8b5cf6;
}

.leads-card .icon-box {
    background: #ecfdf5;
    color: #10b981;
}

.growth-card .icon-box {
    background: #fff1f2;
    color: #f43f5e;
}


.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.1);
}

/* Remove the hover-only gradient line in favor of permanent borders */
.benefit-card::before {
    display: none;
}

.benefit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: #0f172a;
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.benefit-stat {
    display: inline-block;
    padding: 0;
    background: transparent;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.04em;
    margin-top: 15px;
    line-height: 1;
}

.benefit-stat span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
    -webkit-text-fill-color: #94a3b8;
    margin-left: 5px;
    letter-spacing: normal;
    text-transform: uppercase;
}

/* Specific Visuals */
.visual-element {
    flex-shrink: 0;
}

/* Time Bar Visual */
.time-visual {
    width: 180px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.time-bar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.time-bar span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
}

/* Removed unused old visual styles (time-bar, mini-chart, funnel, etc.) */
/* Removed unused old visual styles (time-bar, mini-chart, funnel, etc.) */

.card-header .benefit-stat {
    margin-top: 0;
    font-size: 1.5rem;
}

.bento-std h3 {
    margin-bottom: 8px;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background: #f8fafc;
}

.use-cases-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 80px;
}

.use-case-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.use-case-card.inverted {
    direction: ltr;
    /* Ensure text flows correctly but switch columns in grid */
}

/* Solution Tabs Styling */
.solution-tabs-container {
    max-width: 1000px;
    margin: 40px auto 0;
}

.center-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.center-pills .tab-btn {
    padding: 12px 24px;
    border-radius: 100px;
    background: white;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.center-pills .tab-btn:hover {
    border-color: #cbd5e1;
    color: #334155;
}

.center-pills .tab-btn.active {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.tab-pane {
    display: none;
    animation: fadeUp 0.5s ease-out;
}

.tab-pane.active {
    display: block;
}

.solution-pane-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    border-radius: 32px;
    padding: 40px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
}

.sol-content {
    flex: 1;
    text-align: left;
}

.sol-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1e293b;
    font-weight: 700;
}

.sol-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sol-content .btn-link {
    display: inline-block;
    margin-top: 25px;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.sol-content .btn-link:hover {
    border-color: var(--secondary);
}

.sol-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    /* Maintain 4:3 aspect ratio */
    aspect-ratio: 4 / 3;
    background: #f8fafc;
}

.sol-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.solution-pane-grid:hover .sol-image img {
    transform: scale(1.03);
}

/* Tab responsive */
@media (max-width: 900px) {
    .solution-pane-grid {
        flex-direction: column-reverse;
        /* Image on top on mobile feels weird, keep text first? OR Img first. Let's do Img top. */
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 30px;
    }

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

    .check-list {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
        grid-template-columns: 1fr;
    }
}

.check-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
}

.check-list li i {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Removed unused use-case-card media query */

/* Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #111827;
}

.waitlist-form.centered {
    margin: 0 auto;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    background: var(--bg-dark);
}

/* Mock UI adjustments for light mode */
.mock-ui {
    background: white;
    border-radius: 12px;
    padding: 16px;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Custom shadow */
    border: 1px solid var(--glass-border);
}

.ui-header {
    font-weight: 600;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
    font-size: 0.9rem;
}

.ui-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ui-item.active {
    background: #eff6ff;
    color: #3b82f6;
    font-weight: 500;
}

.calendar-mock {
    display: flex;
    gap: 12px;
}

.cal-day {
    padding: 12px;
    background: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    width: 60px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Detailed Comparison Cards */
.detailed-comparison {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.comp-card {
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
    transition: transform 0.3s ease;
}

.comp-card:hover {
    transform: translateY(-5px);
}

.comp-card.chaos-theme {
    background: #fff5f5;
    /* Light Red/Pink */
    border: 1px solid #fed7d7;
}

.comp-card.order-theme {
    background: #f0fff4;
    /* Light Green */
    border: 1px solid #c6f6d5;
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.comp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.comp-icon.red {
    background: #feb2b2;
    /* Soft Red */
    color: #c53030;
}

.comp-icon.green {
    background: #68d391;
    /* Soft Green */
    color: #22543d;
}

.comp-title h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.comp-title p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comp-item {
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.comp-item i {
    margin-top: 4px;
    font-size: 1.25rem;
}

.comp-card.chaos-theme .comp-item i {
    color: #ef4444;
}

.comp-card.order-theme .comp-item i {
    color: #10b981;
}

.item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-text strong {
    font-size: 1rem;
    color: var(--text-main);
}

.item-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.comp-footer {
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.comp-card.chaos-theme .comp-footer {
    background: #fee2e2;
    color: #c53030;
}

.comp-card.order-theme .comp-footer {
    background: #dcfce7;
    color: #166534;
}

.comp-footer.blue-gradient {
    background: linear-gradient(90deg, #10b981, #3b82f6);
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--bg-darker);
}

.faq-grid {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--text-muted);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--text-muted);
}

.faq-answer p {
    padding-bottom: 24px;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Animations */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 960px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .waitlist-form {
        margin: 0 auto;
    }

    .tabs-nav {
        flex-wrap: wrap;
    }

    .pane-content {
        flex-direction: column;
    }

    .split-layout {
        gap: 40px;
    }

    .split-visual {
        grid-template-columns: 1fr;
    }

    .arrow-connector {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Integrated Design Proposal (V3) */
.integrated-design-proposal {
    padding: 120px 0;
    background: #ffffff;
}

.integrated-v3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.v3-side {
    border-radius: 32px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.v3-side.chaos {
    background: #fffafa;
    border: 1px solid #fee2e2;
}

.v3-side.clarity {
    background: #f7fff9;
    border: 1px solid #dcfce7;
}

.v3-visual-area {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.v3-chaos-cloud {
    position: relative;
    width: 100%;
    height: 100%;
}

.v3-blob {
    position: absolute;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* AI Labeling Dashboard Styles */
.dashboard-demo {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 450px;
}

.dashboard-mini-header {
    background: #f8fafc;
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.dash-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.dash-title-group i {
    color: #6366f1;
}

.dash-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    background: white;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #64748b;
}

.filter-chip.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.4);
}

.message-feed {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f1f5f9;
    max-height: 320px;
    overflow-y: hidden;
}

.msg-card {
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
}

.msg-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.msg-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.msg-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.msg-avatar-container {
    position: relative;
    width: 32px;
    height: 32px;
}

.msg-avatar-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.platform-mini {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.platform-mini.ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.platform-mini.fb {
    background: #1877f2;
}

.platform-mini.tw {
    background: #000000;
}

.platform-mini.wa {
    background: #25d366;
}

.msg-info {
    display: flex;
    flex-direction: column;
}

.msg-sender {
    font-weight: 600;
    font-size: 0.8rem;
    color: #1e293b;
}

.msg-time {
    font-size: 0.65rem;
    color: #94a3b8;
}

.ai-label-tag {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-label-tag.urgent {
    background: #fee2e2;
    color: #ef4444;
}

.ai-label-tag.lead {
    background: #dcfce7;
    color: #10b981;
}

.ai-label-tag.support {
    background: #dbeafe;
    color: #3b82f6;
}

.msg-preview {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* Rule Builder Visual Styles */
.rule-builder-visual {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.rule-node {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 12px;
    width: 100%;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.rule-node:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.node-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.node-icon.trigger {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.node-icon.action {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.node-content {
    display: flex;
    flex-direction: column;
}

.node-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.node-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.rule-connector {
    height: 40px;
    position: relative;
    display: flex;
    align-self: flex-start;
    margin-left: 40px;
}

.connector-line {
    width: 2px;
    background: #e2e8f0;
    height: 100%;
}

.connector-dot {
    position: absolute;
    bottom: -5px;
    left: -4px;
    width: 10px;
    height: 10px;
    background: #e2e8f0;
    border-radius: 50%;
}

.rule-status-badge {
    margin-top: 25px;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.status-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: status-glow 2s infinite;
}

@keyframes status-glow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Social Management Suite Visuals */
.inbox-visual,
.calendar-visual,
.team-visual,
.analytics-visual,
.listening-visual {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

/* Inbox Visual */
.inbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}

.inbox-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: background 0.2s;
}

.inbox-item.active {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.inbox-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    color: white;
}

.inbox-avatar.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.inbox-avatar.twitter {
    background: #1DA1F2;
}

.inbox-avatar.facebook {
    background: #1877F2;
}

.status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border: 2px solid #fff;
    border-radius: 50%;
}

/* Analytics Enhanced */
.stat-grid.wide {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-card.branded {
    border-left: 4px solid var(--secondary);
    background: #fff;
}

.stat-card.branded.purple {
    border-left-color: #8b5cf6;
    background: #f5f3ff;
}

.stat-card.branded.blue {
    border-left-color: #3b82f6;
    background: #eff6ff;
}

.stat-card.branded.teal {
    border-left-color: #14b8a6;
    background: #f0fdfa;
}

.stat-card.branded.orange {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

.stat-trend.up {
    color: #10b981;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 5px;
}

.growth-chart-v4 {
    margin-top: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #f1f5f9;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.chart-legend {
    display: flex;
    gap: 10px;
}

.l-item {
    font-size: 0.65rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.l-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.l-dot.p {
    background: var(--secondary);
}

.l-dot.d {
    background: #e2e8f0;
}

.main-chart-area {
    height: 80px;
    width: 100%;
}

.svg-container {
    height: 100%;
    width: 100%;
}

.svg-container svg {
    height: 100%;
    width: 100%;
}

.inbox-info {
    flex: 1;
}

.inbox-user {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
}

.inbox-snippet {
    font-size: 0.8rem;
    color: #64748b;
}

.inbox-time {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Calendar Visual */
.cal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.cal-cell {
    aspect-ratio: 1;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    position: relative;
}

.cal-cell.active {
    background: #f8fafc;
    border-color: var(--secondary);
    font-weight: 700;
}

.cal-post {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    bottom: 5px;
}

.cal-post.insta {
    background: #e1306c;
}

.cal-post.twitter {
    background: #1da1f2;
}

.cal-post.fb {
    background: #1877f2;
}

.cal-preview {
    background: #f8fafc;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.preview-img {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border-radius: 8px;
}

.preview-title {
    font-weight: 600;
    font-size: 0.85rem;
}

.preview-status {
    font-size: 0.75rem;
    color: var(--secondary);
}

/* Team Visual */
.task-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}

.task-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.task-tag {
    background: #fef3c7;
    color: #d97706;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
}

.task-users {
    display: flex;
}

.task-user {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 2px solid #fff;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
}

.task-user:first-child {
    margin-left: 0;
}

.task-body {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.task-footer {
    display: flex;
    gap: 10px;
}

.task-footer button {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.approve-btn {
    background: var(--secondary);
    color: #fff;
}

.comment-btn {
    background: #f1f5f9;
    color: #475569;
}

.approval-flow {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 5px;
}

.flow-step.completed {
    color: #10b981;
}

.flow-step.current {
    color: var(--secondary);
}

/* Analytics Visual */
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

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

.chart-bar {
    flex: 1;
    background: var(--secondary);
    border-radius: 2px;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.chart-bar:hover {
    opacity: 1;
}

.stat-trend {
    font-size: 0.7rem;
    font-weight: 700;
}

.stat-trend.down {
    color: #ef4444;
}

.growth-chart {
    height: 60px;
    position: relative;
    border-bottom: 2px solid #f1f5f9;
    margin-top: 10px;
}

.growth-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    top: 50%;
    opacity: 0.2;
}

.growth-points {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
}

.point {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
    transform: translate(-50%, 50%);
}

.point.active {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 10px rgba(30, 64, 175, 0.4);
}

/* Listening Visual */
.sentiment-card {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.sentiment-header {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.sentiment-bars {
    height: 8px;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.s-bar.positive {
    background: #10b981;
}

.s-bar.neutral {
    background: #e2e8f0;
}

.s-bar.negative {
    background: #ef4444;
}

.sentiment-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748b;
}

.alert-feed {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    font-size: 0.8rem;
}

.alert-icon {
    color: var(--secondary);
}




/* Ultimate Comparison (V6 Refined Premium) */
.ultimate-comparison-section {
    padding: 80px 0;
    background: transparent;
    /* Changed from light grey to transparent to show body mesh */
    border-top: none;
}

.ultimate-v6-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Comparison Sides as Distinct Cards */
.v6-side {
    flex: 1;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    /* Base border */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Fragmented (Old Way) Card */
.v6-side.fragmented {
    background: #fffafa;
    /* Very light red tint */
    border-color: #fee2e2;
    box-shadow: 0 20px 40px -10px rgba(239, 68, 68, 0.05);
}

/* Unified (Bindrix Way) Card */
.v6-side.unified {
    background: #f0f9ff;
    /* Very light blue tint */
    border-color: #bae6fd;
    box-shadow: 0 20px 40px -10px rgba(14, 165, 233, 0.1);
}

/* Hover lift for cards */
.v6-side:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.v6-header {
    text-align: left;
    z-index: 2;
}

.v6-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.v6-side.fragmented .v6-tag {
    background: #fecaca;
    color: #b91c1c;
}

.v6-side.unified .v6-tag {
    background: #e0f2fe;
    color: #0369a1;
}

.v6-header h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 700;
}

.v6-header p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Visual Box */
.v6-visual-box {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

/* REFINED CHAOS (The Bubble Mess) */
/* REFINED CHAOS (The Bubble Mess) */
.refined-chaos {
    width: 100%;
    height: 100%;
    position: relative;
}

.v6-msg-bubble {
    position: absolute;
    padding: 10px 14px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    animation: float-v6 6s infinite ease-in-out;
    color: white;
    width: auto;
    min-width: 100px;
}

.v6-msg-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.v6-msg-lines {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v6-line {
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    width: 100%;
}

.v6-line.short {
    width: 60%;
}

.v6-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.b1 {
    top: 12%;
    left: 10%;
    background: #25D366;
    animation-delay: 0s;
    width: 150px;
}

.b2 {
    top: 38%;
    left: 62%;
    background: linear-gradient(135deg, #d62976 0%, #962fbf 100%);
    animation-delay: 1s;
    width: 140px;
}

.b3 {
    top: 68%;
    left: 12%;
    background: #1877f2;
    animation-delay: 2s;
    width: 150px;
}

.b4 {
    top: 18%;
    left: 65%;
    background: #0f172a;
    animation-delay: 1.5s;
    width: 140px;
}

.b5 {
    top: 62%;
    left: 55%;
    background: #0088cc;
    animation-delay: 0.5s;
    width: 130px;
}

@keyframes float-v6 {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* REFINED DASHBOARD (The Inbox Mockup) */
.v6-mock-inbox {
    width: 90%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transform: translateY(15px);
}

.v6-mock-header {
    background: #476cff;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.v6-mock-logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v6-mock-logo {
    width: 22px;
    height: 22px;
    background: white;
    color: #476cff;
    border-radius: 6px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.v6-brand-name {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.v6-mock-search {
    width: 100px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}

.v6-mock-row {
    padding: 12px 18px;
    border-bottom: 1px solid #f8fafc;
    display: flex;
    align-items: center;
    gap: 14px;
}

.v6-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.v6-mock-avatar {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    overflow: hidden;
}

.v6-source-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid #fff;
    z-index: 2;
}

.v6-source-badge.insta {
    color: #E4405F;
}

.v6-source-badge.wa {
    color: #25D366;
}

.v6-source-badge.x {
    color: #000;
}

.v6-mock-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.v6-mock-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
}

.v6-mock-msg {
    font-size: 0.75rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

.v6-mock-tag {
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
}

.v6-mock-tag.ai {
    background: #e0f2fe;
    color: #0369a1;
}

.v6-mock-tag.hot {
    background: #ffedd5;
    color: #9a3412;
}

/* Metrics Section */
.v6-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid #f1f5f9;
    z-index: 2;
}

.v6-metric-item {
    display: flex;
    flex-direction: column;
}

.v6-val {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.fragmented .v6-val {
    color: #dc2626;
}

.unified .v6-val {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.v6-lab {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.v4-footer-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 48px;
    background: white;
    border-radius: 32px;
    border: 1px solid #f1f5f9;
    margin-top: 48px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 10px 15px -3px rgba(0, 0, 0, 0.03);
}

.v4-stat {
    display: flex;
    flex-direction: column;
}

.v4-val {
    font-size: 2.75rem;
    font-weight: 800;
    color: #476cff;
    line-height: 1;
    margin-bottom: 8px;
}

.v4-lab {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.glow-btn {
    border: 1px solid #476cff;
    transition: all 0.3s ease;
}

.glow-btn:hover {
    background: #3b5bdb;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .ultimate-v6-comparison {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .v4-footer-metrics {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .v6-metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* Global Scroll Animations */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

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

/* =========================================
   MOBILE RESPONSIVE FIXES
   ========================================= */

@media (max-width: 900px) {

    /* Chaos Bubbles Scaling for Tablet/Mobile */
    .refined-chaos {
        transform: scale(0.85);
        transform-origin: center;
    }

    .v6-mock-inbox {
        transform: translateY(0);
        margin-top: 20px;
        width: 100%;
        /* Use full width of container */
    }

    /* Fix for dashboard text being hidden/collapsed */
    .v6-mock-info {
        min-width: 0;
        /* Crucial for text-overflow in flex children */
    }

    .v6-mock-msg {
        max-width: 100%;
        /* Let it fill available space */
    }
}

@media (max-width: 768px) {

    /* 1. Header & Nav Fixes */
    .hero-section {
        padding-top: 120px;
        /* Reduced from 140px */
        padding-bottom: 30px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        /* Reduced from 3.5rem */
    }

    .nav-links {
        display: none;
        /* Hide links on mobile to prevent collision */
    }

    .cta-button.small {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .waitlist-form {
        margin: 0 auto;
        /* Center form */
        flex-direction: column;
    }

    .waitlist-form input,
    .waitlist-form button {
        width: 100%;
    }

    /* 2. Inventory Showcase Stacking */
    .inventory-showcase {
        flex-direction: column !important;
        height: auto !important;
    }

    .inv-conversation,
    .inv-data-panel,
    .inv-notify-panel {
        width: 100% !important;
        flex: none !important;
        min-height: auto;
    }

    .inv-notify-panel {
        margin-top: 10px;
    }

    /* 3. Chaos Bubbles Mobile */
    .refined-chaos {
        transform: scale(0.7);
        height: 250px;
        /* Force height so it doesn't clip badly */
    }

    /* Adjust positioning of bubbles to fit narrower screen */
    .m-1 {
        left: -10%;
    }

    /* Instagram */
    .m-6 {
        right: -10%;
    }

    /* Facebook */
    .m-2 {
        left: 40%;
    }

    /* Mail */

    /* 4. Tab Visuals Fix */
    .tab-pane .pane-content {
        flex-direction: column;
        gap: 20px;
    }

    .dashboard-demo,
    .rule-builder-visual,
    .inbox-visual,
    .calendar-visual,
    .team-visual,
    .analytics-visual,
    .listening-visual {
        min-height: 400px;
        /* Reduce from 500px on mobile */
    }

    /* 5. Feature Lists & Text */
    .pane-text {
        text-align: center;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    .comparison-container {
        gap: 20px;
    }

    .side-card {
        min-width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Tabs Converted to Stack for Mobile */
    .tabs-nav {
        display: none !important;
    }

    .tabs-container {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .tabs-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .tab-pane {
        display: block !important;
        background: white;
        border-radius: 20px;
        padding: 24px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    /* Ensure visual stays within bounds */
    .pane-visual {
        width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* Aggressive fix for "Header" overlap */
    .nav-container {
        padding: 0 16px;
    }
}

/* Early Access Offer - Premium Design */
.early-access-offer {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.early-access-offer.centered-offer {
    align-items: center;
    text-align: center;
    width: 100%;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid rgba(30, 58, 138, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer-icon {
    font-size: 0.9rem;
}

.offer-details {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

.offer-highlight {
    position: relative;
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 3s ease-in-out infinite;
}

.offer-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    opacity: 0.6;
}

@keyframes shimmerText {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}