/* === SALE ANNOUNCEMENT BAR === */
@keyframes saleShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes saleGlint {
    0% { left: -100%; }
    100% { left: 200%; }
}
.sale-bar {
    background: linear-gradient(90deg, #b91c1c 0%, #dc2626 25%, #ef4444 50%, #dc2626 75%, #b91c1c 100%);
    background-size: 200% 100%;
    animation: saleShimmer 4s ease-in-out infinite;
    padding: 0.5rem 0; text-align: center; position: relative; overflow: hidden;
}
.sale-bar::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    animation: saleGlint 3s ease-in-out infinite;
}
.sale-bar-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 0.625rem; flex-wrap: wrap;
}
.sale-bar-text { font-size: 0.8125rem; font-weight: 600; color: #ffffff; text-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.sale-bar-timer {
    font-size: 0.75rem; font-weight: 700; color: #fecaca;
    font-family: 'SF Mono', 'Cascadia Code', monospace; letter-spacing: 0.03em;
    background: rgba(0,0,0,0.2); padding: 0.2rem 0.625rem; border-radius: var(--radius-sm);
    animation: fadeIn 0.5s ease-out both;
}
.sale-bar-link {
    font-size: 0.75rem; color: #fecaca; text-decoration: underline;
    text-underline-offset: 2px;
}
.sale-bar-link:hover { color: #fff; }

/* === HERO SECTION — Full-width centered === */
.hero-section {
    background: linear-gradient(160deg, var(--white) 0%, var(--primary-50) 30%, var(--primary-100) 70%, #dbeafe 100%);
    padding: 3.5rem 0 2rem; position: relative; overflow: hidden;
    border-bottom: 1px solid var(--border-subtle);
}
.hero-bg-pattern {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 40%);
    pointer-events: none;
}
.hero-centered {
    text-align: center; max-width: 700px; margin: 0 auto;
    position: relative; z-index: 1;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--white); border: 1px solid var(--primary-100);
    padding: 0.35rem 1rem; border-radius: 100px; font-size: 0.6875rem;
    font-weight: 600; color: var(--primary-dark); margin-bottom: 1.25rem;
    text-transform: uppercase; letter-spacing: 0.06em;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero-eyebrow i { color: var(--primary); }
.hero-title {
    font-size: 2.75rem; font-weight: 800; color: var(--gray-900); margin-bottom: 1rem;
    letter-spacing: -0.035em; line-height: 1.1;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
@media (min-width: 640px) { .hero-title { font-size: 3.25rem; } }
.hero-title span { color: var(--primary); }
.hero-subtitle {
    font-size: 1.0625rem; color: var(--gray-500); margin-bottom: 2rem;
    line-height: 1.65; max-width: 560px; margin-left: auto; margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}
.hero-cta {
    display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}
.hero-cta-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.875rem 2rem; background: var(--primary); color: #fff;
    border: none; border-radius: var(--radius-lg); font-weight: 700;
    font-size: 0.9375rem; cursor: pointer; text-decoration: none;
    transition: all 0.15s ease;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.25);
    position: relative; overflow: hidden;
}
.hero-cta-primary::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.hero-cta-primary:hover::after { left: 100%; }
.hero-cta-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,92,246,0.35); }
.hero-cta-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.875rem 2rem; background: var(--white); color: var(--gray-700);
    border: 1px solid var(--gray-200); border-radius: var(--radius-lg); font-weight: 500;
    font-size: 0.9375rem; cursor: pointer; text-decoration: none;
    transition: all 0.15s ease;
}
.hero-cta-secondary:hover { border-color: var(--gray-300); background: var(--gray-50); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hero-trust-row {
    display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}
.hero-trust-item {
    display: flex; align-items: center; gap: 0.375rem;
    font-size: 0.8125rem; color: var(--gray-500); text-decoration: none;
}
.hero-trust-item i { color: var(--primary); font-size: 0.75rem; }
.hero-trust-item a { color: var(--primary); text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 3px; font-weight: 600; }
.hero-trust-item a:hover { color: var(--primary-dark); text-decoration-style: solid; }

/* === HERO DEALS STRIP (horizontal volume discounts) === */
.hero-deals-strip {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl); overflow: hidden;
    margin-top: 2rem; max-width: 720px; margin-left: auto; margin-right: auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    animation: fadeInUp 0.6s ease-out 0.6s both;
    position: relative; z-index: 1;
}
.deal-strip-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(90deg, #b91c1c, #dc2626);
}
.deal-strip-badge {
    font-size: 0.6875rem; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.deal-strip-timer {
    font-size: 0.6875rem; font-weight: 600; color: #fef2f2;
}
.deal-strip-timer span {
    font-family: 'SF Mono', 'Cascadia Code', monospace; font-weight: 700;
}
.deal-strip-tiers {
    display: flex; align-items: center; justify-content: center;
    padding: 0.875rem 1.25rem; gap: 0;
}
.deal-strip-tier {
    flex: 1; text-align: center; padding: 0.25rem 0.5rem;
}
.deal-strip-threshold {
    display: block; font-size: 0.9rem; font-weight: 800; color: var(--gray-900);
    margin-bottom: 0.15rem;
}
.deal-strip-value {
    display: block; font-size: 0.75rem; font-weight: 600; color: var(--primary-dark);
    background: var(--primary-50); padding: 0.15rem 0.5rem; border-radius: var(--radius-sm);
    display: inline-block;
}
.deal-strip-divider {
    width: 1px; height: 36px; background: var(--gray-200); flex-shrink: 0;
}

/* === HERO CONTACT STRIP === */
.hero-contact-strip {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    margin-top: 1rem; font-size: 0.8125rem; color: var(--gray-500);
    animation: fadeInUp 0.6s ease-out 0.7s both;
    position: relative; z-index: 1;
}
.hero-contact-strip a {
    color: var(--primary); text-decoration: none; font-weight: 600;
    display: inline-flex; align-items: center; gap: 0.3rem;
}
.hero-contact-strip a:hover { text-decoration: underline; }
.hero-contact-sep { color: var(--gray-300); }

/* === TIMER UNIT LABELS === */
.timer-num { font-weight: 700; }
.timer-unit { font-size: 0.6em; font-weight: 500; color: var(--gray-500); margin: 0 1px; text-transform: uppercase; }
.timer-sep { margin: 0 2px; color: var(--gray-400); }

/* === TRUST & QUALITY — Feature Cards === */
.trust-section {
    background: var(--white);
    padding: 3.5rem 0; border-bottom: 1px solid var(--border-subtle);
}
.trust-header { text-align: center; margin-bottom: 2rem; }
.trust-header h2 {
    font-size: 1.75rem; font-weight: 700; color: #0f172a;
    position: relative; display: inline-block; margin-bottom: 0.25rem;
}
.trust-header h2::after {
    content: ''; display: block; width: 48px; height: 3px;
    background: var(--primary); border-radius: 2px; margin: 0.5rem auto 0;
}
.trust-header p { font-size: 0.875rem; color: var(--gray-500); }

.gyc-trust-features {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; max-width: 900px; margin: 0 auto 2rem;
}
.gyc-trust-feature {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl); padding: 1.75rem; text-align: center;
    transition: all 0.2s ease; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; align-items: center;
}
.gyc-trust-feature:hover {
    border-color: var(--primary); transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.12);
}
.gyc-trust-feature-icon {
    width: 56px; height: 56px; margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    color: var(--primary); border-radius: var(--radius-lg); font-size: 1.25rem;
}
.gyc-trust-feature:hover .gyc-trust-feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff;
}
.gyc-trust-feature h4 {
    font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem;
}
.gyc-trust-feature p {
    font-size: 0.8125rem; color: var(--gray-500); line-height: 1.55; margin-bottom: 0.75rem; flex: 1;
}
.gyc-trust-feature-link {
    display: inline-flex; align-items: center; gap: 0.375rem;
    color: var(--primary); font-size: 0.8125rem; font-weight: 600;
}
.gyc-trust-feature:hover .gyc-trust-feature-link { text-decoration: underline; }

