:root {
    --black: #000000;
    --gray-900: #0a0a0a;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-400: #9ca3af;
    --white: #ffffff;
    --orange: #f59e0b;
    --gradient: linear-gradient(135deg, #f59e0b, #d97706);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}

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

.warning-bar {
    background: #f97316;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 101;
    overflow: hidden;
}

.warning-bar .scroll-container {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

.warning-bar p {
    font-size: 12px;
    color: #fff7e7;
    font-weight: 600;
    display: inline-block;
    padding: 0 50px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.header {
    position: relative;
    width: 100%;
    max-width: 100vw;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.95);
    margin-top: 80px;
    overflow-x: hidden;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
    overflow-x: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.header .logo {
    display: none;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 25px;
    margin-left: 10px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--orange);
}

.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 12px 20px 30px;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-title {
    margin-bottom: 20px;
    max-width: 100%;
}

.title-line {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.title-line:first-child {
    font-size: 56px;
}

.title-line .highlight {
    background: linear-gradient(90deg, #d97706, #ea580c, #fb923c, #fda4af, #c4b5fd, #a5b4fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content {
    margin-bottom: 20px;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 8px;
    font-weight: 400;
    margin: auto;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gray-700);
    margin: 20px auto;
}

.hero-text {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 8px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-link {
    font-size: 16px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-link:hover {
    color: #f97316;
}

.highlight-link {
    color: #f97316;
}

.labs-section {
    position: relative;
    height: 300vh;
    margin-top: -50px;
    padding-top: 0;
    max-width: 100vw;
    overflow-x: hidden;
}

.labs-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.labs-text {
    position: absolute;
    font-size: 120px;
    font-weight: 700;
    z-index: 0;
    pointer-events: none;
}

.labs-text.left {
    left: 50%;
    transform: translateX(-50%);
}

.labs-text.right {
    right: 50%;
    transform: translateX(50%);
}

.labs-text .highlight {
    background: linear-gradient(90deg, #d97706, #ea580c, #fb923c, #fda4af, #c4b5fd, #a5b4fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.labs-text-bottom .highlight {
    background: linear-gradient(90deg, #d97706, #ea580c, #fb923c, #fda4af, #c4b5fd, #a5b4fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.labs-fg {
    position: relative;
    z-index: 2;
    padding-bottom: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.labs-fg img {
    max-width: 600px;
    width: 100%;
    height: auto;
    transform: translate(125px, 335px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.labs-text-section {
    padding: 150px 0 0px;
    text-align: center;
}

.labs-text-bottom {
    font-size:216px;
    font-weight:666;
    pointer-events: none;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.bottom-alluvi,
.bottom-labs {
    opacity: 0;
    transition: all 1s ease;
}

.bottom-alluvi {
    transform: translateX(-200px);
}

.bottom-labs {
    transform: translateX(200px);
}

.bottom-alluvi.show,
.bottom-labs.show {
    opacity: 1;
    transform: translateX(0);
}

.labs-phone-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 120px - 115px), calc(-50% + 130px - 130px));
    width: 250px;
    height: 520px;
    z-index: 1;
}

.phone-screen-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 38px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.phone-screen-img.active {
    opacity: 1;
}

.labs-scroll-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.labs-slide {
    height: calc(100vh / 3);
}

.quality-section {
    padding: 120px 0;
    background: var(--gray-900);
}

.quality-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 80px;
}

.quality-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.quality-step {
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.quality-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.quality-step p {
    color: var(--gray-400);
    line-height: 1.7;
}

.certificate {
    text-align: center;
}

.certificate img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.compounds-section {
    padding: 60px 0;
    max-width: 100%;
    overflow-x: hidden;
}

.compounds-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.compounds-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    overflow: hidden;
    width: 100%;
}

.compounds-wrapper {
    display: flex;
    gap: 30px;
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.compound-card {
    background: var(--gray-900);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    min-width: 280px;
}

.compound-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.compound-card h3 {
    font-size: 20px;
    margin: 20px 0 10px;
}

.compound-card p {
    color: var(--gray-400);
    font-size: 14px;
    padding: 0 20px;
}

.compounds-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
}

.quality-protocol {
    padding: 20px 0;
    background: var(--gray-950);
    text-align: center;
}

.quality-protocol .container {
    max-width: 1200px;
    margin: 0 auto;
}

.protocol-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.protocol-line {
    width: 60px;
    height: 2px;
    background: var(--orange);
}

.protocol-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--orange);
    text-transform: uppercase;
}

.protocol-title {
    font-size: 56px;
    font-weight: 300;
    color: var(--gray-300);
    margin: 0;
    line-height: 1.2;
}

.protocol-title-highlight {
    font-size: 56px;
    font-weight: 300;
    color: var(--orange);
    margin: 10px 0 0;
    line-height: 1.2;
}

.certificate-section {
    padding: 80px 0;
    background: var(--gray-950);
    position: relative;
    overflow: hidden;
}

.certificate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.03) 0%, transparent 70%);
}

.certificate-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.certificate-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.certificate-content {
    position: relative;
    display: flex;
    gap: 40px;
}

.steps-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.steps-nav {
    position: relative;
    padding-top: 2px;
}

.step-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 18px;
    background: var(--gray-700);
}

.step-item.active {
    background: var(--orange);
    border-color: var(--orange);
}

.step-item.active .step-number {
    color: var(--black);
}

.step-number {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    transition: color 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
}

.steps-content {
    min-height: 300px;
}

.step-content {
    display: none;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.step-content.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--orange);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.steps-content h2 {
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    margin: 0 0 30px;
    line-height: 1.1;
}

.steps-content p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.8;
    max-width: 400px;
}

.certificate-right {
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateX(-160px);
}

.certificate-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificate-image img {
    max-width: 382px;
    max-height: 562px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.desktop-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.desktop-nav .nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--gray-700);
    background: transparent;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.desktop-nav .nav-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--black);
}

