/* B2B Microneedling Tool Manufacturer - Main Styles */

:root {
    --primary-color: #0f2027;
    --secondary-color: #2c3e50;
    --accent-blue: #3b82f6;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --whatsapp-green: #25d366;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-blue);
}

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

.section-padding {
    padding: 5rem 0;
}

.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #102a43;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
}

.btn-whatsapp svg {
    margin-right: 0.5rem;
    fill: currentColor;
}

/* Header */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo a {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.logo a img {
    display: block;
    height: 32px;
    width: auto;
    max-width: none;
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #f8fafc, #edf2f7);
    padding: 6rem 0;
}

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

.hero-content h1 {
    font-size: 3.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 200px;
    background-color: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 500;
}

.product-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.product-body h3 {
    margin-bottom: 0.5rem;
}

.product-body p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Forms */
.rfq-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group.full {
    grid-column: 1 / -1;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs span {
    margin: 0 0.5rem;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.faq-question {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #cbd5e0;
    font-size: 0.875rem;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e0;
    font-size: 0.875rem;
}

.legacy-footer-brand {
    margin-bottom: 1.25rem;
}
.legacy-footer-brand img {
    display: block;
    height: 38px;
    width: auto;
    max-width: none;
}
.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: #718096;
}

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--whatsapp-green);
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 2.75rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
        flex-direction: column; 
        width: 100%; 
        position: absolute; 
        top: 5rem; 
        left: 0; 
        background: var(--white); 
        border-bottom: 1px solid var(--border-color); 
        padding: 1rem 0; 
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-links.show { 
        display: flex; 
    }
    .nav-links li {
        text-align: center;
        padding: 0.5rem 0;
    }
    .nav-cta .btn-outline { display: none; }
    .mobile-toggle { display: block; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- B2B REDESIGN V2 NEW STYLES --- */

/* Hero Trust Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--bg-gray);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}
.hero-badge svg {
    margin-right: 0.5rem;
    fill: var(--accent-blue);
}

/* Product System Visual Placeholder */
.system-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}
.visual-main {
    grid-column: 1 / -1;
    background: var(--white);
    height: 150px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    border: 2px dashed var(--border-color);
}
.visual-sub {
    background: var(--white);
    height: 100px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-light);
    border: 1px dashed var(--border-color);
    text-align: center;
    padding: 1rem;
}

/* Workflow Steps */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    counter-reset: step-counter;
}
.workflow-step {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: var(--transition);
}
.workflow-step:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}
.workflow-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}
.workflow-step h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}
.workflow-step p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Trust Features Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.trust-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}
.trust-icon {
    width: 3rem;
    height: 3rem;
    background: var(--bg-gray);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--accent-blue);
}
.trust-content h4 {
    margin-bottom: 0.25rem;
}
.trust-content p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* --- ENTERPRISE PREMIUM REFINEMENT V3 --- */
:root {
    --navy-950: #071522;
    --navy-900: #0b1f33;
    --navy-800: #102a43;
    --steel-700: #334155;
    --steel-500: #64748b;
    --steel-100: #f1f5f9;
    --steel-50: #f8fafc;
    --line-soft: rgba(148, 163, 184, 0.28);
    --shadow-premium: 0 28px 80px rgba(15, 32, 39, 0.16);
}

.container {
    max-width: 1320px;
}

.section-padding {
    padding: 7rem 0;
}

h2 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    letter-spacing: -0.04em;
}

.btn {
    min-height: 3.25rem;
    padding: 0.9rem 1.55rem;
    border-radius: 999px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
    box-shadow: 0 18px 40px rgba(7, 21, 34, 0.18);
}

.btn-outline {
    background: rgba(255,255,255,0.78);
}

.hero {
    position: relative;
    background:
        radial-gradient(circle at 72% 22%, rgba(59, 130, 246, 0.18), transparent 30%),
        linear-gradient(110deg, #ffffff 0%, #ffffff 48%, var(--navy-950) 48.1%, var(--navy-900) 100%);
    padding: 8rem 0 6.5rem;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(148,163,184,0.10) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,0.10) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,0.08), rgba(0,0,0,0.8));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    grid-template-columns: minmax(0, 1.02fr) minmax(520px, 0.98fr);
    gap: 5.5rem;
}

.hero-content h1 {
    max-width: 820px;
    font-size: clamp(4rem, 6vw, 6.65rem);
    line-height: 0.95;
    letter-spacing: -0.075em;
    margin-bottom: 2rem;
}

.hero-content p {
    max-width: 720px;
    font-size: clamp(1.2rem, 1.55vw, 1.45rem);
    line-height: 1.72;
    color: var(--steel-700);
    margin-bottom: 2.4rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.2rem;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--accent-blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
}

.hero-kicker::before,
.section-kicker::before {
    content: "";
    width: 2.75rem;
    height: 1px;
    background: currentColor;
}

.hero-badges {
    gap: 0.75rem;
    margin-bottom: 0;
}

.hero-badge {
    background: rgba(241, 245, 249, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 999px;
    padding: 0.64rem 1rem;
    box-shadow: 0 12px 28px rgba(15, 32, 39, 0.05);
}

.product-system-display {
    position: relative;
    min-height: 610px;
    padding: 2rem;
    border-radius: 2rem;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04)),
        radial-gradient(circle at 50% 38%, rgba(59,130,246,0.24), transparent 36%),
        var(--navy-950);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 40px 110px rgba(0,0,0,0.35);
    overflow: hidden;
}

.product-system-display::before {
    content: "";
    position: absolute;
    inset: 1.2rem;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 1.45rem;
    background-image: linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 34px 34px;
}