/* === STATS BAR === */
.gyc-stats-bar {
    display: flex; justify-content: center; align-items: center;
    gap: 0; flex-wrap: wrap;
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl); padding: 1rem 1.5rem;
    max-width: 800px; margin: 0 auto;
}
.gyc-stat-item {
    flex: 1; text-align: center; min-width: 100px; padding: 0.5rem;
}
.gyc-stat-number {
    display: block; font-size: 1.5rem; font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gyc-stat-label {
    display: block; font-size: 0.7rem; color: var(--gray-500); margin-top: 0.125rem;
    text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500;
}
.gyc-stat-divider {
    width: 1px; height: 32px; background: var(--gray-200); flex-shrink: 0;
}

/* === HOW IT WORKS — Timeline === */
.gyc-process-section {
    padding: 3.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-subtle);
}
.gyc-timeline {
    display: flex; align-items: flex-start; justify-content: center;
    max-width: 900px; margin: 0 auto; flex-wrap: wrap;
}
.gyc-timeline-step {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; flex: 1; min-width: 130px; max-width: 170px; padding: 0 0.5rem;
}
.gyc-timeline-number {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 800; margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
    transition: all 0.2s ease;
}
.gyc-timeline-step:hover .gyc-timeline-number {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.3);
}
.gyc-timeline-content h4 {
    font-size: 0.875rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.25rem;
}
.gyc-timeline-content p {
    font-size: 0.75rem; color: var(--gray-500); line-height: 1.4;
}
.gyc-timeline-connector {
    width: 40px; height: 2px; background: linear-gradient(90deg, var(--primary-100), var(--primary));
    margin-top: 22px; flex-shrink: 0;
    border-radius: 1px;
}

/* === TRUSTPILOT BANNER === */
.trustpilot-banner {
    background: linear-gradient(135deg, #00b67a 0%, #009e6a 100%);
    padding: 14px 0; transition: background 0.3s ease;
}
.trustpilot-banner:hover { background: linear-gradient(135deg, #00c984 0%, #00b67a 100%); }
.tp-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.tp-banner-left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.tp-banner-stars { display: flex; gap: 3px; }
.tp-b-star {
    width: 26px; height: 26px; background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.tp-b-star.half { background: linear-gradient(90deg, #fff 50%, rgba(255,255,255,0.35) 50%); }
.tp-banner-score { color: #fff; font-size: 1rem; font-weight: 500; }
.tp-banner-score strong { font-weight: 800; font-size: 1.15rem; }
.tp-banner-count { color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.tp-banner-btn {
    display: inline-flex; align-items: center; padding: 10px 24px;
    background: #fff; color: #00b67a; font-weight: 700; font-size: 0.95rem;
    border-radius: 8px; text-decoration: none; transition: all 0.3s ease; white-space: nowrap;
}
.tp-banner-btn:hover { background: #eff6ff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.tp-banner-btn-icon { margin-left: 6px; font-size: 0.8rem; }

/* === SECTION HEADER (shared by multiple sections) === */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.01em;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 0.5rem auto 0;
}
.section-header p {
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

/* === SECTION ALTERNATING BACKGROUNDS === */
.section-alt { background-color: var(--gray-50); }

/* === CERTIFICATIONS === */
.certifications-section {
    padding: 3.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-subtle);
}
.cert-section { padding: 2rem 0; background: var(--gray-50); }
.cert-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}
.cert-card {
    display: block;
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}
.cert-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.12);
}
.cert-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.25rem;
}
.cert-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.cert-card p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.cert-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}
.cert-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.cert-link i {
    font-size: 0.6875rem;
}
.cert-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-600); }
.cert-item i { color: var(--primary); }

/* === INSIDE OUR LAB === */
.lab-section {
    padding: 3.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-subtle);
}
.lab-featured {
    max-width: 350px;
    margin: 0 auto 1.5rem;
}
.lab-video-hero .lab-video-label {
    font-size: 0.8125rem;
    padding: 0.75rem 1rem;
}
.lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}
.lab-video-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: #fff;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}
.lab-video-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.18);
}
.lab-video-card video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}
.lab-video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lab-video-label i {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* === FAQ ACCORDION === */
.faq-section { padding: 3.5rem 0; background: var(--white); }
.faq-header { text-align: center; margin-bottom: 2rem; }
.faq-header h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.faq-header p { color: var(--gray-500); font-size: 0.875rem; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%;
    padding: 1rem 0; cursor: pointer; font-weight: 600; font-size: 0.9375rem;
    color: var(--gray-800); transition: color 0.15s ease;
    background: none; border: none; text-align: left;
    font-family: inherit;
}
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: transform 0.3s ease; color: var(--gray-400); }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    font-size: 0.875rem; color: var(--gray-600); line-height: 1.6;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1rem; }

