/*
|--------------------------------------------------------------------------
| V3 Design System - Apple-Inspired Clean Design  V3
|--------------------------------------------------------------------------
| Spacious, minimal, premium feel
*/

/* ========================================
   CSS Variables
======================================== */
:root {
    /* Colors */
    --v3-black: #09090b;
    --v3-gray-900: #18181b;
    --v3-gray-700: #3f3f46;
    --v3-gray-500: #71717a;
    --v3-gray-300: #d4d4d8;
    --v3-gray-100: #f4f4f5;
    --v3-white: #ffffff;
    --v3-blue: #18181b;
    --v3-blue-hover: #27272a;
    --v3-green: #22c55e;
    --v3-red: #ef4444;
    
    /* Typography - KEEP SAME */
    --v3-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --v3-font-size-xs: 0.75rem;
    --v3-font-size-sm: 0.875rem;
    --v3-font-size-base: 1rem;
    --v3-font-size-lg: 1.125rem;
    --v3-font-size-xl: 1.25rem;
    --v3-font-size-2xl: 1.5rem;
    --v3-font-size-3xl: 2rem;
    --v3-font-size-4xl: 2.5rem;
    --v3-font-size-5xl: 3rem;
    --v3-font-size-6xl: 3.5rem;
    --v3-font-size-hero: 4rem;
    
    /* Spacing - KEEP SAME */
    --v3-space-xs: 0.5rem;
    --v3-space-sm: 0.75rem;
    --v3-space-md: 1rem;
    --v3-space-lg: 1.5rem;
    --v3-space-xl: 2rem;
    --v3-space-2xl: 2.5rem;
    --v3-space-3xl: 3.5rem;
    --v3-space-4xl: 5rem;
    
    /* Layout */
    --v3-container: 1200px;
    --v3-container-narrow: 980px;
    --v3-container-wide: 1400px;
    --v3-radius: 8px;
    --v3-radius-lg: 12px;
    --v3-radius-xl: 16px;
    --v3-radius-full: 980px;
    
    /* Transitions - KEEP SAME */
    --v3-transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --v3-transition-fast: 0.15s ease;
    
    /* Shadows - subtler */
    --v3-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --v3-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --v3-shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --v3-shadow-xl: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--v3-font);
    font-size: var(--v3-font-size-base);
    line-height: 1.5;
    color: var(--v3-black);
    background: var(--v3-white);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--v3-black);
    text-decoration: underline;
    transition: opacity var(--v3-transition-fast);
}

a:hover {
    opacity: 0.7;
}

/* ========================================
   Typography
======================================== */
.v3-h1 {
    font-size: clamp(2.5rem, 5vw, var(--v3-font-size-hero));
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--v3-black);
}

.v3-h2 {
    font-size: clamp(2rem, 4vw, var(--v3-font-size-5xl));
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--v3-black);
}

.v3-h3 {
    font-size: clamp(1.25rem, 2.5vw, var(--v3-font-size-2xl));
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--v3-black);
}

.v3-h4 {
    font-size: var(--v3-font-size-xl);
    font-weight: 600;
    line-height: 1.3;
    color: var(--v3-black);
}

.v3-lead {
    font-size: clamp(1.125rem, 2vw, var(--v3-font-size-xl));
    line-height: 1.6;
    color: var(--v3-gray-700);
}

.v3-text {
    font-size: var(--v3-font-size-base);
    line-height: 1.6;
    color: var(--v3-gray-700);
}

.v3-text-sm {
    font-size: var(--v3-font-size-sm);
    line-height: 1.5;
    color: var(--v3-gray-500);
}

.v3-eyebrow {
    font-size: var(--v3-font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--v3-gray-500);
}

.v3-subtitle {
    font-size: 1.125rem;
    color: #86868b;
    margin-top: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Layout
======================================== */
.v3-container {
    width: 100%;
    max-width: var(--v3-container);
    margin: 0 auto;
    padding: 0 var(--v3-space-lg);
}

.v3-container-narrow {
    max-width: var(--v3-container-narrow);
}

.v3-container-wide {
    max-width: var(--v3-container-wide);
}

.v3-section {
    padding: var(--v3-space-4xl) 0;
}

.v3-section-sm {
    padding: var(--v3-space-3xl) 0;
}

.v3-section-lg {
    padding: calc(var(--v3-space-4xl) * 1.5) 0;
}

/* Background variants */
.v3-bg-white {
    background: var(--v3-white);
}

.v3-bg-gray {
    background: var(--v3-gray-100);
}

.v3-bg-black {
    background: var(--v3-black);
}

.v3-bg-black .v3-h1,
.v3-bg-black .v3-h2,
.v3-bg-black .v3-h3,
.v3-bg-black .v3-h4 {
    color: var(--v3-white);
}

.v3-bg-black .v3-lead,
.v3-bg-black .v3-text {
    color: var(--v3-gray-300);
}

/* ========================================
   Header / Navigation
======================================== */
.v3-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.v3-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
}

.v3-logo {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: inherit;
    transition: opacity var(--v3-transition-fast);
}

.v3-logo-bold {
    font-weight: 700 !important;
    color: #1d1d1f !important;
    display: inline;
}

.v3-logo-light {
    font-weight: 400 !important;
    color: #86868b !important;
    display: inline;
}

.v3-logo:hover {
    opacity: 0.7;
}

.v3-nav {
    display: flex;
    align-items: center;
    gap: var(--v3-space-lg);
}

.v3-nav a {
    font-size: var(--v3-font-size-sm);
    font-weight: 400;
    color: var(--v3-black);
    transition: opacity var(--v3-transition-fast);
    text-decoration: none;
}

.v3-nav a:hover {
    color: var(--v3-black);
    opacity: 0.65;
}

/* Nav Dropdowns */
.v3-nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.v3-nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--v3-font);
    font-size: var(--v3-font-size-sm);
    font-weight: 400;
    color: var(--v3-black);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity var(--v3-transition-fast);
}

.v3-nav-dropdown-toggle:hover {
    opacity: 0.65;
}

.v3-nav-dropdown-toggle svg {
    transition: transform var(--v3-transition-fast);
}

.v3-nav-dropdown:hover .v3-nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.v3-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 520px;
    background: var(--v3-white);
    border: 1px solid var(--v3-gray-200);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    padding: var(--v3-space-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(-8px);
    z-index: 1000;
}

.v3-nav-dropdown:hover .v3-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.v3-nav-dropdown-menu--narrow {
    min-width: 220px;
    padding: var(--v3-space-sm);
}

.v3-nav-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--v3-space-xs);
}

.v3-nav-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: var(--v3-space-sm);
    padding: var(--v3-space-sm);
    border-radius: 12px;
    text-decoration: none;
    transition: background var(--v3-transition-fast);
}

.v3-nav-dropdown-item:hover {
    background: var(--v3-gray-100);
}

.v3-nav-dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
}

.v3-nav-dropdown-title {
    display: block;
    font-size: var(--v3-font-size-sm);
    font-weight: 600;
    color: var(--v3-black);
    margin-bottom: 2px;
}

.v3-nav-dropdown-desc {
    display: block;
    font-size: 12px;
    color: var(--v3-gray-600);
    line-height: 1.4;
}

.v3-nav-dropdown-item--simple {
    padding: var(--v3-space-xs) var(--v3-space-sm);
    font-size: var(--v3-font-size-sm);
    color: var(--v3-gray-700);
}

.v3-nav-dropdown-item--simple:hover {
    color: var(--v3-black);
}

/* Mobile nav sections */
.v3-mobile-nav-section {
    margin-bottom: var(--v3-space-md);
    padding-bottom: var(--v3-space-md);
    border-bottom: 1px solid var(--v3-gray-300);
}

.v3-mobile-nav-section:last-child {
    border-bottom: none;
}

.v3-mobile-nav-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--v3-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--v3-space-xs);
}

.v3-mobile-nav-section a {
    font-size: var(--v3-font-size-base);
    padding: var(--v3-space-xs) 0;
    border-bottom: none;
}

.v3-nav-cta {
    display: flex;
    align-items: center;
    gap: var(--v3-space-sm);
}

/* Mobile menu button */
.v3-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.v3-menu-btn span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--v3-black);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--v3-transition);
}

.v3-menu-btn span:nth-child(1) { top: 18px; }
.v3-menu-btn span:nth-child(2) { top: 24px; }

.v3-menu-btn.active span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.v3-menu-btn.active span:nth-child(2) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Mobile nav */
.v3-mobile-nav {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--v3-gray-100);
    padding: var(--v3-space-lg);
    overflow-y: auto;
}

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

.v3-mobile-nav a {
    display: block;
    padding: var(--v3-space-sm) 0;
    font-size: var(--v3-font-size-lg);
    color: var(--v3-black);
    border-bottom: 1px solid var(--v3-gray-300);
}

/* ========================================
   Buttons
======================================== */
.v3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: var(--v3-font-size-sm);
    font-weight: 400;
    border-radius: var(--v3-radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--v3-transition);
    text-decoration: none;
}

.v3-btn-primary {
    background: var(--v3-black);
    color: var(--v3-white);
}

.v3-btn-primary:hover {
    background: var(--v3-gray-900);
    color: var(--v3-white);
}

.v3-btn-secondary {
    background: var(--v3-black);
    color: var(--v3-white);
}

.v3-btn-secondary:hover {
    background: var(--v3-gray-900);
    color: var(--v3-white);
}

.v3-btn-outline {
    background: transparent;
    color: var(--v3-black);
    border: 1px solid var(--v3-black);
}

.v3-btn-outline:hover {
    background: var(--v3-black);
    color: var(--v3-white);
}

.v3-btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--v3-font-size-sm);
}

.v3-btn-ghost {
    background: transparent;
    color: var(--v3-black);
    padding: 0.5rem 0;
}

.v3-btn-ghost:hover {
    opacity: 0.7;
}

.v3-btn-ghost::after {
    content: ' ›';
    transition: transform var(--v3-transition-fast);
}

.v3-btn-ghost:hover::after {
    transform: translateX(3px);
}

.v3-btn-lg {
    padding: 1rem 2rem;
    font-size: var(--v3-font-size-base);
}

.v3-btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--v3-font-size-sm);
}

.v3-btn-white {
    background: var(--v3-white);
    color: var(--v3-black);
}

.v3-btn-white:hover {
    background: var(--v3-gray-100);
    color: var(--v3-black);
}

/* Button group */
.v3-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--v3-space-sm);
}

/* ========================================
   Hero Section
======================================== */
.v3-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 0;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    overflow: hidden;
}

.v3-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.025) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v3-hero::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v3-hero > .v3-container {
    position: relative;
    z-index: 1;
}

.v3-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.v3-hero .v3-h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--v3-space-lg);
}

/* Animated Strikeout */
.v3-strikeout {
    position: relative;
    display: inline-block;
    color: var(--v3-gray-500);
}

.v3-strikeout::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    right: -2px;
    height: 3px;
    background: var(--v3-black);
    transform: scaleX(0);
    transform-origin: left;
    animation: strikeoutAnim 2s ease-out 0.5s forwards;
}

@keyframes strikeoutAnim {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.v3-hero .v3-lead {
    font-size: 1.375rem;
    margin-bottom: var(--v3-space-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #6e6e73;
}

.v3-hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: var(--v3-space-xl);
    color: var(--v3-black);
    background: #e8e8ed;
    padding: 0.6em 1.2em;
    border-radius: var(--v3-radius-full);
}

.v3-hero-highlight {
    font-weight: 700;
    font-size: 1em;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.v3-hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--v3-black);
    transform-origin: left;
    animation: underlineSlide 3s ease-in-out infinite;
}

@keyframes underlineSlide {
    0%, 100% {
        transform: scaleX(0);
        transform-origin: left;
    }
    40%, 60% {
        transform: scaleX(1);
        transform-origin: left;
    }
    80% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

.v3-hero-tagline:hover .v3-hero-highlight {
    transform: none;
    box-shadow: none;
}

.v3-hero .v3-text {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #6e6e73;
}

.v3-hero .v3-btn-group {
    justify-content: center;
    margin-top: var(--v3-space-xl);
}

.v3-hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #86868b;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    z-index: 0;
    pointer-events: none;
}

.v3-hero-scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid #86868b;
    border-bottom: 2px solid #86868b;
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

/* ========================================
   Cards
======================================== */
.v3-card {
    background: var(--v3-white);
    border-radius: var(--v3-radius-lg);
    padding: var(--v3-space-xl);
    transition: transform var(--v3-transition), box-shadow var(--v3-transition);
}

.v3-bg-gray .v3-card {
    box-shadow: none;
}

.v3-card:hover {
    transform: translateY(-2px);
}

.v3-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--v3-space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--v3-black);
}

/* ========================================
   Problem Section (Two-Column Layout)
======================================== */
.v3-section-problems {
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f7 100%);
    padding: 60px 0;
    position: relative;
}

.v3-section-problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 60px,
        rgba(0,0,0,0.015) 60px,
        rgba(0,0,0,0.015) 61px
    );
    pointer-events: none;
}

.v3-section-problems > .v3-container {
    position: relative;
    z-index: 1;
}

/* Two-column layout */
.v3-problem-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

/* Left side - Title section */
.v3-problem-header-side {
    position: sticky;
    top: 120px;
}

.v3-problem-header-side .v3-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--v3-black);
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.v3-problem-header-side .v3-h2 {
    font-size: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.v3-problem-lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6e6e73;
    margin-bottom: 32px;
}

.v3-problem-accent {
    width: 48px;
    height: 4px;
    background: var(--v3-black);
    border-radius: 2px;
}

/* Right side - Cards grid */
.v3-problem-cards-side {
    /* Container for cards */
}

.v3-problem-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.v3-problem-card {
    background: var(--v3-white);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.v3-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Black and white icons */
.v3-problem-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--v3-gray-100);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.v3-problem-card:hover .v3-problem-icon {
    background: var(--v3-black);
}

.v3-problem-card:hover .v3-problem-icon svg {
    color: var(--v3-white);
}

.v3-problem-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
    color: var(--v3-black);
    transition: color 0.3s ease;
}

.v3-problem-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--v3-black);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.v3-problem-text {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #6e6e73;
}

.v3-problem-text a {
    color: var(--v3-black);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
}

.v3-problem-text a:hover {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .v3-problem-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .v3-problem-header-side {
        position: static;
        text-align: center;
    }
    
    .v3-problem-header-side .v3-h2 {
        font-size: 2rem;
    }
    
    .v3-problem-accent {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .v3-section-problems {
        padding: 48px 0;
    }
    
    .v3-problem-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .v3-problem-card {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .v3-section-problems {
        padding: 48px 0;
    }
    
    .v3-problem-grid {
        grid-template-columns: 1fr;
    }
    
    .v3-problem-card {
        padding: 24px 20px;
    }
}

/* ========================================
   Solution Section (Two-Column Layout)
======================================== */
.v3-section-solution {
    background: var(--v3-white);
    padding: 60px 0;
    position: relative;
}

/* Two-column layout - cards on left, title on right */
.v3-solution-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left side - Cards grid */
.v3-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.v3-solution-card {
    background: var(--v3-gray-100);
    border-radius: 14px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.v3-solution-card:hover {
    background: var(--v3-white);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.v3-solution-num {
    font-size: 0.8125rem;
    font-weight: 700;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', monospace;
    color: #86868b;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.v3-solution-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--v3-black);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.v3-solution-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #6e6e73;
    margin-bottom: 14px;
}

.v3-solution-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--v3-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s ease;
}

.v3-solution-link:hover {
    opacity: 0.6;
}

/* Right side - Title section */
.v3-solution-header-side {
    position: sticky;
    top: 120px;
}

.v3-solution-header-side .v3-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--v3-white);
    margin-bottom: 24px;
    display: inline-block;
    padding: 8px 16px;
    background: var(--v3-black);
    border-radius: 4px;
}

.v3-solution-header-side .v3-h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.v3-solution-lead {
    font-size: 1.1875rem;
    line-height: 1.6;
    color: #6e6e73;
    margin-bottom: 32px;
}

/* Stats row */
.v3-solution-stats {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.v3-solution-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v3-solution-stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--v3-black);
    letter-spacing: -0.02em;
    line-height: 1;
}

