* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: #ffffff;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    min-height: 100vh;
}

.content-sections {
    position: relative;
    z-index: 2;
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    padding-top: 3.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    background: #edf2f7;
    border-color: #4299e1;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.15);
}

.feature-header {
    margin-bottom: 1.5rem;
}

.feature-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: #4299e1;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    margin-left: 0;
    margin-bottom: 0;
    font-weight: 600;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.3;
    height: 2.6em;
    display: flex;
    align-items: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0;
}

.stat-item {
    padding: 1.5rem;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: #edf2f7;
    border-color: #4299e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.15);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #4299e1, #3182ce, #805ad5, #d53f8c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    margin-top: 0.5rem;
}

.cta-section {
    text-align: center;
    padding: 3rem 0;
    border-top: 2px solid #e2e8f0;
    margin-top: 3rem;
    background: #f7fafc;
    backdrop-filter: blur(15px);
    border-radius: 12px;
}

.cta-section h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 0;
}

.contact-link {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2c5aa0;
}

/* Why Inflammation Section */
.cytokine-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cytokine-tab {
    padding: 0.75rem 1.5rem;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.cytokine-tab:hover {
    background: #edf2f7;
    border-color: #4299e1;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.15);
}

.cytokine-tab.active {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    border-color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.3);
}

.cytokine-showcase {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    /* --- THE FIX: Align items to stretch --- */
    align-items: stretch; 
    margin-top: 3rem;
}

.cytokine-info {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cytokine-info:hover {
    transform: scale(1.02);
    background: #edf2f7;
    border-color: #4299e1;
    box-shadow: 0 15px 35px rgba(66, 153, 225, 0.15);
}

.cytokine-content {
    display: none;
}

.cytokine-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

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

.cytokine-summary {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cytokine-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cytokine-content ul {
    list-style: none;
    padding: 0;
}

.cytokine-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #1e293b;
    font-size: 1rem;
    line-height: 1.5;
}

.cytokine-content li:before {
    content: "•";
    color: #4299e1;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.cytokine-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #f0f9ff;
}

.cytokine-display:hover {
    transform: scale(1.02);
    border-color: #4299e1;
    box-shadow: 0 15px 35px rgba(66, 153, 225, 0.2);
}

.cytokine-highlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    pointer-events: none;
    min-width: 280px;
}

.cytokine-highlight.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.cytokine-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #4299e1, #3182ce, #805ad5, #d53f8c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 1rem;
}

.cytokine-label {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
}

/* Product Overview Section */
.product-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.product-image-container {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 400px;
}

.product-image-container:hover {
    background: #edf2f7;
    border-color: #4299e1;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(66, 153, 225, 0.15);
}

.product-image-container img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-image-container:hover img {
    transform: scale(1.05);
}

/* Use Cases Section */
.use-cases-section {
    padding: 5rem 0;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
}

.use-cases-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.use-cases-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    background: #f7fafc;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 300%;
}

.slide {
    width: 33.333%;
    padding: 4rem;
    flex-shrink: 0;
}

.slide h3 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    background: linear-gradient(135deg, #4299e1, #3182ce, #805ad5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    text-align: left;
}

.slide p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.use-case-item {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 175px; /* Increased from 160px to 175px for better descender space */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.use-case-item:hover {
    background: #edf2f7;
    border-color: #4299e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.15);
}

.use-case-item h4 {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem; /* Increased margin for better spacing */
}

.use-case-item p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5; /* Increased from 1.4 to 1.5 for better descender space */
    margin: 0;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Increased from 4 to 5 lines */
    -webkit-box-orient: vertical;
    padding-bottom: 0.25rem; /* Added small padding at bottom for descenders */
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.2);
}

.slider-nav.prev {
    left: 2rem;
}

.slider-nav.next {
    right: 2rem;
}

.slider-nav svg {
    width: 20px;
    height: 20px;
    stroke: #2d3748;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    transform: scale(1.2);
}

.dot:hover {
    background: #4299e1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1.5s ease-out;
}