/* === TRENDING PRODUCTS === */
.trending-section { padding: 3.5rem 0; }
.trending-header { text-align: center; margin-bottom: 2rem; }
.trending-header h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.trending-header p { color: var(--gray-500); font-size: 0.875rem; }
.trending-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem; max-width: 1000px; margin: 0 auto;
    min-height: 400px;
}
.trending-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    text-decoration: none; color: inherit; display: block;
}
.trending-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.trending-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f8fafb;
}
.trending-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.trending-card:hover .trending-card-image img { transform: scale(1.05); }
.trending-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; padding: 0; }
.trending-card-header, .trending-name, .trending-spec, .trending-price, .trending-cta { padding-left: 1.25rem; padding-right: 1.25rem; }
.trending-card-header { padding-top: 1rem; }
.trending-category { font-size: 0.6875rem; color: var(--primary); font-weight: 600; text-transform: uppercase; }
.trending-badge { font-size: 0.6rem; background: #ede9fe; color: #6d28d9; padding: 2px 6px; border-radius: 100px; font-weight: 600; }
.trending-name { font-size: 0.9375rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; }
.trending-spec { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.trending-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.75rem; }
.trending-price-value { font-size: 1.125rem; font-weight: 800; color: var(--gray-900); }
.trending-bulk { font-size: 0.75rem; color: var(--primary-dark); }
.trending-cta {
    display: block; text-align: center; padding: 0.5rem;
    margin-bottom: 1.25rem;
    background: var(--primary-50); color: var(--primary-dark);
    border-radius: var(--radius-md); font-size: 0.8125rem; font-weight: 600;
    text-decoration: none; transition: all 0.15s ease;
}
.trending-cta:hover { background: var(--primary); color: var(--white); }

/* === PAYMENT METHODS SECTION === */
.payment-methods-section {
    padding: 1.2rem 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #f3f0ff 50%, #f5f3ff 100%);
    border-top: 1px solid #ede9fe;
    border-bottom: 1px solid #ede9fe;
}
.payment-methods-inner {
    text-align: center;
}
.payment-methods-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}
.payment-methods-title i {
    color: #8b5cf6;
    margin-right: 6px;
}
.payment-methods-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.pay-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    cursor: default;
    user-select: none;
}
.pay-badge i { font-size: 1.2rem; }
.pay-crypto-tag {
    background: #f59e0b;
    color: white;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* === HOME RESPONSIVE === */
@media (max-width: 767px) {
    .hero-section { padding: 2rem 0 1.5rem; }
    .hero-title { font-size: 1.85rem; word-wrap: break-word; overflow-wrap: break-word; }
    .hero-subtitle { max-width: 100%; margin-bottom: 1.25rem; font-size: 0.9375rem; line-height: 1.65; }
    .hero-cta { flex-direction: column; gap: 0.625rem; margin-bottom: 1.5rem; }
    .hero-cta-primary, .hero-cta-secondary { width: 100%; justify-content: center; min-height: 48px; font-size: 0.9375rem; }
    .hero-trust-row { gap: 0.625rem; flex-wrap: wrap; }
    .hero-trust-item { font-size: 0.8125rem; color: var(--gray-600); }
    .hero-eyebrow { font-size: 0.6875rem; }

    /* Deals strip mobile */
    .hero-deals-strip { margin-top: 1.5rem; }
    .deal-strip-tiers { flex-direction: column; gap: 0; padding: 0.5rem; }
    .deal-strip-tier { padding: 0.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--gray-100); }
    .deal-strip-tier:last-child { border-bottom: none; }
    .deal-strip-divider { display: none; }
    .deal-strip-threshold { font-size: 0.85rem; }

    /* Contact strip */
    .hero-contact-strip { flex-wrap: wrap; font-size: 0.78rem; gap: 0.5rem; }

    /* Trust features mobile */
    .gyc-trust-features { grid-template-columns: 1fr; gap: 1rem; }
    .gyc-trust-feature { padding: 1.25rem; }

    /* Stats bar mobile */
    .gyc-stats-bar { flex-wrap: wrap; padding: 0.75rem; gap: 0; }
    .gyc-stat-item { min-width: 80px; padding: 0.375rem; }
    .gyc-stat-number { font-size: 1.25rem; }
    .gyc-stat-divider { display: none; }

    /* Timeline mobile */
    .gyc-process-section { padding: 2rem 0; }
    .gyc-timeline { flex-direction: column; align-items: center; gap: 0; }
    .gyc-timeline-step { flex-direction: row; text-align: left; max-width: 100%; width: 100%; max-width: 360px; padding: 0; gap: 1rem; }
    .gyc-timeline-number { flex-shrink: 0; }
    .gyc-timeline-connector { width: 2px; height: 20px; background: linear-gradient(180deg, var(--primary-100), var(--primary)); margin: 0; margin-left: 21px; }

    .trust-section { padding: 2rem 0; }
    .trust-header h2 { font-size: 1.25rem; }

    .sale-bar { padding: 0.5rem 0.75rem; }
    .sale-bar-inner { gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
    .sale-bar-text { font-size: 0.8125rem; text-align: center; line-height: 1.4; }
    .sale-bar-timer { font-size: 0.8125rem; }
    .sale-bar-link { font-size: 0.8125rem; padding: 0.375rem 0.5rem; min-height: 36px; display: inline-flex; align-items: center; }

    .tp-banner-inner { justify-content: center; text-align: center; }
    .tp-banner-left { justify-content: center; }
    .tp-b-star { width: 22px; height: 22px; }
    .tp-banner-score { font-size: 0.9rem; }
    .tp-banner-btn { padding: 8px 20px; font-size: 0.875rem; }

    /* Section header mobile */
    .section-header h2 { font-size: 1.375rem; }
    .section-header { margin-bottom: 2rem; }
    .section-header p { font-size: 0.875rem; }

    /* Payment strip */
    .payment-methods-strip { gap: 1rem; }
    .pay-badge { font-size: 0.78rem; }
    .payment-methods-title { font-size: 0.9rem; }
    .trending-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .trending-card { padding: 0; }
    .trending-section { padding: 2rem 0; }
    .trending-card-image { aspect-ratio: 3 / 2; }
    .trending-card-header, .trending-name, .trending-spec, .trending-price, .trending-cta { padding-left: 0.75rem; padding-right: 0.75rem; }
    .trending-card-header { padding-top: 0.75rem; }
    .trending-name { font-size: 0.8125rem; }
    .trending-spec { font-size: 0.6875rem; margin-bottom: 0.5rem; }
    .trending-price { margin-bottom: 0.5rem; }
    .trending-price-value { font-size: 0.9375rem; }
    .trending-bulk { font-size: 0.65rem; }
    .trending-cta { font-size: 0.75rem; padding: 0.375rem; margin-bottom: 0.75rem; margin-left: 0.75rem; margin-right: 0.75rem; }
    .faq-section { padding: 2rem 0; }

    .hero-section, .trust-section { overflow-x: hidden; overflow-y: visible; }
    .trust-header p { font-size: 0.9375rem; line-height: 1.65; }
    h1, .hero-title { font-size: 1.85rem; line-height: 1.15; }
    h2 { font-size: 1.35rem; line-height: 1.25; }
    h3 { font-size: 1.125rem; line-height: 1.3; }

    /* Certifications mobile */
    .certifications-section { padding: 2rem 0; }
    .cert-grid { flex-direction: column; align-items: center; }
    .cert-card { min-width: 0; max-width: 100%; width: 100%; padding: 1.25rem; }

    /* Lab section mobile */
    .lab-section { padding: 2rem 0; }
    .lab-featured { max-width: 280px; margin-bottom: 0.75rem; }
    .lab-video-hero .lab-video-label { font-size: 0.7rem; padding: 0.5rem 0.75rem; }
    .lab-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .lab-video-label { font-size: 0.7rem; padding: 0.5rem 0.75rem; }
}

@media (max-width: 479px) {
    .hero-section { padding: 1.5rem 0 1.25rem; }
    .hero-title { font-size: 1.625rem; }
    .hero-subtitle { font-size: 0.875rem; }
    .sale-bar-inner { flex-direction: column; gap: 0.25rem; }
    h1, .hero-title { font-size: 1.625rem; }
    h2 { font-size: 1.2rem; }

    /* Trending section small mobile */
    .trending-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .trending-card { padding: 0; }
    .trending-card-image { aspect-ratio: 1 / 1; }
    .trending-name { font-size: 0.75rem; margin-bottom: 0.125rem; }
    .trending-spec { font-size: 0.625rem; margin-bottom: 0.375rem; }
    .trending-price-value { font-size: 0.875rem; }
    .trending-price { margin-bottom: 0.375rem; gap: 0.25rem; }
    .trending-bulk { font-size: 0.6rem; }
    .trending-category { font-size: 0.6rem; }
    .trending-badge { font-size: 0.5rem; padding: 1px 4px; }
    .trending-cta { min-height: 36px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; margin-bottom: 0.5rem; margin-left: 0.5rem; margin-right: 0.5rem; padding: 0.3rem; }

    /* FAQ small mobile */
    .faq-question { font-size: 0.875rem; padding: 0.875rem 0; }
    .faq-answer { font-size: 0.8125rem; }

    /* Lab section small mobile */
    .lab-featured { max-width: 240px; }
    .lab-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .lab-video-label { font-size: 0.65rem; padding: 0.4rem 0.6rem; }

    /* Stats bar small */
    .gyc-stats-bar { justify-content: center; }
    .gyc-stat-item { min-width: 70px; }
    .gyc-stat-number { font-size: 1.1rem; }

    /* Payment methods small */
    .payment-methods-section { padding: 1rem 0; }
    .payment-methods-strip { gap: 0.6rem 1rem; }
    .pay-badge { font-size: 0.72rem; gap: 0.35rem; }
    .pay-badge i { font-size: 1rem; }
}
@media (max-width: 359px) {
    .hero-title { font-size: 1.375rem; }
    .hero-cta-primary, .hero-cta-secondary { padding: 0.625rem 1rem; font-size: 0.875rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-eyebrow, .hero-title, .hero-subtitle, .hero-cta, .hero-trust-row,
    .hero-deals-strip, .hero-contact-strip { animation: none; }
    .sale-bar { animation: none; }
    .sale-bar::after { animation: none; }
    .hero-cta-primary::after { display: none; }
    .lab-video-card video { animation: none; }
}


/* ============================================================
   HOMOPEPTIDE — LAB HERO (rewrite 2026-04-15)
   Aesthetic: pharmaceutical laboratory paper + live instrument readout.
   Display:  Instrument Serif (Google Fonts)
   Body:     IBM Plex Sans
   Data/UI:  IBM Plex Mono
   Palette:  #ffffff paper, clinical blues, zero teal.
   ============================================================ */

.lab-hero {
    --paper:        #ffffff;
    --paper-tint:   #f5fafd;
    --ink:          #0b1f33;
    --ink-2:        #3b5168;
    --ink-mute:     #7d93a8;
    --line:         #e3edf7;
    --line-2:       #cfe1f1;
    --blue:         #0369a1;
    --blue-deep:    #075985;
    --blue-darker:  #0b3558;
    --blue-soft:    #e0f2fe;
    --signal:       #0ea5e9;
    --signal-glow:  #38bdf8;
    --amber:        #c2a766;

    --serif: "Instrument Serif", "Spectral", Georgia, serif;
    --sans:  "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono:  "IBM Plex Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

    position: relative;
    background: linear-gradient(180deg, var(--paper) 0%, var(--paper-tint) 100%);
    color: var(--ink);
    font-family: var(--sans);
    overflow: hidden;
    padding: 0;
    border-bottom: 1px solid var(--line);
}

/* Laboratory grid paper background (blueprint feel) */
.lab-hero__grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(to right,  rgba(14, 165, 233, 0.055) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(14, 165, 233, 0.055) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 62% 40%, black 10%, transparent 82%);
            mask-image: radial-gradient(ellipse 90% 70% at 62% 40%, black 10%, transparent 82%);
}
.lab-hero__glow {
    position: absolute; top: -24%; right: -12%;
    width: 720px; height: 720px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.10) 0%, transparent 60%);
    pointer-events: none; filter: blur(40px);
}

