* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    height: 70px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1rem;
}

.logo-image {
    height: 20px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #1a1a1a;
}

.nav-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-btn.secondary {
    background: #f3f4f6;
    color: #6b7280;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-black {
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.highlight-blue {
    color: #3b82f6;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-primary:hover {
    transform: translateY(-2px);
}

.cta-secondary {
    background: white;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-secondary:hover {
    border-color: #d1d5db;
    color: #1a1a1a;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-number.blue {
    color: #3b82f6;
}

.stat-number.purple {
    color: #8b5cf6;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Product Showcase */
.products-section {
    padding: 6rem 0;
    background: white;
}

.product-showcase {
    text-align: center;
    margin-bottom: 4rem;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.features-badge {
    display: inline-block;
    background: #fef3c7;
    color: #d97706;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        position: relative;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 16px 16px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        border: 1px solid #e5e7eb;
        border-top: none;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 18px 20px;
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .nav-menu a:hover {
        background: #f8fafc;
        color: #3b82f6;
        padding-left: 24px;
    }

    .desktop-only {
        display: none !important;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 2rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
    }
}

section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

/* Page Layouts */
.page-main {
    padding-top: 0;
}

.page-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Active nav state */
.nav-menu a.active {
    color: #667eea;
    font-weight: 600;
}

/* Products Page */
.products-showcase {
    padding: 4rem 0;
}

.product-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.product-feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-logo {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.product-logo.purple {
    background: #8b5cf6;
}

.product-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.explore-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.explore-btn.purple {
    background: #8b5cf6;
}

.explore-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.features-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.features-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.features-icon {
    font-size: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    background: #10b981;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-badge {
    background: #ede9fe;
    color: #8b5cf6;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
}

.product-features {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-features span {
    color: #6b7280;
    font-size: 0.9rem;
}

.product-cta {
    background: #f8fafc;
    color: #6b7280;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.product-cta:hover {
    background: #f1f5f9;
    color: #1a1a1a;
}

/* Modern sections */
.about-section,
.why-section,
.contact-section {
    padding: 6rem 0;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.about-section {
    background: white;
    padding-top: 6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-card,
.mission-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.mission-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.why-section {
    background: #f8fafc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.modern-footer {
    background: #1a1a1a;
    color: #9ca3af;
    padding: 2rem 0;
    text-align: center;
}

/* Services Page Styles */
.services-showcase {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card-large {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features span {
    color: #6b7280;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.service-cta {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.service-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Research Page Styles */
.research-showcase {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
    background: white;
}

.research-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.research-card-large {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.research-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.research-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.research-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.research-details span {
    color: #6b7280;
    font-size: 0.95rem;
    padding-left: 0.5rem;
}

/* Research Page - New Card Design */
.research-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.research-card-modern {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.research-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.research-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.research-card-icon.blue {
    background: #3b82f6;
}

.research-card-icon.purple {
    background: #8b5cf6;
}

.research-card-icon.green {
    background: #10b981;
}

.research-card-icon.orange {
    background: #f59e0b;
}

.research-card-icon.red {
    background: #ef4444;
}

.research-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.research-card-modern p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.research-topics {
    margin-top: 1.5rem;
}

.research-topics h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topic-tag {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.topic-tag:hover {
    transform: translateY(-1px);
}

.topic-tag.pink {
    background: #fce7f3;
    color: #be185d;
    border-color: #f9a8d4;
}

.topic-tag.purple {
    background: #ede9fe;
    color: #7c3aed;
    border-color: #c4b5fd;
}

.topic-tag.green {
    background: #d1fae5;
    color: #047857;
    border-color: #6ee7b7;
}

.topic-tag.orange {
    background: #fef3c7;
    color: #d97706;
    border-color: #fcd34d;
}

.topic-tag.blue {
    background: #dbeafe;
    color: #1d4ed8;
    border-color: #93c5fd;
}

.topic-tag.red {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
}

/* Responsive Updates for Research */
@media (max-width: 768px) {
    .research-grid-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .research-card-modern {
        padding: 1.5rem;
    }

    .research-card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }
}

/* Responsive Updates */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .hero,
    .research-hero,
    .products-hero,
    .services-hero {
        padding: 6rem 1rem 4rem;
        margin-top: 70px;
        position: relative;
        z-index: 1;
    }

    .about-section {
        padding-top: 4rem;
    }

    .about-section {
        padding-top: 6rem;
    }

    .page-hero {
        padding: 4rem 0 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Hero Section Variations */
.research-hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.products-hero {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.services-hero {
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

/* Badge Variations */
.research-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.products-badge {
    background: rgba(249, 115, 22, 0.1);
    color: #ea580c;
}

.services-badge {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

/* Gradient Text Variations */
.gradient-text-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.purple-gradient {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Highlight Colors */
.highlight-green {
    color: #16a34a;
    font-weight: 600;
}

.highlight-orange {
    color: #ea580c;
    font-weight: 600;
}

.highlight-purple {
    color: #9333ea;
    font-weight: 600;
}

.highlight-pink {
    color: #ec4899;
    font-weight: 600;
}

/* CTA Button Variations */
.research-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.products-cta {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.services-cta {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.get-started-btn {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 2rem;
}

/* Stats Color Variations */
.stat-number.green {
    color: #16a34a;
}

.stat-number.orange {
    color: #ea580c;
}

/* Who We Serve Section */
.who-serve-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.serve-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.3s ease;
}

.serve-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.serve-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    color: white;
}

.serve-icon.blue {
    background: #4f46e5;
}

.serve-icon.purple {
    background: #8b5cf6;
}

.serve-icon.green {
    background: #10b981;
}

.serve-icon.orange {
    background: #f59e0b;
}

.serve-icon.cyan {
    background: #06b6d4;
}

.serve-icon.pink {
    background: #ec4899;
}

.serve-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.serve-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.serve-offerings {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.offering-tag {
    background: #ede9fe;
    color: #8b5cf6;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* What We Do Section */
.what-we-do-section {
    padding: 6rem 0;
    background: white;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.activity-card {
    text-align: center;
    padding: 2rem;
}

.activity-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    color: white;
}

.activity-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.activity-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.learn-more-btn {
    background: #f8fafc;
    color: #6b7280;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.learn-more-btn:hover {
    background: #e2e8f0;
    color: #1a1a1a;
}

/* Vizuara Labs Section */
.vizuara-labs-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f3f4f6 100%);
    text-align: center;
}

.labs-header {
    margin-bottom: 2rem;
}

.labs-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.labs-subtitle {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.labs-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.university-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.uni-logo {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    color: #dc2626;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.byline {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.mission-statement {
    margin: 2rem 0;
}

.mission-text {
    font-size: 1.1rem;
    color: #374151;
}

.bootcamp-card {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

.bootcamp-icon {
    font-size: 1.5rem;
}

.bootcamp-content h4 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.bootcamp-content p {
    color: #6b7280;
    font-size: 0.9rem;
}

.join-bootcamp-btn {
    background: #ec4899;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

/* Remove old page-hero styles for these pages */
/* .research-hero,
.products-hero,
.services-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10rem 2rem 4rem;
} */

/* Modern Products Layout */
.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: start;
}

.product-row.reverse {
    direction: rtl;
}

.product-row.reverse>* {
    direction: ltr;
}

.product-card-featured {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.product-header-featured {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-logo-featured {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.product-logo-featured.blue {
    background: #3b82f6;
    color: white;
}

.product-logo-featured.purple {
    background: #8b5cf6;
    color: white;
}

.product-header-featured h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.product-description {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.product-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.metric-item {
    text-align: center;
    flex: 1;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-number.pink {
    color: #ec4899;
}

.metric-number.purple {
    color: #8b5cf6;
}

.metric-label {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.3;
}

.metric-sublabel {
    font-weight: 600;
    color: #6b7280;
}

.product-btn-primary {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.product-btn-primary.purple {
    background: #8b5cf6;
}

.product-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.product-features-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
}

.features-header-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.features-icon-modern {
    font-size: 1.25rem;
}

.features-header-modern h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.features-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-check {
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    font-weight: 600;
}

.feature-content strong {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.additional-products {
    margin-top: 6rem;
    text-align: center;
}

.additional-products .section-title {
    margin-bottom: 3rem;
}

.products-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card-simple {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-icon-simple {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-tag {
    background: #ede9fe;
    color: #8b5cf6;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
}

.product-btn-simple {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.product-btn-simple:hover {
    background: #e5e7eb;
    color: #1a1a1a;
}

/* Responsive Updates for Products */
@media (max-width: 768px) {
    .product-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .product-metrics {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .metric-number {
        font-size: 1.75rem;
    }

    .products-grid-simple {
        grid-template-columns: 1fr;
    }
}

/* Modern About Section */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fafbff 0%, #f8fafc 100%);
    position: relative;
    z-index: 2;
}

.about-hero {
    text-align: center;
    margin-bottom: 6rem;
}

.about-badge {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 2rem;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-lead {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.about-stat-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.stat-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.stat-content p {
    color: #6b7280;
    font-size: 0.95rem;
}

.mission-statement {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.mission-content {
    text-align: center;
}

.mission-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.formula {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.formula-item {
    background: #f8fafc;
    color: #374151;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.formula-item:hover {
    transform: scale(1.05);
    border-color: #3b82f6;
}

.formula-operator {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 600;
}

/* Modern Why Section */
.why-section {
    padding: 8rem 0;
    background: white;
    position: relative;
    z-index: 2;
}

.why-header {
    text-align: center;
    margin-bottom: 6rem;
}

.why-cards {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.why-card-modern:hover::before {
    transform: scaleY(1);
}

.why-card-modern:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.why-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e5e7eb;
    min-width: 60px;
    transition: all 0.3s ease;
}

.why-card-modern:hover .why-number {
    color: #667eea;
    transform: scale(1.1);
}

.why-content {
    flex: 1;
}

.why-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.why-content p {
    color: #6b7280;
    line-height: 1.6;
}

.why-arrow {
    font-size: 1.5rem;
    color: #e5e7eb;
    transition: all 0.3s ease;
}

.why-card-modern:hover .why-arrow {
    color: #667eea;
    transform: translateX(4px);
}

/* Remove old styles */
.about-card,
.mission-card,
.why-card,
.about-content,
.why-grid {
    display: none;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .formula {
        flex-direction: column;
        gap: 1rem;
    }

    .formula-operator {
        transform: rotate(90deg);
    }

    .why-card-modern {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .why-card-modern:hover {
        transform: translateY(-4px);
    }

    .why-arrow {
        transform: rotate(90deg);
    }

    .why-card-modern:hover .why-arrow {
        transform: rotate(90deg) translateY(-4px);
    }
}