/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Updated Color System - Enterprise Tech Style */
    --primary-color: #1642CB; /* Deep Tech Blue */
    --primary-deep: #0A2576;
    --primary-dark: #0A2576; /* Added for compatibility */
    --primary-light: #4D76F4;
    --accent-color: #00D2B4; /* Teal Accent */
    
    --text-primary: #171A20;
    --text-secondary: #565E6C;
    --text-light: #9095A1;
    
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7F9FB; /* Very light cool gray */
    --bg-dark: #0B1120;
    
    --border-color: #DEE1E6;
    --shadow: 0 4px 12px rgba(22, 66, 203, 0.08); /* Colored shadow */
    --shadow-lg: 0 12px 32px rgba(22, 66, 203, 0.12);

    /* Fonts & Spacing remain */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3.5rem;

    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 5rem; /* More generous spacing */

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* 按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo h1 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff; /* White background */
    min-width: 500px; /* Wider for columns */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12); /* Softer shadow */
    z-index: 1001;
    border-radius: var(--radius-md);
    top: 100%; /* Connect directly to trigger */
    left: 50%;
    transform: translateX(-50%);
    padding: var(--spacing-lg); /* More padding */
    border: 1px solid var(--border-color);
    margin-top: 10px;
}

/* Mega Menu Layout */
.dropdown-content.mega-menu {
    display: none; /* Hidden by default */
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.dropdown:hover .dropdown-content.mega-menu {
    display: grid; /* Grid layout when visible */
    animation: fadeIn 0.2s ease-out;
}

.menu-column {
    display: flex;
    flex-direction: column;
}

.menu-header {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid transparent; /* Placeholder for potential border */
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.menu-column a {
    color: var(--text-secondary); /* Softer distinct color */
    padding: var(--spacing-xs) 0;
    text-decoration: none;
    display: block;
    font-size: var(--font-size-sm);
    transition: all 0.2s ease;
    font-weight: 700;
}

.menu-column a:hover {
    color: var(--primary-color);
    background-color: transparent; /* No block bg hover */
    transform: translateX(4px); /* Subtle indentation on hover */
}

/* Invisible bridge to prevent mouse leaving gap */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px; /* Covers the margin-top gap */
    background: transparent;
}

/* Arrow indicator removed */
.dropdown-content::before {
    display: none;
}

/* 英雄区域 */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-3xl) var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    animation: float 6s ease-in-out infinite;
}

.hero-title .highlight {
    display: block;
    margin-top: 20px;
    color: #3059ff;
    position: relative;
    white-space: nowrap;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #3059ff;
    border-radius: var(--radius-sm);
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--spacing-2xl);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.hero-visual {
    position: relative;
    height: 400px;
    z-index: 2;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    left: 60%;
    animation-delay: 2s;
}

.element-3 {
    top: 40%;
    right: 20%;
    animation-delay: 4s;
}

.element-4 {
    bottom: 20%;
    left: 40%;
    animation-delay: 1s;
}

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

/* 产品矩阵 */
.products {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
}

.product-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    border-color: var(--primary-color);
    position: relative;
}