.v3-solution-stat-label {
    font-size: 0.8125rem;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
    .v3-solution-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .v3-solution-header-side {
        position: static;
        order: -1;
        text-align: center;
    }
    
    .v3-solution-header-side .v3-h2 {
        font-size: 2rem;
    }
    
    .v3-solution-stats {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .v3-section-solution {
        padding: 48px 0;
    }
    
    .v3-solution-grid {
        grid-template-columns: 1fr;
    }
    
    .v3-solution-card {
        padding: 20px;
    }
}

/* ========================================
   Capabilities Section (Two-Column Layout)
======================================== */
.v3-section-capabilities {
    background: var(--v3-white);
    padding: 60px 0;
}

.v3-capabilities-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

/* Left side - Title */
.v3-capabilities-header-side {
    position: sticky;
    top: 120px;
}

.v3-capabilities-header-side .v3-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--v3-black);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.v3-capabilities-header-side .v3-h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.v3-capabilities-lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6e6e73;
    margin-bottom: 32px;
}

.v3-capabilities-accent {
    width: 48px;
    height: 4px;
    background: var(--v3-black);
    border-radius: 2px;
}

/* Right side - Cards */
.v3-capabilities-cards-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v3-capability-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--v3-gray-100);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.v3-capability-card:hover {
    background: var(--v3-white);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.v3-capability-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--v3-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.v3-capability-card:hover .v3-capability-icon {
    background: var(--v3-black);
}

.v3-capability-icon svg {
    width: 22px;
    height: 22px;
    color: var(--v3-black);
    transition: color 0.3s ease;
}

.v3-capability-card:hover .v3-capability-icon svg {
    color: var(--v3-white);
}

.v3-capability-content {
    flex: 1;
}

.v3-capability-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--v3-black);
    margin-bottom: 6px;
}

.v3-capability-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #6e6e73;
}

.v3-capability-arrow {
    font-size: 1.25rem;
    color: #86868b;
    transition: transform 0.3s ease;
    align-self: center;
}

.v3-capability-card:hover .v3-capability-arrow {
    transform: translateX(4px);
    color: var(--v3-black);
}

@media (max-width: 1024px) {
    .v3-capabilities-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .v3-capabilities-header-side {
        position: static;
        text-align: center;
    }
    
    .v3-capabilities-accent {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .v3-section-capabilities {
        padding: 48px 0;
    }
    
    .v3-capability-card {
        padding: 16px 20px;
    }
}

/* ========================================
   Beyond Chatbots Section (Centered + Row Layout)
======================================== */
.v3-section-beyond {
    background: var(--v3-black);
    padding: 80px 0;
}

/* Centered Header */
.v3-beyond-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.v3-beyond-header .v3-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.v3-beyond-header .v3-h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--v3-white);
}

.v3-beyond-lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Feature Row */
.v3-beyond-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.v3-beyond-item {
    text-align: center;
    padding: 24px 16px;
}

.v3-beyond-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.v3-beyond-item:hover .v3-beyond-icon {
    background: var(--v3-white);
}

.v3-beyond-icon svg {
    color: var(--v3-white);
    transition: color 0.3s ease;
}

.v3-beyond-item:hover .v3-beyond-icon svg {
    color: var(--v3-black);
}

.v3-beyond-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--v3-white);
    margin-bottom: 8px;
}

.v3-beyond-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .v3-beyond-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .v3-beyond-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .v3-section-beyond {
        padding: 48px 0;
    }
    
    .v3-beyond-header .v3-h2 {
        font-size: 1.75rem;
    }
    
    .v3-beyond-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .v3-beyond-item {
        padding: 20px;
    }
}

/* ========================================
   Use Cases Section (Two-Column Layout)
======================================== */
.v3-section-usecases {
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f7 100%);
    padding: 60px 0;
    position: relative;
}

.v3-section-usecases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.v3-section-usecases > .v3-container {
    position: relative;
    z-index: 1;
}

.v3-usecases-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left side - Cards */
.v3-usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.v3-usecase-card {
    background: var(--v3-white);
    border-radius: 14px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.v3-usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.v3-usecase-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--v3-black);
    margin-bottom: 8px;
}

.v3-usecase-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6e6e73;
}

/* Right side - Title */
.v3-usecases-header-side {
    position: sticky;
    top: 120px;
}

.v3-usecases-header-side .v3-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--v3-white);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 14px;
    background: var(--v3-black);
    border-radius: 4px;
}

.v3-usecases-header-side .v3-h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.v3-usecases-lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6e6e73;
}

@media (max-width: 1024px) {
    .v3-usecases-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .v3-usecases-header-side {
        position: static;
        order: -1;
        text-align: center;
    }
    
    .v3-usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .v3-section-usecases {
        padding: 48px 0;
    }
    
    .v3-usecases-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Deploy Showcase Section
======================================== */
.v3-deploy-showcase {
    background: var(--v3-white);
    padding: 100px 0;
    overflow: hidden;
}

.v3-deploy-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.v3-deploy-header .v3-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--v3-white);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 14px;
    background: var(--v3-black);
    border-radius: 4px;
}

.v3-deploy-header .v3-h2 {
    font-size: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.v3-deploy-header .v3-text {
    font-size: 1.125rem;
    color: #6e6e73;
}

.v3-deploy-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.v3-deploy-option {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.v3-deploy-preview {
    background: #f5f5f7;
    border-radius: 16px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Chat Widget Preview */
.v3-deploy-widget-preview {
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
    border: 1px solid #e5e5e7;
}

.v3-deploy-widget-mock {
    width: 280px;
    height: 320px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.v3-deploy-widget-header {
    background: #22c55e;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v3-deploy-widget-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.v3-deploy-widget-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.v3-deploy-widget-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    overflow: hidden;
}

.v3-deploy-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.8125rem;
    line-height: 1.4;
}

.v3-deploy-msg-bot {
    background: #f0f0f2;
    color: #1d1d1f;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.v3-deploy-msg-user {
    background: #22c55e;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.v3-deploy-widget-input {
    border-top: 1px solid #e5e5e7;
    padding: 14px 16px;
    font-size: 0.8125rem;
    color: #86868b;
}

.v3-deploy-fab {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

/* URL Preview */
.v3-deploy-url-preview {
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
    border: 1px solid #e5e5e7;
}

.v3-deploy-browser-mock {
    width: 480px;
    height: 320px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e5e7;
    display: flex;
    flex-direction: column;
}

.v3-deploy-browser-chrome {
    background: #f5f5f7;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e5e7;
}

.v3-deploy-browser-dots {
    display: flex;
    gap: 6px;
}

.v3-deploy-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.v3-deploy-browser-dots span:first-child {
    background: #ff5f56;
}

.v3-deploy-browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.v3-deploy-browser-dots span:last-child {
    background: #27ca40;
}

.v3-deploy-browser-url {
    flex: 1;
    background: #fff;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.8125rem;
    color: #1d1d1f;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e5e5e7;
}

.v3-deploy-browser-url svg {
    color: #22c55e;
}

.v3-deploy-browser-body {
    padding: 16px;
    background: #fafafa;
    border-radius: 0 0 12px 12px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-deploy-fullpage-chat {
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.v3-deploy-fullpage-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 16px 10px;
    gap: 4px;
}

.v3-deploy-fullpage-logo {
    width: 40px;
    height: 40px;
    background: #22c55e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
}

.v3-deploy-fullpage-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1d1d1f;
}

.v3-deploy-fullpage-tagline {
    font-size: 0.8125rem;
    color: #6e6e73;
}

.v3-deploy-fullpage-header {
    background: #22c55e;
    color: #fff;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
}
    font-size: 0.875rem;
}

.v3-deploy-fullpage-msgs {
    padding: 8px 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v3-deploy-fullpage-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 16px 16px;
    padding: 10px 14px;
    background: #f5f5f7;
    border: 1px solid #e5e5e7;
    border-radius: 20px;
    font-size: 0.8125rem;
    color: #86868b;
}

.v3-deploy-fullpage-input svg {
    color: #22c55e;
}

/* Deploy Info */
.v3-deploy-info {
    text-align: center;
}

.v3-deploy-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.v3-deploy-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #6e6e73;
    margin-bottom: 16px;
}

.v3-deploy-code {
    display: inline-block;
    background: #f5f5f7;
    border: 1px solid #e5e5e7;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.8125rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    color: #1d1d1f;
}

@media (max-width: 900px) {
    .v3-deploy-options {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .v3-deploy-preview {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .v3-deploy-showcase {
        padding: 60px 0;
    }
    
    .v3-deploy-header .v3-h2 {
        font-size: 1.75rem;
    }
    
    .v3-deploy-widget-mock,
    .v3-deploy-browser-mock {
        width: 100%;
        max-width: 280px;
    }
}

/* ========================================
   How It Works Section (Two-Column Layout)
======================================== */
.v3-section-howitworks {
    background: #f5f5f7;
    padding: 60px 0;
}

.v3-howitworks-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

/* Left side - Title */
.v3-howitworks-header-side {
    position: sticky;
    top: 120px;
}

.v3-howitworks-header-side .v3-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--v3-black);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.v3-howitworks-header-side .v3-h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.v3-howitworks-lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6e6e73;
}

/* Right side - Steps */
.v3-howitworks-steps-side {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.v3-howitworks-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.v3-howitworks-step:last-child {
    border-bottom: none;
}

.v3-howitworks-num {
    font-size: 0.875rem;
    font-weight: 700;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', monospace;
    color: #86868b;
    min-width: 32px;
}

.v3-howitworks-content {
    flex: 1;
}

.v3-howitworks-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--v3-black);
    margin-bottom: 6px;
}

.v3-howitworks-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #6e6e73;
}

@media (max-width: 1024px) {
    .v3-howitworks-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .v3-howitworks-header-side {
        position: static;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .v3-section-howitworks {
        padding: 48px 0;
    }
}

/* ========================================
   Trust Section (Two-Column Layout)
======================================== */
.v3-section-trust {
    background: var(--v3-white);
    padding: 60px 0;
    position: relative;
}

.v3-section-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 60px,
        rgba(0,0,0,0.015) 60px,
        rgba(0,0,0,0.015) 61px
    );
    pointer-events: none;
}

.v3-section-trust > .v3-container {
    position: relative;
    z-index: 1;
}

.v3-trust-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left side - Cards */
.v3-trust-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.v3-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--v3-white);
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.v3-trust-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.v3-trust-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: var(--v3-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-trust-item-icon svg {
    width: 20px;
    height: 20px;
    color: var(--v3-black);
}

.v3-trust-item-content {
    flex: 1;
}

.v3-trust-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--v3-black);
    margin-bottom: 6px;
}

.v3-trust-item-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6e6e73;
}

/* Right side - Title */
.v3-trust-header-side {
    position: sticky;
    top: 120px;
}

.v3-trust-header-side .v3-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--v3-white);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 14px;
    background: var(--v3-black);
    border-radius: 4px;
}

.v3-trust-header-side .v3-h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.v3-trust-lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6e6e73;
}

@media (max-width: 1024px) {
    .v3-trust-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .v3-trust-header-side {
        position: static;
        order: -1;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .v3-section-trust {
        padding: 48px 0;
    }
    
    .v3-trust-grid-compact {
        grid-template-columns: 1fr;
    }
}

.v3-card .v3-h3 {
    margin-bottom: var(--v3-space-sm);
}

.v3-card .v3-text {
    margin-bottom: var(--v3-space-md);
}

/* Card with expand button (Apple style) */
.v3-card-expandable {
    position: relative;
    padding-bottom: calc(var(--v3-space-xl) + 36px);
}

.v3-card-expand {
    position: absolute;
    bottom: var(--v3-space-lg);
    right: var(--v3-space-lg);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--v3-black);
    color: var(--v3-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: background var(--v3-transition-fast);
}

.v3-card-expand:hover {
    background: var(--v3-gray-900);
}

/* ========================================
   Pricing Section (Two-Column Layout)
======================================== */
.v3-section-pricing {
    background: #f5f5f7;
    padding: 60px 0;
}

.v3-pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

/* Left side - Title */
.v3-pricing-header-side {
    position: sticky;
    top: 120px;
}

.v3-pricing-header-side .v3-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--v3-black);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.v3-pricing-header-side .v3-h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.v3-pricing-lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6e6e73;
}

/* Right side - Plan cards */
.v3-pricing-grid-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v3-pricing-item {
    padding: 24px 28px;
    background: var(--v3-gray-100);
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.v3-pricing-item:hover {
    background: var(--v3-white);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.v3-pricing-item-featured {
    background: var(--v3-black);
    border-color: var(--v3-black);
}

.v3-pricing-item-featured:hover {
    background: var(--v3-black);
    border-color: var(--v3-black);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.v3-pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    background: var(--v3-white);
    color: var(--v3-black);
    border-radius: 4px;
}

.v3-pricing-plan {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--v3-black);
    display: block;
    margin-bottom: 6px;
}

.v3-pricing-item-featured .v3-pricing-plan {
    color: var(--v3-white);
}

.v3-pricing-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #6e6e73;
}

.v3-pricing-item-featured .v3-pricing-desc {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .v3-pricing-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .v3-pricing-header-side {
        position: static;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .v3-section-pricing {
        padding: 48px 0;
    }
}

/* ========================================
   Grid Layouts
======================================== */
.v3-grid {
    display: grid;
    gap: var(--v3-space-lg);
}

.v3-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.v3-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.v3-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Feature cards horizontal scroll (Apple style) */
.v3-scroll-container {
    overflow-x: auto;
    margin: 0 calc(var(--v3-space-lg) * -1);
    padding: 0 var(--v3-space-lg);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.v3-scroll-container::-webkit-scrollbar {
    display: none;
}

.v3-scroll-grid {
    display: flex;
    gap: var(--v3-space-md);
    padding-bottom: var(--v3-space-sm);
}

.v3-scroll-grid .v3-card {
    flex: 0 0 320px;
    min-width: 280px;
}

/* Two column layout with text + card */
.v3-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--v3-space-3xl);
    align-items: center;
}

.v3-split-reverse {
    direction: rtl;
}

.v3-split-reverse > * {
    direction: ltr;
}

/* ========================================
   Section Headers
======================================== */
.v3-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--v3-space-xl);
}

.v3-section-header .v3-eyebrow {
    margin-bottom: var(--v3-space-sm);
}

.v3-section-header .v3-h2 {
    margin-bottom: var(--v3-space-md);
}

.v3-section-header-left {
    text-align: left;
    margin: 0 0 var(--v3-space-xl);
}

/* ========================================
   Steps / Process
======================================== */
.v3-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--v3-space-lg);
    counter-reset: step;
}

.v3-step {
    text-align: center;
    position: relative;
}

.v3-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--v3-black);
    color: var(--v3-white);
    font-size: var(--v3-font-size-lg);
    font-weight: 600;
    margin: 0 auto var(--v3-space-md);
}

.v3-step .v3-h4 {
    margin-bottom: var(--v3-space-xs);
}

/* ========================================
   Feature List / Bullets
======================================== */
.v3-list {
    list-style: none;
}

.v3-list li {
    position: relative;
    padding-left: var(--v3-space-lg);
    margin-bottom: var(--v3-space-sm);
    color: var(--v3-gray-700);
}

.v3-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--v3-black);
}

.v3-check-list li::before {
    content: '✓';
    width: auto;
    height: auto;
    background: none;
    color: var(--v3-green);
    font-weight: 600;
    top: 0;
}

/* ========================================
   Banner / CTA Section
======================================== */
.v3-banner {
    background: var(--v3-black);
    padding: var(--v3-space-4xl) 0;
    text-align: center;
}

.v3-banner .v3-h2 {
    color: var(--v3-white);
    margin-bottom: var(--v3-space-md);
}

