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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.panel-title,
.tech-heading,
.section-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.03em;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.1rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 0 0 auto;
    padding: 0 0 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

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

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

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #0D238E;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.nav-button {
    background: #0D238E;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link.nav-button::after {
    display: none;
}

.nav-link.nav-button:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 35, 142, 0.3);
}

.nav-link.nav-button-outline {
    background: white;
    color: #0D238E;
    border: 2px solid #0D238E;
    padding: calc(0.5rem - 2px) calc(1.25rem - 2px);
}

.nav-link.nav-button-outline:hover {
    background: #0D238E;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 35, 142, 0.3);
}

.nav-item-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1e293b;
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown-link:hover {
    background-color: #f8fafc;
    color: #0D238E;
}

.nav-item-dropdown > .nav-link::after {
    display: block;
    width: 0;
    transition: width 0.3s ease;
}

.nav-item-dropdown > .nav-link:hover::after,
.nav-item-dropdown > .nav-link.active::after {
    width: 100%;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: clamp(70px, 9vh, 100px) auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #0D238E;
    letter-spacing: 0.03em;
}

.hero-line-break {
    display: inline-block;
    white-space: nowrap;
}

.highlight {
    color: #0D238E;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0D238E;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2.25rem;
    line-height: 1.7;
    max-width: 820px;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #0D238E;
    color: white;
    box-shadow: 0 4px 15px rgba(13, 35, 142, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #2563eb;
    box-shadow: 0 8px 25px rgba(13, 35, 142, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #0D238E;
    border: 2px solid #0D238E;
}

.btn-secondary:hover {
    background: #0D238E;
    color: white;
    transform: translateY(-2px);
}

/* Scientific Animation */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    width: 120%;
    height: 120%;
    object-fit: cover;
    top: -10%;
    left: -10%;
    opacity: 0;
    transition: opacity 0.8s ease;
    border-radius: 24px;
    filter: saturate(0.9) contrast(1.05);
}

.scientific-animation {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(226, 232, 245, 0.4), rgba(200, 212, 226, 0.5), rgba(180, 195, 215, 0.6));
    border: 2px solid rgba(13, 35, 142, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatAround 20s ease-in-out infinite;
}

.cell-particle {
    width: 20px;
    height: 20px;
    background: rgba(13, 35, 142, 0.4);
    border-radius: 50%;
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.light-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(13, 35, 142, 0.25);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.detection-zone {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 1px dashed #64748b;
    border-radius: 50%;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes floatAround {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
    }
    25% { 
        transform: translate(30px, -40px) rotate(90deg);
    }
    50% { 
        transform: translate(-20px, -60px) rotate(180deg);
    }
    75% { 
        transform: translate(-40px, -20px) rotate(270deg);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 2.2vw + 1rem, 3rem);
    font-weight: 800;
    color: #0D238E;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Technology Section */
.technology {
    padding: clamp(80px, 12vw, 150px) 0;
    background: linear-gradient(135deg, #0D238E 0%, #4C1D95 100%);
}

#technology .section-header h2 {
    font-style: italic;
    font-weight: 700;
    color: #ffffff;
}

#technology .section-header p {
    color: #cbd5e1;
}

.platform-slogan {
    font-style: italic;
    font-size: 1.3rem;
    color: #ffffff;
    margin: 1rem auto 1.5rem;
    max-width: 800px;
}

.platform-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.tech-sections {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(80px, 10vw, 120px);
}

.tech-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 8vw, 100px);
    align-items: center;
    min-height: 600px;
}


.tech-content {
    display: flex;
    flex-direction: column;
}

.tech-heading {
    font-size: clamp(2.21rem, 2.76vw + 1.1rem, 3.32rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 0.026em;
}

.tech-body {
    font-size: 1.22rem;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 90%;
}

.tech-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-image {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

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

.tech-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tech-icon i {
    font-size: 1.5rem;
    color: white;
}

.tech-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0D238E;
    margin-bottom: 1rem;
}

.tech-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 5rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.quote-video-section {
    padding: clamp(80px, 12vw, 150px) 0;
}

.quote-video-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 60px);
    align-items: center;
}

.quote-section {
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 1200px;
}