.system-label {
    position: absolute;
    left: 2.2rem;
    top: 2.2rem;
    z-index: 2;
    color: rgba(255,255,255,0.92);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.device-visual {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 76px;
    height: 385px;
    transform: translate(-50%, -48%) rotate(-14deg);
    border-radius: 46px;
    background: linear-gradient(90deg, #dbeafe 0%, #ffffff 28%, #94a3b8 52%, #e2e8f0 78%, #64748b 100%);
    box-shadow: 0 30px 55px rgba(0,0,0,0.38), inset 10px 0 18px rgba(255,255,255,0.72), inset -12px 0 22px rgba(15,23,42,0.28);
}

.device-visual::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 50%;
    width: 36px;
    height: 104px;
    transform: translateX(-50%);
    border-radius: 20px;
    background: linear-gradient(180deg, #0f172a, #334155);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

.device-visual::after {
    content: "";
    position: absolute;
    bottom: -38px;
    left: 50%;
    width: 44px;
    height: 74px;
    transform: translateX(-50%);
    border-radius: 28px;
    background: linear-gradient(90deg, #e2e8f0, #94a3b8);
}

.system-node {
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: 178px;
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.25);
    color: var(--navy-900);
}

.node-visual {
    height: 50px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e2e8f0, #ffffff, #94a3b8);
    border: 1px solid rgba(15,23,42,0.08);
}

.node-visual.flat {
    border-radius: 1rem;
    height: 58px;
}

.node-title {
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.25;
}

.node-caption {
    font-size: 0.72rem;
    color: var(--steel-500);
    line-height: 1.35;
}

.node-cartridge { left: 2.1rem; top: 8rem; }
.node-stamp { right: 2rem; top: 7.6rem; }
.node-reservoir { left: 2.4rem; bottom: 7.2rem; }
.node-crystal { right: 2.2rem; bottom: 8rem; }
.node-packaging { left: 50%; bottom: 2.1rem; transform: translateX(-50%); width: 245px; }

.capability-bar {
    background: var(--navy-950);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.capability-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.capability-item {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    text-align: center;
    color: #e2e8f0;
    font-weight: 750;
    border-right: 1px solid rgba(255,255,255,0.10);
}

.capability-item:last-child {
    border-right: none;
}

.section-header-wide {
    max-width: 940px;
    margin-bottom: 4rem;
}

.section-header-wide p {
    font-size: 1.12rem;
    color: var(--steel-500);
    max-width: 760px;
    line-height: 1.75;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-bottom: 3rem;
}

.pillar-card {
    min-height: 260px;
    padding: 2rem;
    border-radius: 1.45rem;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 50px rgba(15,32,39,0.06);
}

.pillar-number {
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--accent-blue);
    letter-spacing: 0.16em;
    margin-bottom: 2.4rem;
}

.pillar-card h3 {
    font-size: 1.55rem;
    letter-spacing: -0.035em;
}

.pillar-card p {
    color: var(--steel-500);
    font-size: 0.98rem;
}

.product-grid.premium-detail-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.premium-detail-grid .product-card {
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: none;
}

.premium-detail-grid .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(15,32,39,0.09);
}

.premium-detail-grid .product-img {
    height: 150px;
    background:
        radial-gradient(circle at 50% 30%, rgba(59,130,246,0.12), transparent 45%),
        linear-gradient(145deg, #ffffff, #eef2f7);
    color: var(--steel-500);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.premium-detail-grid .product-body {
    padding: 1.35rem;
}

.premium-detail-grid .product-body h3 {
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.premium-detail-grid .product-body p {
    margin-bottom: 0.9rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.2rem;
}

.solution-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    padding: 1.6rem;
    border-radius: 1.45rem;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 24px 70px rgba(15, 32, 39, 0.07);
}

.solution-visual {
    height: 118px;
    margin-bottom: 1.4rem;
    border-radius: 1.1rem;
    background:
        linear-gradient(135deg, rgba(15,32,39,0.96), rgba(16,42,67,0.92)),
        radial-gradient(circle at 70% 28%, rgba(59,130,246,0.32), transparent 32%);
    position: relative;
    overflow: hidden;
}

.solution-visual::after {
    content: "";
    position: absolute;
    left: 18%;
    top: 50%;
    width: 62%;
    height: 18px;
    transform: translateY(-50%) rotate(-12deg);
    border-radius: 999px;
    background: linear-gradient(90deg, #e2e8f0, #ffffff, #94a3b8);
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}

.solution-card h3 {
    font-size: 1.22rem;
    letter-spacing: -0.035em;
}

.solution-meta {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0 1.4rem;
    color: var(--steel-500);
    font-size: 0.88rem;
}

.solution-meta strong {
    display: block;
    color: var(--navy-900);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.16rem;
}

.solution-card .btn {
    margin-top: auto;
    width: 100%;
}

.manufacturing-split {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 4rem;
    align-items: start;
}

.manufacturing-statement {
    position: sticky;
    top: 7rem;
    padding: 3rem;
    border-radius: 1.6rem;
    background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
    color: #cbd5e1;
    box-shadow: var(--shadow-premium);
}

.manufacturing-statement h2 {
    color: #ffffff;
    font-size: clamp(2.3rem, 3.8vw, 4.3rem);
}

.manufacturing-statement p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.trust-grid.authority-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
}

.authority-grid .trust-card {
    min-height: 176px;
    border-radius: 1.25rem;
    box-shadow: 0 18px 48px rgba(15,32,39,0.06);
}

.rfq-form-container {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

@media (max-width: 1180px) {
    .hero {
        background: linear-gradient(180deg, #ffffff 0%, #ffffff 55%, var(--navy-950) 55.1%, var(--navy-900) 100%);
    }
    .hero-grid,
    .manufacturing-split {
        grid-template-columns: 1fr;
    }
    .product-system-display {
        max-width: 720px;
        margin: 0 auto;
    }
    .pillar-grid,
    .product-grid.premium-detail-grid,
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .manufacturing-statement {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .section-padding { padding: 4.5rem 0; }
    .hero { padding: 5rem 0 4rem; }
    .hero-content h1 { font-size: clamp(3.1rem, 14vw, 4.3rem); }
    .hero-content p { font-size: 1.05rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .product-system-display { min-height: 560px; padding: 1rem; }
    .system-node { width: 142px; padding: 0.8rem; }
    .node-packaging { width: 210px; }
    .device-visual { height: 310px; width: 62px; }
    .capability-list,
    .pillar-grid,
    .product-grid.premium-detail-grid,
    .solution-grid,
    .trust-grid.authority-grid {
        grid-template-columns: 1fr;
    }
    .capability-item {
        min-height: 72px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }
    .manufacturing-statement { padding: 2rem; }
}

/* --- CONTROLLED PRODUCTION & TECHNICAL SPEC SECTIONS --- */
.production-showcase {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: start;
}

.production-copy {
    max-width: 760px;
}

.production-copy p {
    color: var(--steel-500);
    font-size: 1.08rem;
    line-height: 1.8;
}

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

.factory-placeholder {
    min-height: 180px;
    border-radius: 1.25rem;
    background:
        linear-gradient(135deg, rgba(15,32,39,0.92), rgba(16,42,67,0.88)),
        radial-gradient(circle at 68% 28%, rgba(59,130,246,0.28), transparent 34%);
    border: 1px solid rgba(255,255,255,0.12);
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem;
    box-shadow: 0 24px 60px rgba(15,32,39,0.16);
    position: relative;
    overflow: hidden;
}

.factory-placeholder::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.9rem;
    background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}

.factory-placeholder span,
.factory-placeholder strong {
    position: relative;
    z-index: 1;
}

.factory-placeholder span {
    color: #93c5fd;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.factory-placeholder strong {
    color: #ffffff;
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.qc-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin-top: 4rem;
    border: 1px solid var(--border-color);
    border-radius: 1.4rem;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(15,32,39,0.07);
}

.qc-step {
    min-height: 190px;
    padding: 1.5rem;
    border-right: 1px solid var(--border-color);
    position: relative;
}

.qc-step:last-child {
    border-right: none;
}

.qc-step::after {
    content: "→";
    position: absolute;
    right: -0.55rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.1rem;
    height: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-blue);
    color: #ffffff;
    font-size: 0.7rem;
    z-index: 2;
}

.qc-step:last-child::after {
    display: none;
}

.qc-index {
    color: var(--accent-blue);
    font-weight: 900;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    margin-bottom: 2.4rem;
}

.qc-step h4 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.qc-step p {
    color: var(--steel-500);
    font-size: 0.88rem;
    line-height: 1.55;
}

.spec-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 3rem;
    align-items: start;
}

.spec-panel {
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
    color: #cbd5e1;
    box-shadow: var(--shadow-premium);
}

.spec-panel h2 {
    color: #ffffff;
}

.spec-panel p {
    color: #cbd5e1;
    line-height: 1.8;
}

.spec-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 1.35rem;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15,32,39,0.07);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.spec-table th,
.spec-table td {
    padding: 1.25rem 1.4rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
}

.spec-table th {
    width: 34%;
    background: var(--steel-50);
    color: var(--navy-900);
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.spec-table td {
    color: var(--steel-700);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
    border-bottom: none;
}

.reorder-note {
    margin-top: 1.4rem;
    padding: 1.35rem 1.5rem;
    border-radius: 1rem;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.18);
    color: var(--steel-700);
    line-height: 1.7;
}

@media (max-width: 1180px) {
    .production-showcase,
    .spec-layout {
        grid-template-columns: 1fr;
    }
    .qc-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    .qc-step:nth-child(3) {
        border-right: none;
    }
    .qc-step:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .factory-visual-grid,
    .qc-timeline {
        grid-template-columns: 1fr;
    }
    .qc-step,
    .qc-step:nth-child(3) {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .qc-step:last-child {
        border-bottom: none;
    }
    .qc-step::after,
    .qc-step:nth-child(3)::after {
        display: none;
    }
    .factory-placeholder {
        min-height: 150px;
    }
}

/* --- HERO PRECISION REFINEMENT V4 --- */
.hero {
    background:
        radial-gradient(circle at 74% 24%, rgba(59, 130, 246, 0.10), transparent 30%),
        linear-gradient(110deg, #ffffff 0%, #ffffff 49.5%, var(--navy-950) 49.6%, var(--navy-900) 100%);
    padding: 7.4rem 0 6.2rem;
}

.hero::before {
    background-image: linear-gradient(rgba(148,163,184,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,0.055) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,0.03), rgba(0,0,0,0.45));
}

.hero-content h1 {
    max-width: 780px;
    font-size: clamp(3.55rem, 5.45vw, 5.95rem);
    line-height: 1.01;
    letter-spacing: -0.065em;
}

.btn-premium-whatsapp {
    background: rgba(255,255,255,0.92);
    color: var(--navy-900);
    border: 1px solid rgba(15, 32, 39, 0.18);
    box-shadow: 0 16px 36px rgba(15, 32, 39, 0.08);
}

.btn-premium-whatsapp:hover {
    background: var(--navy-950);
    color: #ffffff;
    border-color: var(--navy-950);
}

.hero-trust-line {
    margin-top: 1.45rem;
    color: var(--steel-700);
    font-size: 0.92rem;
    font-weight: 750;
    letter-spacing: 0.015em;
}

.device-visual {
    width: 86px;
    height: 420px;
    transform: translate(-50%, -48%) rotate(-12deg);
}

.device-visual::before {
    width: 40px;
    height: 116px;
}

.device-visual::after {
    width: 50px;
    height: 82px;
}

.system-node {
    width: 166px;
    padding: 0.9rem;
    gap: 0.45rem;
}

.node-title {
    font-size: 0.86rem;
    text-align: center;
}

.node-caption {
    display: none;
}

.node-packaging {
    width: 210px;
}

@media (max-width: 1180px) {
    .hero {
        background: linear-gradient(180deg, #ffffff 0%, #ffffff 56%, var(--navy-950) 56.1%, var(--navy-900) 100%);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2.85rem, 12.5vw, 3.85rem);
        line-height: 1.04;
    }
    .hero-trust-line {
        text-align: center;
        font-size: 0.85rem;
    }
    .device-visual {
        height: 335px;
        width: 70px;
    }
    .system-node {
        width: 132px;
    }
    .node-packaging {
        width: 190px;
    }
}

/* --- HERO CLEAN FACTORY REDESIGN V5 --- */
.hero-clean-factory {
    background:
        radial-gradient(circle at 78% 18%, rgba(59,130,246,0.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 7.2rem 0 5.8rem;
    border-bottom: 1px solid rgba(148,163,184,0.20);
}

.hero-clean-factory::before {
    background-image: linear-gradient(rgba(148,163,184,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,0.045) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.04));
}

.hero-clean-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
    gap: 5rem;
    align-items: center;
}

.hero-clean-content h1 {
    max-width: 760px;
    font-size: clamp(3.2rem, 4.7vw, 5.15rem);
    line-height: 1.06;
    letter-spacing: -0.055em;
    margin-bottom: 1.6rem;
}

.hero-clean-content p {
    max-width: 700px;
    color: var(--steel-700);
    font-size: clamp(1.08rem, 1.25vw, 1.28rem);
    line-height: 1.78;
    margin-bottom: 2rem;
}

.hero-clean-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.btn-clean-whatsapp {
    background: #ffffff;
    color: var(--navy-900);
    border: 1px solid rgba(15,32,39,0.18);
    box-shadow: 0 10px 28px rgba(15,32,39,0.07);
}

.btn-clean-whatsapp:hover {
    background: var(--steel-50);
    color: var(--navy-900);
    border-color: rgba(59,130,246,0.32);
}

.hero-clean-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    max-width: 720px;
}

.hero-clean-trust span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.72rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(148,163,184,0.26);
    color: var(--steel-700);
    font-size: 0.82rem;
    font-weight: 750;
}

.hero-clean-trust span::before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--accent-blue);
    margin-right: 0.48rem;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}

.clean-product-visual {
    position: relative;
    min-height: 560px;
    padding: 1.8rem;
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.96)),
        radial-gradient(circle at 54% 42%, rgba(59,130,246,0.13), transparent 38%);
    border: 1px solid rgba(148,163,184,0.22);
    box-shadow: 0 26px 70px rgba(15,32,39,0.10);
    overflow: hidden;
}