.v3-banner .v3-lead {
    color: var(--v3-gray-300);
    margin-bottom: var(--v3-space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.v3-banner .v3-btn-group {
    justify-content: center;
}

/* Light banner variant */
.v3-banner-light {
    background: var(--v3-gray-100);
}

.v3-banner-light .v3-h2 {
    color: var(--v3-black);
}

.v3-banner-light .v3-lead {
    color: var(--v3-gray-700);
}

/* ========================================
   Comparison Table
======================================== */
.v3-comparison {
    overflow-x: auto;
}

.v3-comparison table {
    width: 100%;
    border-collapse: collapse;
}

.v3-comparison th,
.v3-comparison td {
    padding: var(--v3-space-md);
    text-align: left;
    border-bottom: 1px solid var(--v3-gray-300);
}

.v3-comparison th {
    font-weight: 600;
    background: var(--v3-gray-100);
}

.v3-comparison td:first-child {
    font-weight: 500;
}

/* ========================================
   Footer
======================================== */
.v3-footer {
    background: var(--v3-gray-100);
    padding: var(--v3-space-3xl) 0 var(--v3-space-xl);
    border-top: 1px solid var(--v3-gray-300);
}

.v3-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: var(--v3-space-xl);
    margin-bottom: var(--v3-space-3xl);
}

.v3-footer-brand .v3-logo {
    margin-bottom: var(--v3-space-sm);
    display: inline-block;
    text-decoration: none;
}

.v3-footer-brand .v3-text-sm {
    max-width: 280px;
}

.v3-footer-col h4 {
    font-size: var(--v3-font-size-sm);
    font-weight: 600;
    color: var(--v3-black);
    margin-bottom: var(--v3-space-md);
}

.v3-footer-col a {
    display: block;
    font-size: var(--v3-font-size-sm);
    color: var(--v3-gray-700);
    margin-bottom: var(--v3-space-xs);
    text-decoration: none;
}

.v3-footer-col a:hover {
    color: var(--v3-black);
}

.v3-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--v3-space-lg);
    border-top: 1px solid var(--v3-gray-300);
}

.v3-footer-bottom .v3-text-sm {
    margin: 0;
}

.v3-footer-links {
    display: flex;
    gap: var(--v3-space-lg);
}

.v3-footer-links a {
    font-size: var(--v3-font-size-sm);
    color: var(--v3-gray-700);
}

/* ========================================
   Page-specific: Features
======================================== */
.v3-feature-hero {
    padding-top: calc(52px + var(--v3-space-3xl));
    padding-bottom: var(--v3-space-3xl);
    background: var(--v3-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.v3-feature-hero-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.v3-feature-hero-full::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v3-feature-hero-full::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.v3-feature-hero-full .v3-container {
    position: relative;
    z-index: 1;
}

.v3-feature-hero-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.v3-feature-hero-center .v3-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--v3-white);
    margin-bottom: 28px;
    display: inline-block;
    padding: 10px 18px;
    background: var(--v3-black);
    border-radius: 100px;
}

.v3-feature-hero-center .v3-h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.v3-feature-hero-center .v3-lead {
    font-size: 1.375rem;
    color: #6e6e73;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.v3-hero-scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #86868b;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.v3-hero-scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid #86868b;
    border-bottom: 2px solid #86868b;
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}

.v3-feature-hero-content {
    max-width: 800px;
}

.v3-feature-hero-content .v3-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--v3-white);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 14px;
    background: var(--v3-black);
    border-radius: 4px;
}

.v3-feature-hero-content .v3-h1 {
    margin-bottom: 16px;
}

.v3-feature-hero-content .v3-lead {
    font-size: 1.25rem;
    color: #6e6e73;
    margin-bottom: 8px;
}

.v3-feature-content .v3-h3 {
    margin-top: var(--v3-space-xl);
    margin-bottom: var(--v3-space-sm);
}

.v3-feature-content .v3-text {
    margin-bottom: var(--v3-space-md);
}

/* Related features links */
.v3-related {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--v3-space-md);
}

.v3-related a {
    display: flex;
    align-items: center;
    gap: var(--v3-space-sm);
    padding: var(--v3-space-md);
    background: var(--v3-white);
    border-radius: var(--v3-radius);
    color: var(--v3-black);
    font-weight: 500;
    transition: background var(--v3-transition-fast);
}

.v3-related a:hover {
    background: var(--v3-gray-100);
    color: var(--v3-black);
}

.v3-related a::after {
    content: '→';
    margin-left: auto;
    color: var(--v3-black);
}

/* ========================================
   Industry/Use Case Tiles
======================================== */
.v3-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--v3-space-md);
}

.v3-tile {
    background: var(--v3-white);
    border-radius: var(--v3-radius-lg);
    padding: var(--v3-space-xl);
    text-decoration: none;
    transition: transform var(--v3-transition), box-shadow var(--v3-transition);
}

.v3-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--v3-shadow-lg);
}

.v3-tile .v3-h4 {
    margin-bottom: var(--v3-space-xs);
    color: var(--v3-black);
}

.v3-tile .v3-text {
    margin-bottom: var(--v3-space-md);
}

.v3-tile-link {
    color: var(--v3-black);
    font-size: var(--v3-font-size-sm);
    font-weight: 500;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .v3-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .v3-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .v3-split {
        grid-template-columns: 1fr;
        gap: var(--v3-space-xl);
    }
    
    .v3-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --v3-space-4xl: 4rem;
        --v3-space-3xl: 3rem;
    }
    
    .v3-nav {
        display: none;
    }
    
    .v3-menu-btn {
        display: flex;
    }
    
    .v3-grid-2,
    .v3-grid-3,
    .v3-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .v3-steps {
        grid-template-columns: 1fr;
    }
    
    .v3-tiles {
        grid-template-columns: 1fr;
    }
    
    .v3-related {
        grid-template-columns: 1fr;
    }
    
    .v3-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--v3-space-lg);
    }
    
    .v3-footer-bottom {
        flex-direction: column;
        gap: var(--v3-space-md);
        text-align: center;
    }
    
    .v3-hero {
        padding-top: calc(52px + var(--v3-space-xl));
    }
    
    .v3-btn-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .v3-btn-group .v3-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .v3-container {
        padding: 0 var(--v3-space-md);
    }
    
    .v3-card {
        padding: var(--v3-space-lg);
    }
}

/* ========================================
   Utility Classes
======================================== */
.v3-text-center { text-align: center; }
.v3-text-left { text-align: left; }
.v3-text-right { text-align: right; }

.v3-mt-0 { margin-top: 0; }
.v3-mt-sm { margin-top: var(--v3-space-sm); }
.v3-mt-md { margin-top: var(--v3-space-md); }
.v3-mt-lg { margin-top: var(--v3-space-lg); }
.v3-mt-xl { margin-top: var(--v3-space-xl); }

.v3-mb-0 { margin-bottom: 0; }
.v3-mb-sm { margin-bottom: var(--v3-space-sm); }
.v3-mb-md { margin-bottom: var(--v3-space-md); }
.v3-mb-lg { margin-bottom: var(--v3-space-lg); }
.v3-mb-xl { margin-bottom: var(--v3-space-xl); }

.v3-hidden { display: none; }
.v3-visible { display: block; }

/* Link styling */
.v3-link {
    color: var(--v3-black);
    text-decoration: underline;
}

.v3-link:hover {
    opacity: 0.7;
}

/* Main content wrapper */
.v3-main {
    min-height: 100vh;
}

/* ========================================
   Comparison Tables
======================================== */
.v3-comparison-table {
    width: 100%;
    border-radius: var(--v3-radius);
    overflow: hidden;
    background: var(--v3-white);
    box-shadow: var(--v3-shadow-sm);
}

.v3-comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--v3-gray-100);
}

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

.v3-comparison-row > div {
    padding: var(--v3-space-md) var(--v3-space-lg);
    font-size: var(--v3-font-size-sm);
}

.v3-comparison-row > div:first-child {
    font-weight: 600;
    color: var(--v3-black);
}

.v3-comparison-row > div:not(:first-child) {
    text-align: center;
    color: var(--v3-gray-700);
}

.v3-comparison-header {
    background: var(--v3-gray-100);
}

.v3-comparison-header > div {
    font-weight: 600;
    color: var(--v3-black);
}

.v3-pricing-comparison .v3-comparison-row {
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

/* ========================================
   Pricing Cards
======================================== */
.v3-pricing-grid {
    align-items: stretch;
}

.v3-pricing-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.v3-pricing-card .v3-btn {
    margin-top: auto;
}

.v3-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--v3-black);
    color: var(--v3-white);
    font-size: var(--v3-font-size-xs);
    font-weight: 600;
    padding: var(--v3-space-xs) var(--v3-space-md);
    border-radius: var(--v3-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.v3-pricing-badge-trial {
    background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3c 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25); }
    50% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); }
}

.v3-pricing-trial {
    border: 2px solid #1d1d1f;
}

.v3-feature-highlight {
    color: #1d1d1f !important;
    font-weight: 600 !important;
    position: relative;
}

.v3-feature-highlight::before {
    content: '\2713';
    color: #1d1d1f;
    font-weight: 700;
    margin-right: 6px;
}

.v3-pricing-featured {
    border: 2px solid var(--v3-black);
    transform: scale(1.02);
}

.v3-pricing-header {
    margin-bottom: var(--v3-space-lg);
}

.v3-pricing-description {
    font-size: var(--v3-font-size-sm);
    color: var(--v3-gray-700);
    margin-top: var(--v3-space-xs);
}

.v3-pricing-price {
    margin-bottom: var(--v3-space-lg);
}

.v3-price-amount {
    font-size: var(--v3-font-size-5xl);
    font-weight: 700;
    color: var(--v3-black);
    line-height: 1;
}

.v3-price-period {
    font-size: var(--v3-font-size-sm);
    color: var(--v3-gray-700);
}

.v3-pricing-annual {
    font-size: var(--v3-font-size-xs);
    color: var(--v3-gray-500);
    margin-top: 4px;
}

.v3-pricing-save {
    color: #22c55e;
    font-weight: 600;
}

.v3-pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--v3-space-xl);
    flex-grow: 1;
}

.v3-pricing-features li {
    padding: var(--v3-space-xs) 0;
    font-size: var(--v3-font-size-sm);
    color: var(--v3-gray-700);
    border-bottom: 1px solid var(--v3-gray-100);
}

.v3-pricing-features li:last-child {
    border-bottom: none;
}

/* ========================================
   Forms
======================================== */
.v3-form {
    display: flex;
    flex-direction: column;
    gap: var(--v3-space-md);
}

.v3-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--v3-space-xs);
}

.v3-label {
    font-size: var(--v3-font-size-sm);
    font-weight: 500;
    color: var(--v3-black);
}

.v3-input,
.v3-select,
.v3-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: var(--v3-font-size-base);
    font-family: var(--v3-font);
    color: var(--v3-black);
    background: var(--v3-white);
    border: 1px solid var(--v3-gray-300);
    border-radius: var(--v3-radius);
    transition: var(--v3-transition-fast);
}

.v3-input:focus,
.v3-select:focus,
.v3-textarea:focus {
    outline: none;
    border-color: var(--v3-black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

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

.v3-form-hint {
    font-size: var(--v3-font-size-xs);
    color: var(--v3-gray-500);
}

.v3-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--v3-space-sm);
    font-size: var(--v3-font-size-sm);
    color: var(--v3-gray-700);
    cursor: pointer;
}

.v3-checkbox input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* ========================================
   FAQ
======================================== */
.v3-faq {
    max-width: 800px;
    margin: 0 auto;
}

.v3-faq-item {
    padding: var(--v3-space-lg) 0;
    border-bottom: 1px solid var(--v3-gray-100);
}

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

.v3-faq-item h3 {
    margin-bottom: var(--v3-space-sm);
}

/* ========================================
   Signup Page
======================================== */
.v3-signup-hero {
    padding: calc(52px + var(--v3-space-3xl)) 0 var(--v3-space-3xl);
}

.v3-signup-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--v3-space-3xl);
    align-items: center;
}

.v3-signup-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--v3-space-md);
}

.v3-benefit-item {
    display: flex;
    align-items: center;
    gap: var(--v3-space-sm);
    font-size: var(--v3-font-size-lg);
    color: var(--v3-gray-700);
}

.v3-benefit-icon {
    color: var(--v3-green);
    font-weight: bold;
}

.v3-signup-form-container .v3-card {
    padding: var(--v3-space-2xl);
}

.v3-divider {
    display: flex;
    align-items: center;
    gap: var(--v3-space-md);
    color: var(--v3-gray-500);
    font-size: var(--v3-font-size-sm);
}

.v3-divider::before,
.v3-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--v3-gray-300);
}

.v3-social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--v3-space-md);
}

.v3-btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--v3-space-sm);
    padding: 12px 24px;
    background: var(--v3-white);
    border: 1px solid var(--v3-gray-300);
    border-radius: var(--v3-radius);
    color: var(--v3-black);
    font-weight: 500;
    text-decoration: none;
    transition: var(--v3-transition-fast);
}

.v3-btn-social:hover {
    background: var(--v3-gray-100);
}

/* ========================================
   Demo Page
======================================== */
.v3-demo-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--v3-space-2xl);
}

.v3-demo-widget {
    background: var(--v3-white);
    border-radius: var(--v3-radius-lg);
    padding: var(--v3-space-2xl);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--v3-shadow);
}

.v3-demo-placeholder {
    text-align: center;
    max-width: 400px;
}

.v3-demo-icon {
    font-size: 4rem;
    margin-bottom: var(--v3-space-lg);
}

.v3-demo-info {
    display: flex;
    flex-direction: column;
}

/* Full Demo Widget for Demo Page */
.v3-demo-widget-full {
    background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3c 100%);
    border-radius: 24px;
    padding: 24px;
    min-height: 520px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.v3-demo-widget-full .v3-demo-widget-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.v3-demo-widget-full .v3-demo-upload-zone {
    background: rgba(255, 255, 255, 0.08);
    border: 2px dashed rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.v3-demo-widget-full .v3-demo-upload-zone:hover,
.v3-demo-widget-full .v3-demo-upload-zone.dragover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
}

.v3-demo-widget-full .v3-demo-upload-zone.has-file {
    border-style: solid;
    border-color: rgba(74, 222, 128, 0.5);
    background: rgba(74, 222, 128, 0.1);
}

.v3-demo-widget-full .v3-demo-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.v3-demo-widget-full .v3-demo-upload-zone.has-file .v3-demo-upload-content {
    display: none;
}

.v3-demo-widget-full .v3-demo-upload-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-demo-widget-full .v3-demo-upload-icon svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.7);
}

.v3-demo-widget-full .v3-demo-upload-text {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.v3-demo-widget-full .v3-demo-upload-hint {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.v3-demo-widget-full .v3-demo-file-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.v3-demo-widget-full .v3-demo-file-icon {
    width: 44px;
    height: 44px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-demo-widget-full .v3-demo-file-icon svg {
    width: 24px;
    height: 24px;
    color: #4ade80;
}

.v3-demo-widget-full .v3-demo-file-name {
    flex: 1;
    font-size: 0.9375rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v3-demo-widget-full .v3-demo-file-remove {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.v3-demo-widget-full .v3-demo-file-remove:hover {
    background: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.v3-demo-chat-large {
    flex: 1;
    min-height: 320px;
}

.v3-demo-widget-full .v3-demo-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
}

.v3-demo-widget-full .v3-demo-chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 350px;
    scrollbar-width: thin;
    scrollbar-color: rgba(34, 197, 94, 0.4) rgba(0, 0, 0, 0.2);
}

.v3-demo-widget-full .v3-demo-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.v3-demo-widget-full .v3-demo-chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.v3-demo-widget-full .v3-demo-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(34, 197, 94, 0.4);
    border-radius: 3px;
}

.v3-demo-widget-full .v3-demo-chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 197, 94, 0.6);
}

.v3-demo-widget-full .v3-demo-chat-welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 14px;
    text-align: center;
    padding: 24px;
}

.v3-demo-widget-full .v3-demo-chat-welcome-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-demo-widget-full .v3-demo-chat-welcome-icon svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.7);
}

.v3-demo-widget-full .v3-demo-chat-welcome p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    max-width: 260px;
}

.v3-demo-widget-full .v3-demo-chat-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9375rem;
    line-height: 1.5;
    animation: messageSlide 0.3s ease;
}