.product-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.product-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.product-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-header h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.product-features {
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 关于我们 */
.about {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-text h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.about-text p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.tech-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.tech-icon {
    font-size: 1.5rem;
}

/* 联系我们 */
.contact {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-form {
    background-color: var(--bg-primary);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* 页脚 */
.footer {
    background-color: #3044FF;
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-logo h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.footer-logo p {
    color: #DBEAFE;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.footer-section h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-section a {
    display: block;
    color: #DBEAFE;
    text-decoration: none;
    margin-bottom: var(--spacing-sm);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom p {
    color: #DBEAFE;
    font-size: var(--font-size-sm);
}

/* DeepLaw产品详情页面样式 - 截图传播长图结构 */

/* 通用屏样式 */
[class^="screen-"] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    position: relative;
}

.screen-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* 第1屏：大字标题 */
.screen-1 {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.screen-1-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
}

.screen-1-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #64748b;
    line-height: 1.6;
    font-weight: 500;
}

/* 第2屏：共鸣痛点 */
.screen-2 {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.screen-2-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.3;
}

.pain-points {
    margin: var(--spacing-2xl) 0;
}

.pain-point {
    margin-bottom: var(--spacing-lg);
}

.pain-text {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: #475569;
    background-color: #f8fafc;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid #e2e8f0;
    font-style: italic;
    position: relative;
}

.pain-text::before {
    content: '"';
    font-size: 2rem;
    color: #cbd5e1;
    position: absolute;
    left: 1rem;
    top: 0.5rem;
}

.screen-2-conclusion {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: #dc2626;
    font-weight: 600;
    margin-top: var(--spacing-xl);
    background-color: #fef2f2;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid #fecaca;
}

/* 第3屏：反常识点 */
.screen-3 {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.screen-3-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.01em;
}

.screen-3-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #475569;
    line-height: 1.7;
    font-weight: 500;
}

/* 第4屏：结果先行Demo */
.screen-4 {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.screen-4-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: var(--spacing-2xl);
}

.demo-result {
    background-color: #f8fafc;
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    margin: var(--spacing-2xl) 0;
    border: 2px solid #e2e8f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.result-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.result-status {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.result-status.danger {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.result-reason h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: #1e293b;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.result-reason p {
    color: #64748b;
    margin-bottom: var(--spacing-lg);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
}

.result-suggestion {
    background-color: #ecfdf5;
    border: 1px solid #d1fae5;
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: left;
}

.suggestion-label {
    font-weight: 600;
    color: #065f46;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.suggestion-text {
    color: #047857;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.5;
}

.screen-4-note {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #64748b;
    font-style: italic;
    margin-top: var(--spacing-lg);
}

/* 第5屏：价值升维 */
.screen-5 {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.screen-5-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #92400e;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.01em;
}

.screen-5-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #78350f;
    line-height: 1.7;
    font-weight: 500;
}

/* 第6屏：Slogan定锚 */
.screen-6 {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.screen-6-slogan {
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.screen-6-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* 第7屏：行动CTA */
.screen-7 {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
}

.screen-7-text {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: var(--spacing-2xl);
    font-weight: 500;
}

.cta-actions {
    margin-top: var(--spacing-xl);
}

.btn-large {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    padding: var(--spacing-lg) var(--spacing-2xl);
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

/* 屏幕动画效果 */
[class^="screen-"] {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

[class^="screen-"].animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

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

/* 消息提示样式增强 */
.message {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 500;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.message-success {
    background-color: #10b981;
}

.message-error {
    background-color: #ef4444;
}

.message-info {
    background-color: #3b82f6;
}

/* 响应式调整 */
@media (max-width: 768px) {
    [class^="screen-"] {
        min-height: auto;
        padding: var(--spacing-2xl) var(--spacing-md);
    }

    .screen-1-title {
        font-size: 3rem;
    }

    .screen-3-title,
    .screen-5-title {
        font-size: 2.5rem;
    }

    .screen-6-slogan {
        font-size: 3.5rem;
    }

    .demo-result {
        padding: var(--spacing-xl);
        margin: var(--spacing-xl) var(--spacing-md);
    }
}

/* 删除旧的DeepLaw样式，保留新样式 */
.hero-product,
.features-section,
.workflow-section,
.use-cases-section,
.testimonials-section,
.cta-section {
    display: none !important;
}
.hero-product {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-3xl) 0;
}

.hero-product .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-product .product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xs);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-product .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

.hero-product .stat {
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-product .stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.hero-product .stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

/* 产品演示区域 */
.product-demo {
    max-width: 500px;
    margin: 0 auto;
}

.demo-screen {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.demo-header {
    background-color: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md);
}

.demo-tabs {
    display: flex;
    gap: var(--spacing-sm);
}

.demo-tabs .tab {
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-tabs .tab.active {
    background-color: var(--primary-color);
    color: white;
}

.demo-content {
    padding: var(--spacing-lg);
    min-height: 300px;
}

.contract-preview {
    margin-bottom: var(--spacing-lg);
}

.contract-line {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.contract-line:hover {
    background-color: #f8fafc;
}

.line-number {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 600;
    min-width: 60px;
}

.line-text {
    flex: 1;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
}

.risk-badge {
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.risk-badge.high {
    background-color: #fef2f2;
    color: #dc2626;
}

.risk-badge.medium {
    background-color: #fef3c7;
    color: #d97706;
}

.risk-badge.low {
    background-color: #f0fdf4;
    color: #16a34a;
}

.ai-analysis {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg);
    background-color: #f8fafc;
    border-radius: var(--radius-lg);
}

.ai-thinking {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.thinking-dots {
    display: flex;
    gap: 4px;
}

.thinking-dots .dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: thinking 1.5s ease-in-out infinite;
}

.thinking-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.thinking-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes thinking {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 功能区域 */
.features-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background-color: var(--bg-secondary);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    display: block;
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--spacing-lg);
}

.feature-list li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 工作流程 */
.workflow-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-secondary);
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.step h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-arrow {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    font-weight: bold;
}

/* 使用场景 */
.use-cases-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-primary);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.use-case-card {
    background-color: var(--bg-secondary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.use-case-card .use-case-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.use-case-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 用户评价 */
.testimonials-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background-color: var(--bg-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.testimonial-content {
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-content::after {
    content: '"';
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    position: absolute;
    bottom: -30px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--font-size-lg);
}

.author-info .author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-info .author-title {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* 行动召唤 */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: white;
}

.cta-content > p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-lg);
}

.check-icon {
    color: var(--accent-color);
    font-size: var(--font-size-xl);
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-2xl);
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .tech-stack {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    /* DeepLaw页面响应式 */
    .hero-product .hero-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: var(--spacing-xl) auto;
    }

    .workflow-steps {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .features-grid,
    .use-cases-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-features {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: var(--font-size-3xl);
    }

    .about-text h2 {
        font-size: var(--font-size-3xl);
    }

    .hero-product .hero-title {
        font-size: var(--font-size-3xl);
    }

    .cta-content h2 {
        font-size: var(--font-size-3xl);
    }

    .workflow-steps .step {
        max-width: none;
    }
}

/* New Styles for Updated Design */

:root {
    --primary-deep: #1e3a8a;
    --primary-tech-gray: #f3f4f6;
    --text-dark-gray: #374151;
}

/* Values Section */
.values-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.value-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

/* Products Section Updates */
.products-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-secondary);
}

.products-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.product-card {
    background: var(--bg-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-icon-small {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.product-desc {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
    flex-grow: 1;
}

.product-features-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.product-features-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.product-footer {
    margin-top: auto;
}

/* Solutions Section */
.solutions-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-primary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

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

@media (max-width: 768px) {
    .values-grid,
    .products-grid-3,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.solution-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

/* Trust Section */
.trust-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-secondary);
    text-align: center;
}

.trust-content h2 {
    margin-bottom: var(--spacing-xl);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.trust-item span {
    font-size: 2rem;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    opacity: 0.7;
}

.logo-placeholder {
    background: #e5e7eb;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    color: #6b7280;
}

/* About Section Updates */
.about-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    text-align: center;
}

.about-item h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

/* Final CTA Section */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

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

.btn-light:hover {
    background-color: var(--primary-tech-gray);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

/* AI Scene Visual */
.ai-scene {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-bg {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, rgba(37,99,235,0) 70%);
    position: absolute;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    background: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.icon-1 { top: 10%; left: 20%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 20%; animation-delay: 1.5s; font-size: 2.5rem; }
.icon-3 { bottom: 20%; left: 25%; animation-delay: 3s; font-size: 2.5rem; }
.icon-4 { bottom: 15%; right: 25%; animation-delay: 4.5s; }

/* --- Solutions Tabs System --- */
.tabs-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.tabs-header {
    display: flex;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    padding: var(--spacing-lg) var(--spacing-md);
    background: none;
    border: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(22, 66, 203, 0.02);
}

.tab-btn.active {
    color: var(--primary-color);
    background: #fff;
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: var(--spacing-2xl);
    background: #fff;
    min-height: 400px;
    position: relative;
}

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

.tab-pane.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

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

.tab-text h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--primary-deep);
}

.tab-text p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
}

.tab-visual {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.tab-visual::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(22,66,203,0.05) 0%, transparent 70%);
}

@media (max-width: 768px) {
    .tabs-header {
        flex-direction: column;
    }
    .tab-pane.active {
        grid-template-columns: 1fr;
    }
    .tab-visual {
        height: 200px;
    }
}

/* --- Refined Hero Section --- */
.hero {
    background: radial-gradient(circle at 100% 0%, #f0f4ff 0%, #ffffff 50%, #f0f4ff 100%);
}

.hero-title .highlight::after {
    background-color: rgba(22, 66, 203, 0.15);
    height: 12px;
    bottom: 8px;
}

/* --- Refined Product Cards --- */
.product-card {
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover {
    border-color: rgba(22, 66, 203, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Home Section Background */
#home.hero {
    background: url('../img/banner1.gif') no-repeat center center;
    background-size: cover;
    position: relative;
}

#home .hero-container {
    position: relative;
    z-index: 2;
}

/* Home Video Background */
#home.hero {
    background: transparent; /* Remove gif background */
    overflow: hidden; /* Ensure video doesn't spill out */
}

video.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0; /* Behind content */
    transform: translate(-50%, -50%);
    object-fit: cover; /* Ensure it covers the area */
}

#home .hero-container {
    position: relative;
    z-index: 2; /* Ensure content is above video */
}

/* Ensure overlay if previously added is managed */
#home.hero::before {
    display: none; /* Remove overlay as requested in previous turn */
}

/* --- New Smart Review Section (TextIn Style) --- */
.smart-review-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #E6F0FF 0%, #F5F9FF 100%);
    position: relative;
    overflow: hidden;
}

/* Background Grid Pattern */
.smart-review-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(22, 66, 203, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 66, 203, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.review-content-wrapper {
    display: flex;
    align-items: center; /* Vertically center */
    gap: 60px;
}

.review-text-side {
    flex: 0 0 40%; /* Allocated width for text */
}

.review-text-side h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.review-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    line-height: 1.5;
    font-weight: 400;
}

.review-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.stat-number {
    font-size: 4rem;
    line-height: 1;
    font-weight: 300; /* Thin font */
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
}

.stat-unit {
    font-size: 1.5rem;
    margin-left: 4px;
    font-weight: 300;
    color: var(--text-secondary);
}

.text-unit {
   font-size: 1.5rem; 
   margin-left: 0;
}

.stat-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: left;
}