/* ================================
   Metadata rails (top + bottom)
   ================================ */
.lab-rail {
    position: relative; z-index: 2;
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.lab-rail--top    { border-bottom: 1px solid var(--line); }
.lab-rail--bottom { border-top:    1px solid var(--line); }
.lab-rail__content {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 0;
    font-family: var(--mono); font-size: 10.5px; font-weight: 500;
    color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase;
    white-space: nowrap; overflow: hidden;
    opacity: 0; animation: labFadeUp 0.9s ease-out 0.05s forwards;
}
.lab-rail__tag       { color: var(--ink-2); }
.lab-rail__tag--mark { color: var(--blue); font-weight: 600; }
.lab-rail__sep       { color: var(--line-2); font-weight: 300; }
.lab-rail__live {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--blue-deep); margin-left: auto; font-weight: 500;
}
.lab-pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
    animation: labPulse 2.2s infinite;
}
@keyframes labPulse {
    0%   { box-shadow: 0 0 0 0   rgba(56, 189, 248, 0.65); }
    70%  { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);    }
    100% { box-shadow: 0 0 0 0   rgba(56, 189, 248, 0);    }
}

/* ================================
   Main hero layout
   ================================ */
.lab-hero__layout {
    display: grid; grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 0 88px;
    position: relative; z-index: 1;
}
@media (min-width: 1024px) {
    .lab-hero__layout {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 72px;
        padding: 112px 0 120px;
        align-items: start;
    }
}

/* ================================
   Editorial article (left)
   ================================ */
.lab-hero__article { position: relative; min-width: 0; }

.lab-hero__eyebrow {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 44px;
    font-family: var(--mono); font-size: 10.5px; font-weight: 500;
    color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.12em;
    opacity: 0; animation: labFadeUp 0.8s ease-out 0.15s forwards;
}
.lab-hero__section { color: var(--blue); font-weight: 600; white-space: nowrap; }
.lab-hero__marker {
    flex: 0 0 44px; height: 1px; background: var(--line-2);
}
.lab-hero__class { font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.lab-hero__headline {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(44px, 7.2vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin: 0 0 36px;
}
.lab-hero__headline em {
    font-style: italic; font-weight: 400;
    color: var(--blue);
    position: relative;
}
.lab-line {
    display: block;
    opacity: 0;
    transform: translateY(18px);
    animation: labLineRise 0.95s cubic-bezier(.2,.7,.3,1) forwards;
}
.lab-line:nth-child(1) { animation-delay: 0.22s; }
.lab-line:nth-child(2) { animation-delay: 0.38s; }
.lab-line:nth-child(3) { animation-delay: 0.54s; }
@keyframes labLineRise { to { opacity: 1; transform: none; } }

.lab-hero__deck {
    font-family: var(--sans);
    font-size: 17px; line-height: 1.65;
    color: var(--ink-2); max-width: 540px;
    margin: 0 0 40px;
    opacity: 0; animation: labFadeUp 0.9s ease-out 0.7s forwards;
}
.lab-hero__deck strong { color: var(--ink); font-weight: 600; }

/* Actions */
.lab-hero__actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: 48px;
    opacity: 0; animation: labFadeUp 0.9s ease-out 0.82s forwards;
}
.lab-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 15px 26px;
    font-family: var(--sans); font-size: 14px; font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none; transition: all 0.22s cubic-bezier(.2,.7,.3,1);
    border: 1px solid transparent;
    position: relative; overflow: hidden;
    cursor: pointer;
}
.lab-btn svg { flex: 0 0 auto; transition: transform 0.22s; }
.lab-btn:hover svg { transform: translateX(3px); }
.lab-btn--primary {
    background: var(--ink); color: var(--paper);
}
.lab-btn--primary::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: translateX(-100%); transition: transform 0.6s ease;
}
.lab-btn--primary:hover::after { transform: translateX(100%); }
.lab-btn--primary:hover {
    background: var(--blue-deep); color: var(--paper);
    text-decoration: none; transform: translateY(-1px);
    box-shadow: 0 10px 28px -8px rgba(3, 105, 161, 0.35);
}
.lab-btn--ghost {
    background: transparent; color: var(--ink);
    border-color: var(--line-2);
}
.lab-btn--ghost:hover {
    background: var(--paper); color: var(--blue-deep);
    border-color: var(--blue); text-decoration: none;
    transform: translateY(-1px);
}

/* Footnote metadata below CTAs */
.lab-hero__meta {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    margin: 0;
    opacity: 0; animation: labFadeUp 0.9s ease-out 0.95s forwards;
}
.lab-hero__meta > div { min-width: 0; }
.lab-hero__meta dt {
    font-family: var(--mono); font-size: 10.5px; font-weight: 600;
    color: var(--blue); letter-spacing: 0.12em;
    margin-bottom: 8px;
}
.lab-hero__meta dd {
    margin: 0;
    font-family: var(--sans); font-size: 13px; font-weight: 500;
    color: var(--ink-2); line-height: 1.45;
}

/* ================================
   Instrument readout (right)
   ================================ */
.lab-hero__readout {
    background: var(--paper);
    border: 1px solid var(--line-2);
    border-radius: 2px;
    padding: 30px 30px 24px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.9) inset,
        0 24px 48px -16px rgba(11, 31, 51, 0.12),
        0 8px 16px -8px rgba(11, 31, 51, 0.08);
    position: relative;
    opacity: 0; animation: labFadeUp 1s ease-out 0.45s forwards;
}
.lab-hero__readout::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--signal) 55%, var(--signal-glow) 100%);
    border-radius: 2px 2px 0 0;
}
/* Hairline corner crosshairs — "instrument" detail */
.lab-hero__readout::after {
    content: ''; position: absolute;
    top: 12px; right: 12px; width: 10px; height: 10px;
    border-top: 1px solid var(--line-2);
    border-right: 1px solid var(--line-2);
    opacity: 0.6;
}

