/* ===== LicitBot - Professional Styles ===== */

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

:root {
    --bg-primary: #050A18;
    --bg-secondary: #0A1628;
    --bg-card: #0D1B2A;
    --bg-card-hover: #112240;
    --bg-elevated: #1a2d50;
    --text-primary: #E6EDF3;
    --text-secondary: #8B9FC5;
    --text-muted: #5A6F94;
    --accent-primary: #00E5A0;
    --accent-secondary: #00B8D4;
    --accent-gradient: linear-gradient(135deg, #00E5A0 0%, #00B8D4 50%, #7C5CFF 100%);
    --accent-glow: rgba(0, 229, 160, 0.15);
    --red: #FF4C6A;
    --purple: #7C5CFF;
    --blue: #3B82F6;
    --border: rgba(139, 159, 197, 0.1);
    --border-hover: rgba(139, 159, 197, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px rgba(0, 229, 160, 0.1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

/* ===== Typography ===== */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-primary);
    background: rgba(0, 229, 160, 0.08);
    border: 1px solid rgba(0, 229, 160, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    white-space: nowrap;
    text-decoration: none;
}

.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-md { padding: 12px 24px; font-size: 15px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--accent-gradient);
    color: #050A18;
    box-shadow: 0 4px 16px rgba(0, 229, 160, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 229, 160, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}
.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(0, 229, 160, 0.05);
}

.btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    border: 1px solid transparent;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--border);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 10, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 159, 197, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 159, 197, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 229, 160, 0.08);
    top: -200px;
    right: -100px;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(124, 92, 255, 0.06);
    bottom: -100px;
    left: -100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-primary);
    background: rgba(0, 229, 160, 0.06);
    border: 1px solid rgba(0, 229, 160, 0.15);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Dashboard Visual */
.hero-visual {
    position: relative;
}

.hero-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-dots span:nth-child(1) { background: #FF5F57; }
.dashboard-dots span:nth-child(2) { background: #FEBC2E; }
.dashboard-dots span:nth-child(3) { background: #28C840; }

.dashboard-title {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.dashboard-body {
    padding: 20px;
}

.dash-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
}

.dash-card-main {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

.dash-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.dash-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-primary);
    background: rgba(0, 229, 160, 0.15);
    padding: 4px 10px;
    border-radius: 100px;
}

.dash-card-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dash-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    flex: 1;
}

.dash-mini-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-mini-icon.green { background: rgba(0, 229, 160, 0.15); color: #00E5A0; }
.dash-mini-icon.blue { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }
.dash-mini-icon.purple { background: rgba(124, 92, 255, 0.15); color: #7C5CFF; }

.dash-mini-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.dash-mini-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

/* ===== Trust Bar ===== */
.trust-bar {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(10, 22, 40, 0.5);
}

.trust-label {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 32px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: var(--transition);
}

.trust-logo-item:hover {
    opacity: 1;
}

.trust-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    filter: grayscale(1);
    transition: var(--transition);
}

.trust-logo-item:hover .trust-img {
    filter: grayscale(0);
}

.trust-logo-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* ===== Solution Section ===== */
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.solution-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.solution-card.problem {
    background: linear-gradient(135deg, rgba(255, 76, 106, 0.05), transparent);
    border-color: rgba(255, 76, 106, 0.15);
}

.solution-card.success {
    background: linear-gradient(135deg, rgba(0, 229, 160, 0.05), transparent);
    border-color: rgba(0, 229, 160, 0.15);
}

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

.solution-card-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
}

.solution-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon.red { background: rgba(255, 76, 106, 0.15); color: var(--red); }
.solution-icon.green { background: rgba(0, 229, 160, 0.15); color: var(--accent-primary); }

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.solution-list li {
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.problem .solution-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.6;
}

.success .solution-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    opacity: 0.6;
}

/* ===== Features Section ===== */
.features-section {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-step {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 229, 160, 0.08);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}

.feature-img-wrap {
    width: 100%;
    height: 140px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Documents Section ===== */
.docs-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.docs-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.docs-category:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.docs-cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.docs-cat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.docs-cat-icon.blue { background: rgba(59, 130, 246, 0.15); color: var(--blue); }
.docs-cat-icon.green { background: rgba(0, 229, 160, 0.15); color: var(--accent-primary); }
.docs-cat-icon.purple { background: rgba(124, 92, 255, 0.15); color: var(--purple); }

.docs-cat-header h3 {
    font-size: 16px;
    font-weight: 700;
}

.docs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(139, 159, 197, 0.05);
}

.doc-check {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: rgba(0, 229, 160, 0.12);
    border: 1px solid rgba(0, 229, 160, 0.25);
    flex-shrink: 0;
    position: relative;
}

.doc-check::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid var(--accent-primary);
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

/* ===== Agents Section ===== */
.agents-section {
    background: var(--bg-secondary);
}

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

.agent-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.agent-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.agent-avatar {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
}

.agent-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.agent-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
}

.agent-status.online {
    background: var(--accent-primary);
    box-shadow: 0 0 8px rgba(0, 229, 160, 0.5);
}