.video-placeholder {
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quote-video-section .video-container {
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible;
    transform: scale(1.5);
    transform-origin: center;
}

.quote-video-section .video-placeholder {
    background: transparent !important;
}

.video-placeholder-content {
    color: #94a3b8;
    font-size: 1.1rem;
    text-align: center;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23cbd5e1" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

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

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-item {
    display: flex;
    flex-direction: column;
}

.product-box-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-box {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    margin-bottom: 1rem;
    height: 150px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.product-box-flip {
    padding: 0;
    overflow: visible;
}

.product-box:hover {
    transform: translateY(-5px);
}

.product-box[data-product="scout"]:hover {
    transform: translateY(-5px);
}

/* Card flip animation for Insight and Polaris */
.product-box-flip {
    perspective: 1000px;
    transform-style: preserve-3d;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-box-flip:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.product-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.product-box-flip:hover .product-box-inner {
    transform: rotateX(180deg);
}

.product-box-front,
.product-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 12px;
    top: 0;
    left: 0;
}

.product-box-front {
    transform: rotateX(0deg);
}

.product-box-back {
    transform: rotateX(180deg);
    background: #ffffff;
}

.product-box-header {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-box-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0D238E;
    margin: 0;
    line-height: 1.2;
}

.product-logo {
    width: auto;
    height: 300px;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

.product-description {
    color: #0D238E;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
    text-align: center;
}

.product-action {
    color: #1e293b;
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

#solutions .section-header .brand-name {
    position: relative;
    display: inline-block;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.service-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-image i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0D238E;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #64748b;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 5rem 0 6rem;
    background: #ffffff;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0D238E;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
}

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

.stat p {
    color: #64748b;
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.member-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.member-avatar i {
    font-size: 1.5rem;
    color: white;
}

.team-member h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #ffffff;
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0;
}

.contact-item i {
    font-size: 1.25rem;
    color: #0D238E;
    width: 24px;
    text-align: left;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.375rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-item p {
    color: #1e293b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: transparent;
    padding: 0;
    width: 100%;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #ffffff;
    color: #1e293b;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0D238E;
    box-shadow: 0 0 0 3px rgba(13, 35, 142, 0.1);
}

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

.contact-form .btn-primary {
    margin-top: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Partnership Form Styles */
.partnership-form-section {
    padding: 6rem 0;
    background: #ffffff;
}

.partnership-form-section .section-header {
    margin-bottom: 3rem;
}

.partnership-form-section .section-header h1 {
    font-size: clamp(2rem, 2.2vw + 1rem, 3rem);
    font-weight: 800;
    color: #0D238E;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
    text-align: center;
}

.partnership-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.partnership-form {
    background: transparent;
    padding: 0;
    width: 100%;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0D238E;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-section-divider {
    display: none;
}

.form-row {
    margin-bottom: 1.75rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.partnership-form .form-group {
    margin-bottom: 0;
}

.partnership-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.625rem;
    font-family: 'Inter', sans-serif;
}

.partnership-form .required {
    color: #ef4444;
    font-weight: 700;
}

.partnership-form input[type="text"],
.partnership-form input[type="email"],
.partnership-form select,
.partnership-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e293b;
}

.partnership-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230D238E' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.partnership-form input::placeholder,
.partnership-form textarea::placeholder {
    color: #64748b;
    opacity: 0.7;
}

.partnership-form input:focus,
.partnership-form select:focus,
.partnership-form textarea:focus {
    outline: none;
    border-color: #0D238E;
    box-shadow: 0 0 0 3px rgba(13, 35, 142, 0.1);
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    color: #1e293b;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: #0D238E;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #0D238E;
    flex-shrink: 0;
    border-radius: 4px;
}

.checkbox-label span {
    font-size: 1rem;
    line-height: 1.5;
}

.form-submit-wrapper {
    margin-top: 2.5rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.form-submit-wrapper .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    min-width: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partnership-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .form-section-title {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: #1e293b;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section:nth-child(3) {
    margin-left: 8rem;
}

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

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-quicklinks-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-self: center;
}

.footer-quicklinks-column {
    flex: 0 0 auto;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: #334155;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 44px;
    height: 44px;
}

.social-button:hover {
    background: #475569;
    transform: translateY(-2px);
    color: #ffffff;
}

.social-button i {
    font-size: 1.1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    #intro-need .panel-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 0;
        padding: 2rem 0;
        min-height: auto;
        position: relative;
    }
    
    .intro-image-container {
        grid-row: 1;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        order: 1;
        margin-bottom: -2rem;
    }
    
    .intro-content {
        grid-row: 2;
        padding-left: 0;
        padding-right: 0;
        order: 2;
        margin-top: -1rem;
        position: relative;
        z-index: 10;
    }
    
    .intro-image {
        width: 120%;
        min-height: 350px;
        max-width: none;
        margin-left: -10%;
        margin-right: -10%;
    }
    
    #intro-need .circle-cta {
        grid-row: 3;
        grid-column: 1;
        position: relative !important;
        margin: 0.25rem auto 1rem !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        order: 3;
        display: grid;
        place-items: center;
        justify-self: center;
        width: 90px;
        height: 90px;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .scientific-animation {
        width: 180px;
        height: 180px;
    }
    
    .cell-particle {
        width: 12px;
        height: 12px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        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;
    }
    
    .nav-link.nav-button {
        margin: 0.5rem 1rem;
        display: block;
        text-align: center;
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin-top: 0.5rem;
        border-radius: 0;
        padding: 0.5rem 0;
    }
    
    .nav-dropdown-link {
        padding: 0.5rem 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin: clamp(50px, 10vh, 75px) auto 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quote-video-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tech-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-section-reverse {
        direction: ltr;
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tech-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Panels and crossfade flow */
.panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.panel-dark {
    background: #000;
    color: #fff;
}

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

#intro-need {
    padding-left: 0;
    min-height: auto;
    position: relative;
}

#intro-need .panel-inner {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: clamp(60px, 8vw, 100px);
    align-items: center;
    padding: clamp(80px, 12vw, 150px) 60px clamp(40px, 6vw, 80px) 50px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.intro-image-container {
    width: 100%;
    padding-left: clamp(100px, 10vw, 180px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image {
    width: 300%;
    height: auto;
    min-height: 500px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.intro-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    padding-left: clamp(40px, 5vw, 80px);
}

#product-comparison .panel-inner {
    max-width: none;
    width: 100%;
    padding: 0 clamp(32px, 5vw, 80px);
}

.panel-kicker { color: #ef4444; margin-bottom: 1.5rem; }
.panel-title { font-size: clamp(2.21rem, 2.76vw + 1.1rem, 3.32rem); font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: 0.026em; }
.panel-sub { color: #cbd5e1; max-width: 820px; font-size: 1.24rem; line-height: 1.7; }
.panel-note { color: #ef4444; margin-top: 2rem; font-style: italic; opacity: 0.8; }

.panel-next { position: absolute; right: 4vw; bottom: 8vh; border: 2px solid #fff; width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; color: #fff; text-decoration: none; font-size: 2rem; opacity: .8; }

/* Circle CTA (arrow) */
.circle-cta { 
    position: absolute; 
    right: 4vw; 
    bottom: 8vh; 
    width: 90px; 
    height: 90px; 
    border: 2px solid #fff; 
    border-radius: 50%; 
    display: grid; 
    place-items: center; 
    color: #fff; 
    text-decoration: none; 
    transition: transform .2s ease, background .2s ease;
    background: transparent;
}

#intro-need .circle-cta {
    right: 160px;
    bottom: 40px;
}

.circle-cta .arrow { font-size: 2rem; }

.circle-cta .arrow-icon {
    width: 36px;
    height: 36px;
}

.circle-cta:hover { 
    transform: translateY(-2px); 
    background: rgba(255,255,255,0.08); 
}

.panel-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.panel-graphic { background: radial-gradient(circle at 20% 30%, #334155 0, #0b0f17 60%); height: 420px; border-radius: 16px; border: 1px solid #1f2937; position: relative; overflow: hidden; }
.panel-graphic .assay-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; opacity: 1; transition: opacity .6s cubic-bezier(0.4, 0, 0.2, 1), transform .6s cubic-bezier(0.4, 0, 0.2, 1); transform: scale(1); }
.panel-copy h2 { font-size: 2rem; margin-bottom: .75rem; }
.panel-copy p { color: #cbd5e1; }

/* Crossfade behavior */
body {
    scroll-behavior: smooth;
}

.panel { opacity: 0; transition: opacity 600ms ease; }
.panel.visible { opacity: 1; }
.panel.no-fade { opacity: 1; }
.fade-on-scroll { opacity: 0; transition: opacity 400ms ease, background 300ms ease; }
.fade-on-scroll.visible { opacity: 1; background: rgba(255,255,255,0.85); }
.logo-fixed {
    position: fixed;
    top: clamp(15px, 3vw, 24px);
    left: clamp(16px, 4vw, 48px);
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    transition: transform .3s ease;
}
.logo-fixed img {
    display: block;
    width: clamp(130px, 13vw, 165px);
    height: auto;
}
.logo-fixed:hover {
    transform: translateY(-2px);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: clamp(22px, 3.5vw, 32px) clamp(80px, 8vw, 140px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/* Product comparison layout */
#product-comparison {
    position: relative;
}

#product-comparison .comparison-layout {
    display: grid;
    grid-template-columns: clamp(520px, 50vw, 720px) 1fr;
    gap: clamp(20px, 3vw, 50px);
    width: 100%;
    align-items: center;
    padding: clamp(32px, 6vw, 96px);
}

.left-graphic {
    position: sticky;
    top: clamp(32px, 5vw, 80px);
    align-self: start;
    height: fit-content;
    width: 100%;
}

.graph-image-container {
    position: relative;
    width: 100%;
    height: auto;
}

.graph-image-container .fade-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: opacity 0.8s ease-in-out;
    display: block;
}

.graph-image-container .fade-image.fade-image-base {
    position: relative;
    opacity: 1;
}

.graph-image-container .fade-image.fade-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.comparison-media {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: sticky;
    top: clamp(32px, 5vw, 80px);
    align-self: start;
    height: calc(100vh - clamp(32px, 5vw, 80px) * 2);
    gap: 2rem;
    padding-top: clamp(40px, 8vw, 80px);
}

.media-frame {
    position: relative;
    width: clamp(360px, 45vw, 700px);
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.comparison-graph,
.comparison-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .9s ease;
}

.comparison-graph {
    opacity: 1;
    padding: clamp(24px, 4vw, 40px);
}

.comparison-photo {
    opacity: 0;
    padding: clamp(12px, 3vw, 24px);
}

.comparison-temp {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    transition: opacity .9s ease;
}

.comparison-scroll {
    display: block;
    padding-right: clamp(16px, 3vw, 48px);
}

.comparison-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100vh;
    justify-content: center;
    padding: clamp(40px, 8vw, 80px) 0;
    opacity: 0.4;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.comparison-card.active {
    opacity: 1;
    transform: translateY(0);
}

.comparison-card h2 {
    font-size: clamp(2rem, 2.6vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}

.comparison-card p {
    color: rgba(226,232,240,0.85);
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.7;
    max-width: 520px;
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.comparison-features-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.comparison-features-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: opacity 0.3s ease;
    width: clamp(360px, 45vw, 700px);
    margin-left: clamp(80px, 10vw, 150px);
    margin-top: clamp(-20px, -2vw, -40px);
    transform: translateX(clamp(60px, 8vw, 120px));
}

.comparison-features-group[style*="display: none"] {
    opacity: 0;
    pointer-events: none;
}

.comparison-card:last-child .comparison-features {
    margin-bottom: 2.5rem;
}

.comparison-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
    width: 100%;
}

.comparison-feature input[type="checkbox"] {
    width: 28px;
    height: 28px;
    cursor: pointer;
    accent-color: #fff;
    flex-shrink: 0;
    border: 2px solid #fff;
    border-radius: 4px;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}

.comparison-feature input[type="checkbox"]:checked {
    background-color: transparent;
    border-color: #fff;
}

.comparison-feature input[type="checkbox"]:not(:checked)::after {
    content: '✕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ef4444;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.comparison-feature input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #10b981;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.comparison-feature label {
    color: #fff;
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    margin: 0;
}

.comparison-card .btn {
    align-self: flex-start;
}

.comparison-images-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: clamp(360px, 40vw, 480px);
    align-self: center;
}

.comparison-image-half {
    width: 48% !important;
    height: auto;
    flex-shrink: 0;
    max-width: none;
}

.comparison-images-container img:first-child {
    width: 55% !important;
}

.comparison-images-container img:last-child {
    width: 43% !important;
}

.comparison-inline-photo {
    width: clamp(288px, 32vw, 378px);
    border-radius: 18px;
    align-self: center;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
}

.comparison-card:last-child .comparison-inline-photo {
    width: clamp(300px, 32vw, 400px);
    align-self: center;
}

@media (max-width: 1200px) {
    #product-comparison .comparison-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .comparison-media {
        position: relative;
        top: 0;
        height: auto;
        justify-content: center;
    }
    .media-frame {
        width: min(520px, 80vw);
    }
    .comparison-scroll {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scrolling on mobile */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
    
    img, video, iframe, svg {
        max-width: 100%;
        height: auto;
    }
    
    #product-comparison .comparison-layout {
        padding: 48px 24px;
        display: flex;
        flex-direction: column;
    }
    
    /* Hide the original comparison-media section on mobile */
    .comparison-media {
        display: none !important;
    }
    
    /* Hide media-frame and all its graph content on mobile */
    .media-frame {
        display: none !important;
    }
    
    .media-frame::before,
    .media-frame::after {
        display: none !important;
    }
    
    .media-frame .comparison-graph,
    .media-frame .comparison-photo {
        display: none !important;
    }
    
    /* Restructure comparison-scroll to show cards with graphs and checkboxes inline */
    .comparison-scroll {
        order: 1;
        gap: 48px;
        display: flex;
        flex-direction: column;
    }
    
    /* Show graphs directly within each comparison card */
    .comparison-card {
        position: relative;
        opacity: 1 !important;
        transform: none !important;
        min-height: auto;
        padding: 2rem 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Hide Graph 1 for Flow Cytometry card on mobile */
    .comparison-card[data-card="flow"]::after {
        display: none;
    }
    
    /* Hide Graph 2 for Digital Droplet PCR card on mobile */
    .comparison-card[data-card="pcr"]::after {
        display: none;
    }
    
    /* Add Graph 3 after CellsBin Scout card content */
    .comparison-card[data-card="scout"]::after {
        content: '';
        display: block;
        width: 100%;
        height: auto;
        min-height: 200px;
        background-image: url('assets/Graph 3.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        aspect-ratio: 4 / 3;
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    /* Make comparison-layout a flex container and use display: contents to flatten structure */
    .comparison-layout {
        display: flex !important;
        flex-direction: column;
    }
    
    .comparison-media {
        display: contents !important;
    }
    
    .comparison-features-left {
        display: contents !important;
    }
    
    /* Position each checkbox group after its corresponding card */
    .comparison-features-group[data-card="flow"] {
        order: 2 !important; /* After Flow card (order 1) */
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem;
        margin-top: -1rem; /* Negative margin to bring closer to graph */
        margin-bottom: 1rem;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .comparison-features-group[data-card="pcr"] {
        order: 4 !important; /* After PCR card (order 3) */
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem;
        margin-top: -1rem;
        margin-bottom: 1rem;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .comparison-features-group[data-card="scout"] {
        order: 6 !important; /* After Scout card (order 5) */
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem;
        margin-top: -0.5rem;
        margin-bottom: 0;
        padding-bottom: 2rem;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    /* Set order for cards */
    .comparison-card[data-card="flow"] {
        order: 1;
    }
    
    .comparison-card[data-card="pcr"] {
        order: 3;
    }
    
    .comparison-card[data-card="scout"] {
        order: 5;
    }
    
    /* Override inline styles that JavaScript might add */
    .comparison-features-group[style*="display: none"],
    .comparison-features-group[style] {
        display: flex !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    /* Add labels to indicate which graph each checkbox group corresponds to */
    .comparison-features-group[data-card="flow"]::before {
        content: 'Flow Cytometry';
        font-weight: 600;
        font-size: 0.9rem;
        color: #cbd5e1;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        display: block;
    }
    
    .comparison-features-group[data-card="pcr"]::before {
        content: 'Digital Droplet PCR';
        font-weight: 600;
        font-size: 0.9rem;
        color: #cbd5e1;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        display: block;
    }
    
    .comparison-features-group[data-card="scout"]::before {
        content: 'CellsBin Scout';
        font-weight: 600;
        font-size: 0.9rem;
        color: #cbd5e1;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        display: block;
    }
    /* Hide all media-frame content on mobile - graphs are shown inline with cards instead */
    .media-frame {
        display: none !important;
    }
    
    .media-frame::before,
    .media-frame::after {
        display: none !important;
    }
    
    .media-frame .comparison-graph,
    .media-frame .comparison-photo {
        display: none !important;
    }
}

/* Scout graph */
.scout-graph-container { margin-bottom: 2rem; text-align: center; }
.scout-graph { max-width: 100%; height: auto; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); opacity: 0; transform: translateY(20px) scale(0.98); transition: opacity .9s ease, transform .9s cubic-bezier(0.4, 0, 0.2, 1); }
.scout-graph.visible { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 1024px) {
    .sticky-split { grid-template-columns: 1fr; }
    .sticky-graphic { position: relative; height: 50vh; }
    .copy-block { min-height: 70vh; }
}

/* Scout Page Styles */
.scout-hero {
    padding: 3rem 0 2rem;
    background: #ffffff;
    position: relative;
}

.scout-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.scout-hero-content {
    position: relative;
    z-index: 1;
}

.scout-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.scout-title {
    font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
    font-weight: 900;
    color: #0D238E;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.scout-logo-container {
    width: fit-content;
    height: clamp(140px, 20vw, 280px);
    margin: 0 auto 0;
    padding: 4rem 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.scout-logo {
    width: auto;
    height: 120%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .scout-logo-container {
        height: clamp(200px, 35vw, 350px);
        padding: 3rem 1rem;
    }
    
    .scout-logo {
        height: 140%;
    }
}

.scout-tagline {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.scout-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.scout-feature-box {
    background: transparent;
    padding: 0;
    text-align: center;
}

.scout-feature-icon {
    width: 128px;
    height: 128px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scout-feature-icon i {
    font-size: 4rem;
    color: #1e293b;
}

.scout-feature-text {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.scout-hero-link {
    text-align: center;
    margin-top: 3rem;
}

.scout-hero-link a {
    color: #0D238E;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.scout-hero-link a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.scout-hero-link a strong {
    font-weight: 700;
}

.scout-video {
    padding: 0;
    margin: 0;
    background: #000000;
}

.scout-video .video-placeholder {
    width: 100%;
    padding: 0;
    margin: 0;
}

.scout-video .video-container {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.scout-video .video-placeholder-content {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.scout-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.scout-comparison {
    padding: 4rem 0;
    background: #ffffff;
}

.scout-comparison.panel-dark {
    background: #000;
    color: #fff;
}

.scout-comparison.panel-dark .scout-section-title {
    color: #fff;
    margin-bottom: 1rem;
    font-size: clamp(2.25rem, 3.5vw, 2.75rem);
}

.scout-section-title {
    font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
    font-weight: 900;
    color: #0D238E;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.scout-comparison-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.scout-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.scout-graph-section,
.scout-radar-section {
    background: #ffffff;
    padding: 1.5rem;
}

.scout-comparison.panel-dark .scout-graph-section,
.scout-comparison.panel-dark .scout-radar-section {
    background: #000;
}

.scout-learn-more-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.scout-learn-more-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.scout-graph-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scout-graph-title,
.scout-radar-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.scout-comparison.panel-dark .scout-radar-title {
    color: #fff;
}

.scout-graph-container,
.scout-radar-container {
    width: 100%;
    text-align: center;
}

.scout-comparison-graph,
.scout-radar-chart {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.scout-solutions {
    padding: 4rem 0;
    background: #ffffff;
}

.scout-therapy-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.therapy-tab {
    padding: 0.5rem 1.25rem;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.therapy-tab:hover {
    border-color: #0D238E;
    color: #0D238E;
}

.therapy-tab.active {
    background: #0D238E;
    border-color: #0D238E;
    color: #ffffff;
}

.scout-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.scout-solution-card {
    background: #ffffff;
    padding: 1.5rem;
}

.scout-solution-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0D238E;
    margin-bottom: 0.75rem;
}

.scout-solution-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.scout-actions-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.scout-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.btn-outline {
    padding: 0.625rem 1.25rem;
    border: 1px solid #0D238E;
    background: transparent;
    color: #0D238E;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: #0D238E;
    color: #ffffff;
}

.btn-gradient {
    padding: 0.625rem 1.25rem;
    background: #0D238E;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
    border: none;
}

.btn-gradient:hover {
    opacity: 0.9;
}

.scout-workflow {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0D238E 0%, #4C1D95 100%);
    position: relative;
}

.workflow-wavy-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.scout-workflow-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.scout-workflow-left {
    display: flex;
    flex-direction: column;
}

.scout-workflow-title {
    font-size: clamp(3.5rem, 5vw + 1.5rem, 6rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 0.75;
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
}

.scout-workflow-title .title-line-1,
.scout-workflow-title .title-line-2 {
    display: block;
}

.scout-workflow-title .title-line-2 {
    margin-top: -0.3em;
}

.scout-workflow-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #0D238E;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.scout-workflow-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.scout-workflow-right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    min-height: 400px;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

@keyframes drawLine {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.workflow-wavy-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.wavy-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

@keyframes bubblePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.workflow-step-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(0) scale(0.8);
    aspect-ratio: 1 / 1;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    z-index: 1;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.workflow-step-box.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: bubblePulse 5s ease-in-out infinite;
}

.workflow-step-1 {
    width: 220px;
    height: 220px;
    margin: 2rem 0 2rem auto;
    position: relative;
    left: 0;
    top: 0;
}

.workflow-step-2 {
    width: 240px;
    height: 240px;
    top: 20px;
    left: -20px;
}

.workflow-step-3 {
    width: 260px;
    height: 260px;
    top: 80px;
    left: calc(45% - 130px);
}

.workflow-step-4 {
    width: 200px;
    height: 200px;
    top: -40px;
    left: calc(45% - 100px);
}

.step-number-large {
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.step-text {
    font-size: 1.1rem;
    color: #ffffff;
    text-align: center;
    font-weight: 400;
    flex: 1;
}


.scout-workflow-steps {
    background: transparent;
    padding: 0;
}

.workflow-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.workflow-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    border: 2px solid #0D238E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0D238E;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.step-icon {
    font-size: 2rem;
    color: #0D238E;
    margin-top: 0.5rem;
}

.step-samples {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.step-samples i.fa-arrow-right {
    color: #0D238E;
}

.sample-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}

.sample-item i {
    font-size: 1.5rem;
    color: #0D238E;
}

.sample-item span {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 400;
}

.scout-workflow-details {
    background: transparent;
    padding: 0;
}

.workflow-detail-section {
    margin-bottom: 2rem;
}

.workflow-detail-section:last-child {
    margin-bottom: 0;
}

.workflow-detail-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.workflow-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.workflow-detail-list li {
    color: #64748b;
    margin-bottom: 0.375rem;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
}

.workflow-detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0D238E;
    font-weight: bold;
}

.workflow-kit-image {
    width: 100%;
    height: 180px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
}

.kit-placeholder {
    color: #64748b;
    font-size: 0.9rem;
}

.workflow-probes {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.probe-vial {
    width: 40px;
    height: 64px;
    background: #1a1a1a;
    border: 1px solid #333333;
    position: relative;
}

.probe-vial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 16px;
    background: #64748b;
}

.scout-service-lab {
    padding: 4rem 0;
    background: #ffffff;
}

.service-lab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
    overflow: visible;
}

.service-lab-image {
    position: relative;
    max-width: 120%;
    overflow: visible;
    transform: scale(1.2);
    margin: 0 auto;
    justify-self: center;
}

.service-lab-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.95) 10%, rgba(255, 255, 255, 0.7) 25%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.service-lab-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    opacity: 1;
}

.service-lab-caption {
    margin-top: 0.75rem;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
}

.service-lab-text {
    color: #1e293b;
    text-align: left;
}

.service-lab-headline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-lab-description {
    font-size: 1.2rem;
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-service-lab {
    padding: 0.75rem 1.5rem;
    background: #0D238E;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.btn-service-lab:hover {
    opacity: 0.9;
}

.scout-assays {
    padding: 4rem 0;
    background: #ffffff;
}

.scout-assays-title {
    font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
    font-weight: 900;
    font-style: normal;
    color: #0D238E;
    margin-bottom: 3rem;
    text-align: center;
}

.scout-assays-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.assay-card {
    display: flex;
    flex-direction: column;
}

.assay-label {
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.assay-diagram {
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, #bfdbfe 0%, #93c5fd 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.assay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.btn-assay {
    display: inline-block;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

/* Download Modal */
.download-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.download-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-modal-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.download-modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.download-modal-close:hover {
    color: #1e293b;
}

.download-modal-content h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-size: 1.5rem;
}

.download-form .form-group {
    margin-bottom: 1.25rem;
}

.download-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.download-form input:focus {
    outline: none;
    border-color: #2563eb;
}

.download-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

.diagram-placeholder {
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.scout-assays-cta {
    text-align: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.scout-assays-link {
    color: #0D238E;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.scout-assays-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.scout-assays-link strong {
    font-weight: 700;
}

/* Use Cases Section */
.scout-use-cases {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.scout-use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.scout-use-cases .container {
    position: relative;
    z-index: 1;
}

.use-cases-slideshow {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0 100px;
}

.use-cases-container {
    display: flex;
    position: relative;
    min-height: 400px;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: flex-start;
}

.use-case-card {
    flex: 0 0 calc(100% - 200px);
    min-width: calc(100% - 200px);
    opacity: 0.5;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.use-case-card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.use-case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.use-case-title {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
    color: #0D238E;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.use-case-toggle {
    background: transparent;
    border: 2px solid #0D238E;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0D238E;
}

.use-case-toggle:hover {
    background: #0D238E;
    color: #ffffff;
}

.use-case-toggle i {
    transition: transform 0.3s ease;
}

.use-case-card.expanded .use-case-toggle i {
    transform: rotate(180deg);
}

.use-case-content {
    margin-bottom: 1rem;
}

.use-case-subheading {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
    margin: 0 0 1rem 0;
    font-style: italic;
    margin-top: -0.25rem;
}

.use-case-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
    margin: 0;
}

.use-case-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.use-case-card.expanded .use-case-details {
    max-height: 500px;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
}

.use-case-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
    padding-top: 0;
    border-top: none;
}

.use-case-details p:first-child {
    padding-top: 0;
    border-top: none;
}

.use-case-details p:not(:first-child) {
    padding-top: 0;
    margin-top: 0.75rem;
    border-top: none;
}

.use-cases-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.use-cases-prev,
.use-cases-next {
    background: #0D238E;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.use-cases-prev:hover,
.use-cases-next:hover {
    background: #2563eb;
    transform: scale(1.1);
}

.use-cases-dots {
    display: flex;
    gap: 0.75rem;
}

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

.use-cases-dots .dot.active {
    background: #0D238E;
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 1024px) {
    .scout-comparison-grid,
    .scout-workflow-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }
    
    .scout-workflow-left {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .scout-workflow-title {
        order: 1;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .scout-workflow-btn {
        order: 2;
        align-self: center;
        margin-top: 0;
        margin-bottom: 2rem;
    }
    
    /* Move step 1 to appear after button */
    .scout-workflow-left .workflow-step-1 {
        order: 3;
        margin: 0 auto;
    }
    
    .scout-workflow-right {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        justify-content: flex-start;
        min-height: auto;
        padding: 0;
        position: relative;
    }
    
    /* Ensure wavy line is visible on mobile */
    .workflow-wavy-line {
        display: block !important;
        opacity: 1 !important;
    }
    
    /* Reset absolute positioning for mobile but keep fade-in animation capability */
    .workflow-step-box {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        margin: 0 !important;
        opacity: 0;
        transform: translateX(0) scale(0.8);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        /* Fallback: make visible after delay if animation doesn't trigger */
        animation: fadeInFallback 0.1s ease-out 1.5s forwards;
    }
    
    /* Allow fade-in animation to work - ensure visible class can override */
    .workflow-step-box.visible {
        opacity: 1 !important;
        transform: translateX(0) scale(1) !important;
        animation: bubblePulse 5s ease-in-out infinite !important;
    }
    
    @keyframes fadeInFallback {
        from {
            opacity: 0;
            transform: translateX(0) scale(0.8);
        }
        to {
            opacity: 1 !important;
            transform: translateX(0) scale(1) !important;
        }
    }
    
    /* Order steps: 1 at top (in left column), then 2, 3, 4 in right column */
    .workflow-step-1 {
        width: 200px;
        height: 200px;
    }
    
    .workflow-step-2 {
        order: 1;
        width: 200px;
        height: 200px;
    }
    
    .workflow-step-3 {
        order: 2;
        width: 200px;
        height: 200px;
    }
    
    .workflow-step-4 {
        order: 3;
        width: 200px;
        height: 200px;
    }
    
    .scout-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .scout-solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .scout-assays-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .scout-assays-cta {
        text-align: center;
    }
    
    .service-lab-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-lab-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .service-lab-image::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .scout-video.panel {
        min-height: auto !important;
        padding: 2rem 0 !important;
        margin: 0 !important;
        align-items: flex-start !important;
    }
    
    .scout-video .video-placeholder {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .scout-video .video-container {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .scout-therapy-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .therapy-tab {
        width: 100%;
    }
    
    .step-samples {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-samples i.fa-arrow-right {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .scout-assays-title {
        text-align: center;
    }
    
    .scout-assays-grid {
        padding: 0 1rem;
    }
    
    .scout-assays-cta {
        padding: 0 1rem;
        text-align: center;
    }
}