.clean-product-visual::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 1.45rem;
    border: 1px solid rgba(148,163,184,0.16);
    background-image: linear-gradient(rgba(148,163,184,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,0.055) 1px, transparent 1px);
    background-size: 36px 36px;
}

.clean-visual-label {
    position: relative;
    z-index: 3;
    color: var(--steel-500);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.clean-product-stage {
    position: absolute;
    inset: 4.4rem 2.4rem 2.2rem;
}

.clean-main-pen {
    position: absolute;
    z-index: 4;
    left: 48%;
    top: 47%;
    width: 82px;
    height: 390px;
    transform: translate(-50%, -50%) rotate(-8deg);
    border-radius: 46px;
    background: linear-gradient(90deg, #cbd5e1 0%, #ffffff 30%, #dbeafe 52%, #94a3b8 100%);
    border: 1px solid rgba(15,32,39,0.12);
    box-shadow: 0 30px 55px rgba(15,32,39,0.18), inset 10px 0 18px rgba(255,255,255,0.72), inset -12px 0 18px rgba(15,23,42,0.16);
}

.clean-main-pen::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 3rem;
    width: 38px;
    height: 108px;
    transform: translateX(-50%);
    border-radius: 22px;
    background: linear-gradient(180deg, var(--navy-900), #334155);
}

.clean-main-pen::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -42px;
    width: 50px;
    height: 78px;
    transform: translateX(-50%);
    border-radius: 28px;
    background: linear-gradient(90deg, #e2e8f0, #94a3b8);
    border: 1px solid rgba(15,32,39,0.10);
}

.clean-packaging-box {
    position: absolute;
    z-index: 3;
    right: 2%;
    bottom: 4%;
    width: 190px;
    height: 142px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 1.2rem;
    background: linear-gradient(145deg, #ffffff, #e0f2fe);
    border: 1px solid rgba(59,130,246,0.18);
    color: var(--navy-900);
    font-weight: 850;
    box-shadow: 0 20px 45px rgba(15,32,39,0.10);
}

.clean-accessory {
    position: absolute;
    z-index: 4;
    width: 160px;
    padding: 0.85rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(148,163,184,0.22);
    box-shadow: 0 18px 38px rgba(15,32,39,0.08);
    color: var(--navy-900);
    text-align: center;
}

.clean-accessory span {
    display: block;
    height: 46px;
    margin-bottom: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #e2e8f0, #ffffff, #93c5fd);
    border: 1px solid rgba(59,130,246,0.13);
}

.clean-accessory strong {
    display: block;
    font-size: 0.82rem;
    line-height: 1.25;
}

.accessory-cartridge { left: 2%; top: 8%; }
.accessory-stamp { right: 3%; top: 8%; }
.accessory-reservoir { left: 3%; bottom: 12%; }
.accessory-crystal { right: 32%; bottom: 1%; }

@media (max-width: 1180px) {
    .hero-clean-grid {
        grid-template-columns: 1fr;
    }
    .clean-product-visual {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-clean-factory {
        padding: 5rem 0 4rem;
    }
    .hero-clean-content h1 {
        font-size: clamp(2.65rem, 11vw, 3.65rem);
    }
    .hero-clean-actions {
        flex-direction: column;
    }
    .hero-clean-actions .btn {
        width: 100%;
    }
    .clean-product-visual {
        min-height: 580px;
        padding: 1.2rem;
    }
    .clean-product-stage {
        inset: 3.6rem 1rem 1rem;
    }
    .clean-main-pen {
        width: 66px;
        height: 320px;
    }
    .clean-accessory {
        width: 132px;
        padding: 0.72rem;
    }
    .clean-packaging-box {
        width: 160px;
        height: 112px;
    }
    .accessory-crystal {
        right: 28%;
        bottom: 2%;
    }
}

/* --- HERO EU/NA PRECISION MANUFACTURING OVERRIDE V6 --- */
.hero-clean-factory {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 56%, rgba(241,245,249,0.92) 100%);
    padding: 6.8rem 0 5.4rem;
    border-bottom: 1px solid rgba(203,213,225,0.72);
}

.hero-clean-factory::before {
    background-image: linear-gradient(rgba(148,163,184,0.032) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,0.032) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.24), rgba(0,0,0,0.02));
}

.hero-clean-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    gap: 4.8rem;
}