.lab-readout__header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 22px;
    font-family: var(--mono); font-size: 10.5px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.lab-readout__title {
    display: flex; align-items: center; gap: 9px; color: var(--ink);
}
.lab-readout__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--signal);
    animation: labPulse 2.2s infinite;
}
.lab-readout__ts { color: var(--ink-mute); }

/* Chromatogram chart */
.lab-chart {
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: 1fr 22px;
    height: 220px;
    margin-bottom: 22px;
    font-family: var(--mono);
}
.lab-chart__yaxis {
    grid-row: 1; grid-column: 1;
    display: flex; flex-direction: column; justify-content: space-between;
    padding-right: 9px; padding-top: 2px; padding-bottom: 2px;
    font-size: 9px; color: var(--ink-mute);
    text-align: right; line-height: 1;
}
.lab-chart__plot {
    grid-row: 1; grid-column: 2;
    position: relative;
    background: linear-gradient(180deg, rgba(224, 242, 254, 0.28) 0%, rgba(224, 242, 254, 0.05) 100%);
    border-left: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
    overflow: hidden;
}
.lab-chart__xaxis {
    grid-row: 2; grid-column: 2;
    display: flex; justify-content: space-between;
    padding: 5px 2px 0 2px;
    font-size: 9px; color: var(--ink-mute);
}
.lab-chart__xaxis em { font-style: normal; color: var(--ink-2); }

.lab-chart__svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
}
.lab-chart__grid line {
    stroke: var(--line); stroke-width: 1;
    stroke-dasharray: 2 3;
}
.lab-chart__fill {
    fill: url(#labChartFill);
    opacity: 0; animation: labFadeIn 1.8s ease-out 1.3s forwards;
}
.lab-chart__trace {
    fill: none;
    stroke: var(--signal);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: labTrace 2.6s cubic-bezier(.3,.7,.2,1) 0.75s forwards;
    filter: drop-shadow(0 0 2px rgba(56, 189, 248, 0.45));
}
@keyframes labTrace  { to { stroke-dashoffset: 0; } }
@keyframes labFadeIn { to { opacity: 1; } }

.lab-chart__marker {
    stroke: var(--blue-deep); stroke-width: 1;
    opacity: 0; animation: labFadeIn 0.4s ease-out 2.9s forwards;
}
.lab-chart__peak-label {
    font-family: var(--mono); font-size: 8.5px; font-weight: 600;
    fill: var(--blue-deep); letter-spacing: 0.04em;
    opacity: 0; animation: labFadeIn 0.4s ease-out 3.05s forwards;
}

.lab-chart__scanner {
    position: absolute; top: 0; bottom: 0;
    width: 1px; left: 0;
    background: linear-gradient(180deg, transparent 0%, var(--signal-glow) 50%, transparent 100%);
    box-shadow: 0 0 14px 2px rgba(56, 189, 248, 0.55);
    opacity: 0;
    animation: labScan 9s linear 3.6s infinite;
    pointer-events: none;
}
@keyframes labScan {
    0%   { opacity: 0; left: 0; }
    4%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { opacity: 0; left: 100%; }
}

/* Data grid below chart */
.lab-readout__data {
    display: grid; grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    margin: 0;
}
.lab-readout__data > div {
    padding: 16px 0 12px;
    border-bottom: 1px solid var(--line);
    min-width: 0;
}
.lab-readout__data > div:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 18px;
}
.lab-readout__data > div:nth-child(even) { padding-left: 18px; }
.lab-readout__data > div:nth-child(3),
.lab-readout__data > div:nth-child(4) {
    border-bottom: none;
    padding-bottom: 4px;
}
.lab-readout__data dt {
    font-family: var(--mono); font-size: 9.5px; font-weight: 500;
    color: var(--ink-mute); letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 7px;
}
.lab-readout__data dd {
    margin: 0;
    font-family: var(--serif);
    font-size: 28px; font-weight: 400; color: var(--ink);
    line-height: 1; letter-spacing: -0.01em;
    display: flex; align-items: baseline; gap: 6px;
}
.lab-num { font-feature-settings: "tnum" 1; }
.lab-num--lot {
    font-family: var(--mono) !important;
    font-size: 15px !important;
    letter-spacing: 0.02em !important;
    color: var(--blue-deep);
    font-weight: 500;
}
.lab-unit {
    font-family: var(--mono); font-size: 11px;
    color: var(--ink-mute); font-weight: 500;
    letter-spacing: 0.04em;
}

/* Readout footer: signature + caret */
.lab-readout__footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 16px; margin-top: 16px;
    border-top: 1px solid var(--line);
    font-family: var(--mono); font-size: 9.5px; font-weight: 500;
    color: var(--ink-mute); letter-spacing: 0.12em;
}
.lab-readout__caret {
    width: 8px; height: 12px; background: var(--signal);
    animation: labBlink 1.1s steps(1) infinite;
}
@keyframes labBlink { 50% { opacity: 0; } }

/* ================================
   Bottom status bar
   ================================ */