.v3-demo-widget-full .v3-demo-chat-message.user {
    background: var(--v3-black);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.v3-demo-widget-full .v3-demo-chat-message.assistant {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.v3-demo-widget-full .v3-demo-chat-message.assistant .source-tag {
    display: inline-block;
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 10px;
}

.v3-demo-widget-full .v3-demo-chat-input-wrap {
    display: flex;
    gap: 10px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.v3-demo-widget-full .v3-demo-chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: #fff;
    outline: none;
    transition: all 0.2s ease;
}

.v3-demo-widget-full .v3-demo-chat-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.v3-demo-widget-full .v3-demo-chat-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.v3-demo-widget-full .v3-demo-chat-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.v3-demo-widget-full .v3-demo-chat-send {
    width: 46px;
    height: 46px;
    background: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.v3-demo-widget-full .v3-demo-chat-send svg {
    width: 20px;
    height: 20px;
    color: var(--v3-black);
}

.v3-demo-widget-full .v3-demo-chat-send:hover:not(:disabled) {
    transform: scale(1.05);
}

.v3-demo-widget-full .v3-demo-chat-send:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.v3-demo-widget-full .v3-demo-typing {
    display: flex;
    gap: 5px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.v3-demo-widget-full .v3-demo-typing span {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.v3-demo-widget-full .v3-demo-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.v3-demo-widget-full .v3-demo-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

/* ========================================
   Card Variants
======================================== */
.v3-card-soft {
    background: var(--v3-gray-100);
    box-shadow: none;
}

.v3-card-soft:hover {
    box-shadow: var(--v3-shadow);
}

.v3-card-highlight {
    border: 2px solid var(--v3-black);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent);
}

.v3-card-link {
    text-decoration: none;
    color: inherit;
    transition: var(--v3-transition);
}

.v3-card-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--v3-shadow-lg);
}

.v3-card-arrow {
    display: block;
    margin-top: var(--v3-space-md);
    color: var(--v3-black);
    font-size: var(--v3-font-size-xl);
    transition: var(--v3-transition-fast);
}

.v3-card-link:hover .v3-card-arrow {
    transform: translateX(4px);
}

/* ========================================
   Contact Info
======================================== */
.v3-contact-info {
    padding-top: var(--v3-space-lg);
    border-top: 1px solid var(--v3-gray-100);
}

/* ========================================
   Stats
======================================== */
.v3-stat {
    font-size: var(--v3-font-size-4xl);
    font-weight: 700;
    color: var(--v3-black);
    line-height: 1.2;
}

/* ========================================
   Responsive - Additional
======================================== */
@media (max-width: 768px) {
    .v3-comparison-row {
        grid-template-columns: 1fr;
    }
    
    .v3-comparison-row > div:first-child {
        background: var(--v3-gray-100);
    }
    
    .v3-comparison-row > div:not(:first-child) {
        text-align: left;
    }
    
    .v3-pricing-comparison .v3-comparison-row {
        grid-template-columns: 1fr;
    }
    
    .v3-signup-layout {
        grid-template-columns: 1fr;
        gap: var(--v3-space-xl);
    }
    
    .v3-demo-container {
        grid-template-columns: 1fr;
    }
    
    .v3-demo-widget-full {
        min-height: 460px;
        padding: 18px;
    }
    
    .v3-demo-widget-full .v3-demo-upload-zone {
        padding: 24px;
    }
    
    .v3-demo-chat-large {
        min-height: 280px;
    }
    
    .v3-pricing-featured {
        transform: none;
    }
    
    .v3-social-login {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Enhanced Section Styles
======================================== */

/* Feature Cards with Icons */
.v3-feature-card {
    background: var(--v3-white);
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.v3-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.v3-feature-card .v3-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: var(--v3-gray-100);
    transition: transform 0.3s ease;
}

.v3-feature-card:hover .v3-feature-icon {
    transform: scale(1.05);
}

.v3-feature-card .v3-feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--v3-black);
}

.v3-feature-card .v3-h4 {
    margin-bottom: 12px;
}

.v3-feature-card .v3-text {
    margin-bottom: 16px;
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* Numbered icon variants */
.v3-feature-icon-blue { background: #e0f2fe; }
.v3-feature-icon-blue svg { color: #0284c7; }

.v3-feature-icon-green { background: #dcfce7; }
.v3-feature-icon-green svg { color: #16a34a; }

.v3-feature-icon-purple { background: #f3e8ff; }
.v3-feature-icon-purple svg { color: #9333ea; }

.v3-feature-icon-amber { background: #fef3c7; }
.v3-feature-icon-amber svg { color: #d97706; }

.v3-feature-icon-rose { background: #ffe4e6; }
.v3-feature-icon-rose svg { color: #e11d48; }

.v3-feature-icon-cyan { background: #cffafe; }
.v3-feature-icon-cyan svg { color: #0891b2; }

/* Enhanced Steps Section */
.v3-steps-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
    position: relative;
}

.v3-steps-enhanced::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 72px;
    right: 72px;
    height: 2px;
    background: linear-gradient(90deg, var(--v3-gray-300) 0%, var(--v3-gray-300) 100%);
}

.v3-step-card {
    background: var(--v3-white);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.v3-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.v3-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--v3-black);
    color: var(--v3-white);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.v3-step-card .v3-h4 {
    margin-bottom: 8px;
}

.v3-step-card .v3-text {
    font-size: 0.9375rem;
    color: #6e6e73;
}

/* Use Cases / Tiles Enhanced */
.v3-tiles-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.v3-tile-enhanced {
    background: var(--v3-white);
    border-radius: 20px;
    padding: 24px 22px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 140px;
}

.v3-tile-enhanced:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.v3-tile-enhanced .v3-h4 {
    color: var(--v3-black);
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.v3-tile-enhanced .v3-text {
    color: #6e6e73;
    font-size: 0.9375rem;
    line-height: 1.55;
    flex-grow: 1;
}

.v3-tile-enhanced .v3-tile-arrow {
    color: var(--v3-black);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    transition: transform 0.2s ease;
}

.v3-tile-enhanced:hover .v3-tile-arrow {
    transform: translateX(4px);
}

/* Trust/Security Cards */
.v3-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.v3-trust-card {
    background: var(--v3-white);
    border-radius: 16px;
    padding: 22px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.v3-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.v3-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--v3-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.v3-trust-icon svg {
    width: 24px;
    height: 24px;
    color: var(--v3-black);
}

.v3-trust-card .v3-h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.v3-trust-card .v3-text {
    font-size: 0.875rem;
    line-height: 1.55;
}

/* Pricing Cards Enhanced */
.v3-pricing-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.v3-price-card {
    background: var(--v3-white);
    border-radius: 24px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.v3-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.v3-price-card-featured {
    border: 2px solid var(--v3-black);
    position: relative;
    transform: scale(1.02);
}

.v3-price-card-featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.v3-price-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--v3-black);
    color: var(--v3-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Demo Section Enhanced */
.v3-demo-section {
    background: linear-gradient(180deg, var(--v3-gray-100) 0%, #f0f0f2 100%);
    padding: 60px 0;
    position: relative;
}

.v3-demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.v3-demo-section > .v3-container {
    position: relative;
    z-index: 1;
}

.v3-demo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.v3-demo-content .v3-eyebrow {
    margin-bottom: 16px;
}

.v3-demo-content .v3-h2 {
    margin-bottom: 20px;
}

.v3-demo-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.v3-demo-step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.v3-demo-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--v3-black);
    color: var(--v3-white);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v3-demo-step span {
    font-size: 1rem;
    color: var(--v3-gray-700);
}

.v3-demo-preview {
    background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3c 100%);
    border-radius: 24px;
    min-height: 420px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    color: var(--v3-white);
    font-size: 1.125rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    padding: 20px;
    overflow: visible;
}

/* Interactive Demo Widget */
.v3-demo-widget-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

.v3-demo-upload-zone {
    background: rgba(255, 255, 255, 0.08);
    border: 2px dashed rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.v3-demo-upload-zone:hover,
.v3-demo-upload-zone.dragover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
}

.v3-demo-upload-zone.has-file {
    border-style: solid;
    border-color: rgba(74, 222, 128, 0.5);
    background: rgba(74, 222, 128, 0.1);
}

.v3-demo-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.v3-demo-upload-zone.has-file .v3-demo-upload-content {
    display: none;
}

.v3-demo-upload-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-demo-upload-icon svg {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.7);
}

.v3-demo-upload-text {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--v3-white);
    margin: 0;
}

.v3-demo-upload-hint {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.5);
}

.v3-demo-file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
}

.v3-demo-file-icon {
    width: 40px;
    height: 40px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-demo-file-icon svg {
    width: 22px;
    height: 22px;
    color: #4ade80;
}

.v3-demo-file-name {
    flex: 1;
    font-size: 0.875rem;
    color: var(--v3-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v3-demo-file-remove {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.v3-demo-file-remove:hover {
    background: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Demo Chat Area */
.v3-demo-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
    max-height: 280px;
}

.v3-demo-chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 200px;
    scrollbar-width: thin;
    scrollbar-color: rgba(34, 197, 94, 0.4) rgba(0, 0, 0, 0.2);
}

.v3-demo-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.v3-demo-chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.v3-demo-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(34, 197, 94, 0.4);
    border-radius: 3px;
}

.v3-demo-chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 197, 94, 0.6);
}

.v3-demo-chat-welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 12px;
    text-align: center;
    padding: 20px;
}

.v3-demo-chat-welcome-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-demo-chat-welcome-icon svg {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.7);
}

.v3-demo-chat-welcome p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    max-width: 200px;
}

.v3-demo-chat-message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.875rem;
    line-height: 1.5;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.v3-demo-chat-message.user {
    background: var(--v3-black);
    color: var(--v3-white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.v3-demo-chat-message.assistant {
    background: rgba(255, 255, 255, 0.1);
    color: var(--v3-white);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.v3-demo-chat-message.assistant .source-tag {
    display: inline-block;
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    font-size: 0.688rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 8px;
}

.v3-demo-chat-input-wrap {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.v3-demo-chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.875rem;
    color: var(--v3-white);
    outline: none;
    transition: all 0.2s ease;
}

.v3-demo-chat-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.v3-demo-chat-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.v3-demo-chat-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.v3-demo-chat-send {
    width: 42px;
    height: 42px;
    background: var(--v3-white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.v3-demo-chat-send svg {
    width: 18px;
    height: 18px;
    color: var(--v3-black);
}

.v3-demo-chat-send:hover:not(:disabled) {
    transform: scale(1.05);
}

.v3-demo-chat-send:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.v3-demo-typing {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.v3-demo-typing span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.v3-demo-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.v3-demo-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-4px);
    }
}

/* ========================================
   Dashboard Showcase Section
======================================== */
.v3-dashboard-showcase {
    background: #f5f5f7;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.v3-dashboard-showcase::before {
    display: none;
}

/* Floating background shapes */
.v3-dash-bg-shapes {
    display: none;
}

.v3-dash-shape {
    display: none;
}

.v3-dash-shape-1,
.v3-dash-shape-2,
.v3-dash-shape-3 {
    display: none;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.v3-dashboard-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 2;
}

.v3-dashboard-header .v3-eyebrow {
    margin-bottom: 12px;
    color: var(--v3-black);
    background: rgba(0, 0, 0, 0.05);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
}

.v3-dashboard-header .v3-h2 {
    margin-bottom: 16px;
    color: var(--v3-black);
}

.v3-dashboard-header .v3-text {
    color: #6e6e73;
}

.v3-dashboard-mockup {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.06),
        0 20px 50px -10px rgba(0, 0, 0, 0.1),
        0 40px 80px -20px rgba(0, 0, 0, 0.08);
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Window Chrome - macOS style */
.v3-dash-chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.v3-dash-chrome-dots {
    display: flex;
    gap: 8px;
}

.v3-dash-chrome-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.v3-dash-chrome-dots span:nth-child(1) {
    background: linear-gradient(135deg, #ff5f56 0%, #ff3b30 100%);
    box-shadow: inset 0 -1px 2px rgba(0,0,0,0.2);
}

.v3-dash-chrome-dots span:nth-child(2) {
    background: linear-gradient(135deg, #ffbd2e 0%, #ff9500 100%);
    box-shadow: inset 0 -1px 2px rgba(0,0,0,0.2);
}

.v3-dash-chrome-dots span:nth-child(3) {
    background: linear-gradient(135deg, #27c93f 0%, #28cd41 100%);
    box-shadow: inset 0 -1px 2px rgba(0,0,0,0.2);
}

.v3-dash-chrome-title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #86868b;
    letter-spacing: -0.01em;
}

.v3-dash-chrome-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.v3-dash-live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

.v3-dash-live-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Dashboard content area */
.v3-dash-metrics,
.v3-dash-cards,
.v3-dash-bottom {
    padding: 0 24px;
}

.v3-dash-metrics {
    padding-top: 24px;
}

.v3-dash-bottom {
    padding-bottom: 24px;
}

/* Animation for dashboard elements */
.v3-dash-animate {
    opacity: 0;
    transform: translateY(20px);
    animation: dashPopIn 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
}

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

/* Subtle floating animation */
@keyframes dashFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Top Metrics Row */
.v3-dash-metrics {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.v3-dash-metric {
    background: linear-gradient(145deg, #ffffff 0%, #f8f8fa 100%);
    border-radius: 16px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.v3-dash-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.v3-dash-metric:hover::before {
    opacity: 1;
}

.v3-dash-metric:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Glow effect for metrics */
.v3-dash-metric-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    top: -20px;
    right: -20px;
}

.v3-dash-metric:hover .v3-dash-metric-glow {
    opacity: 0.5;
}

.v3-dash-glow-green {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.4) 0%, transparent 70%);
}

.v3-dash-glow-blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
}

.v3-dash-metric-featured {
    background: linear-gradient(145deg, #e8f4fc 0%, #dbeafe 100%);
    border-color: rgba(59, 130, 246, 0.15);
}

.v3-dash-metric-highlight {
    background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: rgba(16, 185, 129, 0.15);
}

.v3-dash-metric-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.v3-dash-metric-label {
    font-size: 0.6875rem;
    color: #6e6e73;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.v3-dash-metric-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.v3-dash-metric:hover .v3-dash-metric-icon {
    transform: scale(1.1) rotate(5deg);
}

.v3-dash-metric-icon svg {
    width: 18px;
    height: 18px;
}

.v3-dash-metric-icon-blue {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}

.v3-dash-metric-icon-green {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.v3-dash-metric-icon-amber {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.v3-dash-metric-icon-yellow {
    background: rgba(245, 158, 11, 0.12);
    color: #ca8a04;
}

.v3-dash-metric-value {
    display: block;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--v3-black);
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v3-dash-metric-value-lg {
    font-size: 2rem;
}

.v3-dash-metric-value small {
    font-size: 0.6em;
    font-weight: 500;
    opacity: 0.6;
    -webkit-text-fill-color: #6e6e73;
}

.v3-dash-metric-star,
.v3-dash-metric-speed {
    display: flex;
    align-items: baseline;
}

.v3-dash-metric-trend {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.v3-dash-trend-arrow {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.v3-dash-metric:hover .v3-dash-trend-arrow {
    transform: translateX(2px) translateY(-2px);
}

.v3-dash-trend-up {
    color: #16a34a;
}

.v3-dash-trend-down {
    color: #16a34a;
}

/* Main Cards Row */
.v3-dash-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.v3-dash-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.v3-dash-card-glass {
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
}

.v3-dash-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}

.v3-dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.v3-dash-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--v3-black);
    margin: 0;
    letter-spacing: -0.01em;
}

.v3-dash-card-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--v3-black);
    text-decoration: none;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.v3-dash-card:hover .v3-dash-card-link {
    opacity: 1;
    transform: translateX(0);
}

.v3-dash-card-link:hover {
    text-decoration: underline;
}

.v3-dash-card-subtitle {
    font-size: 0.75rem;
    color: #86868b;
    margin-bottom: 16px;
    display: block;
}

/* Hot card special styling */
.v3-dash-card-hot {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

.v3-dash-card-hot:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Questions List */
.v3-dash-questions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.v3-dash-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.v3-dash-question:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: translateX(4px);
}

.v3-dash-q-num {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v3-dash-q-text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--v3-gray-700);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.v3-dash-q-count {
    font-size: 0.875rem;
    font-weight: 700;
    color: #667eea;
    flex-shrink: 0;
    background: rgba(102, 126, 234, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

/* Division Performance */
.v3-dash-divisions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.v3-dash-div-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 8px;
    font-size: 0.625rem;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.v3-dash-div-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 8px;
    align-items: center;
    font-size: 0.8125rem;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.v3-dash-div-row:hover {
    background: rgba(0, 0, 0, 0.03);
}

.v3-dash-div-name {
    font-weight: 600;
    color: var(--v3-black);
}

.v3-dash-div-rate {
    color: #16a34a;
    font-weight: 700;
}

.v3-dash-div-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v3-dash-bar {
    height: 8px;
    width: 50px;
    background: linear-gradient(90deg, #e5e5e5, #efefef);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.v3-dash-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--w, 50%);
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    animation: barGrow 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--delay, 0s) + 0.5s);
}

@keyframes barGrow {
    from {
        width: 0;
    }
    to {
        width: var(--w, 50%);
    }
}

/* Hot Topics */
.v3-dash-topics {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v3-dash-topic {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.v3-dash-topic:hover {
    background: rgba(0, 0, 0, 0.03);
    transform: translateX(4px);
}

.v3-dash-topic-badge {
    font-size: 0.625rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    min-width: 60px;
    text-align: center;
}

.v3-dash-positive {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.v3-dash-neutral {
    background: rgba(107, 114, 128, 0.1);
    color: #4b5563;
}

.v3-dash-negative {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.v3-dash-topic-name {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--v3-black);
}

.v3-dash-topic-stats {
    font-size: 0.813rem;
    color: var(--v3-gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

.v3-dash-topic-stats .v3-dash-trend-up,
.v3-dash-topic-stats .v3-dash-trend-down {
    font-size: 0.75rem;
}

/* Bottom Row */
.v3-dash-bottom {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
}

.v3-dash-card-wide {
    min-width: 0;
}

/* Sentiment */
.v3-dash-sentiment {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v3-dash-sentiment-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v3-dash-sentiment-label {
    width: 70px;
    font-size: 0.813rem;
    color: var(--v3-gray-600);
}

.v3-dash-sentiment-bar {
    flex: 1;
    height: 12px;
    background: linear-gradient(90deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.06) 100%);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
}

.v3-dash-sentiment-fill {
    height: 100%;
    border-radius: 6px;
    width: 0;
    animation: sentimentGrow 1.2s ease forwards;
    animation-delay: 0.8s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: relative;
}

.v3-dash-sentiment-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 6px 6px 0 0;
}

@keyframes sentimentGrow {
    to {
        width: var(--w, 0%);
    }
}

.v3-dash-sentiment-positive {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.v3-dash-sentiment-neutral {
    background: linear-gradient(90deg, #6b7280 0%, #4b5563 100%);
}

.v3-dash-sentiment-negative {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.v3-dash-sentiment-pct {
    width: 40px;
    text-align: right;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--v3-gray-600);
}

/* Escalations */
.v3-dash-escalations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.v3-dash-esc-item {
    text-align: center;
    padding: 18px 12px;
    border-radius: 14px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.v3-dash-esc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.v3-dash-esc-item:hover::before {
    opacity: 1;
}

.v3-dash-esc-item:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.v3-dash-esc-open {
    background: linear-gradient(145deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.v3-dash-esc-progress {
    background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.v3-dash-esc-closed {
    background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.v3-dash-esc-icon {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.v3-dash-esc-open .v3-dash-esc-icon { color: #ef4444; }
.v3-dash-esc-progress .v3-dash-esc-icon { color: #f59e0b; }
.v3-dash-esc-closed .v3-dash-esc-icon { color: #22c55e; }

.v3-dash-esc-num {
    display: block;
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--v3-black);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.v3-dash-esc-label {
    display: block;
    font-size: 0.688rem;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 2px;
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
    .v3-dash-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .v3-dash-cards {
        grid-template-columns: 1fr;
    }
    
    .v3-dash-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .v3-dashboard-showcase {
        padding: 60px 0;
    }
    
    .v3-dashboard-mockup {
        padding: 16px;
        border-radius: 16px;
    }
    
    .v3-dash-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .v3-dash-metric {
        padding: 12px;
    }
    
    .v3-dash-metric-value {
        font-size: 1.375rem;
    }
    
    .v3-dash-div-header,
    .v3-dash-div-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .v3-dash-div-header span:nth-child(3),
    .v3-dash-div-header span:nth-child(4),
    .v3-dash-div-row span:nth-child(3),
    .v3-dash-div-row .v3-dash-div-time {
        display: none;
    }
    
    .v3-dash-escalations {
        gap: 8px;
    }
    
    .v3-dash-esc-item {
        padding: 12px 8px;
    }
    
    .v3-dash-esc-num {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .v3-dash-metrics {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   NEW DASHBOARD REDESIGN STYLES
   ============================================ */

/* 4-Column KPI Grid */
.v3-dash-metrics-4 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

/* Primary KPI - Resolution Rate */
.v3-dash-metric-primary {
    background: var(--v3-black);
    color: white;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.v3-dash-metric-primary .v3-dash-metric-label {
    color: rgba(255, 255, 255, 0.7);
}

.v3-dash-metric-primary .v3-dash-metric-value {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.v3-dash-metric-value-xl {
    font-size: 2.5rem !important;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.v3-dash-metric-primary .v3-dash-metric-trend {
    color: #22c55e;
}

.v3-dash-metric-icon-brand {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Secondary KPIs - Neutral Gray */
.v3-dash-metric-secondary {
    background: #f5f5f7;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.v3-dash-metric-icon-neutral {
    background: rgba(0, 0, 0, 0.06);
    color: #6e6e73;
}

.v3-dash-trend-subtle {
    color: #86868b;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.v3-dash-metric-secondary:hover .v3-dash-trend-subtle {
    opacity: 1;
}

/* 2-Column Main Layout */
.v3-dash-main-grid {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 20px;
    padding: 0 24px 24px;
}

.v3-dash-col-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v3-dash-col-right {
    display: flex;
    flex-direction: column;
}

/* Division Performance List */
.v3-dash-perf-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.v3-dash-perf-item {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #fafafa;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.v3-dash-perf-item:hover {
    background: #f0f0f2;
}

.v3-dash-perf-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.v3-dash-perf-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--v3-black);
}

.v3-dash-perf-response {
    font-size: 0.75rem;
    color: #86868b;
}

.v3-dash-perf-bar-wrap {
    height: 8px;
    background: #e5e5e7;
    border-radius: 4px;
    overflow: hidden;
}

.v3-dash-perf-bar {
    height: 100%;
    width: var(--w, 0%);
    background: var(--v3-black);
    border-radius: 4px;
    transition: width 1s ease;
}

.v3-dash-perf-bar-warn {
    background: #f59e0b;
}

.v3-dash-perf-rate {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--v3-black);
    min-width: 50px;
    text-align: right;
}

.v3-dash-perf-rate-warn {
    color: #f59e0b;
}

/* Escalations Strip */
.v3-dash-esc-strip {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.v3-dash-esc-segment {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 16px;
    transition: all 0.3s ease;
}

.v3-dash-esc-segment:hover {
    transform: scale(1.02);
}

.v3-dash-esc-red {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-right: 1px solid rgba(239, 68, 68, 0.15);
}

.v3-dash-esc-amber {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-right: 1px solid rgba(245, 158, 11, 0.15);
}

.v3-dash-esc-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.v3-dash-esc-count {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.v3-dash-esc-red .v3-dash-esc-count { color: #dc2626; }
.v3-dash-esc-amber .v3-dash-esc-count { color: #d97706; }
.v3-dash-esc-green .v3-dash-esc-count { color: #16a34a; }

.v3-dash-esc-text {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.v3-dash-esc-red .v3-dash-esc-text { color: #ef4444; }
.v3-dash-esc-amber .v3-dash-esc-text { color: #f59e0b; }
.v3-dash-esc-green .v3-dash-esc-text { color: #22c55e; }

/* Customer Pulse Card */
.v3-dash-pulse-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.v3-dash-pulse-tabs {
    display: flex;
    gap: 4px;
    background: #f5f5f7;
    border-radius: 10px;
    padding: 4px;
    margin: 16px 0;
}

.v3-dash-tab {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6e6e73;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.v3-dash-tab:hover {
    color: var(--v3-black);
}

.v3-dash-tab-active {
    background: white;
    color: var(--v3-black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.v3-dash-tab-content {
    display: none;
}

.v3-dash-tab-content.active {
    display: block;
}

/* Sentiment Compact */
.v3-dash-sentiment-compact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.v3-dash-sent-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v3-dash-sent-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.v3-dash-sent-positive { background: #22c55e; }
.v3-dash-sent-neutral { background: #6b7280; }
.v3-dash-sent-negative { background: #f59e0b; }

.v3-dash-sent-label {
    width: 60px;
    font-size: 0.8125rem;
    color: #6e6e73;
}

.v3-dash-sent-bar-wrap {
    flex: 1;
    height: 8px;
    background: #e5e5e7;
    border-radius: 4px;
    overflow: hidden;
}

.v3-dash-sent-bar {
    height: 100%;
    width: var(--w, 0%);
    border-radius: 4px;
    transition: width 1s ease;
}

.v3-dash-sent-bar-pos { background: #22c55e; }
.v3-dash-sent-bar-neu { background: #6b7280; }
.v3-dash-sent-bar-neg { background: #f59e0b; }

.v3-dash-sent-pct {
    width: 36px;
    text-align: right;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--v3-black);
}

/* Hot Topics Compact */
.v3-dash-topics-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v3-dash-topic-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #fafafa;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.v3-dash-topic-row:hover {
    background: #f0f0f2;
}

.v3-dash-topic-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.v3-dash-topic-pos { background: #22c55e; }
.v3-dash-topic-neu { background: #6b7280; }
.v3-dash-topic-neg { background: #ef4444; }

.v3-dash-topic-text {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--v3-black);
}

.v3-dash-topic-count {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6e6e73;
}

/* Responsive for new dashboard */
@media (max-width: 1024px) {
    .v3-dash-metrics-4 {
        grid-template-columns: 1fr 1fr;
    }
    
    .v3-dash-main-grid {
        grid-template-columns: 1fr;
    }
    
    .v3-dash-esc-strip {
        flex-wrap: wrap;
    }
    
    .v3-dash-esc-segment {
        min-width: 33%;
    }
}

@media (max-width: 768px) {
    .v3-dash-metrics-4 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .v3-dash-metric-primary {
        padding: 20px;
    }
    
    .v3-dash-metric-value-xl {
        font-size: 2rem !important;
    }
    
    .v3-dash-main-grid {
        padding: 0 16px 16px;
    }
    
    .v3-dash-perf-item {
        grid-template-columns: 1fr auto;
    }
    
    .v3-dash-perf-bar-wrap {
        display: none;
    }
    
    .v3-dash-esc-segment {
        padding: 16px 12px;
        gap: 8px;
    }
    
    .v3-dash-esc-count {
        font-size: 1.5rem;
    }
}

/* ============================================
   NARRATIVE DASHBOARD STYLES
   ============================================ */

/* Shortcuts Button in Chrome */
.v3-dash-shortcuts-btn {
    background: var(--v3-black);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    margin-left: 12px;
    transition: all 0.2s ease;
}

.v3-dash-shortcuts-btn:hover {
    background: #3a3a3c;
    transform: scale(1.02);
}

/* Shortcut Bar */
.v3-dash-shortcut-bar {
    display: flex;
    gap: 10px;
    padding: 14px 24px;
    background: #fafafa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.v3-dash-shortcut {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--v3-black);
    cursor: pointer;
    transition: all 0.2s ease;
}

.v3-dash-shortcut:hover {
    background: var(--v3-black);
    color: white;
    border-color: var(--v3-black);
}

.v3-dash-shortcut span {
    font-size: 0.875rem;
}

/* System Health Strip */
.v3-dash-health-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.v3-dash-health-healthy {
    background: linear-gradient(90deg, #f0fdf4 0%, #dcfce7 100%);
}

.v3-dash-health-atrisk {
    background: linear-gradient(90deg, #fffbeb 0%, #fef3c7 100%);
}

.v3-dash-health-critical {
    background: linear-gradient(90deg, #fef2f2 0%, #fee2e2 100%);
}

.v3-dash-health-indicator {
    display: flex;
    align-items: center;
    gap: 14px;
}

.v3-dash-health-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: healthPulse 2s ease-in-out infinite;
}

.v3-dash-health-healthy .v3-dash-health-dot { background: #22c55e; }
.v3-dash-health-atrisk .v3-dash-health-dot { background: #f59e0b; }
.v3-dash-health-critical .v3-dash-health-dot { background: #ef4444; }

@keyframes healthPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.v3-dash-health-status {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.v3-dash-health-state {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.v3-dash-health-healthy .v3-dash-health-state { color: #16a34a; }
.v3-dash-health-atrisk .v3-dash-health-state { color: #d97706; }
.v3-dash-health-critical .v3-dash-health-state { color: #dc2626; }

.v3-dash-health-reason {
    font-size: 0.8125rem;
    color: #6e6e73;
}

.v3-dash-health-metrics {
    display: flex;
    gap: 28px;
}

.v3-dash-health-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.v3-dash-health-metric-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--v3-black);
}

.v3-dash-health-metric-label {
    font-size: 0.6875rem;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Resolution Risk List */
.v3-dash-card-insight {
    font-size: 0.8125rem;
    color: #6e6e73;
    margin: 0 0 16px;
    font-style: italic;
}

.v3-dash-risk-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v3-dash-risk-item {
    display: grid;
    grid-template-columns: 28px 1fr 2fr;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.v3-dash-risk-critical {
    background: linear-gradient(90deg, #fef2f2 0%, #fff 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.v3-dash-risk-healthy {
    background: #fafafa;
    opacity: 0.7;
}

.v3-dash-risk-healthy:hover {
    opacity: 1;
    background: #f5f5f7;
}

.v3-dash-risk-indicator {
    font-size: 1rem;
    text-align: center;
}

.v3-dash-risk-critical .v3-dash-risk-indicator {
    color: #ef4444;
}

.v3-dash-risk-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.v3-dash-risk-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--v3-black);
}

.v3-dash-risk-critical .v3-dash-risk-name {
    color: #dc2626;
}

.v3-dash-risk-detail {
    font-size: 0.75rem;
    color: #86868b;
}

.v3-dash-risk-critical .v3-dash-risk-detail {
    color: #ef4444;
}

.v3-dash-risk-bar-wrap {
    height: 10px;
    background: #e5e5e7;
    border-radius: 5px;
    overflow: hidden;
}

.v3-dash-risk-bar {
    height: 100%;
    width: var(--w, 0%);
    background: var(--v3-black);
    border-radius: 5px;
    transition: width 1s ease;
}

.v3-dash-risk-bar-critical {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

/* Active Escalations Row */
.v3-dash-esc-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.v3-dash-esc-item-new {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.v3-dash-esc-open-new {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.v3-dash-esc-progress-new {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.v3-dash-esc-resolved-new {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.v3-dash-esc-icon-new {
    font-size: 1.25rem;
}

.v3-dash-esc-num-new {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.v3-dash-esc-open-new .v3-dash-esc-num-new { color: #dc2626; }
.v3-dash-esc-progress-new .v3-dash-esc-num-new { color: #d97706; }
.v3-dash-esc-resolved-new .v3-dash-esc-num-new { color: #16a34a; }

.v3-dash-esc-label-new {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.v3-dash-esc-open-new .v3-dash-esc-label-new { color: #ef4444; }
.v3-dash-esc-progress-new .v3-dash-esc-label-new { color: #f59e0b; }
.v3-dash-esc-resolved-new .v3-dash-esc-label-new { color: #22c55e; }

.v3-dash-esc-insight {
    font-size: 0.75rem;
    color: #dc2626;
    font-style: italic;
    margin: 0;
    padding: 8px 12px;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 6px;
}

/* Sentiment Insight */
.v3-dash-sent-insight {
    font-size: 0.8125rem;
    color: #6e6e73;
    margin: 14px 0 0;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.v3-dash-sent-insight strong {
    color: #dc2626;
}

/* Hot Topics Redesigned */
.v3-dash-topic-row {
    display: grid;
    grid-template-columns: 24px 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #fafafa;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.v3-dash-topic-critical {
    background: #fef2f2;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.v3-dash-topic-indicator {
    font-size: 0.875rem;
    text-align: center;
}

.v3-dash-topic-sentiment {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #86868b;
}

.v3-dash-topic-trend {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6e6e73;
}

.v3-dash-topic-trend-up {
    color: #16a34a;
}

.v3-dash-topic-trend-down {
    color: #dc2626;
}

/* Responsive for Narrative Dashboard */
@media (max-width: 1024px) {
    .v3-dash-shortcut-bar {
        flex-wrap: wrap;
    }
    
    .v3-dash-health-strip {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .v3-dash-health-indicator {
        flex-direction: column;
    }
    
    .v3-dash-health-metrics {
        justify-content: center;
    }
    
    .v3-dash-risk-item {
        grid-template-columns: 28px 1fr;
    }
    
    .v3-dash-risk-bar-wrap {
        display: none;
    }
    
    .v3-dash-esc-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .v3-dash-shortcut-bar {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .v3-dash-shortcut {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .v3-dash-health-metrics {
        gap: 16px;
    }
    
    .v3-dash-health-metric-value {
        font-size: 1rem;
    }
}

/* ============================================
   STRICT DASHBOARD DESIGN (Final)
   ============================================ */

/* Strict Dashboard Mockup */
.v3-dash-strict {
    background: #fff;
    border: 1px solid #e5e5e7;
}

/* Chrome Bar - Strict */
.v3-dash-chrome-strict {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #fafafa;
    border-bottom: 1px solid #e5e5e7;
}

.v3-dash-chrome-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v3-dash-live-indicator {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #16a34a;
    letter-spacing: 0.02em;
}

.v3-dash-global-actions {
    display: flex;
    gap: 6px;
}

.v3-dash-action-btn {
    padding: 6px 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1d1d1f;
    background: #fff;
    border: 1px solid #d1d1d6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.v3-dash-action-btn:hover {
    background: #f5f5f7;
    border-color: #1d1d1f;
}

.v3-dash-action-primary {
    background: #1d1d1f;
    color: #fff;
    border-color: #1d1d1f;
}

.v3-dash-action-primary:hover {
    background: #3a3a3c;
}

/* Welcome Bar */
.v3-dash-welcome-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    border-bottom: 1px solid #e5e5e7;
}

.v3-dash-welcome-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v3-dash-welcome-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
    letter-spacing: -0.02em;
}

.v3-dash-welcome-sub {
    font-size: 0.875rem;
    color: #6e6e73;
    margin: 0;
}

.v3-dash-welcome-actions {
    display: flex;
    gap: 8px;
}

/* Dashboard Layout with Sidebar */
.v3-dash-layout {
    display: flex;
    min-height: 480px;
}

/* Sidebar Navigation */
.v3-dash-sidebar {
    width: 200px;
    background: #fafafa;
    border-right: 1px solid #e5e5e7;
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    flex-shrink: 0;
    overflow-y: auto;
}

.v3-dash-nav-section {
    padding: 0 12px;
    margin-bottom: 14px;
}

.v3-dash-nav-section:last-child {
    margin-bottom: 0;
}

.v3-dash-nav-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 10px;
    margin-bottom: 6px;
}

.v3-dash-nav-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.v3-dash-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    font-size: 0.8125rem;
    color: #1d1d1f;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.v3-dash-nav-item:hover {
    background: #e5e5e7;
}

.v3-dash-nav-active {
    background: #e5e5e7;
    color: #1d1d1f;
    font-weight: 600;
    border-left: 3px solid #1d1d1f;
    margin-left: -3px;
}

.v3-dash-nav-active:hover {
    background: #d1d1d6;
}

.v3-dash-nav-icon {
    font-size: 0.875rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.v3-dash-nav-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v3-dash-nav-badge {
    background: #dc2626;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.v3-dash-nav-alert .v3-dash-nav-text {
    color: #1d1d1f;
}

.v3-dash-nav-alert .v3-dash-nav-icon {
    color: #dc2626;
}

.v3-dash-nav-alert:hover {
    background: #fef8f8;
}

/* Main Dashboard Area */
.v3-dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    min-width: 0;
}

/* Section 1: System Health Row */
.v3-dash-health-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 1px;
    background: #e5e5e7;
    border-bottom: 1px solid #e5e5e7;
}

.v3-dash-kpi {
    background: #fff;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.v3-dash-kpi-primary {
    position: relative;
    padding-left: 28px;
}

.v3-dash-kpi-primary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.v3-dash-kpi-green::before { background: #16a34a; }
.v3-dash-kpi-amber::before { background: #d97706; }
.v3-dash-kpi-red::before { background: #dc2626; }

.v3-dash-kpi-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.v3-dash-kpi-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1d1d1f;
    letter-spacing: -0.03em;
    line-height: 1;
}

.v3-dash-kpi-value small {
    font-size: 0.6em;
    font-weight: 500;
    color: #86868b;
}

.v3-dash-kpi-trend {
    font-size: 0.8125rem;
    font-weight: 600;
}

.v3-dash-trend-up { color: #16a34a; }
.v3-dash-trend-down { color: #dc2626; }

.v3-dash-kpi-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.v3-dash-kpi-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d1d1f;
}

.v3-dash-kpi-sub {
    font-size: 0.75rem;
    color: #86868b;
}

.v3-dash-kpi-confidence {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #6e6e73;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid #e5e5e7;
}

.v3-dash-kpi-aging {
    font-size: 0.75rem;
    color: #d97706;
    font-weight: 500;
}

.v3-dash-kpi-sla {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.v3-dash-kpi-sla-ok { color: #16a34a; }
.v3-dash-kpi-sla-risk { color: #dc2626; }

/* Two-Column Layout */
.v3-dash-columns {
    display: grid;
    grid-template-columns: 65% 35%;
}

.v3-dash-col-ops {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    border-right: 1px solid #e5e5e7;
}

/* Section Component - Card Style for Ops */
.v3-dash-col-ops .v3-dash-section {
    background: #ffffff;
    border: 1px solid #e5e5e7;
    border-radius: 8px;
    padding: 16px 20px;
}

.v3-dash-col-ops .v3-dash-section:last-child {
    border-bottom: 1px solid #e5e5e7;
}

.v3-dash-col-signals {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
}

/* Section Component - Card Style for Signals */
.v3-dash-col-signals .v3-dash-section {
    background: #ffffff;
    border: 1px solid #e5e5e7;
    border-radius: 8px;
    padding: 16px 20px;
    min-height: 130px;
}

.v3-dash-col-signals .v3-dash-section:last-child {
    border-bottom: 1px solid #e5e5e7;
}

.v3-dash-col-signals .v3-dash-section-amber {
    background: #ffffff;
    border-left: 3px solid #d97706;
}

.v3-dash-col-signals .v3-dash-section-risk {
    background: #ffffff;
    border-left: 3px solid #dc2626;
}

/* Section Component - Default Row Style */
.v3-dash-section {
    padding: 14px 20px;
    border-bottom: 1px solid #e5e5e7;
}

.v3-dash-section:last-child {
    border-bottom: none;
}

.v3-dash-section-amber {
    background: #fffdf7;
}

.v3-dash-section-risk {
    background: #fef8f8;
}

.v3-dash-section-header {
    margin-bottom: 10px;
}

.v3-dash-section-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 2px;
}

.v3-dash-section-sub {
    font-size: 0.75rem;
    color: #86868b;
}

/* Unit List (Resolution Performance) */
.v3-dash-unit-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v3-dash-unit {
    display: grid;
    grid-template-columns: 10px 140px 1fr 60px 50px;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f2;
}

.v3-dash-unit:last-child {
    border-bottom: none;
}

.v3-dash-unit-risk {
    background: transparent;
}

.v3-dash-unit-watch {
    background: transparent;
}

.v3-dash-unit-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.v3-dash-status-healthy { background: #16a34a; }
.v3-dash-status-watch { background: #d97706; }
.v3-dash-status-risk { background: #dc2626; }

.v3-dash-unit-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d1d1f;
}

.v3-dash-unit-bar-wrap {
    height: 8px;
    background: #e5e5e7;
    border-radius: 4px;
    overflow: hidden;
}

.v3-dash-unit-bar {
    height: 100%;
    width: var(--w, 0%);
    background: #6b7280;
    border-radius: 4px;
}

.v3-dash-bar-watch { background: #f59e0b; }
.v3-dash-bar-risk { background: #f87171; }

.v3-dash-unit-pct {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1d1d1f;
    text-align: right;
}

.v3-dash-unit-time {
    font-size: 0.75rem;
    color: #86868b;
    text-align: right;
}

/* Escalation Strip - Strict */
.v3-dash-esc-strip-strict {
    display: flex;
    align-items: stretch;
    border-radius: 6px;
    overflow: hidden;
}

.v3-dash-esc-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 14px 12px;
    min-height: 80px;
}

.v3-dash-esc-open {
    background: #fef8f8;
    border-right: 1px solid #fee8e8;
}

.v3-dash-esc-progress {
    background: #fffdf7;
    border-right: 1px solid #fef3c7;
}

.v3-dash-esc-closed {
    background: #f8fdf9;
}

.v3-dash-esc-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.v3-dash-esc-open .v3-dash-esc-number { color: #dc2626; }
.v3-dash-esc-progress .v3-dash-esc-number { color: #d97706; }
.v3-dash-esc-closed .v3-dash-esc-number { color: #16a34a; }

.v3-dash-esc-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.v3-dash-esc-open .v3-dash-esc-label { color: #ef4444; }
.v3-dash-esc-progress .v3-dash-esc-label { color: #f59e0b; }
.v3-dash-esc-closed .v3-dash-esc-label { color: #22c55e; }

/* Escalation Urgency Enhancements */
.v3-dash-section-compact {
    padding: 10px 20px;
}

.v3-dash-section-compact .v3-dash-section-header {
    margin-bottom: 8px;
}

.v3-dash-esc-urgent .v3-dash-esc-block {
    padding: 12px 10px;
}

.v3-dash-esc-critical {
    background: #fef8f8;
    border: 2px solid #fca5a5;
    border-right: 2px solid #fca5a5;
    position: relative;
    animation: esc-pulse 2s ease-in-out infinite;
}

@keyframes esc-pulse {
    0%, 100% { box-shadow: inset 0 0 0 0 rgba(220, 38, 38, 0); }
    50% { box-shadow: inset 0 0 8px 0 rgba(220, 38, 38, 0.08); }
}

.v3-dash-esc-warning {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.625rem;
    font-weight: 600;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

/* SLA Impact Status */
.v3-dash-intervention-sla {
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 6px 0;
    margin-top: 4px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.v3-dash-sla-ok {
    color: #6e6e73;
}

.v3-dash-sla-atrisk {
    color: #d97706;
}

.v3-dash-sla-breach {
    color: #dc2626;
}

/* Risk Statement */
.v3-dash-risk-statement {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #dc2626;
    margin: 8px 0 12px;
}

/* Sentiment - Strict */
.v3-dash-sentiment-strict {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v3-dash-sent-item {
    display: grid;
    grid-template-columns: 60px 1fr 40px 20px;
    align-items: center;
    gap: 10px;
}

.v3-dash-sent-name {
    font-size: 0.8125rem;
    color: #6e6e73;
}

.v3-dash-sent-bar-wrap {
    height: 8px;
    background: #e5e5e7;
    border-radius: 4px;
    overflow: hidden;
}

.v3-dash-sent-bar {
    height: 100%;
    width: var(--w, 0%);
    border-radius: 4px;
}

.v3-dash-sent-pos { background: #16a34a; }
.v3-dash-sent-neu { background: #6b7280; }
.v3-dash-sent-neg { background: #d97706; }

.v3-dash-sent-val {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1d1d1f;
    text-align: right;
}

.v3-dash-sent-trend {
    font-size: 0.75rem;
    font-weight: 600;
    color: #86868b;
    text-align: center;
}

.v3-dash-sent-trend.v3-dash-trend-up {
    color: #16a34a;
}

.v3-dash-sent-trend.v3-dash-trend-down {
    color: #dc2626;
}

/* AI → Human Interventions */
.v3-dash-intervention {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v3-dash-intervention-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.v3-dash-intervention-count {
    font-size: 2rem;
    font-weight: 800;
    color: #d97706;
    line-height: 1;
}

.v3-dash-intervention-period {
    font-size: 0.8125rem;
    color: #86868b;
}

.v3-dash-intervention-trend {
    font-size: 0.8125rem;
    font-weight: 600;
}

.v3-dash-intervention-sla {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.v3-dash-sla-atrisk {
    color: #dc2626;
}

.v3-dash-sla-icon {
    color: #d97706;
}

.v3-dash-intervention-reasons {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v3-dash-intervention-reason {
    font-size: 0.8125rem;
    color: #6e6e73;
    padding-left: 12px;
    position: relative;
}

.v3-dash-intervention-reason::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d97706;
}

/* Conversation Risk Signals */
.v3-dash-risk-signals {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v3-dash-risk-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.v3-dash-risk-count {
    font-size: 2rem;
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
}

.v3-dash-risk-label {
    font-size: 0.8125rem;
    color: #6e6e73;
}

.v3-dash-risk-spike {
    font-size: 0.75rem;
    font-weight: 600;
    color: #dc2626;
}

.v3-dash-risk-statement {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #dc2626;
}

.v3-dash-risk-triggers {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.v3-dash-risk-trigger {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #dc2626;
}

.v3-dash-risk-affected {
    font-size: 0.8125rem;
    color: #6e6e73;
}

.v3-dash-risk-affected strong {
    color: #16a34a;
}

.v3-dash-risk-cta {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #16a34a;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
}

.v3-dash-risk-cta:hover {
    text-decoration: underline;
}

/* Strict Dashboard Responsive */
@media (max-width: 1024px) {
    .v3-dash-sidebar {
        width: 180px;
    }
    
    .v3-dash-nav-item {
        padding: 7px 8px;
        font-size: 0.75rem;
    }
    
    .v3-dash-health-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .v3-dash-columns {
        grid-template-columns: 1fr;
    }
    
    .v3-dash-col-ops {
        border-right: none;
        border-bottom: 1px solid #e5e5e7;
    }
    
    .v3-dash-unit {
        grid-template-columns: 10px 120px 1fr 50px;
    }
    
    .v3-dash-unit-time {
        display: none;
    }
    
    .v3-dash-global-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .v3-dash-sidebar {
        display: none;
    }
    
    .v3-dash-layout {
        flex-direction: column;
    }
    
    .v3-dash-chrome-strict {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
    }
    
    .v3-dash-global-actions {
        width: 100%;
        justify-content: center;
    }
    
    .v3-dash-health-row {
        grid-template-columns: 1fr;
    }
    
    .v3-dash-kpi {
        padding: 16px 20px;
    }
    
    .v3-dash-kpi-value {
        font-size: 1.5rem;
    }
    
    .v3-dash-unit {
        grid-template-columns: 10px 1fr 50px;
    }
    
    .v3-dash-unit-bar-wrap {
        display: none;
    }
    
    .v3-dash-esc-block {
        padding: 16px 12px;
    }
    
    .v3-dash-esc-number {
        font-size: 1.75rem;
    }
}

/* ============================================
   PREMIUM DASHBOARD VISUALIZATION
   ============================================ */

/* Premium Dashboard Container */
.v3-premium-dash {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1500px;
}

/* Browser Frame */
.v3-premium-frame {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: rotateX(2deg);
    transform-origin: center top;
    transition: transform 0.5s ease;
}

.v3-premium-frame:hover {
    transform: rotateX(0deg) scale(1.01);
}

.v3-premium-frame-bar {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(180deg, #f7f7f7 0%, #ececec 100%);
    border-bottom: 1px solid #d1d1d6;
}

.v3-premium-dots {
    display: flex;
    gap: 8px;
}

.v3-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.v3-dot-red { background: #ff5f57; }
.v3-dot-yellow { background: #ffbd2e; }
.v3-dot-green { background: #28c840; }

.v3-premium-url {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: #6e6e73;
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 6px;
    margin: 0 80px;
    border: 1px solid #d1d1d6;
}

.v3-premium-url svg {
    color: #22c55e;
}

.v3-premium-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
}

.v3-live-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: livePulsePremium 2s ease-in-out infinite;
}

@keyframes livePulsePremium {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* Dashboard Content */
.v3-premium-content {
    display: flex;
    min-height: 600px;
    background: #f5f5f7;
}

/* Sidebar */
.v3-premium-sidebar {
    width: 220px;
    background: linear-gradient(180deg, #1d1d1f 0%, #2c2c2e 100%);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.v3-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 8px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.v3-sidebar-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.v3-sidebar-logo span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.v3-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v3-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.v3-sidebar-item:hover {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
}

.v3-sidebar-active {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}

.v3-sidebar-active:hover {
    background: rgba(99, 102, 241, 0.3);
}

.v3-sidebar-badge {
    margin-left: auto;
    padding: 2px 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.v3-badge-urgent {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    animation: urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.v3-sidebar-alert svg {
    color: #f87171;
}

.v3-sidebar-divisions {
    margin-top: auto;
}

.v3-sidebar-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 16px 0;
}

.v3-sidebar-section-title {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.4);
    padding: 0 12px 8px;
}

.v3-division-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 8px;
}

.v3-division-pill {
    padding: 4px 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.v3-division-pill:hover {
    background: rgba(255,255,255,0.15);
}

.v3-division-active {
    background: rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
}

/* Main Area */
.v3-premium-main {
    flex: 1;
    padding: 24px;
    overflow: hidden;
}

/* Top Bar */
.v3-premium-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.v3-topbar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
}

.v3-topbar-date {
    font-size: 0.8125rem;
    color: #86868b;
    margin-top: 2px;
}

.v3-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.v3-topbar-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid #d1d1d6;
    border-radius: 8px;
    font-size: 0.8125rem;
    color: #86868b;
}

.v3-topbar-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8125rem;
}

/* KPI Cards */
.v3-premium-kpis {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.v3-kpi-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.v3-kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.v3-kpi-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
}

.v3-kpi-hero .v3-kpi-label,
.v3-kpi-hero .v3-kpi-value,
.v3-kpi-hero .v3-kpi-trend {
    color: white;
}

.v3-kpi-hero .v3-kpi-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.v3-kpi-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v3-kpi-icon-purple { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.v3-kpi-icon-green { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.v3-kpi-icon-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.v3-kpi-icon-yellow { background: rgba(234, 179, 8, 0.1); color: #eab308; }

.v3-kpi-content {
    flex: 1;
    min-width: 0;
}

.v3-kpi-label {
    display: block;
    font-size: 0.8125rem;
    color: #6e6e73;
    margin-bottom: 4px;
}

.v3-kpi-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.v3-kpi-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
}

.v3-kpi-value small {
    font-size: 0.6em;
    font-weight: 500;
    opacity: 0.6;
}

.v3-kpi-trend {
    font-size: 0.75rem;
    font-weight: 600;
}

.v3-trend-up { color: #22c55e; }
.v3-trend-down { color: #22c55e; }

.v3-kpi-sparkline {
    margin-top: 12px;
    height: 30px;
}

.v3-kpi-sparkline svg {
    width: 100%;
    height: 100%;
}

#sparkGrad {
    --c1: rgba(255,255,255,0.3);
    --c2: rgba(255,255,255,0.8);
}

.v3-kpi-ring {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
}

.v3-ring-bg {
    fill: none;
    stroke: #e5e5ea;
    stroke-width: 3;
}

.v3-ring-fill {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    animation: ringFill 1.5s ease forwards;
}

.v3-ring-green { stroke: #22c55e; }

@keyframes ringFill {
    from { stroke-dasharray: 0, 100; }
}

.v3-kpi-stars {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 2px;
    font-size: 0.875rem;
    color: #eab308;
}

.v3-star-half {
    opacity: 0.4;
}

/* Main Grid */
.v3-premium-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.v3-premium-col-left,
.v3-premium-col-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cards */
.v3-premium-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.v3-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.v3-card-title-group h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.v3-card-subtitle {
    font-size: 0.75rem;
    color: #86868b;
    margin-top: 2px;
}

.v3-card-tabs {
    display: flex;
    gap: 4px;
    background: #f5f5f7;
    padding: 3px;
    border-radius: 6px;
}

.v3-tab {
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6e6e73;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.v3-tab-active {
    background: white;
    color: #1d1d1f;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* Activity Chart */
.v3-activity-chart {
    padding-top: 8px;
}

.v3-chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 140px;
    gap: 12px;
}

.v3-chart-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.v3-chart-bar {
    width: 100%;
    height: var(--h, 50%);
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 6px 6px 0 0;
    position: relative;
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: barGrowUp 1s ease forwards;
}

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

@keyframes barGrowUp {
    from {
        height: 0;
    }
}

.v3-bar-today {
    opacity: 1;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
}

.v3-bar-tooltip {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #1d1d1f;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

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

.v3-bar-label {
    font-size: 0.6875rem;
    color: #86868b;
    font-weight: 500;
}

/* Divisions Table */
.v3-divisions-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v3-div-row {
    display: grid;
    grid-template-columns: 1.5fr 0.6fr 1fr 0.4fr;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.v3-div-row-header {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5ea;
}

.v3-div-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1d1d1f;
}

.v3-div-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.v3-div-dot-purple { background: #6366f1; }
.v3-div-dot-blue { background: #3b82f6; }
.v3-div-dot-green { background: #22c55e; }
.v3-div-dot-orange { background: #f59e0b; }

.v3-div-num {
    font-size: 0.8125rem;
    color: #6e6e73;
}

.v3-div-bar-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v3-div-bar-bg {
    flex: 1;
    height: 6px;
    background: #e5e5ea;
    border-radius: 3px;
    overflow: hidden;
}

.v3-div-bar-fill {
    height: 100%;
    width: var(--w, 0%);
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    border-radius: 3px;
    animation: divBarGrow 1s ease forwards;
}

.v3-fill-warning {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

@keyframes divBarGrow {
    from { width: 0; }
}

.v3-div-pct {
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
    width: 32px;
}

.v3-div-trend {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Sentiment */
.v3-sentiment-visual {
    display: flex;
    align-items: center;
    gap: 24px;
}

.v3-sentiment-donut {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.v3-sentiment-donut svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.v3-donut-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 8;
}

.v3-donut-segment {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    animation: donutDraw 1.5s ease forwards;
}

@keyframes donutDraw {
    from { stroke-dasharray: 0 251; }
}

.v3-segment-positive { stroke: #22c55e; }
.v3-segment-neutral { stroke: #9ca3af; }
.v3-segment-negative { stroke: #ef4444; }

.v3-donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.v3-donut-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
}

.v3-donut-label {
    font-size: 0.6875rem;
    color: #86868b;
}

.v3-sentiment-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v3-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.v3-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.v3-color-positive { background: #22c55e; }
.v3-color-neutral { background: #9ca3af; }
.v3-color-negative { background: #ef4444; }

.v3-legend-text {
    flex: 1;
    font-size: 0.8125rem;
    color: #6e6e73;
}

.v3-legend-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d1d1f;
}

/* Topics */
.v3-topics-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v3-topic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.v3-topic-item:hover {
    background: #f0f0f0;
    transform: translateX(4px);
}

.v3-topic-rank {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.v3-topic-info {
    flex: 1;
    min-width: 0;
}

.v3-topic-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d1d1f;
}

.v3-topic-meta {
    font-size: 0.75rem;
    color: #86868b;
}

.v3-topic-up { color: #22c55e; }
.v3-topic-neutral { color: #86868b; }

.v3-topic-badge {
    font-size: 1.125rem;
}

/* Escalations */
.v3-escalation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.v3-esc-box {
    text-align: center;
    padding: 16px 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.v3-esc-box:hover {
    transform: scale(1.02);
}

.v3-esc-open { background: rgba(239, 68, 68, 0.08); }
.v3-esc-progress { background: rgba(245, 158, 11, 0.08); }
.v3-esc-closed { background: rgba(34, 197, 94, 0.08); }

.v3-esc-icon {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.v3-esc-count {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1f;
}

.v3-esc-label {
    display: block;
    font-size: 0.6875rem;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Conversations */
.v3-card-conversations {
    grid-column: 1 / -1;
}

.v3-live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 500;
}

.v3-live-dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: livePulsePremium 2s ease-in-out infinite;
}

.v3-conversations-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.v3-conv-item {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.v3-conv-item:hover {
    background: #f0f0f0;
}

.v3-conv-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.v3-conv-avatar-green { background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); }
.v3-conv-avatar-purple { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); }
.v3-conv-avatar-blue { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }

.v3-conv-content {
    flex: 1;
    min-width: 0;
}

.v3-conv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.v3-conv-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d1d1f;
}

.v3-conv-time {
    font-size: 0.6875rem;
    color: #86868b;
}

.v3-conv-preview {
    font-size: 0.8125rem;
    color: #6e6e73;
    margin: 0 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v3-conv-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.v3-conv-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.v3-tag-resolved {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.v3-tag-active {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.v3-tag-escalated {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.v3-conv-division {
    font-size: 0.6875rem;
    color: #86868b;
}

/* Floating Cards */
.v3-premium-floats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.v3-float-card {
    position: absolute;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatCard 6s ease-in-out infinite;
}

.v3-float-icon {
    font-size: 1.25rem;
}

.v3-float-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d1d1f;
}

.v3-float-1 {
    top: 15%;
    left: -60px;
    animation-delay: 0s;
}

.v3-float-2 {
    top: 40%;
    right: -70px;
    animation-delay: 2s;
}

.v3-float-3 {
    bottom: 20%;
    left: -50px;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-10px) translateX(5px);
        opacity: 1;
    }
}

/* Responsive Premium Dashboard */
@media (max-width: 1200px) {
    .v3-premium-floats {
        display: none;
    }
}

@media (max-width: 1024px) {
    .v3-premium-kpis {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .v3-premium-grid {
        grid-template-columns: 1fr;
    }
    
    .v3-conversations-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .v3-premium-sidebar {
        display: none;
    }
    
    .v3-premium-kpis {
        grid-template-columns: 1fr;
    }
    
    .v3-conversations-list {
        grid-template-columns: 1fr;
    }
    
    .v3-sentiment-visual {
        flex-direction: column;
    }
    
    .v3-premium-url {
        margin: 0 20px;
    }
    
    .v3-topbar-search {
        display: none;
    }
}

/* CTA Banner Enhanced */
.v3-cta-banner {
    background: var(--v3-black);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.v3-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center top, rgba(255,255,255,0.08) 0%, transparent 60%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(255,255,255,0.02) 40px,
            rgba(255,255,255,0.02) 41px
        );
}

.v3-cta-banner .v3-container {
    position: relative;
    z-index: 1;
}

.v3-cta-banner .v3-h2 {
    color: var(--v3-white);
    margin-bottom: 16px;
}

.v3-cta-banner .v3-lead {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.v3-cta-banner .v3-btn-group {
    justify-content: center;
}

/* Section with gradient */
.v3-section-gradient {
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f7 100%);
    position: relative;
}

.v3-section-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.v3-section-gradient > .v3-container {
    position: relative;
    z-index: 1;
}

/* Key Features Section */
.v3-key-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.v3-key-feature {
    background: var(--v3-white);
    border-radius: 20px;
    padding: 26px 24px;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-decoration: none;
    display: block;
    color: inherit;
}

.v3-key-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    color: inherit;
}

.v3-key-feature .v3-h4 {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--v3-black);
}

.v3-key-feature .v3-h4::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--v3-black);
    border-radius: 2px;
    flex-shrink: 0;
}

.v3-key-feature .v3-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 16px;
    color: #6e6e73;
}

/* Responsive for new enhanced styles */
@media (max-width: 1024px) {
    .v3-steps-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .v3-steps-enhanced::before {
        display: none;
    }
    
    .v3-tiles-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .v3-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .v3-pricing-enhanced {
        grid-template-columns: 1fr;
    }
    
    .v3-price-card-featured {
        transform: none;
    }
    
    .v3-demo-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .v3-demo-preview {
        min-height: 380px;
    }
    
    .v3-key-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .v3-steps-enhanced,
    .v3-tiles-enhanced,
    .v3-trust-grid {
        grid-template-columns: 1fr;
    }
    
    .v3-feature-card,
    .v3-step-card,
    .v3-tile-enhanced,
    .v3-trust-card,
    .v3-price-card,
    .v3-key-feature {
        padding: 22px 20px;
    }
    
    .v3-cta-banner {
        padding: 48px 0;
    }
    
    .v3-demo-section {
        padding: 48px 0;
    }
    
    .v3-demo-preview {
        min-height: 340px;
        padding: 16px;
    }
    
    .v3-demo-upload-zone {
        padding: 18px;
    }
    
    .v3-demo-upload-icon {
        width: 40px;
        height: 40px;
    }
    
    .v3-demo-upload-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .v3-demo-chat {
        min-height: 180px;
    }
    
    .v3-demo-chat-input {
        padding: 8px 12px;
        font-size: 0.813rem;
    }
    
    .v3-demo-chat-send {
        width: 38px;
        height: 38px;
    }
}

/* ========================================
   Feature Page Styles (Two-Column Layout)
======================================== */

/* Hero Section */
.v3-feature-page-hero {
    background: var(--v3-white);
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.v3-feature-page-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.v3-feature-page-header .v3-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--v3-white);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 14px;
    background: var(--v3-black);
    border-radius: 4px;
}

.v3-feature-page-header .v3-h1 {
    font-size: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.v3-feature-page-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--v3-black);
    margin-bottom: 16px;
    line-height: 1.4;
}

.v3-feature-page-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #6e6e73;
    margin-bottom: 8px;
}

/* Feature Sections */
.v3-feature-section {
    padding: 60px 0;
    background: var(--v3-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.v3-feature-section-alt {
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f7 100%);
}

.v3-feature-section-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.v3-feature-section-layout-reverse {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Section Header (Left Side) */
.v3-feature-section-header {
    position: sticky;
    top: 100px;
}

.v3-feature-section-num {
    font-size: 0.875rem;
    font-weight: 700;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', monospace;
    color: #86868b;
    margin-bottom: 16px;
    display: block;
    letter-spacing: 0.05em;
}

.v3-feature-section-header .v3-h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.v3-feature-section-lead {
    font-size: 1rem;
    line-height: 1.6;
    color: #6e6e73;
}

/* Compare Cards */
.v3-feature-compare {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v3-feature-compare-item {
    padding: 28px;
    border-radius: 16px;
    background: var(--v3-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid rgba(0, 0, 0, 0.15);
}

.v3-feature-compare-bad {
    /* Uses default border */
}

.v3-feature-compare-good {
    border-left-color: var(--v3-black);
}

.v3-feature-compare-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #86868b;
    margin-bottom: 12px;
    display: block;
}

.v3-feature-compare-text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--v3-black);
}

/* Feature List */
.v3-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.v3-feature-list-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.v3-feature-list-item:last-child {
    border-bottom: none;
}

.v3-feature-list-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--v3-black);
    margin-bottom: 8px;
}

.v3-feature-list-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6e6e73;
    margin-bottom: 12px;
}

.v3-feature-list-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--v3-black);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.v3-feature-list-link:hover {
    opacity: 0.6;
}

/* Checklist */
.v3-feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.v3-feature-check-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--v3-white);
    border-radius: 12px;
    margin-bottom: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.v3-feature-check-item:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.v3-feature-check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--v3-black);
    color: var(--v3-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 600;
}

.v3-feature-check-text {
    font-size: 1rem;
    color: var(--v3-black);
    font-weight: 500;
}

/* Use Cases Grid */
.v3-feature-usecases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.v3-feature-usecase {
    padding: 24px;
    background: var(--v3-gray-100);
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.v3-feature-usecase:hover {
    background: var(--v3-white);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.v3-feature-usecase-label {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--v3-black);
    display: block;
    margin-bottom: 6px;
}

.v3-feature-usecase-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6e6e73;
}

/* Related Features */
.v3-feature-related {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.v3-feature-related-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--v3-gray-100);
    border-radius: 12px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.v3-feature-related-item:hover {
    background: var(--v3-white);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.v3-feature-related-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--v3-black);
}

.v3-feature-related-arrow {
    font-size: 1.25rem;
    color: #86868b;
    transition: transform 0.3s ease;
}

.v3-feature-related-item:hover .v3-feature-related-arrow {
    transform: translateX(4px);
    color: var(--v3-black);
}

/* Use Case List */
.v3-usecase-list {
    display: flex;
    flex-direction: column;
}

.v3-usecase-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.v3-usecase-item:first-child {
    padding-top: 0;
}

.v3-usecase-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

a.v3-usecase-item:hover {
    padding-left: 12px;
}

a.v3-usecase-item:hover .v3-usecase-arrow {
    transform: translateX(4px);
}

.v3-usecase-item-static {
    cursor: default;
}

.v3-usecase-item-content {
    flex: 1;
}

.v3-usecase-item-content .v3-h4 {
    margin-bottom: 6px;
}

.v3-usecase-item-content .v3-text-sm {
    color: #6e6e73;
    margin: 0;
}

.v3-usecase-arrow {
    font-size: 1.25rem;
    color: #86868b;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .v3-feature-page-layout,
    .v3-feature-section-layout,
    .v3-feature-section-layout-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .v3-feature-section-header {
        position: static;
    }
    
    .v3-feature-page-header .v3-h1 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .v3-feature-page-hero {
        padding: 60px 0 40px;
    }
    
    .v3-feature-section {
        padding: 48px 0;
    }
    
    .v3-feature-usecases {
        grid-template-columns: 1fr;
    }
    
    .v3-feature-compare-item,
    .v3-feature-check-item,
    .v3-feature-related-item,
    .v3-feature-usecase {
        padding: 20px;
    }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.v3-back-to-top {
    position: fixed;
    bottom: 32px;
    right: 90px;
    width: 48px;
    height: 48px;
    background: #1d1d1f;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 999998;
}

.v3-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.v3-back-to-top:hover {
    background: #3a3a3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.v3-back-to-top:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .v3-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ========================================
   Auth Pages (Login, Register, etc.)
======================================== */
.v3-auth-section {
    padding: calc(52px + var(--v3-space-3xl)) 0 var(--v3-space-3xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.v3-auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--v3-space-3xl);
    align-items: center;
}

.v3-auth-layout-centered {
    grid-template-columns: 1fr;
}

.v3-auth-info {
    padding-right: var(--v3-space-2xl);
}

.v3-auth-features {
    display: flex;
    flex-direction: column;
    gap: var(--v3-space-lg);
}

.v3-auth-feature {
    display: flex;
    align-items: center;
    gap: var(--v3-space-md);
    font-size: var(--v3-font-size-lg);
    color: var(--v3-gray-700);
}

.v3-auth-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--v3-gray-100);
    border-radius: 10px;
    color: var(--v3-black);
    flex-shrink: 0;
}

.v3-auth-form-container {
    width: 100%;
}

.v3-auth-card {
    padding: var(--v3-space-2xl) !important;
    background: var(--v3-white);
    border: 1px solid var(--v3-gray-200);
    border-radius: var(--v3-radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.v3-auth-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--v3-gray-100);
    border-radius: 16px;
    margin: 0 auto var(--v3-space-lg);
    color: var(--v3-black);
}

/* Alerts */
.v3-alert {
    padding: 12px 16px;
    border-radius: var(--v3-radius);
    font-size: var(--v3-font-size-sm);
    line-height: 1.5;
}

.v3-alert p {
    margin: 0;
}

.v3-alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.v3-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

/* Form helpers */
.v3-form-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v3-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--v3-space-md);
}

.v3-text-sm {
    font-size: var(--v3-font-size-sm);
}

.v3-text-xs {
    font-size: var(--v3-font-size-xs);
}

.v3-text-center {
    text-align: center;
}

.v3-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Plan toggle */
.v3-plan-toggle {
    display: flex;
    align-items: center;
    gap: var(--v3-space-sm);
    justify-content: center;
}

.v3-plan-toggle-label {
    font-size: var(--v3-font-size-sm);
    color: var(--v3-gray-500);
    transition: var(--v3-transition-fast);
}

.v3-plan-toggle-label.active {
    color: var(--v3-black);
    font-weight: 600;
}

.v3-toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: var(--v3-gray-300);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--v3-transition-fast);
    padding: 0;
}

.v3-toggle-switch.active {
    background: var(--v3-black);
}

.v3-toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--v3-white);
    border-radius: 50%;
    transition: var(--v3-transition-fast);
}

.v3-toggle-switch.active .v3-toggle-knob {
    left: 22px;
}

/* Plan cards */
.v3-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--v3-space-sm);
}

.v3-plan-card {
    position: relative;
    padding: var(--v3-space-md);
    padding-top: var(--v3-space-xl);
    background: var(--v3-white);
    border: 2px solid var(--v3-gray-200);
    border-radius: var(--v3-radius);
    cursor: pointer;
    transition: var(--v3-transition-fast);
    text-align: center;
}

.v3-plan-card:hover {
    border-color: var(--v3-gray-400);
}

.v3-plan-card.selected {
    border-color: var(--v3-black);
    background: #f0f0f5;
    box-shadow: 0 0 0 1px var(--v3-black);
}

.v3-plan-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--v3-space-xs);
}

.v3-plan-name {
    font-weight: 600;
    font-size: var(--v3-font-size-base);
    color: var(--v3-black);
}

.v3-plan-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--v3-black);
    color: var(--v3-white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
}

.v3-plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--v3-black);
    color: var(--v3-white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 10px;
    white-space: nowrap;
}

.v3-plan-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--v3-black);
    margin-top: var(--v3-space-xs);
}

.v3-plan-period {
    font-size: var(--v3-font-size-xs);
    color: var(--v3-gray-500);
}

/* Payment cards */
.v3-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--v3-space-sm);
}

.v3-payment-card {
    display: flex;
    align-items: center;
    gap: var(--v3-space-sm);
    padding: 12px 16px;
    background: var(--v3-white);
    border: 2px solid var(--v3-gray-200);
    border-radius: var(--v3-radius);
    cursor: pointer;
    transition: var(--v3-transition-fast);
}

.v3-payment-card:hover {
    border-color: var(--v3-gray-400);
}

.v3-payment-card.selected {
    border-color: var(--v3-black);
    background: #f0f0f5;
    box-shadow: 0 0 0 1px var(--v3-black);
}

.v3-payment-name {
    display: block;
    font-size: var(--v3-font-size-sm);
    font-weight: 600;
    color: var(--v3-black);
}

.v3-payment-desc {
    display: block;
    font-size: var(--v3-font-size-xs);
    color: var(--v3-gray-500);
}

/* Responsive auth */
@media (max-width: 768px) {
    .v3-auth-layout {
        grid-template-columns: 1fr;
        gap: var(--v3-space-xl);
    }
    
    .v3-auth-info {
        padding-right: 0;
        text-align: center;
    }
    
    .v3-auth-features {
        align-items: center;
    }
    
    .v3-auth-card {
        padding: var(--v3-space-xl) !important;
    }
    
    .v3-form-row {
        grid-template-columns: 1fr;
    }
    
    .v3-plan-grid {
        grid-template-columns: 1fr;
    }
    
    .v3-social-login {
        grid-template-columns: 1fr;
    }
    
    .v3-payment-grid {
        grid-template-columns: 1fr;
    }
}

/* Demo Suggestions */
.v3-demo-suggestions {
    padding: var(--v3-space-md) var(--v3-space-lg);
    border-top: 1px solid var(--v3-gray-200);
}

.v3-demo-suggestions-label {
    font-size: var(--v3-font-size-xs);
    color: var(--v3-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--v3-space-sm);
    font-weight: 600;
}

.v3-demo-suggestions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--v3-space-xs);
}

.v3-demo-suggestion-btn {
    padding: 6px 14px;
    background: var(--v3-white);
    border: 1px solid var(--v3-gray-200);
    border-radius: 20px;
    font-size: var(--v3-font-size-sm);
    color: var(--v3-gray-700);
    cursor: pointer;
    transition: var(--v3-transition-fast);
    font-family: var(--v3-font-primary);
}

.v3-demo-suggestion-btn:hover {
    border-color: var(--v3-black);
    color: var(--v3-black);
    background: var(--v3-gray-50);
}

/* ========================================
   Demo Widget — Livewire Integration
   Fits Livewire PublicDemo inside the v3 dark widget card
   Single-column stack: upload zone → chat → input
======================================== */

/* Single-column stack inside the dark card */
.v3-demo-livewire-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.v3-demo-livewire-grid .demo-widget-wrapper {
    display: contents;
}

/* Panels — no background/border, seamless inside dark card */
.v3-demo-livewire-grid .demo-upload-panel,
.v3-demo-livewire-grid .demo-chat-panel {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Hide panel headers — original design has no headers */
.v3-demo-livewire-grid .demo-panel-header {
    display: none;
}

/* Hide limit badge inline — keep it clean */
.v3-demo-livewire-grid .demo-limit-badge-inline {
    display: none;
}

/* Dropzone — matches original v3-demo-upload-zone */
.v3-demo-livewire-grid .demo-dropzone {
    background: rgba(255, 255, 255, 0.08);
    border: 2px dashed rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.v3-demo-livewire-grid .demo-dropzone:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
}

.v3-demo-livewire-grid .demo-dropzone-drag {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.08) !important;
}

.v3-demo-livewire-grid .dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 100%;
}

.v3-demo-livewire-grid .dropzone-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.v3-demo-livewire-grid .dropzone-icon svg {
    width: 32px;
    height: 32px;
}

.v3-demo-livewire-grid .dropzone-text {
    font-size: 15px;
    color: #e2e8f0;
    font-weight: 500;
    margin: 0;
}

.v3-demo-livewire-grid .dropzone-or {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.v3-demo-livewire-grid .dropzone-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.v3-demo-livewire-grid .dropzone-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #1d1d1f;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.v3-demo-livewire-grid .dropzone-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.v3-demo-livewire-grid .dropzone-formats {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.v3-demo-livewire-grid .format-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

/* Dropzone states */
.v3-demo-livewire-grid .demo-dropzone-success {
    border-color: rgba(34, 197, 94, 0.5) !important;
    background: rgba(34, 197, 94, 0.08) !important;
}

.v3-demo-livewire-grid .dropzone-success-icon {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
}

.v3-demo-livewire-grid .demo-dropzone-processing {
    border-color: rgba(59, 130, 246, 0.5) !important;
    background: rgba(59, 130, 246, 0.08) !important;
}

.v3-demo-livewire-grid .demo-dropzone-processing .dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    width: 100%;
}

.v3-demo-livewire-grid .dropzone-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(59, 130, 246, 0.2);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 12px auto;
}

.v3-demo-livewire-grid .demo-dropzone-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}

.v3-demo-livewire-grid .dropzone-limit-icon {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
}

/* Sample docs — hide for clean look matching original */
.v3-demo-livewire-grid .demo-sample-docs {
    display: none;
}

/* Error box */
.v3-demo-livewire-grid .demo-error-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    color: #ef4444;
    font-size: 13px;
}

/* Chat status — hidden (clean look) */
.v3-demo-livewire-grid .chat-status {
    display: none;
}

/* Chat area — matches original v3-demo-chat */
.v3-demo-livewire-grid .demo-chat-panel {
    flex: 1;
    min-height: 320px;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 16px !important;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.v3-demo-livewire-grid .demo-chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 500px;
    scrollbar-width: thin;
    scrollbar-color: rgba(34, 197, 94, 0.4) rgba(0, 0, 0, 0.2);
}

.v3-demo-livewire-grid .demo-chat-messages::-webkit-scrollbar {
    width: 5px;
}

.v3-demo-livewire-grid .demo-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* Chat welcome — matches original */
.v3-demo-livewire-grid .chat-welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    gap: 14px;
    padding: 24px;
}

.v3-demo-livewire-grid .welcome-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.v3-demo-livewire-grid .welcome-icon svg {
    width: 32px;
    height: 32px;
}

.v3-demo-livewire-grid .chat-welcome h4 {
    display: none;
}

.v3-demo-livewire-grid .chat-welcome > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    max-width: 260px;
}

/* Sample questions — hide in welcome (keep it clean like original) */
.v3-demo-livewire-grid .sample-questions {
    display: none;
}

/* Chat messages — matches original */
.v3-demo-livewire-grid .chat-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9375rem;
    line-height: 1.5;
    animation: messageSlide 0.3s ease;
}

.v3-demo-livewire-grid .chat-message-user {
    align-self: flex-end;
}

.v3-demo-livewire-grid .chat-message-assistant {
    align-self: flex-start;
}

.v3-demo-livewire-grid .chat-message-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.v3-demo-livewire-grid .chat-message-user .chat-message-content {
    background: var(--v3-black, #1d1d1f);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.v3-demo-livewire-grid .chat-message-assistant .chat-message-content {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-bottom-left-radius: 4px;
}

.v3-demo-livewire-grid .chat-message-assistant .chat-message-content .source-tag {
    display: inline-block;
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 10px;
}

/* Typing indicator */
.v3-demo-livewire-grid .chat-typing {
    display: flex;
    gap: 5px;
    padding: 14px 18px !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.v3-demo-livewire-grid .chat-typing span {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.v3-demo-livewire-grid .chat-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.v3-demo-livewire-grid .chat-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Chat input — matches original v3-demo-chat-input-wrap */
.v3-demo-livewire-grid .demo-chat-input {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
}

.v3-demo-livewire-grid .chat-input-wrapper {
    display: flex;
    gap: 10px;
}

.v3-demo-livewire-grid .chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: #fff;
    outline: none;
    transition: all 0.2s ease;
}

.v3-demo-livewire-grid .chat-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.v3-demo-livewire-grid .chat-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.v3-demo-livewire-grid .chat-send-btn {
    width: 46px;
    height: 46px;
    background: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
    transition: all 0.2s;
    flex-shrink: 0;
}

.v3-demo-livewire-grid .chat-send-btn svg {
    width: 20px;
    height: 20px;
}

.v3-demo-livewire-grid .chat-send-btn:hover:not(:disabled) {
    transform: scale(1.05);
}

.v3-demo-livewire-grid .chat-send-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Hide the hint text under input — keep clean */
.v3-demo-livewire-grid .chat-input-hint {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .v3-demo-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   404 Error Page
   ============================================ */
.v3-error-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--v3-white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
}

.v3-error-illustration {
    position: relative;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(59, 130, 246, 0.06) 100%);
    border: 1px solid rgba(17, 24, 39, 0.06);
}

.v3-error-illustration svg {
    width: 100%;
    height: auto;
    display: block;
}

.v3-error-boat {
    transform-origin: 260px 230px;
    animation: v3-error-bob 3.8s ease-in-out infinite;
}

@keyframes v3-error-bob {
    0%, 100% { transform: translateY(0) rotate(-1.2deg); }
    50% { transform: translateY(6px) rotate(1.2deg); }
}

.v3-error-bubble {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.22);
    filter: blur(0.2px);
    animation: v3-error-bubble 3.6s ease-in-out infinite;
}

.v3-error-bubble-1 { left: 42px; bottom: 50px; animation-delay: 0s; }
.v3-error-bubble-2 { left: 70px; bottom: 42px; width: 14px; height: 14px; animation-delay: 0.6s; background: rgba(59, 130, 246, 0.18); }
.v3-error-bubble-3 { left: 100px; bottom: 54px; width: 8px; height: 8px; animation-delay: 1.1s; background: rgba(168, 85, 247, 0.16); }

@keyframes v3-error-bubble {
    0% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-10px); opacity: 0.9; }
    100% { transform: translateY(0); opacity: 0.6; }
}

.v3-error-content .v3-h1 {
    margin-top: 8px;
}

.v3-error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.v3-error-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    color: var(--v3-gray-500);
    margin-top: 24px;
}

.v3-error-links a {
    color: var(--v3-primary);
    text-decoration: none;
    font-weight: 500;
}

.v3-error-links a:hover {
    text-decoration: underline;
}

.v3-error-links span {
    color: var(--v3-gray-300);
}

.v3-error-small {
    margin-top: 16px;
    font-size: 14px;
    color: var(--v3-gray-500);
}

.v3-error-small a {
    color: var(--v3-primary);
    text-decoration: none;
    font-weight: 500;
}

.v3-error-small a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .v3-error-card {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }
}