.hero-clean-content h1 {
    max-width: 720px;
    font-size: clamp(3rem, 4.15vw, 4.65rem);
    line-height: 1.10;
    letter-spacing: -0.045em;
    margin-bottom: 1.45rem;
}

.hero-clean-content p {
    max-width: 660px;
    font-size: clamp(1.04rem, 1.12vw, 1.18rem);
    line-height: 1.82;
    color: #42526a;
}

.hero-clean-actions .btn-primary {
    box-shadow: 0 14px 32px rgba(7,21,34,0.12);
}

.btn-clean-whatsapp {
    background: #ffffff;
    color: var(--navy-900);
    border: 1px solid rgba(100,116,139,0.28);
    box-shadow: none;
}

.btn-clean-whatsapp:hover {
    background: #f8fafc;
    border-color: rgba(59,130,246,0.42);
}

.hero-clean-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
    max-width: 620px;
}

.hero-clean-trust span {
    justify-content: flex-start;
    min-height: 3rem;
    padding: 0.72rem 0.9rem;
    border-radius: 0.85rem;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(203,213,225,0.82);
    color: #334155;
    box-shadow: 0 8px 22px rgba(15,32,39,0.035);
}

.clean-product-visual {
    min-height: 535px;
    padding: 1.55rem;
    border-radius: 1.65rem;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(203,213,225,0.88);
    box-shadow: 0 22px 56px rgba(15,32,39,0.08);
}

.clean-product-visual::before {
    inset: 1.1rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(226,232,240,0.9);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.55), rgba(241,245,249,0.30));
}

.clean-product-visual::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 4.8rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148,163,184,0.55), transparent);
    z-index: 2;
}

.clean-visual-label {
    color: #64748b;
}

.clean-product-stage {
    inset: 4.2rem 2.1rem 2rem;
}