.agent-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.agent-role {
    font-size: 12px;
    color: var(--accent-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.agent-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.agent-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.agent-capabilities span {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(0, 229, 160, 0.08);
    border: 1px solid rgba(0, 229, 160, 0.15);
    border-radius: 100px;
    color: var(--accent-primary);
}

/* ===== Pitch Section ===== */
.pitch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pitch-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.pitch-card:hover {
    border-color: var(--border-hover);
}

.pitch-hero-card {
    grid-column: 1 / -1;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.pitch-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.pitch-overlay {
    position: relative;
    z-index: 1;
    padding: 40px;
    background: linear-gradient(transparent, rgba(5, 10, 24, 0.95));
    width: 100%;
}

.pitch-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.pitch-value {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pitch-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pitch-traction {
    grid-column: 1 / -1;
}

.pitch-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.pitch-metric {
    text-align: center;
}

.pm-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-primary);
    display: block;
}

.pm-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== Business Section ===== */
.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.biz-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.biz-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.biz-icon {
    width: 100%;
    height: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

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

.biz-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.biz-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.biz-revenue {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-primary);
    padding: 8px 14px;
    background: rgba(0, 229, 160, 0.08);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* Agents Revenue Block */
.agents-revenue-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.arb-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.arb-text {
    padding: 48px;
}

.arb-text h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.arb-text > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.arb-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.arb-text li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.arb-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
}

.arb-visual {
    position: relative;
}

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

/* ===== Financial Section ===== */
.financial-section {
    background: var(--bg-secondary);
}

.fin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.fin-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.fin-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.fin-card-wide {
    grid-column: 1 / -1;
}

/* Bar Chart */
.fin-bar-group {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 220px;
    padding-top: 20px;
}

.fin-bar {
    flex: 1;
    height: var(--height);
    background: var(--accent-gradient);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 12px;
    position: relative;
    min-height: 40px;
    transition: var(--transition);
}

.fin-bar:hover {
    filter: brightness(1.2);
}

.fin-bar span {
    font-size: 11px;
    color: rgba(5, 10, 24, 0.7);
    font-weight: 600;
}

.fin-bar strong {
    position: absolute;
    top: -24px;
    font-size: 12px;
    color: var(--accent-primary);
    font-weight: 700;
    white-space: nowrap;
}

/* Metrics */
.fin-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fin-metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fm-header span:first-child {
    font-size: 14px;
    color: var(--text-secondary);
}

.fm-value {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-primary);
}

.fm-bar {
    height: 6px;
    background: rgba(139, 159, 197, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.fm-fill {
    height: 100%;
    width: var(--width);
    background: var(--accent-gradient);
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Financial Table */
.fin-table-wrap {
    overflow-x: auto;
}

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

.fin-table th,
.fin-table td {
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.fin-table th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fin-table td {
    color: var(--text-secondary);
}

.fin-table td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

.fin-highlight td {
    color: var(--accent-primary) !important;
    font-weight: 700 !important;
    background: rgba(0, 229, 160, 0.05);
    border-bottom: none;
}

/* ===== Startup Section ===== */
.startup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.startup-text .section-title {
    text-align: left;
}

.startup-text > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.startup-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.sc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.startup-visual {
    position: relative;
}

.startup-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.startup-float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.sfc-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sfc-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-primary);
}

.sfc-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== Pricing Section ===== */
.pricing-section {
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.price-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.price-featured {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

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

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #050A18;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.price-header {
    margin-bottom: 24px;
}

.price-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.price-features li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 10px;
    border: solid var(--accent-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ===== Newsletter ===== */
.newsletter-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.newsletter-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--accent-primary);
}

.newsletter-note {
    font-size: 12px;
    color: var(--text-muted);
}

.newsletter-visual {
    position: relative;
}

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

/* ===== Bot Section ===== */
.bot-section {
    background: var(--bg-secondary);
}

.bot-preview {
    max-width: 640px;
    margin: 0 auto;
}

.bot-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.bot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(0,0,0,0.2);
}

.bot-header strong {
    font-size: 14px;
    display: block;
}

.bot-status-text {
    font-size: 11px;
    color: var(--accent-primary);
}

.bot-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 200px;
}

.bot-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    line-height: 1.6;
}

.bot-msg-bot {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    align-self: flex-start;
    color: var(--text-secondary);
}

.bot-msg-user {
    background: rgba(0, 229, 160, 0.1);
    border: 1px solid rgba(0, 229, 160, 0.2);
    align-self: flex-end;
    color: var(--text-primary);
}

.bot-input-area {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
}

.bot-input-area input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 13px;
    outline: none;
}

/* ===== Impact Section ===== */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.impact-card {
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.impact-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.impact-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    display: inline;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-unit {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-primary);
    display: inline;
    margin-left: 4px;
}

.impact-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.5;
}

/* ===== Contact Section ===== */
.contact-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.contact-content {
    padding: 48px;
}

.contact-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 12px;
}

.contact-content > p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent-primary);
}

.contact-form select {
    appearance: none;
    cursor: pointer;
}

.contact-form textarea {
    resize: vertical;
}

.contact-info {
    position: relative;
    display: flex;
    flex-direction: column;
}

.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.contact-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(5, 10, 24, 0.95));
}

.cd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 10px;
}

/* ===== Footer ===== */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .docs-showcase {
        grid-template-columns: 1fr;
    }

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

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

    .arb-content {
        grid-template-columns: 1fr;
    }

    .startup-content {
        grid-template-columns: 1fr;
    }

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

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

    .contact-card {
        grid-template-columns: 1fr;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-actions .btn {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .hero-dashboard {
        display: none;
    }

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

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

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

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

    .price-featured {
        transform: none;
    }

    .price-featured:hover {
        transform: translateY(-4px);
    }

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

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .trust-logos {
        gap: 24px;
    }

    .startup-float-card {
        position: static;
        margin-top: 24px;
    }
}

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

    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 28px;
    }

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

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .fin-bar-group {
        height: 160px;
    }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ===== Selection ===== */
::selection {
    background: rgba(0, 229, 160, 0.2);
    color: var(--text-primary);
}
