/* Served for landing iframe at /public/styles.css */

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

:root {
    --primary-color: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #6366F1;
    --secondary-color: #10B981;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.btn-secondary {
    -webkit-appearance: none;
    appearance: none;
}

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

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

.nav-cta {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 65%);
    border-radius: 50%;
    transform: translate(-55%, 45%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 26px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

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

.dashboard-preview {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.dashboard-header {
    height: 48px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.dashboard-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.nav-dot.red { background: #ef4444; }
.nav-dot.yellow { background: #f59e0b; }
.nav-dot.green { background: #10b981; }

.nav-title {
    margin-left: 12px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.dashboard-content {
    display: flex;
    min-height: 280px;
}

.dashboard-sidebar {
    width: 140px;
    background: var(--bg-tertiary);
    padding: 12px 8px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-item {
    font-size: 0.6875rem;
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
}

.sidebar-item.active {
    background: var(--primary-color);
    color: white;
}

.dashboard-main {
    flex: 1;
    padding: 16px;
}

.stats-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.stat-card {
    flex: 1;
    background: var(--bg-secondary);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.stat-card .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-card .stat-name {
    font-size: 0.625rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--bg-secondary);
    border-radius: 6px;
    font-size: 0.6875rem;
}

.project-name {
    color: var(--text-primary);
    font-weight: 500;
}

.project-status {
    font-weight: 600;
    font-size: 0.625rem;
}

.project-status.completed { color: #10b981; }
.project-status.in-progress { color: #f59e0b; }
.project-status.pending { color: var(--text-light); }

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

.project-card {
    height: 80px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.analytics-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.chart {
    height: 120px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.metrics {
    height: 120px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

/* Industry Strip */
.industry-strip {
    background: var(--bg-secondary);
    padding: 32px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.industry-strip-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.industry-strip-title {
    font-weight: 700;
    color: var(--text-secondary);
    white-space: nowrap;
}

.industry-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.industry-tag {
    background: white;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Bricks Section */
.bricks {
    padding: 100px 0;
    background: white;
}

.bricks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bricks-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.analogy-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

.analogy-subtitle {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.analogy-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.bricks-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight {
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.bricks-video {
    position: sticky;
    top: 100px;
}

.video-frame {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-caption {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Use Cases */
.use-cases {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.usecase-card {
    display: flex;
    flex-direction: column;
}

.usecase-card h3 {
    margin-bottom: 12px;
}

.usecase-card p {
    flex: 1;
    margin-bottom: 16px;
}

.usecase-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.meta-pill {
    background: var(--bg-tertiary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Playbooks */
.playbooks {
    padding: 100px 0;
    background: white;
}

.playbooks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.playbook-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.playbook-step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.5;
}

.step-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.step-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.playbooks-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
}

.panel-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.panel-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 24px;
}

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

.panel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.panel-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

/* Solutions */
.solutions {
    padding: 100px 0;
    background: white;
}

.solutions-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background: var(--bg-tertiary);
}

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

.tab-pane {
    display: none;
}

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

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

.solution-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

.solution-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.solution-visual {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    height: 300px;
    border: 1px solid var(--border-color);
}

/* Integrations */
.integrations {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.integration-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
}

.integration-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.integration-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.integrations-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Outcomes */
.outcomes {
    padding: 100px 0;
    background: white;
}

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

.outcome-quote {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    border-left: 4px solid var(--primary-color);
}

.quote-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.quote-meta {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* About */
.about {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-text > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.value p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.brick-wall {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--border-radius-lg);
}

.brick-row {
    display: flex;
    gap: 8px;
}

.brick-row.offset {
    margin-left: 40px;
}

.brick {
    width: 80px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* CTA */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7C3AED 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

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

.cta-actions .btn-primary:hover {
    background: var(--bg-secondary);
}

.cta-note {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 6px 0;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

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

    .hero-visual {
        display: none;
    }

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

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

    .bricks-content,
    .playbooks-content,
    .solution-content,
    .about-content {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .tab-nav {
        flex-direction: column;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Link styles for buttons */
a.nav-cta,
a.btn-primary,
a.btn-secondary {
    text-decoration: none;
    display: inline-block;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.problem-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 48px;
}

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

.problem-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

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

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

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

/* Scenarios Section */
.scenarios-section {
    padding: 100px 0;
    background: white;
}

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

.scenario-benefit {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

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

.benefit-text h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.benefit-text p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.scenario-example {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
}

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

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

.scenario-name {
    font-weight: 600;
    font-size: 1.125rem;
}

.scenario-tasks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scenario-task {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border-radius: var(--border-radius);
    font-size: 0.9375rem;
    border-left: 3px solid transparent;
}

.scenario-task.task-checkbox {
    border-left-color: var(--secondary-color);
}

.scenario-task.task-single {
    border-left-color: #8b5cf6;
}

.scenario-task.task-multi {
    border-left-color: #f59e0b;
}

.scenario-task.task-text {
    border-left-color: #3b82f6;
}

.task-type-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.task-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.task-label {
    font-weight: 500;
    color: var(--text-primary);
}

.task-type-badge {
    font-size: 0.6875rem;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    padding: 2px 8px;
    border-radius: 10px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.task-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.task-options .option {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    padding: 4px 10px;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
}

.task-options .option.selected {
    background: var(--primary-light);
    color: white;
}

.task-input {
    margin-top: 4px;
}

.task-input .input-placeholder {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    border: 1px dashed var(--border-color);
    font-style: italic;
}

.task-check {
    color: var(--text-light);
}

/* Feature emoji icons */
.feature-icon-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.scenario-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Bulk Upload Section */
.bulk-upload-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.bulk-upload-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.csv-preview {
    background: #1e293b;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.8125rem;
    overflow-x: auto;
}

.csv-header, .csv-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    padding: 12px 0;
}

.csv-header {
    color: #94a3b8;
    border-bottom: 1px solid #334155;
    font-weight: 600;
}

.csv-row {
    color: #e2e8f0;
    border-bottom: 1px solid #334155;
}

.csv-row.csv-more {
    color: #64748b;
    font-style: italic;
    display: block;
    text-align: center;
    padding: 16px 0;
}

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

.upload-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.upload-feature p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Change Requests Section */
.change-requests-section {
    padding: 100px 0;
    background: white;
}

.change-requests-content {
    max-width: 900px;
    margin: 0 auto;
}

.cr-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cr-step {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
    text-align: center;
}

.cr-step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-hero);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 16px;
}

.cr-step-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.cr-step-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.cr-arrow {
    color: var(--text-light);
    font-size: 1.5rem;
    padding-top: 12px;
}

.cr-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cr-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.cr-benefit-icon {
    font-size: 1.25rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.pricing-coming-soon {
    max-width: 500px;
    margin: 0 auto;
}

.coming-soon-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.coming-soon-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.coming-soon-card > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.coming-soon-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.coming-soon-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
}

.feature-check {
    color: var(--secondary-color);
    font-weight: 700;
}

.trial-note {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.cta-note {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 4px;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scenarios-content,
    .bulk-upload-content {
        grid-template-columns: 1fr;
    }
    
    .cr-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .cr-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .cr-step {
        max-width: 100%;
    }
    
    .cr-benefits {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================================
   Stay Connected / Lead capture
   ============================================================================ */

.stay-connected {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.stay-connected .section-header {
    margin-bottom: 48px;
    text-align: center;
}

.stay-connected .section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.stay-connected .section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

.stay-connected-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: start;
}

.lead-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.lead-card-featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.lead-card-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 14px;
}

.lead-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.lead-card-sub {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lead-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.lead-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.lead-field input,
.lead-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 0.9375rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.lead-field input:focus,
.lead-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.lead-field textarea {
    resize: vertical;
    min-height: 84px;
    font-family: inherit;
}

.lead-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lead-submit {
    width: 100%;
    cursor: pointer;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    margin-top: 4px;
}

.lead-submit[disabled] {
    opacity: 0.7;
    cursor: wait;
    transform: none !important;
    box-shadow: none !important;
}

.lead-status {
    font-size: 0.875rem;
    min-height: 1.25rem;
    margin: 4px 0 0 0;
    line-height: 1.4;
}

.lead-status.lead-status-success {
    color: #047857;
}

.lead-status.lead-status-error {
    color: #dc2626;
}

.lead-status:empty {
    display: none;
}

@media (max-width: 860px) {
    .stay-connected {
        padding: 60px 0;
    }
    .stay-connected-grid {
        grid-template-columns: 1fr;
    }
    .stay-connected .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .lead-field-row {
        grid-template-columns: 1fr;
    }
    .lead-card {
        padding: 24px;
    }
}