.clean-main-pen {
    left: 48%;
    top: 46%;
    width: 88px;
    height: 405px;
    transform: translate(-50%, -50%) rotate(-6deg);
    background: linear-gradient(90deg, #cbd5e1 0%, #ffffff 24%, #eff6ff 46%, #bfdbfe 62%, #94a3b8 100%);
    border: 1px solid rgba(100,116,139,0.22);
    box-shadow: 0 28px 48px rgba(15,32,39,0.16), inset 12px 0 20px rgba(255,255,255,0.75), inset -12px 0 18px rgba(51,65,85,0.14);
}

.clean-packaging-box {
    right: 4%;
    bottom: 7%;
    background: linear-gradient(145deg, #ffffff, #eff6ff);
    border: 1px solid rgba(147,197,253,0.45);
    box-shadow: 0 16px 34px rgba(15,32,39,0.08);
}

.clean-accessory {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(203,213,225,0.88);
    box-shadow: 0 12px 28px rgba(15,32,39,0.055);
}

.clean-accessory span {
    background: linear-gradient(90deg, #f1f5f9, #ffffff, #dbeafe);
    border-color: rgba(147,197,253,0.22);
}

.accessory-cartridge { left: 3%; top: 10%; }
.accessory-stamp { right: 5%; top: 10%; }
.accessory-reservoir { left: 5%; bottom: 14%; }
.accessory-crystal { right: 34%; bottom: 4%; }

@media (max-width: 1180px) {
    .hero-clean-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-clean-content h1 {
        font-size: clamp(2.55rem, 10vw, 3.35rem);
    }
    .hero-clean-trust {
        grid-template-columns: 1fr;
    }
    .clean-product-visual {
        min-height: 560px;
    }
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE V6 — CLEAN PRECISION MANUFACTURING
═══════════════════════════════════════════════════ */

/* ── AI image notice banner ─────────────────────── */
.v6-ai-notice {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(251,191,36,0.92);
  color: #78350f;
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
  padding: .32rem .5rem;
  letter-spacing: .04em;
}

/* ── Hero ───────────────────────────────────────── */
.v6-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 7rem 0 5.8rem;
  border-bottom: 1px solid #e2e8f0;
}
.v6-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: 4.8rem;
  align-items: center;
}
.v6-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--accent-blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.v6-eyebrow::before { content: ''; width: 2.2rem; height: 1px; background: currentColor; }
.v6-hero-text h1 {
  font-size: clamp(3rem, 4.1vw, 4.55rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin-bottom: 1.35rem;
  max-width: 720px;
}
.v6-hero-text p {
  font-size: clamp(1.02rem, 1.1vw, 1.16rem);
  line-height: 1.8;
  color: #42526a;
  max-width: 640px;
  margin-bottom: 2rem;
}
.v6-cta-row {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.v6-btn-secondary {
  background: #ffffff;
  color: var(--primary-color);
  border: 1px solid rgba(15,32,39,.20);
  box-shadow: none;
}
.v6-btn-secondary:hover { background: var(--bg-gray); }
.v6-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  max-width: 520px;
}
.v6-trust-card {
  display: flex;
  align-items: center;
  gap: .72rem;
  padding: .78rem 1rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 16px rgba(11,31,51,.04);
  font-size: .84rem;
  font-weight: 750;
  color: var(--primary-color);
}
.v6-trust-icon { font-size: 1.1rem; flex-shrink: 0; }
.v6-hero-visual {
  position: relative;
  border-radius: 1.55rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 24px 60px rgba(11,31,51,.10);
  background: #f8fafc;
}
.v6-hero-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ── Capability Bar ─────────────────────────────── */
.v6-cap-bar {
  background: var(--primary-color);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.v6-cap-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.v6-cap-item {
  padding: 1.2rem;
  text-align: center;
  color: #cbd5e1;
  font-size: .86rem;
  font-weight: 750;
  border-right: 1px solid rgba(255,255,255,.10);
}
.v6-cap-item:last-child { border-right: none; }

/* ── Buyer selection ────────────────────────────── */
.v6-section-head { max-width: 860px; margin-bottom: 3rem; }
.v6-section-head p { font-size: 1.06rem; color: var(--text-light); max-width: 720px; line-height: 1.75; margin-top: .7rem; }
.v6-buyer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.v6-buyer-card {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.5rem 1.35rem;
  border-radius: 1.2rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(11,31,51,.05);
  text-decoration: none;
  transition: .22s;
  cursor: pointer;
}
.v6-buyer-card:hover { transform: translateY(-4px); border-color: var(--accent-blue); box-shadow: 0 20px 44px rgba(59,130,246,.10); }
.v6-buyer-icon { font-size: 1.55rem; }
.v6-buyer-card h3 { font-size: 1rem; font-weight: 800; color: var(--primary-color); margin: 0; }
.v6-buyer-card p { font-size: .86rem; color: var(--text-light); margin: 0; line-height: 1.55; }

/* ── Product overview ───────────────────────────── */
.v6-bg-soft { background: var(--bg-gray); }
.v6-product-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.v6-product-overview-visual {
  position: relative;
  border-radius: 1.45rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 24px 60px rgba(11,31,51,.09);
  background: #f8fafc;
}
.v6-overview-img { display: block; width: 100%; height: auto; object-fit: cover; }
.v6-product-overview-text h2 { margin-bottom: 1rem; }
.v6-product-overview-text p { color: var(--text-light); font-size: 1.06rem; line-height: 1.78; margin-bottom: 1.6rem; }
.v6-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.v6-product-tags span {
  padding: .52rem .9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  font-size: .84rem;
  font-weight: 750;
  color: var(--primary-color);
}

/* ── Featured solutions ─────────────────────────── */
.v6-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.v6-solution-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.45rem;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(11,31,51,.06);
  display: flex;
  flex-direction: column;
}
.v6-solution-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f1f5f9;
}
.v6-solution-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v6-solution-body {
  padding: 1.55rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.v6-solution-body h3 { font-size: 1.18rem; margin-bottom: .7rem; }
.v6-solution-body > p { font-size: .92rem; color: var(--text-light); margin-bottom: 1.1rem; line-height: 1.65; }
.v6-solution-meta {
  display: grid;
  gap: .45rem;
  margin-bottom: 1.4rem;
  font-size: .84rem;
  color: var(--text-light);
}
.v6-solution-meta strong { color: var(--primary-color); }
.v6-rfq-btn { width: 100%; margin-top: auto; }

/* ── QC timeline ────────────────────────────────── */
.v6-qc-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 1.35rem;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(11,31,51,.06);
  margin-bottom: 2rem;
}
.v6-qc-step {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid #e2e8f0;
  position: relative;
}
.v6-qc-step:last-child { border-right: none; }
.v6-qc-num {
  color: var(--accent-blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  margin-bottom: 2rem;
}
.v6-qc-step h4 { font-size: 1rem; margin-bottom: .5rem; }
.v6-qc-step p { font-size: .85rem; color: var(--text-light); line-height: 1.52; }

/* ── QC image row ───────────────────────────────── */
.v6-qc-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.v6-qc-img-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 36px rgba(11,31,51,.07);
  background: #f8fafc;
}
.v6-qc-img-card img { display: block; width: 100%; height: 220px; object-fit: cover; }
.v6-qc-img-label {
  padding: .9rem 1.1rem;
  font-size: .85rem;
  font-weight: 750;
  color: var(--primary-color);
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}
.v6-reorder-note {
  padding: 1.3rem 1.5rem;
  border-radius: 1rem;
  background: rgba(59,130,246,.07);
  border: 1px solid rgba(59,130,246,.16);
  color: #334155;
  line-height: 1.7;
  font-size: .95rem;
}

/* ── RFQ layout ─────────────────────────────────── */
.v6-rfq-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.v6-rfq-visual {
  position: relative;
  border-radius: 1.45rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 22px 56px rgba(11,31,51,.09);
  background: #f8fafc;
  position: sticky;
  top: 6.5rem;
}
.v6-rfq-visual img { display: block; width: 100%; height: auto; object-fit: cover; }
.v6-rfq-img-label {
  padding: .9rem 1.1rem;
  font-size: .8rem;
  color: #64748b;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  line-height: 1.55;
}
.v6-rfq-form-wrap h2 { margin-bottom: .7rem; }
.v6-rfq-form-wrap > p { color: var(--text-light); margin-bottom: 1.8rem; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1180px) {
  .v6-hero-grid, .v6-product-overview-grid, .v6-rfq-layout { grid-template-columns: 1fr; }
  .v6-buyer-grid { grid-template-columns: repeat(3, 1fr); }
  .v6-cap-list { grid-template-columns: repeat(3, 1fr); }
  .v6-qc-timeline { grid-template-columns: repeat(3, 1fr); }
  .v6-qc-step:nth-child(3) { border-right: none; }
  .v6-rfq-visual { position: relative; top: auto; }
  .v6-solution-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .v6-hero { padding: 5rem 0 4rem; }
  .v6-hero-text h1 { font-size: clamp(2.55rem, 10vw, 3.45rem); }
  .v6-cta-row { flex-direction: column; }
  .v6-cta-row .btn { width: 100%; }
  .v6-trust-grid, .v6-qc-timeline, .v6-qc-img-row, .v6-solution-grid { grid-template-columns: 1fr; }
  .v6-buyer-grid { grid-template-columns: 1fr 1fr; }
  .v6-cap-list { grid-template-columns: 1fr; }
  .v6-cap-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.10); min-height: 0; }
  .v6-qc-step { border-right: none; border-bottom: 1px solid #e2e8f0; }
  .v6-qc-step:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════════
   EDITORIAL LAYOUT V7 — CLEAN PRECISION MANUFACTURING
   Large sections · Whitespace · No card grids
═══════════════════════════════════════════════════════ */

/* ── Global resets for editorial feel ─────────────── */
.ed-section { padding: 7rem 0; }
.ed-section-light { background: #f8fafc; }

.ed-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--accent-blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.ed-section-kicker::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: currentColor;
}

/* ── Hero ──────────────────────────────────────────── */
.ed-hero {
  padding: 7.5rem 0 6.5rem;
  background: #ffffff;
  overflow: hidden;
}

.ed-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 5rem;
  align-items: center;
}

.ed-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--accent-blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.ed-eyebrow::before { content: ''; width: 2rem; height: 1px; background: currentColor; }

.ed-hero-text h1 {
  font-size: clamp(2.85rem, 4.2vw, 4.65rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin-bottom: 1.35rem;
  max-width: 680px;
  color: #0b1f33;
}

.ed-sub {
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.82;
  color: #42526a;
  max-width: 580px;
  margin-bottom: 2.2rem;
}

.ed-cta-row {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.ed-btn-ghost {
  background: transparent;
  color: #0b1f33;
  border: 1px solid rgba(11,31,51,.22);
}
.ed-btn-ghost:hover { background: #f8fafc; }

/* Trust row — inline, no cards */
.ed-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.ed-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  font-weight: 700;
  color: #334155;
}
.ed-trust-dot {
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--accent-blue);
  flex-shrink: 0;
}

/* Hero image — large, borderless, integrated */
.ed-hero-image {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #f1f5f9;
}
.ed-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ── Buyer path bar ────────────────────────────────── */
.ed-buyer-bar {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
}
.ed-buyer-bar .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 4.4rem;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
}
.ed-buyer-bar-label {
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #64748b;
  white-space: nowrap;
  padding: 1.1rem 0;
  border-right: 1px solid #e2e8f0;
  padding-right: 2rem;
}
.ed-buyer-links {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  flex-wrap: wrap;
}
.ed-buyer-link {
  display: flex;
  align-items: center;
  gap: .48rem;
  padding: 1.1rem 1.35rem;
  font-size: .86rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  border-right: 1px solid #e2e8f0;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.ed-buyer-link:last-child { border-right: none; }
.ed-buyer-link:hover { background: #f1f5f9; color: #0b1f33; }
.ed-buyer-icon { font-size: 1rem; }
.ed-buyer-name { font-weight: 750; }

/* ── Editorial split (product overview) ────────────── */
.ed-editorial-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 5.5rem;
  align-items: center;
}

.ed-editorial-text h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.ed-editorial-text p {
  font-size: 1.06rem;
  color: #42526a;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  max-width: 520px;
}
.ed-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.8rem;
}
.ed-tag {
  padding: .48rem .88rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  font-size: .82rem;
  font-weight: 750;
  color: #334155;
  background: #ffffff;
}
.ed-text-link {
  font-size: .9rem;
  font-weight: 800;
  color: var(--accent-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.ed-text-link:hover { text-decoration: underline; }

.ed-editorial-image {
  border-radius: 1.35rem;
  overflow: hidden;
  background: #eef2f7;
  box-shadow: 0 24px 60px rgba(11,31,51,.09);
}
.ed-editorial-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ── Featured solutions ─────────────────────────────── */
.ed-section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}
.ed-section-cta { white-space: nowrap; }

/* Main featured block (F20/M30) — wide editorial */
.ed-featured-main {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  border-radius: 1.45rem;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  margin-bottom: 1.4rem;
  min-height: 420px;
}
.ed-featured-main-image {
  overflow: hidden;
  background: #eef2f7;
}
.ed-featured-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ed-featured-main-text {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ed-solution-kicker {
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: .85rem;
}
.ed-featured-main-text h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  letter-spacing: -.03em;
  margin-bottom: 1rem;
  color: #0b1f33;
}
.ed-featured-main-text p {
  font-size: .98rem;
  color: #42526a;
  line-height: 1.78;
  margin-bottom: 1.4rem;
}
.ed-solution-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  gap: .45rem;
}
.ed-solution-list li {
  font-size: .88rem;
  color: #475569;
  padding-left: 1.1rem;
  position: relative;
}
.ed-solution-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58em;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: #cbd5e1;
}