.desktop-nav .nav-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-nav {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gray-700);
    background: var(--gray-900);
    color: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--black);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1200px) {
    .steps-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .certificate-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .certificate-right {
        order: -1;
        flex-direction: column;
        align-items: center;
        transform: none;
    }
    
    .certificate-content {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-nav {
        flex-direction: row;
        padding-top: 0;
        margin-bottom: 30px;
    }
    
    .step-item:not(:last-child)::after {
        display: none;
    }
    
    .steps-content {
        min-height: auto;
        width: 100%;
    }
    
    .steps-content p {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .steps-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .certificate-section {
        padding: 60px 0;
    }
    
    .certificate-section .container {
        padding: 0 20px;
    }
    
    .certificate-content {
        gap: 20px;
    }
    
    .steps-content h2 {
        font-size: 28px;
    }
    
    .steps-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .steps-content h2 {
        font-size: 24px;
    }
}

.stability-section {
    padding: 120px 0;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.stability-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stability-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.stability-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(42, 42, 42, 0.8);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.badge-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.stability-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.2;
}

.stability-content {
    margin-bottom: 40px;
}

.stability-content p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 20px;
}

.stability-content p:last-child {
    margin-bottom: 0;
}

.stability-divider {
    width: 60px;
    height: 2px;
    background: var(--orange);
    margin: 40px auto;
}

.stability-highlight {
    font-size: 20px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.6;
}

.stability-highlight .highlight-orange {
    color: var(--orange);
    font-weight: 500;
}

@media (max-width: 992px) {
    .stability-title {
        font-size: 36px;
    }
    
    .stability-highlight {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .stability-section {
        padding: 80px 0;
    }
    
    .stability-title {
        font-size: 28px;
    }
    
    .stability-content p {
        font-size: 14px;
    }
    
    .stability-highlight {
        font-size: 16px;
    }
    
    .stability-section::before {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .stability-title {
        font-size: 24px;
    }
    
    .stability-badge {
        padding: 6px 12px;
    }
    
    .badge-text {
        font-size: 9px;
    }
}

.data-showcase {
    padding: 120px 0;
    background: var(--black);
    text-align: center;
    max-width: 100%;
    overflow-x: hidden;
}

.data-showcase .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.data-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.header-left,
.header-right {
    font-size: 11px;
    font-weight: 600;
    color:#9ca3af;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.data-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.data-number {
    font-size: 120px;
    font-weight: 600;
    color: var(--orange);
    line-height: 1;
}

.data-label {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.data-label span {
    font-size: 11px;
    font-weight: 500;
    color:#9ca3af;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.6;
}

.progress-bar {
    margin-bottom: 50px;
}

.progress-track {
    position: relative;
    height: 2px;
    background: var(--gray-800);
    margin-bottom: 15px;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--orange);
}

.progress-dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
    border: 2px solid var(--black);
}

.progress-dot.start {
    left: 0;
}

.progress-dot.end {
    left: 100%;
    background: var(--orange);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
}

.progress-labels span {
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
    letter-spacing: 0.1em;
}

.data-description {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 60px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
    margin-bottom: 60px;
}

.metric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.metric-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff88;
}

.metric-label {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.metric-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.data-highlight {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .data-number {
        font-size: 90px;
    }
    
    .data-highlight {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .data-showcase {
        padding: 80px 0;
    }
    
    .data-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .data-main {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .data-number {
        font-size: 70px;
    }
    
    .data-label {
        text-align: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .data-highlight {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .data-number {
        font-size: 50px;
    }
    
    .data-description {
        font-size: 14px;
    }
    
    .data-highlight {
        font-size: 16px;
    }
}

.stages-section {
    padding: 120px 0;
    background: var(--black);
    position: relative;
    max-width: 100%;
    overflow-x: hidden;
}

.stages-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.stages-left {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.stages-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.stages-title span {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
}

.title-white {
    color: var(--white);
}

.title-gray {
    color: var(--gray-500);
}

.stages-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.stages-description {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 450px;
}

.stages-disclaimer {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 450px;
}

.stages-right {
    position: relative;
    min-height: 600px;
}

.stage-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.stage-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.stage-heading {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
}

.stage-word {
    font-size: 48px;
    font-weight: 600;
    background: linear-gradient(135deg, #f59e0b, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stage-number {
    font-size: 48px;
    font-weight: 600;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stage-text {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 15px;
}

.stage-metrics {
    margin: 30px 0;
}

.metric-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 14px;
    color: var(--orange);
    font-weight: 500;
}

.metric-value {
    font-size: 14px;
    color: var(--gray-300);
}

.stage-summary {
    margin: 30px 0;
    padding: 20px;
    background: var(--gray-900);
    border-radius: 8px;
}

.stage-summary p {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 8px;
}

.stage-summary p:last-child {
    margin-bottom: 0;
}

.stage-link {
    font-size: 14px;
    color: var(--orange);
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 10px;
}

.stage-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stages-indicator {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: var(--orange);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

@media (max-width: 1200px) {
    .stages-title span {
        font-size: 42px;
    }
    
    .stage-word,
    .stage-number {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .stages-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stages-left {
        position: relative;
        top: auto;
    }
    
    .stages-right {
        min-height: auto;
    }
    
    .stage-content {
        position: relative;
        opacity: 1;
        visibility: visible;
        margin-bottom: 50px;
    }
    
    .stage-content:last-child {
        margin-bottom: 0;
    }
    
    .stage-content.active {
        position: relative;
    }
    
    .stages-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .stages-section {
        padding: 80px 0;
    }
    
    .stages-wrapper {
        padding: 0 20px;
    }
    
    .stages-title span {
        font-size: 32px;
    }
    
    .stage-word,
    .stage-number {
        font-size: 28px;
    }
    
    .stages-description,
    .stage-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stages-title span {
        font-size: 26px;
    }
    
    .stage-word,
    .stage-number {
        font-size: 24px;
    }
}

.app-section {
    padding: 120px 0;
    background: var(--gray-900);
    text-align: center;
}

.app-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.title-line {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    display: block;
}

.title-line-1 {
    color: var(--white);
}

.title-line-2,
.title-line-3 {
    color: var(--gray-500);
}

.app-description {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

@media (max-width: 1200px) {
    .title-line {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .title-line {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .title-line {
        font-size: 28px;
    }
    
    .app-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .title-line {
        font-size: 22px;
    }
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.app-badges img {
    height: 60px;
    width: auto;
}

.app-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.app-hand-background {
    position: relative;
    width: 85%;
    max-width: 425px;
    transform: scale(0.85);
    transform-origin: center center;
}

.app-hand-background img {
    width: 100%;
    height: auto;
    display: block;
}

.app-screen-overlay {
    position: absolute;
    width: 32%;
    aspect-ratio: 9/19.5;
    top: 8%;
    left: 50%;
    transform: translateX(-53%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.app-screen-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-section {
    padding: 120px 0;
    background: #ffffff;
    color: #000000;
}

.platform-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.platform-main-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.platform-left {
    flex: 1;
    min-width: 0;
}

.platform-right {
    width: 400px;
    flex-shrink: 0;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.badge-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f59e0b;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-size: 11px;
    font-weight: 700;
    color: #f59e0b;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.platform-title {
    font-size: 56px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.platform-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 15px;
}

.platform-disclaimer {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 60px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.platform-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.card-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;
    border-radius: 12px;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef3c7;
    padding: 8px 16px;
    border-radius: 12px;
    align-self: flex-start;
}

.card-tag .tag-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f59e0b;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-tag .tag-text {
    font-size: 12px;
    font-weight: 600;
    color: #f59e0b;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.platform-right .platform-card {
    height: 100%;
    padding: 30px;
}

.card-tracking .image-container {
    position: relative;
    margin-bottom: 0;
}

.card-tracking .card-image {
    aspect-ratio: 9/19.5;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
}

.card-tracking .card-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    margin: 0;
    z-index: 10;
}

.cta-section {
    padding: 40px 0;
    background: #ffffff;
}

.cta-section .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-divider {
    height: 1px;
    background: #e0e0e0;
    margin-bottom: 25px;
}

.cta-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 35px;
}

.cta-title-wrapper {
    flex-shrink: 0;
    width: 220px;
}

.cta-title {
    font-size: 28px;
    font-weight: 800;
    color: #000000;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.cta-description-wrapper {
    flex: 1;
    max-width: 600px;
}

.cta-description {
    font-size: 14px;
    color: #616161;
    line-height: 1.6;
    margin: 0;
}

.cta-button-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #333333;
}

.cta-arrow {
    font-size: 16px;
    font-weight: 400;
}

.cta-disclaimer {
    font-size: 10px;
    color: #9e9e9e;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .cta-content {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .cta-title-wrapper {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-description-wrapper {
        max-width: 100%;
    }
    
    .cta-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-section .container {
        padding: 0 20px;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-title-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 13px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 12px;
    }
    
    .cta-disclaimer {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 20px;
    }
    
    .cta-disclaimer {
        font-size: 8px;
    }
}

@media (max-width: 1400px) {
    .platform-title {
        font-size: 48px;
    }
    
    .platform-right {
        width: 350px;
    }
}

@media (max-width: 1200px) {
    .platform-title {
        font-size: 42px;
    }
    
    .platform-main-layout {
        flex-direction: column;
    }
    
    .platform-right {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .card-tracking .card-image {
        aspect-ratio: auto;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .platform-section {
        padding: 80px 0;
    }
    
    .platform-section .container {
        padding: 0 20px;
    }
    
    .platform-title {
        font-size: 32px;
    }
    
    .platform-description {
        font-size: 14px;
    }
    
    .platform-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .platform-title {
        font-size: 28px;
    }
    
    .badge-text {
        font-size: 9px;
    }
}

.features-section {
    padding: 120px 0;
}

.features-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
}

.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-400);
    line-height: 1.7;
}

.tracking-section {
    padding: 120px 0;
    background: var(--gray-900);
}

.tracking-content {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.tracking-content img:first-child {
    width: 100%;
    height: auto;
}

.tracking-dashboard {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: auto;
    border-radius: 30px;
}

.footer {
    padding: 60px 0;
    text-align: center;
    background: #ffffff;
    max-width: 100%;
    overflow-x: hidden;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.copyright {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
}

.footer-disclaimer {
    font-size: 12px;
    color: #666666;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .warning-bar {
        padding: 6px 0;
    }

    .warning-bar p {
        font-size: 10px;
        padding: 0 30px;
    }

    .warning-bar .scroll-container {
        animation-duration: 20s;
    }

    .header {
        top: 20px;
        padding: 10px 0;
    }

    .logo-text {
        font-size: 14px;
    }

    .nav-wrapper {
        padding: 8px 12px;
        gap: 10px;
    }

    .logo-container {
        padding-right: 10px;
    }

    .nav {
        display: flex;
        gap: 12px;
        margin-left: 5px;
    }

    .nav a {
        font-size: 16px;
    }

    .hero {
        padding-top: 50px;
        padding-bottom: 40px;
    }

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

    .title-line:first-child {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-text {
        font-size: 12px;
        padding: 0 10px;
    }

    .hero-link {
        font-size: 14px;
    }

    .labs-section {
        height: 250vh;
        margin-top: 50px;
    }

    .labs-text {
        font-size: 60px;
    }

    .labs-text.left {
        left: 2%;
        transform: translateX(-50%);
    }

    .labs-text.right {
        right: 2%;
        transform: translateX(50%);
    }

    .labs-text-bottom {
        font-size: 108px;
        gap: 10px;
    }

    .labs-wrapper {
        position: relative;
    }

    .labs-fg {
        position: relative;
        padding-bottom: 20px;
    }

    .labs-fg img {
        max-width: 300px;
        transform: translate(62.5px, 167.5px);
        margin: 0 auto;
    }

    .labs-phone-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 160px;
        height: 340px;
        transform: translate(-50%, -50%);
    }

    .phone-screen-img {
        border-radius: 24px;
    }

    .quality-section {
        padding: 60px 0;
    }

    .quality-section h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .quality-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-number {
        font-size: 32px;
    }

    .quality-step h3 {
        font-size: 20px;
    }

    .certificate img {
        max-width: 100%;
    }

    .compounds-section {
        padding: 60px 0;
    }

    .compounds-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .compounds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .compound-card {
        padding-bottom: 15px;
    }

    .compound-card img {
        height: 150px;
    }

    .compound-card h3 {
        font-size: 16px;
        margin: 15px 0 8px;
    }

    .compound-card p {
        font-size: 12px;
        padding: 0 10px;
    }

    .app-section {
        padding: 60px 0;
    }

    .app-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .app-badges img {
        height: 50px;
    }

    .app-image img {
        max-width: 300px;
    }

    .features-section {
        padding: 60px 0;
    }

    .features-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card img {
        height: 200px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .tracking-section {
        padding: 60px 0;
    }

    .tracking-dashboard {
        top: 12%;
        width: 70%;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .copyright {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .warning-bar p {
        font-size: 9px;
    }

    .header {
        top: 0px;
    }

    .logo-text {
        font-size: 10px;
    }

    .nav-wrapper {
        padding: 6px 10px;
        gap: 8px;
    }

    .logo-container {
        padding-right: 8px;
    }

    .nav {
        gap: 10px;
    }

    .nav a {
        font-size: 10px;
    }

    .hero {
        padding-top: 75px;
    }

    .title-line {
        font-size: 24px;
    }

    .title-line:first-child {
        font-size: 22px;
    }

    .labs-fg {
        padding-bottom: 133px;
    }

    .labs-fg img {
        max-width: 200px;
        transform: translate(84px, 224px);
    }

    .labs-phone-overlay {
        width: 130px;
        height: 280px;
    }

    .phone-screen-img {
        border-radius: 20px;
    }

    .compounds-grid {
        grid-template-columns: 1fr;
    }

    .labs-text {
        font-size: 40px;
    }

    .labs-text.left {
        left: 1%;
        transform: translateX(-50%);
    }

    .labs-text.right {
        right: 1%;
        transform: translateX(50%);
    }

    .labs-text-bottom {
        font-size: 72px;
        gap: 7px;
    }
}

@media (max-width: 768px) {
    .labs-section {
        margin-top: -40px !important;
        margin-bottom: -60px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .labs-text-section {
        margin-top: -30px !important;
        padding-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .labs-section {
        margin-top: -80px !important;
        margin-bottom: -100px !important;
        transform: translateY(-20px) !important;
    }
}

@media (max-width: 768px) {
    .labs-section {
        height: auto !important;
        min-height: 200vh !important;
        margin-top: 120px !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
    
    .labs-wrapper {
        position: relative !important;
        height: auto !important;
        min-height: 180vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .labs-text.left,
    .labs-text.right {
        position: absolute !important;
        font-size: 48px !important;
        top: 20% !important;
        transform: none !important;
    }
    .labs-text.left {
        left: 5% !important;
        transform: translateX(0) !important;
    }
    .labs-text.right {
        right: 5% !important;
        transform: translateX(0) !important;
    }
    
    .labs-fg {
        padding-bottom: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    .labs-fg img {
        transform: translate(60px, -60px) !important;
        max-width: 280px;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .labs-phone-overlay {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: calc(280px * 0.42) !important;
        height: auto !important;
        aspect-ratio: 9 / 19.5 !important;
        transform: translate(-50%, -50%) !important;
        z-index: 2 !important;
    }
    .phone-screen-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 16px !important;
    }
    
    .labs-scroll-slides {
        display: none !important;
    }
    
    .hero {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .labs-text-section {
        margin-top: -30px !important;
        padding-top: 0 !important;
    }
    .labs-phone-overlay,
    .labs-scroll-slides {
        transform: translate(-55px, -250px) !important;
    }
    .labs-section {
        height: auto !important;
        min-height: 0 !important;
        margin-bottom: -150px !important;
        padding-bottom: 0 !important;
        overflow: visible !important;
    }
    
    .labs-wrapper {
        height: auto !important;
        min-height: 0 !important;
        margin-bottom: 0 !important;
        position: relative !important;
    }
    
    .labs-fg {
        padding-bottom: 0 !important;
    }
    .labs-scroll-slides {
        display: none !important;
    }
    
    .labs-text-section {
        margin-top: 80px !important;
        padding-top: 0 !important;
        position: relative;
        z-index: 5;
    }

    .protocol-title,
    .protocol-title-highlight {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }
}