/* AI Factories Section Styles */

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

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

.factory-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.factory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.card-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.factory-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.factory-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.factory-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
}

.features-list {
    flex: 1;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 10px;
    font-size: 14px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.feature-text {
    flex: 1;
    line-height: 1.4;
}

.feature-name {
    font-weight: 600;
    color: #1e293b;
}

.feature-desc {
    color: #64748b;
    font-size: 13px;
}

.factory-highlight {
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    margin-top: auto;
}

/* Color themes for each factory */
.clinical-affairs .factory-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.clinical-affairs .feature-icon {
    background-color: #3b82f6;
}

.clinical-affairs .factory-highlight {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.clinical-investigation .factory-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.clinical-investigation .feature-icon {
    background-color: #10b981;
}

.clinical-investigation .factory-highlight {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.regulatory-affairs .factory-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.regulatory-affairs .feature-icon {
    background-color: #ef4444;
}

.regulatory-affairs .factory-highlight {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.medical-writing .factory-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.medical-writing .feature-icon {
    background-color: #f59e0b;
}

.medical-writing .factory-highlight {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* Icons for factories */
.clinical-affairs .factory-icon::after {
    content: '📊';
}

.clinical-investigation .factory-icon::after {
    content: '🔬';
}

.regulatory-affairs .factory-icon::after {
    content: '📋';
}

.medical-writing .factory-icon::after {
    content: '📝';
}

/* Trust indicators */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.trust-icon {
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon::after {
    content: '✓';
    color: white;
    font-size: 12px;
}

/* Responsive design */
@media (max-width: 1400px) {
    .factories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .factories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .section-subtitle {
        font-size: 18px;
    }

    .factory-card {
        padding: 24px;
    }
} 

/* Development Navigation Bar Styles */
.dev-nav {
    background: #2c3e50;
    color: white;
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px solid #34495e;
}

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

.dev-nav .left-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dev-nav .right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dev-nav .dev-tools-label {
    font-weight: bold;
}

.dev-nav .info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dev-nav .info-code {
    background: #34495e;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 11px;
}

.dev-nav .dev-link {
    color: #3498db;
    text-decoration: none;
    padding: 2px 8px;
    border: 1px solid #3498db;
    border-radius: 3px;
    font-size: 11px;
    transition: all 0.2s ease;
}

.dev-nav .dev-link:hover {
    background: #3498db;
    color: white;
}

.dev-nav .separator {
    color: #95a5a6;
}

.dev-nav .timestamp {
    font-size: 11px;
    color: #bdc3c7;
}

/* Responsive design for dev navbar */
@media (max-width: 768px) {
    .dev-nav .container {
        flex-direction: column;
        gap: 8px;
        padding: 8px 20px;
    }
    
    .dev-nav .left-section,
    .dev-nav .right-section {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .dev-nav .info-item {
        font-size: 11px;
    }
    
    .dev-nav .dev-link {
        font-size: 10px;
        padding: 1px 6px;
    }
}

@media (max-width: 480px) {
    .dev-nav .left-section,
    .dev-nav .right-section {
        gap: 8px;
    }
    
    .dev-nav .info-item {
        font-size: 10px;
    }
    
    .dev-nav .dev-link {
        font-size: 9px;
        padding: 1px 4px;
    }
}
/* line 3, app/assets/stylesheets/pages_jules_v1_1.scss */
:root {
  --bg: #ffffff;
  --fg: #0a0a0a;
  --muted: #8a8a8a;
  --border: #e6e6e6;
  --panel: #f7f7f7;
  --link: #0a0a0a;
}

/* line 12, app/assets/stylesheets/pages_jules_v1_1.scss */
html {
  scroll-behavior: smooth;
}

/* line 14, app/assets/stylesheets/pages_jules_v1_1.scss */
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

/* line 21, app/assets/stylesheets/pages_jules_v1_1.scss */
.container {
  max-width: 1120px;
  margin-inline: auto;
  padding: 0 24px;
}

/* line 23, app/assets/stylesheets/pages_jules_v1_1.scss */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid var(--border);
}

/* line 25, app/assets/stylesheets/pages_jules_v1_1.scss */
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* line 27, app/assets/stylesheets/pages_jules_v1_1.scss */
a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* line 29, app/assets/stylesheets/pages_jules_v1_1.scss */
a:hover {
  opacity: .7;
}

/* line 31, app/assets/stylesheets/pages_jules_v1_1.scss */
.brand {
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none;
}

/* line 33, app/assets/stylesheets/pages_jules_v1_1.scss */
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* line 35, app/assets/stylesheets/pages_jules_v1_1.scss */
.menu {
  display: flex;
  gap: 18px;
}

/* line 37, app/assets/stylesheets/pages_jules_v1_1.scss */
.btn {
  display: inline-block;
  border: 1px solid var(--fg);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

/* line 39, app/assets/stylesheets/pages_jules_v1_1.scss */
.btn.primary {
  background: var(--fg);
  color: #fff;
}

/* line 41, app/assets/stylesheets/pages_jules_v1_1.scss */
.btn.ghost {
  background: transparent;
}

/* line 43, app/assets/stylesheets/pages_jules_v1_1.scss */
.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

/* line 45, app/assets/stylesheets/pages_jules_v1_1.scss */
.hero {
  padding: 100px 0 88px;
}

/* line 47, app/assets/stylesheets/pages_jules_v1_1.scss */
h1 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin: 0 0 14px;
}

/* line 49, app/assets/stylesheets/pages_jules_v1_1.scss */
h2 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  margin: 0 0 12px;
}

/* line 51, app/assets/stylesheets/pages_jules_v1_1.scss */
h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 16px 0 8px;
}

/* line 53, app/assets/stylesheets/pages_jules_v1_1.scss */
.lede {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
}

/* line 55, app/assets/stylesheets/pages_jules_v1_1.scss */
.pillrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* line 57, app/assets/stylesheets/pages_jules_v1_1.scss */
.kicker {
  font-weight: 700;
  letter-spacing: .02em;
}

/* line 59, app/assets/stylesheets/pages_jules_v1_1.scss */
.muted {
  color: var(--muted);
}

/* line 61, app/assets/stylesheets/pages_jules_v1_1.scss */
.grid {
  display: grid;
  gap: 24px;
}

/* line 63, app/assets/stylesheets/pages_jules_v1_1.scss */
.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* line 65, app/assets/stylesheets/pages_jules_v1_1.scss */
.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  /* line 68, app/assets/stylesheets/pages_jules_v1_1.scss */
  .grid.cols-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  /* line 72, app/assets/stylesheets/pages_jules_v1_1.scss */
  .menu {
    display: none;
  }
  /* line 73, app/assets/stylesheets/pages_jules_v1_1.scss */
  .grid.cols-3, .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

/* line 76, app/assets/stylesheets/pages_jules_v1_1.scss */
.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

/* line 78, app/assets/stylesheets/pages_jules_v1_1.scss */
.card.pad {
  padding: 20px;
}

/* line 80, app/assets/stylesheets/pages_jules_v1_1.scss */
.logo-tape {
  display: flex;
  gap: 40px;
  align-items: center;
  overflow: auto;
  padding: 12px 0;
}

/* line 82, app/assets/stylesheets/pages_jules_v1_1.scss */
.logo {
  width: 140px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  flex: 0 0 auto;
  background: var(--panel);
  font-weight: 600;
  color: var(--muted);
}

/* simple marquee */
/* line 85, app/assets/stylesheets/pages_jules_v1_1.scss */
.marquee {
  position: relative;
  overflow: hidden;
}

/* line 87, app/assets/stylesheets/pages_jules_v1_1.scss */
.marquee .track {
  display: flex;
  gap: 40px;
  animation: slide 28s linear infinite;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* line 91, app/assets/stylesheets/pages_jules_v1_1.scss */
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
}

/* line 93, app/assets/stylesheets/pages_jules_v1_1.scss */
th, td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

/* line 95, app/assets/stylesheets/pages_jules_v1_1.scss */
th {
  font-size: 14px;
}

/* line 97, app/assets/stylesheets/pages_jules_v1_1.scss */
.blockquote {
  border-left: 3px solid var(--fg);
  padding-left: 16px;
  margin: 0;
}

/* line 99, app/assets/stylesheets/pages_jules_v1_1.scss */
.note {
  font-size: 14px;
  color: var(--muted);
}

/* line 101, app/assets/stylesheets/pages_jules_v1_1.scss */
.subtle {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

/* line 103, app/assets/stylesheets/pages_jules_v1_1.scss */
.footer {
  background: #fff;
}

/* line 105, app/assets/stylesheets/pages_jules_v1_1.scss */
.cols {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  /* line 107, app/assets/stylesheets/pages_jules_v1_1.scss */
  .cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  /* line 109, app/assets/stylesheets/pages_jules_v1_1.scss */
  .cols {
    grid-template-columns: 1fr;
  }
}

/* line 111, app/assets/stylesheets/pages_jules_v1_1.scss */
.small {
  font-size: 13px;
}

/* line 113, app/assets/stylesheets/pages_jules_v1_1.scss */
.banner {
  background: #000;
  color: #fff;
  padding: 6px 0;
}

/* line 115, app/assets/stylesheets/pages_jules_v1_1.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* Import Tailwind CSS */
@import "tailwind.css";

/* DeepDocs AI Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Global link reset */
a { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; color: inherit; }
a:visited { text-decoration: none; color: inherit; }
a:active { text-decoration: none; color: inherit; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.6; color: #1a1a1a; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: white; box-shadow: 0 2px 20px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo { font-size: 1.5rem; font-weight: bold; color: #2563eb; }
.logo-link { text-decoration: none !important; color: inherit !important; }
.logo-link:hover { text-decoration: none !important; color: inherit !important; }
.logo-link:visited { text-decoration: none !important; color: inherit !important; }
.logo-link:active { text-decoration: none !important; color: inherit !important; }

/* Dev Navbar Link Styling */
.dev-nav a { text-decoration: none !important; color: inherit !important; }
.dev-nav a:hover { text-decoration: none !important; color: inherit !important; }
.dev-nav a:visited { text-decoration: none !important; color: inherit !important; }
.dev-nav a:active { text-decoration: none !important; color: inherit !important; }
.dev-nav .dropdown-content a { text-decoration: none !important; color: #4b5563 !important; }
.dev-nav .dropdown-content a:hover { text-decoration: none !important; color: #4b5563 !important; background: #f8fafc; }
.dev-nav .dropdown-content a:visited { text-decoration: none !important; color: #4b5563 !important; }
.dev-nav .dropdown-content a:active { text-decoration: none !important; color: #4b5563 !important; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: #4b5563; font-weight: 500; }
.cta-button { background: #2563eb; color: white; padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 600; }

/* Hero Section */
.hero { 
    position: relative;
    overflow: hidden;
    color: white; 
    padding: 8rem 0 4rem; 
    margin-top: 80px; 
    text-align: center; 
}
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
}
.hero > .container {
    position: relative;
    z-index: 1;
}
.hero h1 { font-size: 3.5rem; font-weight: bold; margin-bottom: 1rem; line-height: 1.1; }
.hero .subtitle { font-size: 1.5rem; margin-bottom: 2rem; opacity: 0.9; }
.hero p { font-size: 1.25rem; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; opacity: 0.9; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: white; color: #2563eb; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; }
.btn-secondary { background: transparent; color: white; padding: 1rem 2rem; border: 2px solid white; border-radius: 8px; text-decoration: none; font-weight: 600; }

/* Stats */
.stats { background: #f8fafc; padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.stat { padding: 1rem; }
.stat-number { font-size: 3rem; font-weight: bold; color: #2563eb; margin-bottom: 0.5rem; }
.stat-label { font-size: 1rem; color: #6b7280; font-weight: 500; }

/* Problem Section */
.problem { padding: 4rem 0; background: white; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; color: #1f2937; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.problem-card { background: #fef2f2; border-left: 4px solid #ef4444; padding: 2rem; border-radius: 8px; }
.problem-card h3 { color: #dc2626; margin-bottom: 1rem; font-size: 1.25rem; }

/* Solution Section */
.solution { padding: 4rem 0; background: #f8fafc; }
.solution-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.solution-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); border-left: 4px solid #10b981; }
.solution-card h3 { color: #059669; margin-bottom: 1rem; font-size: 1.25rem; }

/* Features */
.features { padding: 4rem 0; background: white; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.feature-card { background: #f8fafc; padding: 2rem; border-radius: 12px; text-align: center; }
.feature-icon { font-size: 3rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 1rem; color: #1f2937; }

/* Industries */
.industries { padding: 4rem 0; background: #f8fafc; }
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.industry-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.industry-card h3 { color: #2563eb; margin-bottom: 1rem; }

/* Testimonial */
.testimonial { padding: 4rem 0; background: #1f2937; color: white; text-align: center; }
.testimonial blockquote { font-size: 1.5rem; font-style: italic; margin-bottom: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.testimonial cite { font-size: 1rem; opacity: 0.8; }

/* CTA */
.cta { padding: 4rem 0; background: #2563eb; color: white; text-align: center; }
.cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta p { font-size: 1.25rem; margin-bottom: 2rem; }

/* Footer */
footer { background: #1f2937; color: white; padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.footer-section h4 { margin-bottom: 1rem; color: #f3f4f6; }
.footer-section a { color: #9ca3af; text-decoration: none; display: block; margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid #374151; margin-top: 2rem; padding-top: 2rem; text-align: center; color: #9ca3af; }

/* Dropdown Styles */
.dropdown { position: relative; }
.dropdown-content { 
    display: none; position: absolute; background: white; 
    box-shadow: 0 8px 16px rgba(0,0,0,0.1); z-index: 1000;
    min-width: 200px; border-radius: 8px; padding: 0.5rem 0;
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { 
    padding: 0.75rem 1rem; display: block; 
    color: #4b5563 !important; border-bottom: 1px solid #f3f4f6;
}
.dropdown-content a:hover { background: #f8fafc; }

/* Flinn Feature Section Styles */
.feature-section { 
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    max-width: 1200px; 
    margin: 2rem auto; 
    background: #ffffff; 
    border-radius: 8px; 
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
}
.feature-section.reverse { 
    /* flip text & image */ 
    flex-direction: row-reverse; 
}
.feature-text { 
    flex: 1 1 300px; 
    padding: 0.5rem; 
}
.feature-text h3 { 
    margin: 0 0 1rem; 
    font-size: 1.75rem; 
    color: #111827; 
}
.bullet-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
.bullet-list li { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 1rem; 
}
.bullet-list li:last-child { 
    margin-bottom: 0; 
}
.bullet-icon { 
    width: 24px; 
    height: 24px; 
    flex-shrink: 0; 
    margin-right: 0.75rem;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 27"%3E%3Cpath fill="%23000000" d="M17.713 6.954L16.181 6.954c-.215 0-.419.098-.55.265L6.592 18.576 2.258 13.13c-.065-.083-.149-.15-.244-.196-.095-.046-.2-.07-.306-.07L.176 12.864C.029 12.864-.052 13.032.038 13.145l6.004 7.545c.281.352.82.352 1.103 0L17.851 7.232c.09-.11.009-.278-.138-.278z"/%3E%3C/svg%3E') no-repeat center center;
    background-size: contain; 
}
.bullet-list .text { 
    font-size: 1rem; 
    color: #374151; 
}
.feature-image { 
    flex: 1 1 300px; 
}
.feature-image img { 
    width: 100%; 
    height: auto; 
    display: block; 
}
@media (max-width: 768px) {
    .feature-section, .feature-section.reverse { 
        flex-direction: column; 
    }
    .feature-text, .feature-image { 
        flex: 1 1 100%; 
    }
}

/* Logo Carousel Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-carousel-container {
    overflow: hidden;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.logo-carousel-track {
    display: flex;
    gap: 3rem;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.logo-carousel-track:hover {
    animation-play-state: paused;
}

.logo-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 120px;
    text-align: center;
    flex-shrink: 0;
}

/* Science Layout Styles */
.science-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.science-cards-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.science-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.science-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.science-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.science-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.science-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.science-chart-column {
    position: sticky;
    top: 100px;
}

@media (max-width: 1024px) {
    .science-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .science-chart-column {
        position: static;
    }
    .science-cards-column {
        order: 2;
    }
    .science-chart-column {
        order: 1;
    }
}

@media (max-width: 768px) {
    .science-card {
        padding: 1.5rem;
    }
    
    .science-card-icon {
        font-size: 2rem;
    }
}