/* Supporting pair (NK3 + NH4) — side by side */
.ed-featured-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.ed-featured-secondary {
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
}
.ed-featured-secondary-image {
  height: 260px;
  overflow: hidden;
  background: #eef2f7;
}
.ed-featured-secondary-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ed-featured-secondary-text {
  padding: 1.8rem 2rem 2rem;
}
.ed-featured-secondary-text h3 {
  font-size: 1.25rem;
  letter-spacing: -.025em;
  margin-bottom: .7rem;
  color: #0b1f33;
}
.ed-featured-secondary-text p {
  font-size: .9rem;
  color: #42526a;
  line-height: 1.72;
  margin-bottom: 1.1rem;
}

/* ── QC section ─────────────────────────────────────── */
.ed-qc-header { max-width: 820px; margin-bottom: 3rem; }
.ed-qc-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: .85rem;
}
.ed-qc-intro { font-size: 1.02rem; color: #42526a; line-height: 1.8; }

/* Two-image split — primary large, secondary smaller */
.ed-qc-image-pair {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  border-radius: 1.35rem;
  overflow: hidden;
}
.ed-qc-img-primary,
.ed-qc-img-secondary {
  overflow: hidden;
  background: #dde6ef;
}
.ed-qc-img-primary { border-radius: 1.35rem 0 0 1.35rem; }
.ed-qc-img-secondary { border-radius: 0 1.35rem 1.35rem 0; }
.ed-qc-img-primary img,
.ed-qc-img-secondary img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

/* Clean horizontal QC timeline */
.ed-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 2.2rem 2.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.2rem;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.ed-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  flex: 1;
  min-width: 110px;
  text-align: center;
}
.ed-timeline-num {
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--accent-blue);
}
.ed-timeline-label {
  font-size: .84rem;
  font-weight: 750;
  color: #0b1f33;
  line-height: 1.35;
}
.ed-timeline-arrow {
  color: #cbd5e1;
  font-size: 1.2rem;
  flex-shrink: 0;
  padding: 0 .5rem;
  margin-bottom: .5rem;
}

