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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #000000;
    --primary-dark: #1a1a1a;
    --primary-light: #f5f5f5;
    --secondary-color: #6b7280;
    --accent-color: #4169E1;
    --accent-yellow: #fbbf24;
    --text-primary: #000000;
    --text-secondary: #4b5563;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #000000;
    --bg-card: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-optical-sizing: auto;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

html {
    background-color: var(--bg-primary);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 16px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
    justify-self: center;
}

.nav-cta {
    justify-self: end;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.2s;
}

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

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: none;
    text-decoration: underline;
    text-underline-offset: 4px;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Light Rays Effect */
.light-rays-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    border-radius: inherit;
}

.light-rays-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.light-rays-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.light-rays-gradient-1 {
    background: radial-gradient(circle at 20% 15%, rgba(65, 105, 225, 0.45), transparent 70%);
}

.light-rays-gradient-2 {
    background: radial-gradient(circle at 80% 10%, rgba(65, 105, 225, 0.35), transparent 75%);
}

.light-rays-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.light-ray {
    position: absolute;
    top: -12%;
    left: var(--ray-left);
    height: 70vh;
    width: var(--ray-width);
    transform-origin: top;
    border-radius: 9999px;
    background: linear-gradient(to bottom, rgba(65, 105, 225, 0.7), transparent);
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.gradient-text {
    color: var(--text-primary);
}

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

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

/* Dashboard Demo */
.dashboard-demo {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.demo-frame {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.demo-header {
    background: var(--bg-secondary);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.demo-window-controls {
    display: flex;
    gap: 6px;
}

.demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
}

.demo-dot:nth-child(1) {
    background: #ef4444;
}

.demo-dot:nth-child(2) {
    background: #f59e0b;
}

.demo-dot:nth-child(3) {
    background: #22c55e;
}

.demo-url {
    font-size: 12px;
    color: var(--text-secondary);
    margin-left: auto;
    font-family: 'Monaco', 'Menlo', monospace;
}

.demo-content {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 500px;
    background: var(--bg-primary);
}

.demo-sidebar {
    background: var(--bg-secondary);
    padding: 20px 12px;
    border-right: 1px solid var(--border-color);
}

.demo-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.demo-nav-item.active {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 600;
}

.demo-nav-icon {
    font-size: 16px;
}

.demo-main {
    padding: 24px;
    overflow: hidden;
}

.demo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.demo-stat-card {
    background: var(--bg-secondary);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.demo-stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Make money values black - target the "This Month" stat specifically */
.demo-stat-card:nth-child(2) .demo-stat-value {
    color: var(--text-primary);
}

.demo-pipeline {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.demo-pipeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.demo-pipeline-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.demo-badge {
    background: var(--accent-color);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

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

.demo-pipeline-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.demo-stage {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-stage-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.demo-deal-item {
    background: var(--bg-primary);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    animation: slideIn 0.6s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.demo-deal-1 {
    animation-delay: 0.5s;
}

.demo-deal-2 {
    animation-delay: 1s;
}

.demo-deal-3 {
    animation-delay: 1.5s;
}

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

.demo-deal-brand {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.demo-deal-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.demo-activity {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.demo-activity-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.demo-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    animation: fadeIn 0.5s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

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

.demo-activity-1 {
    animation-delay: 2s;
}

.demo-activity-2 {
    animation-delay: 2.5s;
}

.demo-activity-3 {
    animation-delay: 3s;
}

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

.demo-activity-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.demo-activity-text {
    flex: 1;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.demo-activity-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.demo-activity-time {
    font-size: 11px;
    color: var(--text-light);
    white-space: nowrap;
}

/* Animated counter for stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demo-stat-value {
    animation: countUp 0.8s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}


.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Brand Deals Visual */
.brand-deals-visual {
    position: relative;
    height: 500px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 20px;
    overflow: visible;
}

.node-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}


.brand-deals-visual {
    position: relative;
    pointer-events: auto;
    overflow: visible;
}

.connection-line {
    stroke-dasharray: 5,5;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -100;
    }
}

/* Ensure content is above background */
main {
    position: relative;
    z-index: 1;
}

nav, footer {
    position: relative;
    z-index: 2;
}

.deal-node {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s ease, z-index 0.3s;
    pointer-events: auto;
}

.deal-node:hover {
    z-index: 20;
    transform: scale(1.02);
}

.deal-node.expanded {
    z-index: 20;
}

/* Triangular layout - top center, bottom left, bottom right */
.deal-node-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation: float1 6s ease-in-out infinite;
}

.deal-node-2 {
    top: 45%;
    left: 15%;
    animation: float2 7s ease-in-out infinite;
    animation-delay: 0.5s;
}

.deal-node-3 {
    top: 50%;
    left: 75%;
    animation: float3 8s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes float1 {
    0%, 100% {
        transform: translateX(-50%) translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateX(-50%) translateY(-15px) rotate(1deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(12px) rotate(-1deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.node-card {
    background: var(--bg-card);
    border: 2px solid var(--text-primary);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    width: 240px;
    cursor: pointer;
    pointer-events: auto;
    min-height: 90px;
}

.deal-node:hover .node-card,
.deal-node.expanded .node-card {
    border-width: 3px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.node-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    flex-shrink: 0;
}

.node-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.node-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.node-brand {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.2;
}

.node-amount {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

.node-metrics {
    display: flex;
    gap: 12px;
    font-size: 12px;
    margin-top: 2px;
}

.node-engagement {
    color: var(--text-secondary);
    font-weight: 500;
}

.node-engagement::before {
    content: "Eng: ";
    color: var(--text-light);
    font-weight: 400;
}

.node-reach {
    color: var(--text-secondary);
    font-weight: 500;
}

.node-reach::before {
    content: "Reach: ";
    color: var(--text-light);
    font-weight: 400;
}

.node-status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    width: fit-content;
    background: #d1fae5;
    color: #065f46;
    margin-top: 2px;
}

.node-status-badge.completed {
    background: #dbeafe;
    color: #1e40af;
}

.node-status-badge.terminated {
    background: #fee2e2;
    color: #991b1b;
}

.node-expanded {
    position: absolute;
    top: 0;
    right: calc(100% + 20px);
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--text-primary);
    min-width: 300px;
    max-width: 350px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 30;
}

/* For nodes on the left side, open to the right */
.deal-node-2 .node-expanded {
    left: calc(100% + 20px);
    right: auto;
}

/* For nodes on the right side, open to the left */
.deal-node-3 .node-expanded {
    right: calc(100% + 20px);
    left: auto;
}

.deal-node.expanded .node-expanded {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.deal-brand {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
}

.deal-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.deal-details {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.deal-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    background: #d1fae5;
    color: #065f46;
}

.deal-status.completed {
    background: #dbeafe;
    color: #1e40af;
}

.deal-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 16px 0;
}

.deal-metrics {
    display: flex;
    gap: 16px;
    margin: 16px 0;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

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

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.brand-deals-note {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.brand-deals-note p {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}


.gradient-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.15), rgba(100, 149, 237, 0.15));
    border-radius: 50%;
    filter: blur(60px);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 0;
}

.dashboard-header {
    background: var(--bg-secondary);
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

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

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
}

.dashboard-dots span:nth-child(1) { background: #ef4444; }
.dashboard-dots span:nth-child(2) { background: #f59e0b; }
.dashboard-dots span:nth-child(3) { background: #10b981; }

.dashboard-content {
    padding: 24px;
}

.metric-card {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.metric-change {
    font-size: 12px;
    color: var(--text-light);
}

.metric-change.positive {
    color: var(--success-color);
}

.deal-pipeline {
    margin-top: 16px;
}

.pipeline-header {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pipeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 8px;
}

.pipeline-brand {
    font-weight: 600;
    color: var(--text-primary);
}

.pipeline-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.pipeline-status.negotiating {
    background: #fef3c7;
    color: #92400e;
}

.pipeline-status.approved {
    background: #d1fae5;
    color: #065f46;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.trust-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.trust-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-primary);
}

.trust-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.trust-icon.yellow {
    color: var(--accent-yellow);
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    margin-left: auto;
    flex-shrink: 0;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

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

.problem-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* Solution Section */
.solution-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
}

.solution-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.solution-lead {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.solution-features {
    margin-bottom: 32px;
}

.solution-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-check {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.solution-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* Agent DealStack */
.agent-swarm {
    position: relative;
    height: 400px;
}

.agent {
    position: absolute;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: transform 0.3s;
}

.agent:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.agent-1 {
    top: 0;
    left: 0;
    border-color: var(--text-primary);
}

.agent-2 {
    top: 20%;
    right: 10%;
    border-color: var(--text-secondary);
}

.agent-3 {
    bottom: 30%;
    left: 20%;
    border-color: var(--text-primary);
}

.agent-4 {
    bottom: 0;
    right: 0;
    border-color: var(--text-secondary);
}

.agent-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: var(--text-primary);
}

.agent-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.agent-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.step {
    text-align: center;
    padding: 32px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.signup-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.signup-form input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-color: var(--primary-color);
}

.signup-form input::placeholder {
    color: var(--text-light);
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 64px 0 32px;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

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

/* Features Page */
.features-section, .pricing-section, .resources-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.features-section {
    background: var(--bg-secondary);
}

.resources-section {
    background: var(--bg-secondary);
}

.features-hero h1, .pricing-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.features-hero p, .pricing-hero p {
    font-size: 20px;
    color: var(--text-secondary);
}

.features-detail {
    padding: 40px 0 0;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 60px;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.feature-block-compact {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-block-compact .feature-content {
    text-align: center;
}

.feature-block-compact .feature-visual {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-visual {
    overflow: visible;
    position: relative;
}

.feature-description-compact {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 12px;
}

.feature-block-centered {
    text-align: center;
}

.feature-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.feature-visual-centered {
    max-width: 900px;
    margin: 48px auto 0;
    width: 100%;
}

.feature-icon-large {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.feature-content h2,
.feature-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-preview-card {
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.preview-header {
    background: var(--bg-secondary);
    padding: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

.preview-content {
    padding: 24px;
}

.preview-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.metric-name {
    color: var(--text-secondary);
    font-size: 14px;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.preview-chart {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    opacity: 0.1;
}

.match-item, .contract-item, .opportunity-item {
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 12px;
}

.match-brand, .contract-name, .opportunity-brand {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.match-score {
    font-size: 14px;
    color: var(--success-color);
    font-weight: 600;
}

.contract-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
}

.contract-status.signed {
    background: #d1fae5;
    color: #065f46;
}

.contract-status.pending {
    background: #fef3c7;
    color: #92400e;
}

.contract-status.draft {
    background: #e5e7eb;
    color: var(--text-secondary);
}

.negotiation-message {
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.negotiation-message.incoming {
    background: var(--primary-color);
    color: white;
}

/* Animated List Styles */
.animated-list {
    position: relative;
}

.animated-list-scrollable {
    position: relative;
    overflow: hidden;
    padding: 16px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.animated-list-scrollable::-webkit-scrollbar {
    width: 6px;
}

.animated-list-scrollable::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}

.animated-list-scrollable::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.animated-list-scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

.animated-list-item {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease, top 0.5s ease;
    margin-bottom: 8px;
}

.animated-list-item.showing {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animated-list-item.visible {
    display: block !important;
}

/* Ensure negotiation messages and contract items work with animation */
.animated-list-item.negotiation-message {
    padding: 14px 16px;
    background: var(--bg-secondary);
    border-radius: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-secondary);
    border: none;
    border-top: 1px solid var(--border-color);
    box-shadow: none;
}

.animated-list-item.negotiation-message:first-child {
    border-top: none;
}

.animated-list-item.negotiation-message.incoming {
    background: var(--primary-color);
    color: white;
    border-top-color: rgba(255, 255, 255, 0.2);
}

.negotiation-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.negotiation-message-sender {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.negotiation-message-time {
    font-size: 11px;
    opacity: 0.7;
}

.negotiation-message.incoming .negotiation-message-time {
    opacity: 0.9;
}

.negotiation-message-text {
    line-height: 1.5;
    margin: 0;
}

.animated-list-item.contract-item {
    padding: 18px;
    background: var(--bg-secondary);
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    border-top: 1px solid var(--border-color);
    box-shadow: none;
    transition: background-color 0.2s ease;
}

.animated-list-item.contract-item:first-child {
    border-top: none;
}

.animated-list-item.contract-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

/* Typing Animation Styles */
.typing-text {
    display: inline;
}

.typing-cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink-cursor 1.2s step-end infinite;
}

@keyframes blink-cursor {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.contract-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.contract-name {
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.4;
}

.contract-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.contract-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.contract-detail-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.contract-detail-value {
    color: var(--text-primary);
    font-weight: 600;
}

.contract-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 4px;
}

.contract-date {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.insight-item {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.insight-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.insight-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.insight-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 16px;
    text-align: right;
}

.insight-description {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.8;
    margin-top: 4px;
    line-height: 1.4;
}

.widget-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.widget-stat {
    text-align: center;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.widget-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.widget-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Enhanced Dashboard Widget */
.dashboard-widget-large {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.widget-horizontal-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.widget-left-section {
    flex: 1;
    min-width: 0;
}

.widget-right-section {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget-stats-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.widget-stat-large {
    text-align: center;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.widget-stat-large .widget-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-stat-large .widget-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.widget-change {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.widget-pipeline {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.widget-pipeline-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-pipeline-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-pipeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.pipeline-brand {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.pipeline-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.pipeline-status {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pipeline-status.matched {
    background: rgba(65, 105, 225, 0.1);
    color: var(--accent-color);
}

.pipeline-status.negotiating {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.pipeline-status.signed {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success-color);
}

.widget-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-action-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--text-primary);
    color: var(--bg-primary);
}

.widget-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.widget-action-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.widget-action-btn.secondary:hover {
    background: var(--bg-secondary);
}

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

.widget-action-btn.primary:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Widget Header Enhancements */
.widget-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.widget-status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--success-color);
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-color);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Interactive Stats */
.interactive-stat {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.widget-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.interactive-stat:hover .widget-tooltip {
    opacity: 1;
}

.widget-change.positive {
    color: var(--success-color);
}

/* Enhanced Pipeline Items */
.pipeline-item-left {
    flex: 1;
}

.pipeline-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.pipeline-meta {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.pipeline-count {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.interactive-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

.interactive-item:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    transform: translateX(4px);
}

/* Recent Activity Section */
.widget-recent-activity {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    flex: 1;
}

.widget-activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-time {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.widget-activity-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.activity-item:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
}

.activity-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-text {
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.4;
}

.activity-content .activity-time {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Responsive styles for enhanced dashboard widget */
@media (max-width: 968px) {
    .widget-horizontal-layout {
        flex-direction: column;
    }
    
    .widget-right-section {
        flex: 1;
        width: 100%;
    }
    
    .widget-actions {
        flex-direction: row;
    }
    
    .widget-stats-large {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .widget-pipeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .widget-actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .dashboard-widget-large {
        max-width: 100%;
    }
    
    .widget-stat-large {
        padding: 16px;
    }
    
    .widget-stat-large .widget-value {
        font-size: 24px;
    }
}

/* Pricing Page */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--bg-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-price {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.pricing-description {
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 32px 0 48px;
}

.toggle-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-secondary);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-btn:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.toggle-btn.active {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.price-savings {
    display: block;
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 4px;
}

.pricing-note {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    margin-top: 48px;
}

.pricing-note strong {
    color: var(--text-primary);
}

/* FAQ Section */
.faq-section {
    padding: 0;
    background: transparent;
}

.faq-section h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item {
    background: var(--bg-primary);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Dashboard Page */
.dashboard-section {
    padding: 120px 0;
    min-height: 60vh;
}

.auth-required {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.auth-message {
    text-align: center;
    max-width: 600px;
}

.auth-message h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.auth-message p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.auth-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

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

.dashboard-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.dashboard-actions {
    display: flex;
    gap: 12px;
}

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

.dashboard-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.dashboard-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.stat-item {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-change {
    font-size: 12px;
    color: var(--text-light);
}

.stat-change.positive {
    color: var(--success-color);
}

.pipeline-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pipeline-item-full {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.pipeline-info {
    flex: 1;
}

.pipeline-details {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

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

.activity-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.activity-icon {
    font-size: 24px;
}

.activity-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.activity-time {
    font-size: 12px;
    color: var(--text-secondary);
}

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

.opportunity-item {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.opportunity-match {
    font-size: 14px;
    color: var(--success-color);
    font-weight: 600;
    margin: 8px 0;
}

.opportunity-estimate {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* Mobile Menu */
@media (max-width: 968px) {
    .nav-content {
        grid-template-columns: 1fr auto;
    }
    
    .nav-links {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border-color);
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 999;
        gap: 16px;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-links .mobile-cta {
        margin-top: 16px;
        width: 100%;
        text-align: center;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        padding: 12px 0;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        left: 0;
        right: 0;
        transform: translateX(-100%);
    }
    
    .hero-content {
        display: flex;
        justify-content: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .demo-content {
        grid-template-columns: 140px 1fr;
        min-height: 400px;
    }
    
    .demo-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .demo-pipeline-stages {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
    }
    
    .feature-block {
        grid-template-columns: 1fr;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .brand-deals-visual {
        height: 500px;
        max-width: 100%;
    }
    
    .deal-node-1 {
        top: 5%;
    }
    
    .deal-node-2 {
        top: 40%;
        left: 10%;
    }
    
    .deal-node-3 {
        top: 65%;
        left: 60%;
    }
    
    .node-expanded {
        min-width: 240px;
        max-width: 280px;
        /* On mobile, open below instead of to the side */
        top: calc(100% + 16px);
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .deal-node-2 .node-expanded,
    .deal-node-3 .node-expanded {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .problem-grid,
    .steps,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 40px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
    }

    .signup-form {
        flex-direction: column;
    }

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

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

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

    .section-header h2 {
        font-size: 32px;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .dashboard-actions {
        width: 100%;
        flex-direction: column;
    }

    .dashboard-actions button {
        width: 100%;
    }
}

