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

:root {
    --primary: #2563EB;
    --primary-dark: #1E40AF;
    --primary-light: #3B82F6;
    --secondary: #10B981;
    --text-dark: #1F2937;
    --text-medium: #6B7280;
    --text-light: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-lighter: #F3F4F6;
    --bg-white: #FFFFFF;
    --border: #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);
    --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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

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

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

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.logo-icon {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.nav-btn {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #F0F9FF 0%, #EFF6FF 100%);
}

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

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

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

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

/* Hero Stats Badge */
.hero-stats-badge {
    margin-bottom: 32px;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    font-size: 32px;
}

.badge-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.badge-subtitle {
    font-size: 13px;
    color: var(--text-medium);
}

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

.achievement-item {
    text-align: left;
}

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

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    text-align: center;
    color: var(--text-light);
}

.placeholder-icon {
    font-size: 80px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.visual-placeholder p {
    font-size: 14px;
    color: var(--text-medium);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    animation: float 3s ease-in-out infinite;
}

.floating-badge.badge-1 {
    top: 60px;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: 80px;
    left: -20px;
    animation-delay: 1.5s;
}

.badge-icon-small {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.about-visual {
    height: 400px;
    background: var(--bg-light);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text>p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.about-feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

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

.section-header-center p {
    font-size: 16px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.process-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
}

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

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.process-icon {
    margin-bottom: 24px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

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

.process-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-box {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: white;
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.feature-icon-large {
    margin-bottom: 24px;
}

.icon-wrapper {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-md);
}

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

.feature-box p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Technology Section */
.technology-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.tech-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.tech-content>p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.tech-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.tech-details p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Tech Card */
.tech-card {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.tech-card-header {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
    text-align: center;
}

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

.flow-step {
    background: var(--bg-light);
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    color: var(--text-dark);
}

.flow-arrow {
    text-align: center;
    color: var(--primary);
    font-size: 24px;
}

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

.tech-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-medium);
}

.stat-icon {
    font-size: 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

.cta-text {
    text-align: center;
    margin-bottom: 48px;
}

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

.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.cta-form-wrapper {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}

.form-group {
    width: 100%;
}

.form-group:nth-last-child(2) {
    grid-column: 1 / -1;
}

.contact-form input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.btn-submit {
    grid-column: 1 / -1;
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-medium);
}

/* Calendly Redirect Box */
.calendly-redirect-box {
    text-align: center;
    padding: 40px 20px;
}

.calendly-message {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 24px;
}

.btn-calendly {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-calendly:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Footer */
.footer {
    padding: 60px 0 32px;
    background: var(--text-dark);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 48px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-main .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 14px;
    max-width: 400px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.footer-contact h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

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

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.footer-social-link svg {
    flex-shrink: 0;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-content,
    .about-content,
    .tech-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .section-header-center h2,
    .about-text h2,
    .tech-content h2,
    .cta-text h2 {
        font-size: 36px;
    }

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

    .ecosystem-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .demo-cta-box {
        padding: 45px 35px;
    }
}

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

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

    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-achievements {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

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

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

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

    .cta-form-wrapper {
        padding: 32px 24px;
    }

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

    .floating-badge {
        display: none;
    }
}

/* Dashboard Preview Section */
.dashboard-preview-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.dashboard-stat-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.dashboard-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-card-icon.blue {
    background: #3B82F6;
}

.stat-card-icon.yellow {
    background: #F59E0B;
}

.stat-card-icon.green {
    background: #10B981;
}

.stat-card-icon.purple {
    background: #8B5CF6;
}

.stat-card-content {
    flex: 1;
}

.stat-card-label {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 4px;
}

.stat-card-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Dashboard Table */
.dashboard-table {
    margin-bottom: 32px;
}

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

.table-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.table-filter {
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-medium);
    cursor: pointer;
}

.claims-table {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 16px;
    align-items: center;
}

.table-row.header-row {
    background: var(--bg-light);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table-row.data-row {
    border-top: 1px solid var(--border);
    font-size: 14px;
}

.table-row.data-row:hover {
    background: var(--bg-light);
}

.claim-id {
    font-weight: 600;
    color: var(--text-dark);
}

.claim-hospital {
    font-size: 12px;
    color: var(--text-medium);
    margin-top: 2px;
}

.patient-na {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

.type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.table-cell.amount {
    font-weight: 600;
    color: var(--text-dark);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.under-review {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.table-cell.confidence {
    font-weight: 600;
    color: #10B981;
}

.table-cell.date {
    color: var(--text-medium);
}

/* Dashboard Bottom Section */
.dashboard-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.approval-summary,
.processing-stats {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
}

.approval-summary h3,
.processing-stats h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.summary-items,
.stats-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-item,
.stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label,
.stats-label {
    font-size: 14px;
    color: var(--text-medium);
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.stats-dot.green {
    background: #10B981;
}

.stats-dot.yellow {
    background: #F59E0B;
}

.stats-dot.red {
    background: #EF4444;
}

.stats-count {
    margin-left: auto;
    font-weight: 600;
    color: var(--text-dark);
}

/* Progress Stepper */
.progress-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 180px;
}

.stepper-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-medium);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.stepper-item.active .stepper-circle {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.stepper-label {
    width: 100%;
}

.stepper-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stepper-subtitle {
    font-size: 12px;
    color: var(--text-medium);
}

.stepper-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 16px;
    margin-top: 24px;
}

/* Workflow Cards */
.workflow-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.workflow-card {
    background: white;
    padding: 24px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

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

.workflow-number {
    width: 32px;
    height: 32px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.workflow-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.workflow-card>p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.5;
}

.workflow-form-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-field label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-field input {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-medium);
    background: var(--bg-light);
}

.select-preview {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    background: var(--bg-light);
    color: var(--text-medium);
}

.workflow-upload-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upload-area {
    border: 2px dashed var(--border);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    background: var(--bg-light);
}

.upload-icon {
    font-size: 28px;
    margin-bottom: 8px;
    opacity: 0.5;
}

.upload-text div:first-child {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2px;
}

.upload-subtext {
    font-size: 11px;
    color: var(--text-medium);
}

.upload-files-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.upload-file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 11px;
}

.file-icon {
    font-size: 16px;
}

.file-name {
    flex: 1;
    color: var(--text-dark);
}

.file-size {
    color: var(--text-medium);
    font-size: 11px;
}

.workflow-review-preview {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 10px;
}

.review-section h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.extracted-data {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.data-label {
    color: var(--text-medium);
    font-size: 11px;
}

.data-value {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 12px;
}

.data-value.confidence-high {
    color: #10B981;
    font-weight: 600;
}

.data-value.bold {
    font-weight: 600;
}

/* Document Showcase Section */
.document-showcase-section {
    padding: 80px 0;
    background: white;
}

.document-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.doc-stat-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.doc-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.doc-stat-icon.blue {
    background: #3B82F6;
}

.doc-stat-icon.green {
    background: #10B981;
}

.doc-stat-icon.yellow {
    background: #F59E0B;
}

.doc-stat-icon.purple {
    background: #8B5CF6;
}

.doc-stat-label {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 4px;
}

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

/* Document Cards Grid */
.document-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.document-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.doc-card-header {
    padding: 20px;
    background: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.doc-card-title {
    flex: 1;
}

.doc-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.doc-size {
    font-size: 12px;
    color: var(--text-medium);
}

.doc-card-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.badge-dot.green {
    background: #10B981;
}

.doc-card-body {
    padding: 20px;
}

.doc-tag {
    display: inline-flex;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.doc-status-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.doc-status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.status-label {
    color: var(--text-medium);
}

.status-value {
    font-weight: 500;
    color: var(--text-dark);
}

.status-value.green {
    color: #10B981;
}

.doc-extracted-preview {
    margin-bottom: 20px;
}

.doc-extracted-preview h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.extracted-info {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.info-label {
    color: var(--text-medium);
}

.info-value {
    color: var(--text-dark);
    font-weight: 500;
    text-align: right;
}

.doc-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-line {
    font-size: 11px;
    color: var(--text-light);
}

/* Confidence Scoring Section */
.confidence-scoring-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.confidence-visual-side h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.confidence-visual-side>p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 32px;
}

.confidence-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.confidence-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.confidence-feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

/* Confidence Meter Card */
.confidence-meter-card {
    background: white;
    padding: 20px 24px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    margin: 0 auto;
}

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

.meter-header h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

.status-badge-success {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

.confidence-meter-display {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 20px 0 16px;
}

.confidence-svg {
    transform: rotate(0deg);
    display: block;
}

.meter-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.meter-percentage {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

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

.idp-status-indicators {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.idp-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.indicator-dot.green {
    background: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.extracted-data-table {
    margin-top: 18px;
}

.extracted-data-table h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.data-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.data-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    background: var(--bg-light);
    border-radius: 6px;
}

.data-key {
    font-size: 12px;
    color: var(--text-medium);
    font-weight: 500;
}

.data-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Hero Visual Dashboard */
.hero-visual-dashboard {
    position: relative;
    min-height: 500px;
}

.mini-dashboard {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.mini-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.mini-dashboard-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.mini-badge.live {
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

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

.mini-stat {
    text-align: center;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.mini-stat-label {
    font-size: 11px;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mini-claim-preview {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
}

.mini-claim-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.mini-claim-id {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.mini-claim-status {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
}

.mini-claim-status.yellow {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.mini-claim-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.mini-detail {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.mini-label {
    color: var(--text-medium);
}

.mini-value {
    color: var(--text-dark);
    font-weight: 500;
}

.mini-value.bold {
    font-weight: 600;
}

.mini-progress-bar {
    height: 6px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: width 1s ease;
}

.mini-progress-label {
    font-size: 11px;
    color: var(--text-medium);
    text-align: center;
}

/* See It In Action Section */
.live-example-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.demo-cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid #2563EB;
}

.demo-cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.founders-intro {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.founder-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.founder-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

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

.founder-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

.founder-bio {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.founder-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.founder-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #10B981;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 240px;
    justify-content: center;
}

.founder-phone:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.founder-phone svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #0A66C2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 240px;
    justify-content: center;
}

.founder-linkedin:hover {
    background: #004182;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.founder-linkedin svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.demo-cta-bottom {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
}

.demo-cta-text {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 24px;
}

.btn-demo-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-demo-primary:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.demo-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-medium);
}

.live-claim-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.claim-card-header {
    padding: 24px 32px;
    background: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.claim-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.claim-id-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.claim-hospital-name {
    font-size: 14px;
    color: var(--text-medium);
}

.claim-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.claim-status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
}

.claim-status-badge.under-review {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.claim-confidence-badge {
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.claim-card-body {
    padding: 32px;
}

.claim-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.claim-info-item {
    display: flex;
    gap: 12px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.info-value.amount-highlight {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.claim-processing-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.processing-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.stage-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--border);
}

.stage-icon.completed {
    background: #10B981;
    color: white;
    border-color: #10B981;
}

.stage-icon.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.processing-stage.inactive .stage-icon {
    background: var(--bg-light);
    color: var(--text-light);
}

.stage-label {
    font-size: 11px;
    color: var(--text-medium);
    text-align: center;
}

.processing-stage.inactive .stage-label {
    color: var(--text-light);
}

.processing-connector {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 8px;
}

.processing-connector.inactive {
    background: var(--bg-lighter);
}

.claim-card-footer {
    padding: 20px 32px;
    background: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    display: flex;
    gap: 8px;
    font-size: 12px;
}

.footer-label {
    color: var(--text-medium);
}

.footer-value {
    color: var(--text-dark);
    font-weight: 500;
}

.view-claim-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-claim-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.example-note {
    text-align: center;
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.example-note p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Responsive Updates */
@media (max-width: 1024px) {

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

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

    .table-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .table-row.header-row {
        display: none;
    }

    .table-cell {
        display: flex;
        justify-content: space-between;
    }

    .table-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-medium);
    }
}

@media (max-width: 768px) {
    .dashboard-mockup {
        padding: 24px;
    }

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

    .dashboard-bottom {
        grid-template-columns: 1fr;
    }

    .progress-stepper {
        flex-direction: column;
        padding: 0;
    }

    .stepper-line {
        width: 2px;
        height: 40px;
        margin: 8px 0;
        margin-left: 24px;
    }

    .workflow-cards {
        grid-template-columns: 1fr;
    }

    .document-cards-grid {
        grid-template-columns: 1fr;
    }

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

    .claim-info-grid {
        grid-template-columns: 1fr;
    }

    .claim-processing-info {
        flex-direction: column;
        gap: 16px;
    }

    .processing-connector {
        width: 2px;
        height: 24px;
        margin: 0;
    }

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

    .demo-cta-box {
        padding: 40px 24px;
    }

    .demo-cta-box h3 {
        font-size: 26px;
    }

    .founder-card {
        padding: 28px 20px;
    }

    .founder-image {
        width: 100px;
        height: 100px;
    }

    .founder-info h4 {
        font-size: 18px;
    }

    .founder-phone,
    .founder-linkedin {
        font-size: 13px;
        padding: 10px 16px;
        max-width: 100%;
    }

    .demo-cta-text {
        font-size: 16px;
    }

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

/* Blur Text for Privacy - Best Practice */
.blur-text {
    filter: blur(5px);
    color: transparent;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    user-select: none;
    pointer-events: none;
    transition: all 0.3s ease;
}

.blur-text:hover {
    filter: blur(0px);
    color: inherit;
    text-shadow: none;
    pointer-events: auto;
}

/* Technology & Ecosystem Section (Merged) */
.technology-ecosystem-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.ecosystem-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin: 48px 0;
}

.subsection-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

/* Compact Audience Cards */
.audience-cards-compact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audience-card-compact {
    display: flex;
    gap: 16px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.audience-card-compact:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.audience-icon-small {
    font-size: 32px;
    flex-shrink: 0;
}

.audience-card-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

/* Compact Tech List */
.tech-list-compact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-item-compact {
    display: flex;
    gap: 16px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.tech-item-compact:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.tech-icon-small {
    font-size: 20px;
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

.tech-item-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.tech-item-content p {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.5;
}

.outcomes-section {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.outcomes-section h3 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.outcomes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.outcome-icon {
    font-size: 24px;
    flex-shrink: 0;
}