/* ── Technical spec ─────────────────────────────────── */
.ed-spec-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 4.5rem;
  align-items: start;
}
.ed-spec-intro h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
  letter-spacing: -.04em;
  line-height: 1.12;
  margin-bottom: .85rem;
}
.ed-spec-intro p { font-size: .98rem; color: #42526a; line-height: 1.78; }
.ed-spec-table-wrap {
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(11,31,51,.055);
}
.ed-spec-table { width: 100%; border-collapse: collapse; }
.ed-spec-table th,
.ed-spec-table td {
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
  font-size: .95rem;
}
.ed-spec-table th {
  width: 36%;
  background: #f8fafc;
  color: #0b1f33;
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.ed-spec-table td { color: #334155; }
.ed-spec-table tr:last-child th,
.ed-spec-table tr:last-child td { border-bottom: none; }
.ed-spec-note {
  padding: 1.1rem 1.4rem;
  font-size: .84rem;
  color: #64748b;
  line-height: 1.65;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

/* ── RFQ ─────────────────────────────────────────────── */
.ed-rfq-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}
.ed-rfq-image {
  border-radius: 1.35rem;
  overflow: hidden;
  background: #eef2f7;
  box-shadow: 0 22px 56px rgba(11,31,51,.09);
  position: sticky;
  top: 6rem;
}
.ed-rfq-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ed-rfq-form h2 { margin-bottom: .7rem; }
.ed-rfq-form > p { color: #42526a; margin-bottom: 1.8rem; font-size: .98rem; line-height: 1.72; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1180px) {
  .ed-hero-inner,
  .ed-editorial-split,
  .ed-spec-layout,
  .ed-rfq-layout { grid-template-columns: 1fr; gap: 3rem; }

  .ed-featured-main { grid-template-columns: 1fr; min-height: auto; }
  .ed-featured-main-image { height: 320px; }
  .ed-featured-main-text { padding: 2.5rem 2rem; }

  .ed-rfq-image { position: relative; top: auto; }

  .ed-qc-image-pair { grid-template-columns: 1fr; border-radius: 1.35rem; }
  .ed-qc-img-primary { border-radius: 1.35rem 1.35rem 0 0; }
  .ed-qc-img-secondary { border-radius: 0 0 1.35rem 1.35rem; }
  .ed-qc-img-primary img,
  .ed-qc-img-secondary img { min-height: 260px; }

  .ed-buyer-bar .container { flex-direction: column; align-items: flex-start; padding-top: .8rem; padding-bottom: .8rem; }
  .ed-buyer-bar-label { border-right: none; padding-right: 0; padding-bottom: .5rem; }
  .ed-buyer-links { width: 100%; }
}

@media (max-width: 768px) {
  .ed-section { padding: 4.5rem 0; }
  .ed-hero { padding: 5rem 0 4rem; }
  .ed-hero-text h1 { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .ed-cta-row { flex-direction: column; }
  .ed-cta-row .btn { width: 100%; }
  .ed-trust-row { gap: .4rem 1rem; }
  .ed-section-head-row { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .ed-featured-pair { grid-template-columns: 1fr; }
  .ed-buyer-links { flex-wrap: wrap; }
  .ed-buyer-link { border-right: none; border-bottom: 1px solid #e2e8f0; width: 100%; }
  .ed-buyer-link:last-child { border-bottom: none; }
  .ed-timeline { padding: 1.5rem 1.2rem; gap: 0; }
  .ed-timeline-step { min-width: 88px; }
  .ed-timeline-arrow { font-size: 1rem; padding: 0 .25rem; }
}

/* ═══════════════════════════════════════════════════════
   V8 — FINAL EDITORIAL LAYOUT (matched to approved screenshot)
═══════════════════════════════════════════════════════ */

/* ── Global section spacing ─────────────────────── */
.v8-section { padding: 6.5rem 0; }
.v8-bg-soft { background: #f8fafc; }
.v8-kicker {
  display: block;
  color: var(--accent-blue);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.v8-h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: #0b1f33;
  margin-bottom: 1.1rem;
}
.v8-tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.4rem 0 1.8rem; }
.v8-tag {
  padding: .42rem .85rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  font-size: .82rem;
  font-weight: 700;
  color: #334155;
  background: #fff;
}
.v8-text-link {
  color: var(--accent-blue);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}
.v8-text-link:hover { text-decoration: underline; }

/* ── Navigation extra button ────────────────────── */
.v8-nav-quote { font-size: .88rem; padding: .6rem 1.25rem; }

/* ── HERO ───────────────────────────────────────── */
.v8-hero {
  padding: 0;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid #e8edf3;
}
.v8-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 660px;
  align-items: center;
  gap: 0;
}
.v8-hero-text {
  padding: 8.5rem 4rem 8.5rem 0;
}
.v8-hero-h1 {
  font-size: clamp(2.55rem, 4.4vw, 5rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: #0b1f33;
  margin-bottom: 1.2rem;
  max-width: 680px;
}
.v8-hero-sub {
  font-size: clamp(.96rem, 1.1vw, 1.1rem);
  line-height: 1.78;
  color: #42526a;
  max-width: 560px;
  margin-bottom: 2rem;
}
.v8-hero-ctas {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
.v8-btn-ghost {
  background: transparent;
  color: #0b1f33;
  border: 1.5px solid rgba(11,31,51,.22);
}
.v8-btn-ghost:hover { background: #f8fafc; }

/* Trust bar — icon + text row, no cards */
.v8-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}
.v8-trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .84rem;
  font-weight: 700;
  color: #334155;
}
.v8-trust-icon {
  width: 1.65rem;
  height: 1.65rem;
  color: var(--accent-blue);
  flex-shrink: 0;
}

/* Hero image — flush to right edge of container, large */
.v8-hero-img-wrap {
  height: 100%;
  overflow: hidden;
  background: #edf2f7;
}
.v8-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center;
}

/* ── BUYER PATH BAR ─────────────────────────────── */
.v8-buyer-bar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.v8-buyer-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 3.8rem;
  padding-top: 0;
  padding-bottom: 0;
  flex-wrap: wrap;
}
.v8-buyer-label {
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
  color: #94a3b8;
  white-space: nowrap;
  padding: 1rem 1.6rem 1rem 0;
  border-right: 1px solid #e2e8f0;
  margin-right: .4rem;
}
.v8-buyer-links { display: flex; flex: 1; align-items: stretch; flex-wrap: wrap; }
.v8-buyer-link {
  display: flex;
  align-items: center;
  gap: .52rem;
  padding: 1rem 1.4rem;
  font-size: .86rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  border-right: 1px solid #e2e8f0;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.v8-buyer-link:last-child { border-right: none; }
.v8-buyer-link:hover { background: #f1f5f9; color: #0b1f33; }
.v8-bicon { width: 1.2rem; height: 1.2rem; flex-shrink: 0; }
.v8-bname { font-weight: 750; }

/* ── PRODUCT SYSTEM OVERVIEW ───────────────────── */
.v8-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: center;
}
.v8-overview-img-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #e8edf3;
  box-shadow: 0 20px 50px rgba(11,31,51,.09);
}
.v8-overview-img { display: block; width: 100%; height: auto; object-fit: cover; }
.v8-overview-text h2 { margin-bottom: 1rem; }
.v8-overview-text p { font-size: 1.02rem; color: #42526a; line-height: 1.8; margin-bottom: 0; }

/* ── FEATURED SOLUTIONS — 3-column ─────────────── */
.v8-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.2rem;
}
.v8-sol-card { display: flex; flex-direction: column; }
.v8-sol-img {
  height: 260px;
  overflow: hidden;
  border-radius: 1rem;
  background: #e8edf3;
  margin-bottom: 1.4rem;
}
.v8-sol-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v8-sol-body h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0b1f33;
  margin-bottom: .55rem;
}
.v8-sol-body p {
  font-size: .9rem;
  color: #42526a;
  line-height: 1.68;
  margin-bottom: 1rem;
}

/* ── QC SECTION ─────────────────────────────────── */
.v8-qc-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 5rem;
  align-items: start;
}
.v8-qc-img-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #dde6ef;
  box-shadow: 0 20px 50px rgba(11,31,51,.09);
}
.v8-qc-img { display: block; width: 100%; height: auto; min-height: 480px; object-fit: cover; }
.v8-qc-text h2 { margin-bottom: 1rem; }
.v8-qc-text > p { font-size: .98rem; color: #42526a; line-height: 1.8; margin-bottom: 2rem; }

/* QC timeline with circular icons */
.v8-timeline { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 0; }
.v8-tstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  flex: 1;
  min-width: 80px;
  text-align: center;
}
.v8-ticon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  box-shadow: 0 4px 12px rgba(11,31,51,.06);
}
.v8-ticon svg { width: 1.25rem; height: 1.25rem; }
.v8-tlabel {
  font-size: .76rem;
  font-weight: 750;
  color: #334155;
  line-height: 1.35;
}
.v8-tarrow {
  color: #cbd5e1;
  font-size: 1.1rem;
  padding: 0 .2rem;
  margin-top: .85rem;
  flex-shrink: 0;
}

