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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

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

.logo-img {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

.logo-text {
    display: none;
}

.logo-text h2 {
    color: #2563eb;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.tagline {
    font-size: 0.75rem;
    color: #6b7280;
    font-style: italic;
    font-weight: 400;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: #2563eb;
    border: 2px solid #2563eb;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem Section */
.problem-section {
    background-color: #f9fafb;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

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

.problem-item h3 {
    color: #1f2937;
    font-size: 1.2rem;
}

/* Solution Section */
.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #1f2937;
    font-size: 1.1rem;
}

.solution-result {
    text-align: center;
    font-size: 1.3rem;
    color: #2563eb;
    font-weight: 600;
    margin-top: 2rem;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #6b7280;
}

/* Use Cases Preview */
.use-cases-preview {
    background-color: #f9fafb;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.use-case-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.use-case-item:hover {
    transform: translateY(-5px);
}

.use-case-item h3 {
    color: #1f2937;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* CTA Section Main */
.cta-section-main {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.cta-section-main h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section-main p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-text h3 {
    color: #2563eb;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.7rem;
    color: #9ca3af;
    font-style: italic;
    font-weight: 400;
    margin-top: -2px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #2563eb;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

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

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    background: #2563eb;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.process-step p {
    color: #6b7280;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

.comparison-table tr:hover {
    background-color: #f9fafb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.capability-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-5px);
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.capability-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.capability-item p {
    color: #6b7280;
}

/* Comparison Section */
.comparison-section {
    background-color: #f9fafb;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-column {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.comparison-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.comparison-title.traditional {
    color: #ef4444;
}

.comparison-title.biomixx {
    color: #10b981;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 2rem;
}

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

.comparison-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.comparison-title.traditional + .comparison-list li:before {
    content: "✗";
    color: #ef4444;
}

/* Platform Features */
.platform-features {
    background-color: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Use Case Sections */
.use-case-section {
    padding: 80px 0;
}

.use-case-section.alt {
    background-color: #f9fafb;
}

.use-case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.use-case-text h2 {
    color: #2563eb;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.use-case-text h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.use-case-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.challenge-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.challenge,
.solution {
    padding: 1.5rem;
    border-radius: 8px;
}

.challenge {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
}

.solution {
    background-color: #f0fdf4;
    border-left: 4px solid #10b981;
}

.challenge h4,
.solution h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.challenge h4 {
    color: #ef4444;
}

.solution h4 {
    color: #10b981;
}

.challenge p,
.solution p {
    font-size: 0.95rem;
    margin: 0;
}

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

.visual-placeholder {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.visual-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.visual-placeholder p {
    color: #6b7280;
    font-weight: 500;
}

/* Success Stories */
.success-stories {
    background-color: #f9fafb;
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.story-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.story-card p {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-metrics {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.metric {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Technology Page Styles */
.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tech-feature:hover {
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-feature h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.tech-feature p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.tech-feature ul {
    text-align: left;
    color: #6b7280;
}

.proteomics-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.proteomics-list {
    list-style: none;
    margin-top: 1rem;
}

.proteomics-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.proteomics-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.multiomics-section {
    padding: 80px 0;
}

.multiomics-content {
    max-width: 1000px;
    margin: 0 auto;
}

.multiomics-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.multiomics-intro h3 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.omics-expansion {
    margin-bottom: 3rem;
}

.omics-expansion h3 {
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.omics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.omics-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.omics-item:hover {
    transform: translateY(-5px);
}

.omics-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.omics-item h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.omics-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

.ultimate-vision {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.ultimate-vision h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.scientists-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

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

.scientists-content h2 {
    color: #1f2937;
    margin-bottom: 2rem;
}

.scientist-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-stack-section {
    padding: 80px 0;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tech-category h3 {
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.tech-category ul {
    list-style: none;
}

.tech-category ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #6b7280;
}

.tech-category ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* About Page Styles */
.mission-section {
    padding: 80px 0;
}

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

.mission-statement {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.approach-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #6b7280;
}

.vision-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

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

.vision-content h3 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.why-biomixx-section {
    padding: 80px 0;
}

.why-content {
    max-width: 1000px;
    margin: 0 auto;
}

.name-explanation {
    text-align: center;
}

.name-explanation h3 {
    color: #1f2937;
    margin-bottom: 3rem;
}

.name-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.name-part {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.name-part:hover {
    transform: translateY(-5px);
}

.name-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.name-part h4 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.name-part p {
    color: #6b7280;
}

.join-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

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

.join-cta {
    margin-top: 2rem;
}

.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.value-item p {
    color: #6b7280;
}

/* Contact Page Styles */
.demo-section {
    padding: 80px 0;
}

.demo-info h2 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.demo-expectations {
    list-style: none;
    margin-top: 1rem;
}

.demo-expectations li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #6b7280;
}

.demo-expectations li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.demo-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.demo-form h3 {
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #2563eb;
    font-weight: 500;
}

.newsletter-section {
    padding: 80px 0;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: #2563eb;
}

.faq-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #6b7280;
}

/* Investors Page Styles */
.investment-overview {
    padding: 80px 0;
}

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

.overview-content h2 {
    color: #2563eb;
    margin-bottom: 2rem;
}

.opportunity-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

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

.approach-section {
    padding: 80px 0;
}

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

.why-invest-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.investment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.investment-point {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.investment-point:hover {
    transform: translateY(-5px);
}

.point-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.investment-point h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.investment-point p {
    color: #6b7280;
}

.market-section {
    padding: 80px 0;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

.competitive-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.competitive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.competitive-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.competitive-item:hover {
    transform: translateY(-5px);
}

.competitive-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.competitive-item p {
    color: #6b7280;
}

.investment-inquiry {
    padding: 80px 0;
}

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

.inquiry-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.metrics-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.metric-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.metric-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.metric-card p {
    color: #6b7280;
}

/* Schedule Page Styles */
.scheduling-section {
    padding: 80px 0;
}

.scheduling-info h2 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.demo-benefits {
    margin-top: 2rem;
}

.demo-benefits h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.demo-benefits ul {
    list-style: none;
}

.demo-benefits ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #6b7280;
}

.demo-benefits ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.scheduling-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.scheduling-form h3 {
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.demo-prep-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.prep-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.prep-item:hover {
    transform: translateY(-5px);
}

.prep-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prep-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.prep-item ul {
    list-style: none;
}

.prep-item ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #6b7280;
}

.prep-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.alternative-contact {
    padding: 80px 0;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-option {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
}

.contact-option .contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-option h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-option p {
    color: #2563eb;
    font-weight: 500;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .problem-grid,
    .benefits-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .logo-img {
        height: 48px;
    }
    
    .logo-text h2 {
        font-size: 1.4rem;
    }
    
    .tagline {
        font-size: 0.65rem;
    }
    
    .use-case-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .challenge-solution {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .inquiry-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .inquiry-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
