/* ========================================
   LAB PACKAGE LANDING PAGE
   ======================================== */

/* Lab Header */
.lab-header {
    background: rgba(0, 0, 0, 0.98);
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.lab-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lab-header .logo-img {
    height: 50px;
    width: auto;
}

/* Lab Hero */
.lab-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.lab-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.lab-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-stats .stat-label {
    font-size: 0.95rem;
    color: #CCCCCC;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Benefits Section */
.lab-benefits {
    padding: 80px 0;
    background: #000000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #f4d03f 100%);
    border-radius: 50%;
    font-size: 2rem;
    color: #000000;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-weight: 700;
}

.benefit-card p {
    color: #CCCCCC;
    line-height: 1.6;
}

/* Lab Markers Section */
.lab-markers {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.markers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.marker-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.marker-category:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.category-header i {
    font-size: 1.8rem;
    color: #D4AF37;
}

.category-header h3 {
    font-size: 1.3rem;
    color: #FFFFFF;
    font-weight: 700;
    margin: 0;
}

.marker-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.marker-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #CCCCCC;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marker-list li:last-child {
    border-bottom: none;
}

.marker-list li i {
    color: #D4AF37;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.marker-sublist {
    display: block;
    padding-left: 28px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #999999;
    line-height: 1.6;
    font-style: italic;
}

/* Audience Section */
.lab-audience {
    padding: 80px 0;
    background: #000000;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.audience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.audience-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #f4d03f 100%);
    border-radius: 50%;
    font-size: 1.8rem;
    color: #000000;
}

.audience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-weight: 700;
}

.audience-card p {
    color: #CCCCCC;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.lab-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.lab-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #FFFFFF;
    font-weight: 900;
}

.cta-content > p {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-note {
    margin-top: 25px;
    font-size: 0.95rem;
    color: #999999;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lab-hero {
        padding: 60px 0 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .lab-benefits,
    .lab-markers,
    .lab-audience,
    .lab-cta {
        padding: 60px 0;
    }
    
    .benefits-grid,
    .markers-grid,
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card,
    .marker-category,
    .audience-card {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content > p {
        font-size: 1.05rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #000000;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #000000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.step-card h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    margin-top: 10px;
    font-weight: 700;
}

.step-card p {
    color: #CCCCCC;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.optional-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    color: #D4AF37;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.step-card .note {
    font-size: 0.9rem;
    color: #999999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 15px;
}

.step-card .note a {
    color: #D4AF37;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.step-card .note a:hover {
    color: #f4d03f;
    border-bottom-color: #f4d03f;
}

.disclaimer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.disclaimer p {
    color: #CCCCCC;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

.disclaimer strong {
    color: #D4AF37;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 60px 50px;
}

.quote-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 30px;
    opacity: 0.3;
}

.testimonial-content blockquote {
    margin: 0;
    padding: 0;
}

.testimonial-content blockquote p {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #FFFFFF;
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

.testimonial-attribution {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.client-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin: 0;
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .markers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-card {
        padding: 50px 25px 30px;
    }
    
    .step-number {
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-card h3 {
        text-align: center;
        font-size: 1.3rem;
    }
    
    .disclaimer {
        padding: 25px 20px;
    }
    
    .disclaimer p {
        font-size: 0.9rem;
    }
    
    .testimonial-content {
        padding: 40px 30px;
    }
    
    .testimonial-content blockquote p {
        font-size: 1.1rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
}