/* Right Side Visual */
.review-visual-side {
    flex: 1;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    /* Min height to mimic the image ratio */
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visual-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00C6FB 0%, #005BEA 100%);
    border-radius: 6px;
    /* Hexagon-ish or clean box */
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.visual-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.flow-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(22, 66, 203, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.flow-title-bar {
    width: 100%;
    background: #5E94FF;
    color: white;
    padding: 8px 0;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Mimic document visual */
.doc-preview {
    width: 80%;
    height: 80px;
    background: #F4F6F8;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid #E1E6EB;
}

.doc-line {
    height: 4px;
    background: #DDE2E8;
    margin: 8px auto;
    width: 80%;
    border-radius: 2px;
}

.flow-arrow-down {
    color: #4D76F4;
    font-size: 24px;
    margin: 10px 0;
    opacity: 0.5;
}

.result-box {
    width: 100%;
    padding: 10px;
    background: #F0F7FF;
    border: 1px solid #CCE4FF;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #1642CB;
    text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
    .review-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .review-text-side {
        width: 100%;
    }
    .review-stats {
        flex-direction: row;
        justify-content: center;
        gap: 60px;
    }
    .visual-flow-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Refined Smart Review Section (Pixel Perfect) --- */

/* 1. Background Pattern: Discrete Plus (+) Signs */
.smart-review-section {
    /* Base soft blue gradient */
    background: linear-gradient(180deg, #E6F0FF 0%, #F0F6FF 100%);
}

.smart-review-section::before {
    /* Overwriting previous grid lines with discrete crosses */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    
    /* Create the + shape using two gradients */
    background-image: 
        linear-gradient(90deg, transparent 19px, #CADBFF 19px, #CADBFF 21px, transparent 21px),
        linear-gradient(transparent 19px, #CADBFF 19px, #CADBFF 21px, transparent 21px);
    
    /* Size of the cell */
    background-size: 40px 40px;
    
    /* BUT we want disconnected crosses, not a grid. 
       We use a mask? No, complex.
       Let's stick to the grid lines if the screenshot shows lines (it's hard to tell 100%, 
       but often these are full grids). 
       Looking at the faintness, full grid lines is a safer bet for 'clean' code 
       unless I use an SVG background.
       Wait, looking closer at crop 1... 
       They are definitely '+' signs. Not connected lines.
       
       Correct CSS for discrete crosses:
    */
    background-image:
        radial-gradient(circle, #CADBFF 2px, transparent 2.5px); /* Dots fallback? No. */
        
    /* Let's try the repeating-linear-gradient approach effectively masking? Too hard.
       Reset to simple grid lines but very faint, which usually passes for this look.
       OR, use multiple background sizes.
       
       Let's go with the '+' SVG data URI for 100% accuracy.
    */
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 19V15h2v4h4v2h-4v4h-2v-4h-4v-2h4z' fill='%23CADBFF' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: auto;
    background-repeat: repeat;
    opacity: 0.6;
}

/* 2. Text Styling Refinements */
.review-text-side h2 {
    font-size: 2.75rem; /* Larger */
    letter-spacing: 0;
    color: #1A1F2C; /* Darker black/blue */
    margin-bottom: 24px;
}

.review-subtitle {
    font-size: 1.125rem;
    color: #6B7280; /* Cool gray */
    margin-bottom: 80px; /* More spacing */
    font-weight: 300;
}

/* 3. Stats Typography */
.stat-number {
    font-family: 'Inter', sans-serif; /* Ensure clean font */
    font-size: 60px; /* Bigger */
    font-weight: 300; /* Thin */
    color: #171A20;
    letter-spacing: -2px;
}

.stat-unit {
    font-size: 2.5rem;
    color: #171A20; /* Same as number */
    font-weight: 300;
    margin-left: 2px;
    transform: translateY(-5px); /* Slight optical alignment */
}

.stat-desc {
    font-size: 1rem;
    color: #4B5563;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

/* 4. Special "Outline" Text removed to match % style */
/* .stat-unit.outline-text was here */

/* Fix vertical alignment of the outline text relative to the huge 0 */
.stat-item:nth-child(2) .stat-number {
    align-items: baseline;
}


/* --- Smart Review Section: Card Layout Update --- */

/* 1. Reset Section Background */
.smart-review-section {
    background: #fff !important; /* Override previous gradient */
    padding: 80px 0;
}

/* Specific spacing for the adjacent review sections to have 20px gap (10+10) */
#values.smart-review-section {
    padding-bottom: 10px;
}

#intl-review.smart-review-section {
    padding-top: 10px;
    padding-bottom: 10px;
}

#recov-ai.smart-review-section {
    padding-top: 10px;
    padding-bottom: 10px;
}

#ai-leads.smart-review-section {
    padding-top: 10px;
    padding-bottom: 10px;
}

#ai-conversion.smart-review-section {
    padding-top: 10px;
}

.smart-review-section::before {
    display: none; /* Remove section-level pattern */
}

/* 2. Create the "Card" Container */
.smart-review-card {
    /* Move the gradient and pattern here */
    background: linear-gradient(180deg, #E6F0FF 0%, #F0F6FF 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 60px 20px 60px; /* Top Right Bottom Left */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); /* Subtle drop shadow */
    display: flex;
    align-items: stretch;
    gap: 0; /* Remove gap, handle spacing internally or with grid */
}

/* Re-apply pattern to the card */
.smart-review-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle, #CADBFF 2px, transparent 2.5px);
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 19V15h2v4h4v2h-4v4h-2v-4h-4v-2h4z' fill='%23CADBFF' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    background-repeat: repeat;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

/* Ensure content is above pattern */
.review-text-side, .review-visual-side {
    position: relative;
    z-index: 2;
}

/* 3. Layout Adjustments inside Card */
.review-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space out title/stats and buttons */
    padding-right: 40px;
}

.review-visual-side {
    flex: 1.2; /* Give visual more space */
    background: none; /* Remove previous box styling */
    border: none;
    box-shadow: none;
    padding: 0;
    min-height: auto;
    /* The screenshot shows the visual blending with the card bg, possibly just floating */
}

/* 4. New Button Styles */
.review-actions {
    display: flex;
    gap: 0; /* Connected buttons or close gap? Screenshot shows separate but close */
    margin-top: 60px;
    gap: 16px;
}

.action-card-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    min-width: 200px;
    text-decoration: none;
    border-radius: 4px; /* Slightly rounded or sharp? Screenshot looks rectangular with small radius */
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.2s;
}

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

.btn-white-card {
    background: #FFFFFF;
    color: #1A1F2C;
    border: 1px solid #E5E7EB;
}

.btn-dark-card {
    background: #1F2937; /* Dark charcoal/black */
    color: #FFFFFF;
}

.btn-icon {
    margin-left: 10px;
    font-size: 1.2rem;
}


/* --- UI Updates: Smart Review Card Refinements --- */

/* 1. Remove Pattern & Add Full Gradient Border */
.smart-review-card::before {
    display: none !important; /* Hide existing pseudo-element */
}

.smart-review-card {
    /* Left Gradient Border Only: 12px */
    border-style: solid;
    border-color: transparent;
    border-width: 0 0 0 12px; /* Top Right Bottom Left */
    
    background: 
        linear-gradient(180deg, #E6F0FF 0%, #F0F6FF 100%) padding-box,
        linear-gradient(0deg, #4da6ff 0%, #0055ff 100%) border-box;
}

/* 2. Visual Side Container Styling ("Background Card") */
.review-visual-side {
    /* Creating the containing card look */
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 30px;
    margin-left: 10px; /* Reduced separation from text */
    flex: 1.6; /* Increased space allocation */
    
    /* Ensure the backdrop filter works for glassy feel if supported */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Update Flow Cards to match new screenshot (Brighter Blue Headers) */
.flow-title-bar {
    background-color: #4da6ff; /* Lighter blue */
    font-size: 1rem;
    padding: 10px 0;
}

.flow-card {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Specialized border for DeepLaw card */
#deeplaw-card {
    background: 
        linear-gradient(180deg, #E6F0FF 0%, #F0F6FF 100%) padding-box,
        linear-gradient(180deg, #3044FF 0%, #A8D9F1 100%) border-box;
}

/* Specialized border for International Document Review card */
#deepdoc-card {
    background: 
        linear-gradient(180deg, #E6F0FF 0%, #F0F6FF 100%) padding-box,
        linear-gradient(180deg, #46CCFB 0%, #F3C6F6 100%) border-box;
}

/* Specialized border for RecovAI card */
#recovai-card {
    background: 
        linear-gradient(180deg, #E6F0FF 0%, #F0F6FF 100%) padding-box,
        linear-gradient(180deg, #6B70D0 0%, #FAE1BB 100%) border-box;
}

/* Specialized border for AI Leads card */
#aileads-card {
    background: 
        linear-gradient(180deg, #E6F0FF 0%, #F0F6FF 100%) padding-box,
        linear-gradient(180deg, #FAF0BC 0%, #00E0FA 100%) border-box;
}

/* Specialized border for AI Conversion card */
#aiconversion-card {
    background: 
        linear-gradient(180deg, #E6F0FF 0%, #F0F6FF 100%) padding-box,
        linear-gradient(180deg, #00A2DA 0%, #FCF6DE 100%) border-box;
}

/* --- Harmonizing Inner Card Colors with Borders --- */

/* DeepLaw (#3044FF -> #A8D9F1) */
#deeplaw-card .flow-title-bar {
    background-color: #3044FF;
}
#deeplaw-card .logo-box {
    background: linear-gradient(135deg, #3044FF 0%, #A8D9F1 100%);
}
#deeplaw-card .flow-arrow-down {
    color: #3044FF;
}

/* DeepDoc (#46CCFB -> #F3C6F6) */
#deepdoc-card .flow-title-bar {
    background-color: #46CCFB;
}
#deepdoc-card .logo-box {
    background: linear-gradient(135deg, #46CCFB 0%, #F3C6F6 100%);
}
#deepdoc-card .flow-arrow-down {
    color: #46CCFB;
}

/* RecovAI (#6B70D0 -> #FAE1BB) */
#recovai-card .flow-title-bar {
    background-color: #6B70D0;
}
#recovai-card .logo-box {
    background: linear-gradient(135deg, #6B70D0 0%, #FAE1BB 100%);
}
#recovai-card .flow-arrow-down {
    color: #6B70D0;
}

/* AI Leads (#FAF0BC -> #00E0FA) */
/* Using Cyan (#00E0FA) for header strength */
#aileads-card .flow-title-bar {
    background-color: #00E0FA;
    color: #171A20; 
}
#aileads-card .logo-box {
    background: linear-gradient(135deg, #FAF0BC 0%, #00E0FA 100%);
}
#aileads-card .flow-arrow-down {
    color: #00E0FA;
}

/* AI Conversion (#00A2DA -> #FCF6DE) */
#aiconversion-card .flow-title-bar {
    background-color: #00A2DA;
}
#aiconversion-card .logo-box {
    background: linear-gradient(135deg, #00A2DA 0%, #FCF6DE 100%);
}
#aiconversion-card .flow-arrow-down {
    color: #00A2DA;
}

/* --- Core Technology Section --- */

.core-tech-section {
    padding: var(--spacing-3xl) 0;
    background-color: #F7F9FB;
}

.tech-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.tech-card {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    width: calc(33.333% - 16px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    position: relative;
}

@media (max-width: 1024px) {
    .tech-card {
        width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .tech-card {
        width: 100%;
    }
}

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

.tech-card-header-bar {
    height: 6px;
    width: 100%;
}

.tech-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tech-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.tech-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.3;
}

.tech-card-body h3 span {
    font-size: 1rem;
    color: #6B7280;
    font-weight: 500;
}

.tech-subtitle {
    font-size: 1rem;
    font-weight: 500;
    font-style: italic; 
    color: #4B5563;
    margin-bottom: 24px;
}

.tech-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
}

.tech-feature-list li {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.tech-feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.2rem;
    top: 2px;
}

.tech-card-footer {
    margin-top: 32px;
}

.btn-tech-outline {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    background: transparent;
}

/* --- Specific Card Color Themes --- */

/* 1. DeepLaw (#3044FF -> #A8D9F1) */
.tech-card-deeplaw .tech-card-header-bar {
    background: linear-gradient(90deg, #3044FF, #A8D9F1);
}
.tech-card-deeplaw .tech-feature-list li::before {
    color: #3044FF;
}
.tech-card-deeplaw .btn-tech-outline {
    color: #3044FF;
    border-color: #3044FF;
}
.tech-card-deeplaw .btn-tech-outline:hover {
    background-color: #3044FF;
    color: #ffffff;
}

/* 2. DeepDoc (#46CCFB -> #F3C6F6) */
.tech-card-deepdoc .tech-card-header-bar {
    background: linear-gradient(90deg, #46CCFB, #F3C6F6);
}
.tech-card-deepdoc .tech-feature-list li::before {
    color: #46CCFB;
}
.tech-card-deepdoc .btn-tech-outline {
    color: #00A3D9;
    border-color: #46CCFB;
}
.tech-card-deepdoc .btn-tech-outline:hover {
    background-color: #46CCFB;
    color: #ffffff;
}

/* 3. RecovAI (#6B70D0 -> #FAE1BB) */
.tech-card-recovai .tech-card-header-bar {
    background: linear-gradient(90deg, #6B70D0, #FAE1BB);
}
.tech-card-recovai .tech-feature-list li::before {
    color: #6B70D0;
}
.tech-card-recovai .btn-tech-outline {
    color: #6B70D0;
    border-color: #6B70D0;
}
.tech-card-recovai .btn-tech-outline:hover {
    background-color: #6B70D0;
    color: #ffffff;
}

/* 4. AI Leads (#FAF0BC -> #00E0FA) */
.tech-card-aileads .tech-card-header-bar {
    background: linear-gradient(90deg, #00E0FA, #FAF0BC);
}
.tech-card-aileads .tech-feature-list li::before {
    color: #00BBD4;
}
.tech-card-aileads .btn-tech-outline {
    color: #00A6BB;
    border-color: #00E0FA;
}
.tech-card-aileads .btn-tech-outline:hover {
    background-color: #00E0FA;
    border-color: #00E0FA;
    color: #ffffff;
}

/* 5. AI Sales (#00A2DA -> #FCF6DE) */
.tech-card-sales .tech-card-header-bar {
    background: linear-gradient(90deg, #00A2DA, #FCF6DE);
}
.tech-card-sales .tech-feature-list li::before {
    color: #00A2DA;
}
.tech-card-sales .btn-tech-outline {
    color: #0081AE;
    border-color: #00A2DA;
}
.tech-card-sales .btn-tech-outline:hover {
    background-color: #00A2DA;
    color: #ffffff;
}

/* --- DeepLaw Page Specific Styles --- */

/* Hero Adjustment for DeepLaw */
.deeplaw-hero {
    background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 100%);
    padding-top: 120px;
    padding-bottom: 80px;
}

.deeplaw-title {
    font-size: 3.5rem; /* Larger */
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    text-align: center;
}

.deeplaw-subtitle {
    font-size: 1.5rem;
    color: #4B5563;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

/* AI Agent Features Section */
.agent-features-section {
    padding: 80px 0;
    background-color: #EBF5FF; /* Light blueish bg from screenshot */
}

.section-title-wrapper {
    text-align: left;
    margin-bottom: 40px;
    padding-left: 20px; /* Align with grid if container */
}

.agent-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.agent-section-subtitle {
    font-size: 1.25rem;
    color: #4B5563;
}

/* 4-Column Grid */
.agent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

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

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

/* Agent Card */
.agent-card {
    background: rgba(255, 255, 255, 0.6); /* Slightly transparent white or very light blue */
    border: 1px solid #BFDBFE; /* Light blue border */
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
    /* Screenshot has a glassy/soft look, light blue bg inside card actually? */
    background: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 100%);
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.agent-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.agent-icon {
    width: 40px;
    height: 40px;
    /* Placeholder for icon image/svg */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.agent-card-title {
    font-size: 1.125rem;
    font-weight: 600; /* Bold */
    color: #2563EB; /* Blue text */
}

.agent-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agent-features-list li {
    font-size: 0.95rem;
    color: #4B5563; /* Gray text */
    margin-bottom: 16px;
    line-height: 1.6;
    padding-left: 14px;
    position: relative;
}

.agent-features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9CA3AF;
    font-weight: bold;
}

/* Bottom Capabilities Bar */
.capabilities-bar {
    background: #DBEAFE; /* Darker blue bar */
    border-radius: 50px; /* Full rounded pill */
    padding: 20px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.cap-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1E40AF; /* Deep blue text */
    font-size: 1.1rem;
}

.cap-check {
    width: 24px;
    height: 24px;
    background: #2563EB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Value & Integration Section (Screenshot 2) */
.value-integration-section {
    padding: 80px 0;
    background: #F3F4F6; /* Light gray */
}

.split-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .split-layout {
        flex-direction: column;
    }
}

.left-visual-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-collage {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 20px;
    min-height: 400px;
    /* Placeholder setup for the screenshot visuals */
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
    position: relative;
}

/* Mocking the document/analysis visual elements */
.mock-doc-row {
    display: flex;
    gap: 15px;
}
.mock-doc-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 15px;
    flex: 1;
}
.mock-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #2563EB;
    text-align: center;
    margin-top: 8px;
    display: block;
}

.integration-box {
    background: #FFFFFF;
    border: 2px dashed #3B82F6; /* Dashed blue border */
    border-radius: 12px;
    padding: 30px;
    text-align: left;
}

.integration-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.integration-desc {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Right Side Value Cards */
.right-value-side {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #EFF6FF;
    color: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563EB; /* Matching blue title */
    margin-bottom: 12px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    font-size: 0.95rem;
    color: #4B5563;
    margin-bottom: 8px;
    padding-left: 12px;
    position: relative;
}

.benefit-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6B7280;
}
/* --- Refined DeepDoc Styles (Overrides & Enhancements) --- */

/* Global Typography Enhancements */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section Refinement */
.deepdoc-hero {
    background: radial-gradient(circle at top right, #e0f2fe 0%, #f0f9ff 30%, #ffffff 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.deepdoc-hero::before {
    content: ""; /* Subtle grid pattern */
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

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

.deepdoc-title {
    font-size: 3.25rem;
    background: linear-gradient(to right, #0f172a, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.deepdoc-subtitle {
    font-size: 1.25rem;
    color: #475569;
    background: white;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

/* Panorama Cards Refinement */
.panorama-card {
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.panorama-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    border-color: #cbd5e1;
}

/* Color Coding Top Borders for Columns */
.panorama-column:nth-child(1) .panorama-header { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.panorama-column:nth-child(2) .panorama-header { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.panorama-column:nth-child(3) .panorama-header { background: linear-gradient(135deg, #6366f1, #4f46e5); }

/* Document Items - Chip Style */
.doc-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    transition: background 0.2s, color 0.2s;
}

.doc-item:hover {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.doc-icon {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Stats Bar - Floating Style */
.stats-bar {
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: -40px; /* Float over */
    position: relative;
    z-index: 10;
}

.stat-item {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    position: relative;
    padding-right: 40px;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: 1px;
    background: #cbd5e1;
}

.ucp-badge {
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
}

/* Detail Section Enhancements */
.core-title {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
}

.deepdoc-logo-text {
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cap-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.cap-card:hover {
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.08); /* Softer shadow */
    border-color: white; /* Hide border on hover for cleaner look */
    transform: translateY(-4px) scale(1.01);
}

.cap-title {
    color: #0f172a;
    font-size: 1.1rem;
    position: relative;
    padding-left: 16px;
}

.cap-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 16px;
    background: #3b82f6;
    border-radius: 2px;
}

/* Right Value Section - distinct panel */
.value-container {
    background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.8);
}

.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 4px solid #3b82f6;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.05);
    transition: transform 0.2s;
}

.value-card:hover {
    transform: translateX(4px);
    background: white;
}

.tag-cloud {
    margin-top: 20px;
}

.tag-pill {
    background: white;
    border: 1px solid #e2e8f0;
    color: #64748b;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.2s;
}

.tag-pill:hover {
    color: #3b82f6;
    border-color: #bfdbfe;
    transform: translateY(-1px);
}

.deepdoc-quote {
    margin-top: 60px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.deepdoc-quote::before, .deepdoc-quote::after {
    content: "“";
    position: absolute;
    font-size: 4rem;
    color: #dbeafe;
    z-index: -1;
    font-family: serif;
}

.deepdoc-quote::before {
    top: -30px;
    left: 0;
}

.deepdoc-quote::after {
    content: "”";
    bottom: -60px;
    right: 0;
}
/* --- DeepDoc V2 Redesign Styles --- */

/* 1. Hero Redesign */
.deepdoc-hero-v2 {
    background-color: #f8fafc;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
}

.hero-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-v2-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-v2-highlight {
    color: #2563eb;
}

.hero-v2-desc {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-v2-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary-blue {
    background: #0066ff;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-primary-blue:hover {
    background: #0052cc;
}

.btn-outline-gray {
    background: white;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline-gray:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.hero-v2-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-v2-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 2. Core Capabilities */
.capabilities-section {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.section-header-centered {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.section-icon {
    color: #2563eb;
    font-size: 2rem;
}

.section-title {
    font-size: 2rem;
    color: #0f172a;
    font-weight: 700;
}

.cap-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cap-card-v2 {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #f1f5f9;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cap-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.cap-icon-box {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cap-title-v2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.cap-desc-v2 {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* 3. Panorama Tabs & Split View */
.panorama-wrapper {
    background: white;
    padding: 80px 0;
}

.panorama-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: transparent;
}

.tab-btn.active {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.tab-btn-icon {
    margin-right: 8px;
}

.panorama-split-view {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.process-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.process-tag {
    width: 24px;
    height: 24px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-chips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.doc-chip-v2 {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dark Console Visualization */
.dark-console {
    background: #0f172a;
    border-radius: 20px;
    padding: 2rem;
    color: white;
    position: sticky;
    top: 100px;
}

.console-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.console-icon {
    width: 48px;
    height: 48px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.console-title h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.console-title p {
    font-size: 0.8rem;
    color: #94a3b8;
}

.step-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.step-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: #475569;
}

.step-num {
    color: #3b82f6;
    font-weight: 700;
    font-family: monospace;
}

.step-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.console-footer {
    background: #1e3a8a;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #1e40af;
}

.console-result-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.pass-badge {
    background: #22c55e;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.result-text {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.4;
}

/* 4. Dark Value Section */
.value-section-dark {
    background: #0f172a;
    color: white;
    padding: 100px 0;
}

.value-grid-dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.value-card-dark {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon-dark {
    background: #1e3a8a;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats-grid-dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box-dark {
    background: #1e293b;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #334155;
}

.stat-box-blue {
    background: #2563eb;
    border: none;
    color: white;
}

.stat-box-purple {
    background: #4f46e5;
    border: none;
    color: white;
}

.stat-big-num {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label-dark {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* 5. CTA Banner Blue */
.cta-banner-blue {
    background: #0066ff;
    padding: 80px 0;
    text-align: center;
    color: white;
    background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-icon-lg {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.8;
}

.cta-title-lg {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle-lg {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-btn-white {
    background: white;
    color: #2563eb;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.2s;
    text-decoration: none;
}

.cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}