/* ── TECHNICAL SPECIFICATION ────────────────────── */
.v8-spec-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
  margin-top: 1.8rem;
}
.v8-spec-table-wrap {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(11,31,51,.05);
}
.v8-spec-table { width: 100%; border-collapse: collapse; }
.v8-spec-table th,
.v8-spec-table td {
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid #e2e8f0;
  font-size: .92rem;
  text-align: left;
  vertical-align: top;
}
.v8-spec-table tr:last-child th,
.v8-spec-table tr:last-child td { border-bottom: none; }
.v8-spec-table th {
  background: #f8fafc;
  font-weight: 800;
  color: #0b1f33;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  width: 36%;
}
.v8-spec-table td { color: #334155; }
.v8-spec-img-wrap {
  border-radius: 1.1rem;
  overflow: hidden;
  background: #e8edf3;
}
.v8-spec-img { display: block; width: 100%; height: auto; object-fit: cover; }

/* ── RFQ ─────────────────────────────────────────── */
.v8-rfq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 4.5rem;
  align-items: start;
}
.v8-rfq-img-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #e8edf3;
  box-shadow: 0 20px 50px rgba(11,31,51,.09);
  position: sticky;
  top: 5.5rem;
}
.v8-rfq-img { display: block; width: 100%; height: auto; object-fit: cover; }
.v8-rfq-form-wrap .v8-h2 { margin-bottom: .6rem; }
.v8-rfq-intro { font-size: .96rem; color: #42526a; line-height: 1.72; margin-bottom: 1.8rem; }
.v8-rfq-submit { width: 100%; margin-top: .5rem; }

/* ── FOOTER v8 ──────────────────────────────────── */
.v8-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.v8-footer-logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: .9rem;
}
.v8-footer-brand p {
  font-size: .9rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.v8-footer-socials { display: flex; gap: .75rem; }
.v8-footer-socials a {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: color .18s, border-color .18s;
}
.v8-footer-socials a:hover { color: #fff; border-color: rgba(255,255,255,.5); }
.v8-footer-socials svg { width: 1rem; height: 1rem; }
.v8-footer-col h4 { color: #fff; font-size: .88rem; font-weight: 800; margin-bottom: 1rem; }
.v8-footer-col ul { list-style: none; padding: 0; }
.v8-footer-col li { margin-bottom: .65rem; }
.v8-footer-col a { color: #94a3b8; font-size: .88rem; text-decoration: none; transition: color .18s; }
.v8-footer-col a:hover { color: #fff; }
.v8-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: .75rem;
}
.v8-footer-bottom-links { display: flex; gap: 1.5rem; }
.v8-footer-bottom-links a { color: #64748b; text-decoration: none; }
.v8-footer-bottom-links a:hover { color: #94a3b8; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1240px) {
  .v8-hero-inner { grid-template-columns: 1fr 1fr; }
  .v8-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 1080px) {
  .v8-hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .v8-hero-text { padding: 5rem 0 3rem; }
  .v8-hero-img-wrap { height: 420px; }
  .v8-hero-img { min-height: 0; }
  .v8-overview-grid,
  .v8-qc-layout,
  .v8-spec-layout,
  .v8-rfq-layout { grid-template-columns: 1fr; gap: 2.8rem; }
  .v8-rfq-img-wrap { position: relative; top: auto; }
  .v8-solutions-grid { grid-template-columns: 1fr; }
  .v8-sol-img { height: 320px; }
}
@media (max-width: 768px) {
  .v8-section { padding: 4.5rem 0; }
  .v8-hero-h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .v8-hero-ctas { flex-direction: column; }
  .v8-hero-ctas .btn { width: 100%; }
  .v8-trust-bar { gap: 1rem; }
  .v8-buyer-inner { flex-direction: column; align-items: flex-start; padding-top: .8rem; padding-bottom: .8rem; }
  .v8-buyer-label { border-right: none; padding-bottom: .4rem; margin-bottom: .4rem; border-bottom: 1px solid #e2e8f0; width: 100%; }
  .v8-buyer-links { width: 100%; flex-direction: column; }
  .v8-buyer-link { border-right: none; border-bottom: 1px solid #e2e8f0; }
  .v8-buyer-link:last-child { border-bottom: none; }
  .v8-timeline { gap: .8rem; }
  .v8-tstep { min-width: 70px; }
  .v8-tarrow { font-size: .9rem; margin-top: .7rem; }
  .v8-footer-grid { grid-template-columns: 1fr 1fr; }
  .v8-footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .v8-solutions-grid { gap: 1.5rem; }
  .v8-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