.lab-status {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 14px 0;
    opacity: 0; animation: labFadeUp 0.9s ease-out 1.1s forwards;
}
@media (min-width: 640px)  { .lab-status { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .lab-status { grid-template-columns: repeat(6, 1fr); } }
.lab-status__cell {
    display: flex; flex-direction: column; gap: 3px;
    padding: 6px 18px 6px 0;
    border-right: 1px solid var(--line);
    min-width: 0;
}
.lab-status__cell:last-child { border-right: none; }
.lab-status__k {
    font-family: var(--mono); font-size: 9.5px; font-weight: 500;
    color: var(--ink-mute); letter-spacing: 0.14em; text-transform: uppercase;
}
.lab-status__v {
    font-family: var(--sans); font-size: 13px; font-weight: 500;
    color: var(--ink); display: flex; align-items: center; gap: 7px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lab-status__live {
    width: 6px; height: 6px; border-radius: 50%;
    background: #10b981; flex: 0 0 auto;
    animation: labPulse 2.2s infinite;
}

/* Shared fade primitive */
@keyframes labFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}

/* Respect reduced-motion users */
@media (prefers-reduced-motion: reduce) {
    .lab-rail__content,
    .lab-hero__eyebrow,
    .lab-line,
    .lab-hero__deck,
    .lab-hero__actions,
    .lab-hero__meta,
    .lab-hero__readout,
    .lab-status,
    .lab-chart__fill,
    .lab-chart__marker,
    .lab-chart__peak-label {
        opacity: 1 !important; transform: none !important; animation: none !important;
    }
    .lab-chart__trace { stroke-dashoffset: 0 !important; animation: none !important; }
    .lab-chart__scanner, .lab-pulse, .lab-readout__dot, .lab-status__live, .lab-readout__caret { animation: none !important; }
}

/* ================================
   RESPONSIVE — mobile-optimised
   ================================ */

/* Tablet — below 2-col threshold */
@media (max-width: 1023px) {
    .lab-hero__layout { padding: 80px 0 88px; gap: 56px; }
    .lab-hero__article { max-width: 640px; }
    .lab-hero__readout { max-width: 560px; }
}

/* Tablet → phone transition */
@media (max-width: 768px) {
    .lab-hero__layout { padding: 72px 0 80px; gap: 48px; }
    .lab-hero__headline { font-size: clamp(42px, 9vw, 62px); }
    .lab-hero__deck { font-size: 16px; }
    .lab-rail__content { gap: 10px; font-size: 9.5px; }
    .lab-rail__tag:nth-of-type(n+4) { display: none; }
    .lab-status { grid-template-columns: repeat(2, 1fr); }
    .lab-status__cell {
        padding: 8px 14px 8px 0;
    }
    .lab-status__cell:nth-child(2n) { border-right: none; }
    .lab-status__cell:nth-child(-n+4) { border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 10px; }
}

/* Phone (primary mobile target) */
@media (max-width: 640px) {
    .lab-hero { border-bottom: 1px solid var(--line); }
    .lab-hero__grid {
        background-size: 32px 32px;
        -webkit-mask-image: radial-gradient(ellipse 120% 80% at 50% 30%, black 20%, transparent 78%);
                mask-image: radial-gradient(ellipse 120% 80% at 50% 30%, black 20%, transparent 78%);
    }
    .lab-hero__glow {
        top: -15%; right: -40%;
        width: 420px; height: 420px;
    }
    .lab-hero__layout {
        padding: 56px 0 64px;
        gap: 44px;
    }
    .lab-hero__article { max-width: none; }

    /* Eyebrow: drop the marker line, wrap chips */
    .lab-hero__eyebrow {
        flex-wrap: wrap; gap: 8px 10px;
        margin-bottom: 24px;
        font-size: 9.5px; letter-spacing: 0.1em;
    }
    .lab-hero__marker { display: none; }
    .lab-hero__class { font-size: 9px; white-space: normal; }

    /* Headline: tighter on small screens */
    .lab-hero__headline {
        font-size: clamp(36px, 11.5vw, 52px);
        line-height: 1.04;
        margin-bottom: 24px;
        letter-spacing: -0.018em;
    }
    .lab-hero__deck {
        font-size: 15.5px; line-height: 1.62;
        margin-bottom: 30px; max-width: none;
    }

    /* CTAs: full-width stack, ≥48px tap target */
    .lab-hero__actions {
        flex-direction: column; gap: 10px;
        margin-bottom: 36px;
    }
    .lab-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 22px;
        font-size: 14px;
        min-height: 48px;
        border-radius: 2px;
    }

    /* Meta footnotes: stack vertically */
    .lab-hero__meta {
        grid-template-columns: 1fr; gap: 18px;
        padding-top: 24px;
    }
    .lab-hero__meta dt { margin-bottom: 4px; }

    /* Readout card: tighter padding */
    .lab-hero__readout { padding: 22px 20px 18px; }
    .lab-hero__readout::after { top: 10px; right: 10px; width: 8px; height: 8px; }
    .lab-readout__header { margin-bottom: 18px; font-size: 9.5px; }
    .lab-readout__title { gap: 7px; }

    /* Chart: compact height */
    .lab-chart { height: 160px; margin-bottom: 18px; }
    .lab-chart__yaxis { font-size: 8.5px; padding-right: 7px; }
    .lab-chart__xaxis { font-size: 8.5px; }

    /* Data grid: keep 2×2 but tighter */
    .lab-readout__data > div { padding: 14px 0 10px; }
    .lab-readout__data > div:nth-child(odd) { padding-right: 14px; }
    .lab-readout__data > div:nth-child(even) { padding-left: 14px; }
    .lab-readout__data dt { font-size: 9px; margin-bottom: 5px; }
    .lab-readout__data dd { font-size: 22px; gap: 4px; }
    .lab-num--lot { font-size: 13px !important; }
    .lab-unit { font-size: 10px; }

    .lab-readout__footer { padding-top: 12px; margin-top: 12px; font-size: 9px; }
    .lab-readout__caret { width: 7px; height: 10px; }

    /* Top rail: simplified */
    .lab-rail__content {
        font-size: 9px; gap: 8px; padding: 10px 0;
    }
    .lab-rail__tag:nth-of-type(n+3) { display: none; }
    .lab-rail__sep:nth-of-type(n+2) { display: none; }
    .lab-rail__live { display: none; }

    /* Bottom status: 3-column wrap */
    .lab-status {
        grid-template-columns: repeat(2, 1fr);
        padding: 12px 0;
        gap: 0;
    }
    .lab-status__cell {
        padding: 10px 12px 10px 0;
        gap: 4px;
    }
    .lab-status__k { font-size: 8.5px; letter-spacing: 0.12em; }
    .lab-status__v { font-size: 12px; }
}

/* Small phones (≤ 400px) */
@media (max-width: 400px) {
    .lab-hero__layout { padding: 48px 0 56px; gap: 36px; }
    .lab-hero__headline { font-size: clamp(32px, 13vw, 44px); }
    .lab-hero__deck { font-size: 15px; }
    .lab-hero__readout { padding: 18px 16px 16px; }
    .lab-chart { height: 140px; }
    .lab-readout__data dd { font-size: 20px; }
    .lab-status__cell { padding: 9px 9px 9px 0; }
    .lab-status__v { font-size: 11px; }
}

/* Landscape phone: don't over-stretch chart */
@media (max-width: 900px) and (orientation: landscape) {
    .lab-hero__layout { padding: 56px 0 64px; gap: 36px; }
}



/* ============================================================
   TFC — PRODUCT INDEX HERO (redesign 2026-04-16)
   Editorial left + dark terminal right. Split-contrast layout.
   Palette: warm white + charcoal navy + electric blue + gold.
   ============================================================ */

/* === TOP METADATA RAIL === */
.tfc-hero__topbar {
    background: #0a1020;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative; z-index: 2;
}
.tfc-topbar__inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 0;
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #5a6a88;
    gap: 12px;
}
.tfc-topbar__left, .tfc-topbar__right { display: flex; align-items: center; gap: 10px; }
.tfc-topbar__tag {
    font-weight: 700; font-size: 10px; letter-spacing: 0.14em;
    padding: 2px 8px; border-radius: 2px;
}
.tfc-topbar__tag--accent {
    background: rgba(109, 40, 217, 0.5);
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.35);
}
.tfc-topbar__sep { color: #2a3652; }
.tfc-topbar__item { color: #5a6a88; }
.tfc-topbar__item--hide { display: none; }
@media (min-width: 640px) { .tfc-topbar__item--hide { display: inline; } }
.tfc-topbar__live {
    display: inline-flex; align-items: center; gap: 7px;
    color: #4ade80; font-weight: 600;
}
.tfc-topbar__pulse {
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: tfcPulse 2.2s infinite;
    flex-shrink: 0;
}

/* === WAREHOUSE STATUS ROW === */
.tfc-warehouses {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    opacity: 0; animation: tfcFade 0.9s ease-out 0.85s forwards;
}
.tfc-wh-item {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: ui-monospace, Menlo, monospace;
    font-size: 11px; font-weight: 500;
    color: var(--ink-2);
}
.tfc-wh-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: tfcWHPulse 3s infinite;
    flex-shrink: 0;
}
@keyframes tfcWHPulse {
    0%   { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.5); }
    60%  { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);   }
    100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0);   }
}
.tfc-wh-flag { font-size: 13px; line-height: 1; }
.tfc-wh-name { letter-spacing: 0.06em; text-transform: uppercase; font-size: 10px; }
.tfc-wh-sep {
    width: 1px; height: 14px; background: var(--line-hot);
    flex-shrink: 0;
}