.brand-name {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    background: linear-gradient(135deg, #4299e1, #3182ce, #805ad5, #d53f8c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.brand-name .health {
    background: linear-gradient(135deg, #4299e1, #3182ce, #805ad5, #d53f8c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 0.3em;
}

.tagline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    color: #4a5568;
    max-width: 600px;
    margin-top: 2rem;
    line-height: 1.5;
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

.cta-container {
    margin-top: 3rem;
    animation: fadeInUp 1.5s ease-out 0.6s both;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 180px;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3182ce, #4299e1, #805ad5);
    color: white;
    box-shadow: 0 8px 30px rgba(49, 130, 206, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(49, 130, 206, 0.4);
    background: linear-gradient(135deg, #2c5aa0, #3182ce, #6b46c1);
}

.cta-button.secondary {
    background: #f7fafc;
    color: #2d3748;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
    background: #edf2f7;
    border-color: #4299e1;
    box-shadow: 0 12px 40px rgba(66, 153, 225, 0.15);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    color: #718096;
    font-size: 0.9rem;
    animation: fadeInUp 1.5s ease-out 0.9s both;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0;
    display: block;
}

.scroll-indicator:hover {
    color: #2d3748;
    transform: translateY(-2px);
}

.scroll-arrow {
    display: block;
    margin: 0.5rem auto 0;
    width: 20px;
    height: 20px;
    border-right: 2px solid #718096;
    border-bottom: 2px solid #718096;
    transform: rotate(45deg);
    animation: bounce 2s ease-in-out infinite;
}

/* Team Section Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-card {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: #edf2f7;
    border-color: #4299e1;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(66, 153, 225, 0.15);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3182ce;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-title {
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-summary {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.linkedin-link {
    display: inline-block;
    color: #4299e1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    color: #2d3748;
    transform: translateX(5px);
}

/* Info Grid for Technology and Clinical Applications */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #edf2f7;
    border-color: #4299e1;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(66, 153, 225, 0.15);
}

.info-card h3 {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-card p {
    color: #4a5568;
    line-height: 1.6;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-5px); }
    60% { transform: rotate(45deg) translateY(-3px); }
}

/* MOBILE OPTIMIZATIONS */
@media (max-width: 1024px) {
    .slider-nav { display: none; }
    .use-cases-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .use-case-item { 
        height: 185px; /* Increased from 170px to 185px for tablet */
        padding: 1.4rem; 
    }
    .use-case-item p {
        -webkit-line-clamp: 5;
        line-height: 1.5;
        padding-bottom: 0.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section { padding: 1.5rem; min-height: 100vh; justify-content: center; }
    .logo { margin-bottom: 1.5rem; }
    .brand-name { font-size: clamp(2.5rem, 12vw, 4rem); line-height: 1.1; text-align: center; }
    .brand-name .health { display: block; margin-left: 0; margin-top: -0.1em; }
    .tagline { margin-top: 1.5rem; padding: 0 1rem; font-size: clamp(1rem, 4vw, 1.3rem); max-width: 90%; }
    .cta-container { margin-top: 2rem; flex-direction: column; align-items: center; gap: 1rem; }
    .cta-button { min-width: 200px; padding: 1rem 2rem; font-size: 1rem; }
    .scroll-indicator { bottom: 1rem; font-size: 0.8rem; }
    .section { padding: 3rem 1rem; }
    .section h2 { font-size: clamp(1.8rem, 8vw, 2.5rem); margin-bottom: 1.5rem; }
    .section-subtitle { font-size: 1.1rem; padding: 0 1rem; margin-bottom: 2rem; line-height: 1.5; }
    .section p { font-size: 1rem; line-height: 1.6; margin-bottom: 1.2rem; }
    .features-grid { grid-template-columns: 1fr; gap: 1.5rem; margin: 2rem 0; }
    .feature-card { padding: 1.5rem; padding-top: 3rem; }
    .feature-card h3 { font-size: 1.3rem; line-height: 1.2; height: auto; margin-bottom: 1rem; }
    .feature-card p { font-size: 0.95rem; line-height: 1.5; }
    .stats-container { grid-template-columns: 1fr; gap: 1rem; }
    .stat-item { padding: 1.2rem; }
    .stat-number { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .stat-label { font-size: 0.9rem; }
    .product-overview { grid-template-columns: 1fr; gap: 2rem; }
    .product-image-container { padding: 2rem; min-height: 250px; order: -1; }
    .use-cases-section { padding: 3rem 0; }
    .use-cases-header { padding: 0 1rem; margin-bottom: 2rem; }
    .slider-container { padding: 0 1rem; margin: 0 1rem; }
    .slide { padding: 2rem 1.5rem; }
    .slide h3 { font-size: clamp(1.8rem, 8vw, 2.5rem); text-align: center; margin-bottom: 1.5rem; }
    .slide p { font-size: 1rem; text-align: center; margin-bottom: 1.5rem; line-height: 1.5; }
    .use-cases-grid { grid-template-columns: 1fr; gap: 1.2rem; margin-top: 1.5rem; }
    .use-case-item { height: auto; min-height: 120px; padding: 1.2rem; }
    .use-case-item h4 { font-size: 1rem; margin-bottom: 0.5rem; }
    .use-case-item p { font-size: 0.9rem; line-height: 1.4; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; }
    .slider-dots { margin-top: 1.5rem; padding-bottom: 1.5rem; gap: 0.8rem; }
    .dot { width: 10px; height: 10px; }
    .cytokine-nav { gap: 0.5rem; margin-bottom: 2rem; padding: 0 1rem; justify-content: center; flex-wrap: wrap; }
    .cytokine-tab { padding: 0.6rem 1rem; font-size: 0.9rem; min-width: 65px; border-radius: 20px; flex: none; }
    .cytokine-showcase { grid-template-columns: 1fr; gap: 2rem; min-height: auto; margin-top: 2rem; }
    .cytokine-display { min-height: 200px; order: -1; margin-bottom: 1rem; }
    .cytokine-highlight { min-width: 200px; padding: 1.5rem; }
    .cytokine-name { font-size: clamp(2rem, 10vw, 3rem); margin-bottom: 0.5rem; }
    .cytokine-label { font-size: 1rem; }
    .cytokine-info { min-height: auto; padding: 1.5rem; order: 1; }
    .cytokine-summary { font-size: 1.1rem; margin-bottom: 1.5rem; line-height: 1.5; }
    .cytokine-content h4 { font-size: 1.2rem; margin-bottom: 1rem; }
    .cytokine-content li { font-size: 0.95rem; padding: 0.4rem 0; line-height: 1.4; padding-left: 1.2rem; }
    .cytokine-content li:before { font-size: 1rem; }
    .team-grid { grid-template-columns: 1fr; gap: 1.5rem; margin: 2rem 0; }
    .team-card { padding: 1.5rem; }
    .team-photo { width: 100px; height: 100px; margin-bottom: 1rem; }
    .team-card h4 { font-size: 1.2rem; }
    .team-title { font-size: 0.9rem; }
    .team-summary { font-size: 0.9rem; line-height: 1.4; margin-bottom: 1rem; }
    .linkedin-link { font-size: 0.85rem; }
    .info-grid { grid-template-columns: 1fr; gap: 1.5rem; margin: 2rem 0; }
    .info-card { padding: 1.5rem; }
    .info-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }
    .info-card p { font-size: 1rem; line-height: 1.5; }
    .cta-section { padding: 2rem 1rem; margin-top: 2rem; }
    .cta-section h3 { font-size: 1.5rem; margin-bottom: 1rem; }
    .cta-section p { font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.5; }
    .contact-info p { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .hero-section { padding: 1rem; }
    .brand-name { font-size: clamp(2rem, 15vw, 3rem); }
    .tagline { font-size: clamp(0.9rem, 5vw, 1.1rem); padding: 0 0.5rem; }
    .section { padding: 2rem 0.8rem; }
    .section h2 { font-size: clamp(1.5rem, 10vw, 2rem); }
    .section-subtitle { font-size: 1rem; padding: 0 0.5rem; }
    .feature-card { padding: 1.2rem; padding-top: 2.5rem; }
    .feature-icon { top: 1rem; left: 1rem; }
    .cytokine-tab { padding: 0.5rem 0.8rem; font-size: 0.8rem; min-width: 55px; }
    .cytokine-info { min-height: auto; }
    .cytokine-name { font-size: clamp(1.8rem, 12vw, 2.5rem); }
    .slide { padding: 1.5rem 1rem; }
    .use-case-item { padding: 1rem; }
    .team-card { padding: 1.2rem; }
    .team-photo { width: 80px; height: 80px; }
    .info-card { padding: 1.2rem; }
    .cta-section { padding: 1.5rem 0.8rem; }
    .slider-container { margin: 0 0.5rem; padding: 0 0.5rem; }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero-section { min-height: 100vh; padding: 1rem; }
    .brand-name { font-size: clamp(2rem, 8vw, 3rem); }
    .tagline { font-size: clamp(0.9rem, 3vw, 1.1rem); margin-top: 1rem; }
    .cta-container { margin-top: 1.5rem; flex-direction: row; gap: 1rem; }
    .cta-button { min-width: 150px; padding: 0.8rem 1.5rem; font-size: 0.9rem; }
    .scroll-indicator { bottom: 0.5rem; font-size: 0.7rem; }
    .scroll-arrow { width: 15px; height: 15px; }
}

@media (hover: none) and (pointer: coarse) {
    .feature-card:hover, .stat-item:hover, .cytokine-tab:hover, .cytokine-info:hover, .cytokine-display:hover, .team-card:hover, .info-card:hover, .use-case-item:hover, .product-image-container:hover {
        transform: none;
        box-shadow: none;
    }
    .feature-card:hover { background: #f7fafc; border-color: #e2e8f0; }
    .cta-button.secondary:hover { background: #f7fafc; border-color: #e2e8f0; }
    .slider-nav:hover { transform: translateY(-50%); }
    .scroll-indicator:hover { transform: none; color: inherit; }
    .feature-card:active, .stat-item:active, .team-card:active, .info-card:active, .use-case-item:active, .cta-button:active, .cytokine-tab:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}