.tfc-hero {
    --paper:      #fcfcfb;
    --paper-tint: #f4f5f7;
    --ink:        #0a1020;
    --ink-2:      #384560;
    --ink-mute:   #7889a2;
    --line:       #e4e8ef;
    --line-hot:   #c9d2e1;
    --accent:     #7c3aed;
    --accent-2:   #8b5cf6;
    --accent-soft:#f5f3ff;
    --gold:       #b08548;

    --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;

    position: relative;
    background:
        radial-gradient(1200px 500px at 10% 0%, rgba(139, 92, 246, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, var(--paper) 0%, var(--paper-tint) 100%);
    color: var(--ink);
    overflow: hidden;
    padding: 0;
    border-bottom: 1px solid var(--line);
}

/* Massive Chinese seal watermark */
.tfc-hero__seal {
    position: absolute;
    top: 50%; left: 4%;
    transform: translateY(-50%);
    font-family: "Noto Serif SC", var(--serif);
    font-size: clamp(280px, 36vw, 680px);
    font-weight: 900;
    color: rgba(10, 16, 32, 0.035);
    line-height: 0.85;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -0.04em;
}

.tfc-hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 0 32px;
}
@media (min-width: 1024px) {
    .tfc-hero__layout {
        grid-template-columns: 1.25fr 0.75fr;
        gap: 64px;
        padding: 104px 0 40px;
        align-items: center;
    }
}

/* Editorial article */
.tfc-hero__article { min-width: 0; }

.tfc-hero__eyebrow {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 36px;
    font-family: ui-monospace, "SFMono-Regular", "JetBrains Mono", Menlo, Consolas, monospace;
    font-size: 11px; font-weight: 600;
    color: var(--ink-mute); letter-spacing: 0.14em; text-transform: uppercase;
    opacity: 0; animation: tfcFade 0.9s ease-out 0.1s forwards;
}
.tfc-hero__est { color: var(--accent); }
.tfc-hero__bar {
    flex: 0 0 20px; height: 1px; background: var(--line-hot);
}

.tfc-hero__headline {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(42px, 6.6vw, 88px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0 0 32px;
    max-width: 640px;
    opacity: 0; animation: tfcRise 1s cubic-bezier(.2,.7,.3,1) 0.2s forwards;
}
.tfc-hero__headline em {
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
}

.tfc-hero__deck {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-2);
    max-width: 560px;
    margin: 0 0 36px;
    opacity: 0; animation: tfcFade 0.9s ease-out 0.4s forwards;
}
.tfc-hero__deck strong { color: var(--ink); font-weight: 600; }

.tfc-hero__actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 32px;
    opacity: 0; animation: tfcFade 0.9s ease-out 0.55s forwards;
}
.tfc-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 28px;
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(.2,.7,.3,1);
    border: 1.5px solid transparent;
}
.tfc-btn svg { flex: 0 0 auto; transition: transform 0.2s; }
.tfc-btn:hover svg { transform: translateX(3px); }
.tfc-btn--primary {
    background: var(--ink); color: var(--paper);
    border-color: var(--ink);
    box-shadow: 0 10px 28px -12px rgba(10, 16, 32, 0.35);
}
.tfc-btn--primary:hover {
    background: var(--accent); border-color: var(--accent);
    color: #fff; text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px -12px rgba(30, 58, 138, 0.5);
}
.tfc-btn--ghost {
    background: transparent; color: var(--ink);
    border-color: var(--line-hot);
}
.tfc-btn--ghost:hover {
    background: var(--accent-soft); color: var(--accent);
    border-color: var(--accent); text-decoration: none;
}

.tfc-hero__trust {
    display: flex; flex-wrap: wrap; gap: 18px 22px;
    opacity: 0; animation: tfcFade 0.9s ease-out 0.7s forwards;
}
.tfc-hero__trust-item {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 500;
    color: var(--ink-2);
}
.tfc-hero__trust-item i { color: var(--accent); font-size: 12px; }

/* ── Credentials panel (light, purple-accented) ── */
.tfc-creds {
    background: #ffffff;
    border: 1px solid var(--line-hot);
    border-radius: 4px;
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.9) inset,
        0 20px 48px -16px rgba(109, 40, 217, 0.12),
        0 6px 16px -8px rgba(10, 16, 32, 0.06);
    position: relative;
    opacity: 0; animation: tfcFade 1.1s ease-out 0.35s forwards;
}
.tfc-creds::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #7c3aed 0%, #a78bfa 55%, #c4b5fd 100%);
}
.tfc-creds__head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 22px 13px;
    border-bottom: 1px solid var(--line);
}
.tfc-creds__head-title {
    display: flex; align-items: center; gap: 8px;
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 10.5px; font-weight: 700;
    color: var(--ink); letter-spacing: 0.14em;
}
.tfc-creds__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #8b5cf6;
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.6);
    animation: tfcPulse 2.4s infinite;
    flex-shrink: 0;
}
@keyframes tfcPulse {
    0%   { box-shadow: 0 0 0 0   rgba(139, 92, 246, 0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);  }
    100% { box-shadow: 0 0 0 0   rgba(139, 92, 246, 0);  }
}
.tfc-creds__head-ts {
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 9px; font-weight: 600;
    color: #22c55e; letter-spacing: 0.12em;
}

/* Hero metric */
.tfc-creds__hero {
    padding: 24px 22px 20px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, #faf5ff 0%, #f5f3ff 100%);
}
.tfc-creds__big-num {
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 52px; font-weight: 800;
    color: var(--accent); line-height: 1;
    letter-spacing: -0.03em;
    opacity: 0; animation: tfcFade 0.9s ease-out 0.7s forwards;
}
.tfc-creds__plus {
    font-size: 32px; font-weight: 700;
    color: var(--accent-2); vertical-align: super; margin-left: 2px;
}
.tfc-creds__big-label {
    font-size: 14px; font-weight: 700;
    color: var(--ink); margin-top: 6px;
    opacity: 0; animation: tfcFade 0.9s ease-out 0.8s forwards;
}
.tfc-creds__big-sub {
    font-family: ui-monospace, Menlo, monospace;
    font-size: 10px; font-weight: 500;
    color: var(--ink-mute); letter-spacing: 0.06em;
    margin-top: 4px;
    opacity: 0; animation: tfcFade 0.9s ease-out 0.9s forwards;
}

/* Stats row */
.tfc-creds__stats {
    display: flex; align-items: stretch;
    border-bottom: 1px solid var(--line);
}
.tfc-creds__stat {
    flex: 1; padding: 14px 16px; text-align: center;
    opacity: 0; animation: tfcFade 0.9s ease-out 0.95s forwards;
}
.tfc-creds__stat-div {
    width: 1px; background: var(--line); flex-shrink: 0;
}
.tfc-creds__stat-val {
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 20px; font-weight: 800;
    color: var(--accent); line-height: 1;
    letter-spacing: -0.02em;
}
.tfc-creds__stat-plus {
    font-size: 14px; font-weight: 700;
    vertical-align: super; margin-left: 1px;
}
.tfc-creds__stat-key {
    font-size: 10.5px; font-weight: 500;
    color: var(--ink-mute); margin-top: 4px;
    letter-spacing: 0.02em;
}

/* Credential badges */
.tfc-creds__badges {
    display: flex; flex-direction: column;
    opacity: 0; animation: tfcFade 0.9s ease-out 1.05s forwards;
}
.tfc-creds__badge {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    text-decoration: none; color: inherit;
    transition: background 0.15s;
}
.tfc-creds__badge:hover { background: #faf5ff; text-decoration: none; }
.tfc-creds__badge-icon {
    width: 34px; height: 34px; border-radius: 8px;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 13px;
    flex-shrink: 0;
}
.tfc-creds__badge-text { flex: 1; min-width: 0; }
.tfc-creds__badge-name {
    font-size: 13px; font-weight: 600; color: var(--ink);
    display: block;
}
.tfc-creds__badge-sub {
    font-size: 11px; color: var(--ink-mute); margin-top: 1px;
    display: block;
}
.tfc-creds__check {
    color: #22c55e; font-size: 16px; flex-shrink: 0;
}

/* Footer link */
.tfc-creds__footer {
    display: flex; justify-content: space-between; align-items: center;
    padding: 13px 18px 15px;
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 10.5px; font-weight: 600;
    color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: color 0.2s;
}
.tfc-creds__footer svg { flex: 0 0 auto; transition: transform 0.2s; stroke: currentColor; }
.tfc-creds__footer:hover { color: var(--accent-2); text-decoration: none; }
.tfc-creds__footer:hover svg { transform: translateX(3px); }

/* Bottom strip: promo + contact */
.tfc-hero__strip {
    position: relative; z-index: 1;
    margin-top: 24px;
    padding: 18px 24px;
    background: var(--ink);
    color: #d4d9e6;
    border-radius: 2px;
    display: flex; flex-wrap: wrap; gap: 16px 28px;
    justify-content: space-between; align-items: center;
    opacity: 0; animation: tfcFade 0.9s ease-out 1.2s forwards;
    box-shadow: 0 20px 40px -16px rgba(10, 16, 32, 0.28);
}
.tfc-hero__strip::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
    border-radius: 2px 2px 0 0;
}
.tfc-strip__promo {
    display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
    font-size: 13px;
}
.tfc-strip__label {
    font-family: ui-monospace, Menlo, monospace;
    font-size: 10.5px; font-weight: 700;
    color: var(--gold); letter-spacing: 0.14em;
    padding: 4px 10px;
    border: 1px solid rgba(176, 133, 72, 0.5);
    border-radius: 2px;
}
.tfc-strip__dash { color: #4c5a77; }
.tfc-strip__body { color: #b4bdd1; }
.tfc-strip__body strong { color: #ffffff; font-weight: 600; }

.tfc-strip__contact {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; color: #b4bdd1;
}
.tfc-strip__contact a {
    color: #ffffff; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
}
.tfc-strip__contact a:hover { color: var(--gold); }
.tfc-strip__contact a i { color: var(--gold); }
.tfc-strip__sep { color: #4c5a77; }

/* Animations */
@keyframes tfcFade {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}
@keyframes tfcRise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .tfc-hero__eyebrow, .tfc-hero__headline, .tfc-hero__deck, .tfc-hero__actions,
    .tfc-hero__trust, .tfc-creds, .tfc-creds__big-num, .tfc-creds__big-label,
    .tfc-creds__big-sub, .tfc-creds__stat, .tfc-creds__badges, .tfc-hero__strip,
    .tfc-warehouses {
        opacity: 1 !important; transform: none !important; animation: none !important;
    }
    .tfc-creds__dot, .tfc-topbar__pulse, .tfc-wh-dot { animation: none !important; }
}

/* Responsive */
@media (max-width: 1023px) {
    .tfc-hero__seal { font-size: clamp(260px, 60vw, 520px); left: -5%; }
    .tfc-hero__layout { padding: 80px 0 28px; gap: 56px; }
    .tfc-hero__headline { font-size: clamp(44px, 9vw, 72px); }
}

/* ── Mobile (≤767px) — phones + small tablets ── */
@media (max-width: 767px) {
    /* Topbar rail */
    .tfc-topbar__inner { padding: 8px 0; font-size: 9.5px; flex-wrap: wrap; gap: 4px 8px; }
    .tfc-topbar__right { margin-left: auto; }

    /* Hero layout */
    .tfc-hero__seal { font-size: clamp(180px, 55vw, 340px); left: -8%; opacity: 0.65; }
    .tfc-hero__layout { padding: 56px 0 24px; gap: 36px; }
    .tfc-hero__eyebrow { flex-wrap: wrap; gap: 8px; margin-bottom: 24px; font-size: 10px; }
    .tfc-hero__bar { display: none; }
    .tfc-hero__headline { font-size: clamp(32px, 8vw, 54px); margin-bottom: 22px; }
    .tfc-hero__deck { font-size: 15px; margin-bottom: 24px; word-break: break-word; }
    .tfc-hero__actions { flex-direction: column; gap: 10px; margin-bottom: 22px; }
    .tfc-btn {
        width: 100%; justify-content: center;
        min-height: 48px; padding: 14px 22px;
        font-size: 15px;
    }
    .tfc-hero__trust { gap: 10px 16px; font-size: 12px; }
    .tfc-hero__trust-item { min-height: 36px; display: inline-flex; align-items: center; }

    /* Warehouses */
    .tfc-warehouses { gap: 8px 12px; margin-top: 18px; padding-top: 14px; }
    .tfc-wh-name { font-size: 10px; }
    .tfc-wh-sep { display: none; }

    /* Credentials panel */
    .tfc-creds__head { padding: 13px 16px 11px; }
    .tfc-creds__head-title { font-size: 10px; letter-spacing: 0.1em; }
    .tfc-creds__head-ts { font-size: 9.5px; }
    .tfc-creds__hero { padding: 18px 16px 16px; }
    .tfc-creds__big-num { font-size: 44px; }
    .tfc-creds__plus { font-size: 28px; }
    .tfc-creds__big-label { font-size: 13px; }
    .tfc-creds__big-sub { font-size: 10.5px; }
    .tfc-creds__stat { padding: 12px 12px; }
    .tfc-creds__stat-val { font-size: 18px; }
    .tfc-creds__stat-key { font-size: 10.5px; }
    .tfc-creds__badge { padding: 12px 14px; gap: 10px; min-height: 44px; }
    .tfc-creds__badge-name { font-size: 13px; }
    .tfc-creds__badge-sub { font-size: 11px; }
    .tfc-creds__footer {
        padding: 12px 16px 14px; font-size: 10.5px;
        min-height: 44px; display: flex; align-items: center;
    }

    /* Bottom promo strip */
    .tfc-hero__strip { padding: 16px 18px; flex-direction: column; align-items: flex-start; gap: 12px; }
    .tfc-strip__promo { font-size: 12px; flex-wrap: wrap; gap: 6px; }
    .tfc-strip__body { word-break: break-word; }
    .tfc-strip__dash { display: none; }
    .tfc-strip__contact { font-size: 12px; flex-wrap: wrap; gap: 8px; }
    .tfc-strip__contact a { min-height: 44px; display: inline-flex; align-items: center; gap: 5px; }
    .tfc-strip__sep { display: none; }
}

/* ── Small phones (≤479px) ── */
@media (max-width: 479px) {
    .tfc-topbar__inner { font-size: 9px; }
    .tfc-hero__seal { font-size: 180px; left: -10%; }
    .tfc-hero__layout { padding: 44px 0 18px; gap: 28px; }
    .tfc-hero__headline { font-size: clamp(28px, 9vw, 40px); }
    .tfc-hero__deck { font-size: 14.5px; }
    .tfc-creds__big-num { font-size: 38px; }
    .tfc-creds__plus { font-size: 24px; }
    /* Stack stats vertically on very narrow screens */
    .tfc-creds__stats { flex-direction: column; }
    .tfc-creds__stat {
        padding: 10px 18px; text-align: left;
        border-bottom: 1px solid var(--line);
    }
    .tfc-creds__stat:last-child { border-bottom: none; }
    .tfc-creds__stat-div { display: none; }
    .tfc-creds__stat-val { font-size: 22px; }
    .tfc-creds__stat-key { font-size: 11px; margin-top: 2px; }
    .tfc-strip__label { font-size: 9.5px; }
    .tfc-strip__body { font-size: 11px; }
}
