:root {
    /* Legacy (kept for compatibility; prefer --primary / --primary-dark below) */
    --primary-legacy: #FF6B35;
    --primary-legacy-dark: #D94A1A;
    --primary: #2563EB; /* Electric Royal Blue */
    --primary-dark: #1D4ED8; /* Deep Royal */
    /*--primary: #10B981; /* Emerald Green */
    /*--primary-dark: #059669; /* Deep Emerald */    
    /*--primary: #FACC15; /* Tech Gold */
    /*--primary-dark: #CA8A04; /* Deep Gold */    
    --secondary: #004E89;
    --secondary-dark: #003559;
    --accent: #00D9FF;
    --dark: #0A0E1A;
    --mid-dark: #1A1F2E;
    --grey: #64748B;
    --light-grey: #CBD5E1;
    --off-white: #F8FAFC;
    --success: #10B981;
    --electric-blue: #0066FF;
    --deep-navy: #0A1628;
    --bright-cyan: #00E5FF;
    --energy-yellow: #FFD700;
    --steel-gray: #8B9DC3;
    --pulse-green: #00FF88;    
    --years-in: '38';
}

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

body {
    font-family: 'Barlow', sans-serif;
    background: var(--dark);
    color: var(--off-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Accessibility helpers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    transform: translateY(-200%);
    background: var(--off-white);
    color: var(--dark);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    z-index: 2000;
}
.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0; /* default: flush to top; shifted down only when launch bar exists */
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.12);
    transition: top 0.4s ease, background 0.3s, box-shadow 0.3s;
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
}

.logo img { display: block; height: auto; }

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--light-grey);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

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

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



a:visited { color: var(--accent);}

.dark-link a:link { color: var(--energy-yellow)}

.dark-link a:visited { color: var(--energy-yellow)}

.dark-link a:active { color: var(--energy-yellow)}

.dark-link a:hover { color: var(--energy-yellow)}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid var(--primary);
}

.cta-button:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 78, 137, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridFloat 20s linear infinite;
}

@keyframes gridFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

.hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-content h1 .accent {
    color: var(--accent);
}

.hero-content .subtitle {
    font-size: 1.4rem;
    color: var(--light-grey);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-primary, .btn-secondary {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.stat-card {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.14);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-card .number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 0.3rem;
}

.stat-card .label {
    font-size: 0.9rem;
    color: var(--light-grey);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Solutions Section */
.solutionsX {
    padding: 8rem 2rem;
    position: relative;
}

.solutions {
    position: relative;
    padding: 8rem 5%;
    background: linear-gradient(180deg, var(--deep-navy) 0%, #0D1E35 100%);
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.section-label {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--light-grey);
    font-weight: 300;
}

.section-tag {
    display: inline-block;
    color: var(--bright-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--bright-cyan);
    border-radius: 50px;
}

.solutions-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: linear-gradient(135deg, var(--mid-dark) 0%, rgba(26, 31, 46, 0.8) 100%);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.15);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.solution-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--off-white);
}

.solution-card p {
    color: var(--light-grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-features li {
    padding: 0.5rem 0;
    color: var(--light-grey);
    display: flex;
    align-items: start;
    gap: 0.8rem;
}

.solution-features li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.solution-features .unit { text-transform: none; }

.solution-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.solution-link:hover {
    gap: 1rem;
}

/* Industries Section */
.industries {
    padding: 8rem 2rem;
    background: var(--mid-dark);
    position: relative;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.industries-grid {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.12);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.industry-card:hover {
    background: rgba(0, 217, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.industry-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.3);
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.industry-card p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Technology Section */
.technology {
    padding: 8rem 2rem;
    background: var(--dark);
}

.tech-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-visual {
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.2), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-visual::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px dashed rgba(0, 217, 255, 0.3);
    border-radius: 8px;
}

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

.spec-item {
    background: rgba(26, 31, 46, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.spec-item .spec-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 0.5rem;
}

.spec-item .spec-label {
    font-size: 0.9rem;
    color: var(--light-grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tech-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.tech-content p {
    color: var(--light-grey);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.tech-features {
    list-style: none;
    margin-bottom: 3rem;
}

.tech-features li {
    padding: 1rem 0;
    color: var(--light-grey);
    font-size: 1.05rem;
    display: flex;
    align-items: start;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    border-radius: 50%;
}

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

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.4rem;
    color: var(--light-grey);
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Contact Maccor */
.form-section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.req { color: var(--primary); }

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkbox-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(10, 14, 26, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-card:hover {
    border-color: var(--accent);
    background: rgba(0, 217, 255, 0.05);
}

.checkbox-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkbox-card.is-preselected { outline: 2px solid var(--maccor-accent, #0a7); outline-offset: 2px; }

.cb-label strong {
    display: block;
    color: var(--off-white);
    font-size: 0.95rem;
}

.cb-label span {
    font-size: 0.75rem;
    color: var(--steel-gray);
}

.checkbox-card input:checked ~ .cb-label strong {
    color: var(--accent);
}

.checkbox-card input:checked {
    border-color: var(--accent);
}

/* Footer */
footer {
    background: var(--mid-dark);
    padding: 5rem 2rem 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.10);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
}

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

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

.footer-section ul li a {
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-bottomX {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--grey);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    color: var(--steel-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .tech-showcase {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }

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

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Mobile nav */
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.nav-toggle-bars {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--off-white);
    position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--off-white);
}

.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }

@media (max-width: 768px) {
    .nav-toggle { display: inline-flex; }

    nav .container {
        padding: 1rem 1.25rem;
    }

    .nav-links.is-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 1rem;
        background: rgba(10, 14, 26, 0.98);
        padding: 1.25rem;
        border-bottom: 1px solid rgba(0, 217, 255, 0.12);
    }

    .nav-links.is-open a { font-size: 1rem; }
    .nav-links.is-open .cta-button { width: 100%; justify-content: center; }
}

/* FAQ */
.faq {
    padding: 6rem 2rem 8rem;
    background: var(--mid-dark);
    position: relative;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.faq-item {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.12);
    border-radius: 12px;
    padding: 1.25rem 1.25rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
}

.faq-item[open] summary::after { content: '–'; }

.faq-item p {
    margin-top: 0.9rem;
    color: var(--light-grey);
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; }
    .hero-grid { animation: none; }
    nav { animation: none; }
}


/* --- Site refresh additions (solutions interface) --- */
.page-hero {
    padding: 8rem 5% 5rem;
    padding-top: calc(89px + 2rem); /* nav + breathing room by default */
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.08) 0%, transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.10) 0%, transparent 55%),
                linear-gradient(180deg, var(--deep-navy) 0%, var(--dark) 100%);
    border-bottom: 1px solid rgba(0, 217, 255, 0.08);
}
.page-hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.breadcrumbs {
    color: var(--steel-gray);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}
.breadcrumbs a { color: var(--steel-gray); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }

.page-hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.page-hero p {
    max-width: 70ch;
    color: var(--light-grey);
    font-size: 1.2rem;
    font-weight: 300;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: var(--bright-cyan);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}
.badge {
    border: 1px solid rgba(0, 217, 255, 0.25);
    color: var(--light-grey);
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.9rem;
    background: rgba(26, 31, 46, 0.4);
}

.split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 5%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
}
.panel {
    background: rgba(26, 31, 46, 0.55);
    border: 1px solid rgba(0, 217, 255, 0.12);
    border-radius: 14px;
    padding: 2.25rem;
    backdrop-filter: blur(10px);
}
.panel h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 1rem;
}
.panel ul { list-style: none; }
.panel li { padding: 0.65rem 0; color: var(--light-grey); border-bottom: 1px solid rgba(255,255,255,0.05); }
.panel li:last-child { border-bottom: none; }
.panel li strong { color: var(--off-white); }

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 107, 53, 0.25);
    background: rgba(10, 14, 26, 0.35);
    color: var(--light-grey);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.25s;
}
.pill:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.card-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 7rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.mini-card {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.85) 0%, rgba(10, 14, 26, 0.65) 100%);
    border: 1px solid rgba(0, 217, 255, 0.10);
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}
.mini-card:hover { transform: translateY(-6px); border-color: rgba(0, 217, 255, 0.35); box-shadow: 0 18px 55px rgba(0, 217, 255, 0.10); }
.mini-card .topline {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.8rem;
}
.mini-card .topline .tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--steel-gray);
    text-transform: uppercase;
}
.mini-card h3 { font-size: 1.55rem; margin-bottom: 0.75rem; }
.mini-card p { color: var(--light-grey); margin-bottom: 1.25rem; }
.mini-card a { text-decoration: none; }
.mini-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}
.mini-card .meta span {
    font-size: 0.85rem;
    color: var(--steel-gray);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(10,14,26,0.25);
}
.mini-card .actions {
    display: flex;
    gap: 0.9rem;
    align-items: center;
}
.link-primary {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.9rem;
}
.link-primary:hover { color: var(--bright-cyan); }

.table-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 7rem;
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 31, 46, 0.55);
    border: 1px solid rgba(0, 217, 255, 0.12);
    border-radius: 14px;
    overflow: hidden;
}
.spec-table th, .spec-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: left;
    color: var(--light-grey);
}
.spec-table th {
    color: var(--off-white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
    background: rgba(10, 14, 26, 0.35);
}
.spec-table tr:last-child td { border-bottom: none; }

@media (max-width: 1024px) {
    .split { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 3rem; }
}
@media (max-width: 768px) {
    .page-hero { padding-top: calc(89px + 1rem); }
    .page-hero h1 { font-size: 2.35rem; }
}

/* Contact page */
.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 7rem;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2rem;
}

.contact-intro {
    color: var(--light-grey);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.notice-inline {
    margin-bottom: 1.5rem;
    color: var(--light-grey);
}

.notice-inline a {
    color: var(--accent);
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

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

.form-grid.form-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.field,
.field-full {
    display: grid;
    gap: 0.45rem;
}

.field-full {
    grid-column: 1 / -1;
}

.contact-form label {
    color: var(--off-white);
    font-weight: 700;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    background: rgba(10, 14, 26, 0.72);
    border: 1px solid rgba(0, 217, 255, 0.18);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    color: var(--off-white);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.10);
    background: rgba(10, 14, 26, 0.88);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.checkbox-panel {
    margin-top: 0.25rem;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 217, 255, 0.12);
    background: rgba(10, 14, 26, 0.36);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--light-grey);
}

.checkbox-item input[type="checkbox"] {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.12rem;
    accent-color: var(--primary);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.25rem;
}

/* Submit button — override the generic .contact-form input field styling
   (full-width, panel background, 12px radius) so it reads as a button. */
.contact-form input[type="submit"],
.contact-form button[type="submit"] {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease,
                transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.contact-form input[type="submit"]:focus-visible,
.contact-form button[type="submit"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.25);
}

.contact-aside {
    display: grid;
    gap: 1.25rem;
    align-content: start;
}

.contact-aside p,
.contact-aside li {
    color: var(--light-grey);
}

.contact-aside a {
    color: var(--accent);
}

.contact-points {
    list-style: none;
}

.contact-points li {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-points li:last-child {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-layout {
        padding: 0 1.25rem 5rem;
    }

    .form-grid,
    .form-grid.form-grid-3,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .form-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* --- Contact Page Form Enhancements --- */

/* Section Labeling (Contact Details, Products, etc) */
.form-section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.15);
    grid-column: 1 / -1; /* Ensures it spans both columns in the grid */
}

.req { color: var(--primary); margin-left: 2px; }

/* The Checkbox Card Grid */
.checkbox-container {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
}

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

.checkbox-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: rgba(10, 14, 26, 0.4);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide the native checkbox but keep it functional */
.checkbox-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Label Styling inside Cards */
.cb-label {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cb-label strong {
    display: block;
    color: var(--off-white);
    font-size: 1rem;
    transition: color 0.3s;
}

.cb-label span {
    font-size: 0.75rem;
    color: var(--steel-gray);
    font-family: 'JetBrains Mono', monospace;
}

/* Interaction States */
.checkbox-card:hover {
    border-color: var(--accent);
    background: rgba(0, 217, 255, 0.05);
    transform: translateY(-2px);
}

/* State when checked */
.checkbox-card input:checked + .cb-custom + .cb-label strong {
    color: var(--accent);
}

.checkbox-card:has(input:checked) {
    border-color: var(--accent);
    background: rgba(0, 217, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.1);
}

/* Add a small indicator for checked state */
.checkbox-card::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 12px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 900;
    opacity: 0;
    transition: opacity 0.2s;
}

.checkbox-card:has(input:checked)::after {
    opacity: 1;
}

/* Responsive tweaks for the form */
@media (max-width: 768px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Knowledge Center article / landing page refresh --- */
.highlight { color: var(--primary); }

.content-section {
    background: var(--dark);
    padding: 4rem 5% 6rem;
}

.content-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.article-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 2rem;
}

.article-body,
.article-aside .panel,
.quick-links-panel {
    background: rgba(26, 31, 46, 0.58);
    border: 1px solid rgba(0, 217, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.article-body {
    padding: 2.25rem;
}

.article-body > *:first-child { margin-top: 0; }
.article-body > *:last-child { margin-bottom: 0; }
.article-body p,
.article-body li,
.article-body td,
.article-body th {
    color: var(--light-grey);
}
.article-body p,
.article-body ul,
.article-body ol,
.article-body table,
.article-body .callout,
.article-body h2,
.article-body h3 {
    margin-bottom: 1.25rem;
}
.article-body h2 {
    margin-top: 2.25rem;
    font-size: 2rem;
    color: var(--off-white);
    letter-spacing: -0.02em;
}
.article-body h3 {
    margin-top: 1.75rem;
    font-size: 1.25rem;
    color: var(--off-white);
}
.article-body a {
    color: var(--accent);
}
.article-body ul,
.article-body ol {
    padding-left: 1.25rem;
}
.article-body li + li {
    margin-top: 0.55rem;
}
.article-body table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(0, 217, 255, 0.12);
}
.article-body th,
.article-body td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}
.article-body th {
    color: var(--off-white);
    background: rgba(10, 14, 26, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
}
.article-body tr:last-child td { border-bottom: none; }
.article-body .callout {
    padding: 1.15rem 1.25rem;
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    background: rgba(0, 217, 255, 0.06);
}
.article-body .small {
    font-size: 0.95rem;
    color: var(--steel-gray);
}

.article-aside {
    display: grid;
    gap: 1.25rem;
    align-content: start;
}
.article-aside .panel,
.quick-links-panel {
    padding: 1.5rem;
}
.article-aside .panel h3,
.quick-links-panel h3 {
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.article-aside .panel p,
.quick-links-panel p,
.article-aside .panel li,
.quick-links-panel li {
    color: var(--light-grey);
}
.article-nav-list,
.topic-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.article-nav-list li + li,
.topic-list li + li { margin-top: 0.75rem; }
.article-nav-list a,
.topic-list a {
    color: var(--off-white);
    text-decoration: none;
}
.article-nav-list a:hover,
.topic-list a:hover {
    color: var(--accent);
}
.article-nav-list span,
.topic-list span {
    display: block;
    font-size: 0.82rem;
    color: var(--steel-gray);
    margin-top: 0.18rem;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.stat-pill {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(0, 217, 255, 0.12);
    border-radius: 14px;
    background: rgba(10, 14, 26, 0.32);
}
.stat-pill strong {
    display: block;
    color: var(--off-white);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}
.stat-pill span {
    color: var(--steel-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.quick-links-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.quick-link-card {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.85) 0%, rgba(10, 14, 26, 0.65) 100%);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}
.quick-link-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 18px 50px rgba(0, 217, 255, 0.1);
}
.quick-link-card .tag {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel-gray);
}
.quick-link-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}
.quick-link-card p {
    color: var(--light-grey);
    margin-bottom: 1rem;
}
.quick-link-card a {
    text-decoration: none;
}
.quick-link-card.current {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.22);
}

.cta-band {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.32), rgba(37, 99, 235, 0.18));
    border: 1px solid rgba(0, 217, 255, 0.16);
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1.5rem;
    align-items: center;
}
.cta-band h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.cta-band p { color: var(--light-grey); }
.cta-band .btn-primary,
.cta-band .btn-secondary { justify-content: center; }
.cta-band-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .article-shell,
    .cta-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 3rem 1.25rem 4rem;
    }
    .article-body,
    .article-aside .panel,
    .quick-links-panel,
    .cta-band {
        padding: 1.5rem;
    }
    .stat-strip {
        grid-template-columns: 1fr;
    }
}

/* ── Product Card Grid ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--mid-dark);
    border: 1px solid rgba(0,217,255,0.12);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,217,255,0.4);
    box-shadow: 0 20px 48px rgba(0,217,255,0.08);
}

/* ── Image placeholder slot ── */
.product-img-wrap {
    position: relative;
    background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(0,217,255,0.06) 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,217,255,0.08);
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}
/* ── "New" pill badge (top-left of the image) ── */
.product-pill {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0A0E1A;
    background: var(--accent);
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0,217,255,0.35);
    pointer-events: none;
}
/* Placeholder shown when no real image is present */
.img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--grey);
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: 100%;
    height: 100%;
    min-height: 220px;
}
.img-placeholder svg {
    opacity: 0.3;
}
.img-placeholder span {
    opacity: 0.5;
}

.product-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-series-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}
.product-card h3 {
    font-size: 1.4rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
    color: var(--off-white);
}
.product-card .desc {
    color: var(--light-grey);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.spec-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.spec-pill {
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.3);
    color: var(--accent);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}
.product-card-actions {
    margin-top: auto;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}


/* ══════════════════════════════════════════
   Global Representatives Page
   ══════════════════════════════════════════ */
    .page-hero.clean-hero {
        padding: 8rem 5% 4.25rem;
        padding-top: calc(89px + 2rem);
        background:
            radial-gradient(circle at 18% 35%, rgba(37,99,235,0.14) 0%, transparent 42%),
            radial-gradient(circle at 82% 22%, rgba(0,217,255,0.10) 0%, transparent 36%),
            linear-gradient(180deg, #0a1628 0%, #0a0e1a 100%);
    }

    .hero-shell {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
        gap: 2rem;
        align-items: end;
    }

    .hero-copy h1 {
        max-width: 12ch;
        margin-bottom: 1rem;
    }

    .hero-copy p {
        max-width: 62ch;
    }

    .worldwide-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.42rem 0.95rem;
        border-radius: 999px;
        border: 1px solid rgba(0,217,255,0.22);
        background: rgba(10,14,26,0.35);
        color: var(--off-white);
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 1rem;
    }

    .hero-panel {
        background: rgba(26,31,46,0.56);
        border: 1px solid rgba(0,217,255,0.12);
        border-radius: 18px;
        padding: 1.35rem;
        backdrop-filter: blur(10px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    }

    .hero-panel h2 {
        font-size: 0.9rem;
        color: var(--accent);
        text-transform: uppercase;
        letter-spacing: 0.12em;
        margin: 0 0 1rem;
        font-family: 'JetBrains Mono', monospace;
    }

    .hero-panel ul {
        list-style: none;
        display: grid;
        gap: 0.85rem;
        margin: 0;
        padding: 0;
    }

    .hero-panel li {
        color: var(--light-grey);
        line-height: 1.55;
        padding-bottom: 0.85rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .hero-panel li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .hero-panel strong {
        color: var(--off-white);
        display: block;
        margin-bottom: 0.15rem;
    }

    #map {
        height: 460px;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        border-radius: 18px;
        border: 1px solid rgba(0,217,255,0.12);
        box-shadow: 0 12px 36px rgba(0,0,0,0.22);
        z-index: 1;
        background: var(--mid-dark);
        overflow: hidden;
    }

    .leaflet-pane img { max-width: none !important; max-height: none !important; }
    .leaflet-popup-content-wrapper {
        background: var(--mid-dark);
        border: 1px solid rgba(0,217,255,0.20);
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.35);
        padding: 0;
        overflow: hidden;
    }
    .leaflet-popup-content {
        margin: 10px 14px;
        font-family: 'Barlow', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: var(--off-white);
        text-align: center;
    }
    .leaflet-popup-tip { background: var(--mid-dark); }
    .leaflet-popup-close-button { color: var(--grey) !important; }

    .custom-pin {
        background: var(--primary);
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid white;
        box-shadow: 0 2px 6px rgba(0,0,0,0.35);
    }
    .pulse-ring {
        border: 3px solid rgba(0,217,255,0.45);
        border-radius: 50%;
        height: 28px;
        width: 28px;
        position: absolute;
        left: -10px;
        top: -10px;
        animation: pulsate 2.6s ease-out infinite;
        opacity: 0;
    }
    @keyframes pulsate {
        0% { transform: scale(0.1); opacity: 0; }
        40% { opacity: 0.55; }
        100% { transform: scale(1.25); opacity: 0; }
    }

    .map-panel {
        background: rgba(26,31,46,0.45);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 18px;
        padding: 1.25rem;
    }

    .region-nav {
        position: sticky;
        top: 84px;
        z-index: 50;
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        justify-content: center;
        padding: 1rem 5%;
        max-width: 1400px;
        margin: 1.75rem auto 0;
        background: linear-gradient(180deg, rgba(10,14,26,0.96), rgba(10,14,26,0.82));
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 16px;
        backdrop-filter: blur(12px);
    }

    .region-nav-btn {
        background: rgba(255,255,255,0.02);
        border: 1px solid rgba(255,255,255,0.08);
        color: var(--light-grey);
        padding: 0.5rem 1rem;
        border-radius: 999px;
        font-family: 'Barlow', sans-serif;
        font-size: 0.84rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        cursor: pointer;
    }
    .region-nav-btn:hover,
    .region-nav-btn:focus-visible {
        border-color: rgba(0,217,255,0.45);
        color: var(--off-white);
        background: rgba(0,217,255,0.08);
    }

    .stat-strip {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        background: transparent;
        max-width: 1400px;
        margin: 2.5rem auto 0;
    }
    .stat-cell {
        background: rgba(26,31,46,0.72);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 16px;
        padding: 1.2rem 1rem;
        text-align: center;
    }
    .stat-num {
        font-size: 1.85rem;
        font-weight: 900;
        letter-spacing: -0.03em;
        color: var(--off-white);
        line-height: 1;
        margin-bottom: 0.35rem;
    }
    .stat-num span { color: var(--accent); }
    .stat-label {
        font-size: 0.72rem;
        color: var(--steel-gray);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-family: 'JetBrains Mono', monospace;
    }

    .regions-wrap {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 5%;
    }

    .section-intro {
        max-width: 70ch;
        color: var(--light-grey);
        margin: -1.5rem 0 3rem;
    }

    .region-group {
        margin-bottom: 3.5rem;
        scroll-margin-top: 220px; /* bar + nav + sticky subnav */
    }

    .region-heading-row {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        margin-bottom: 1.35rem;
        padding-bottom: 0.95rem;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .region-dot {
        width: 10px;
        height: 10px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-radius: 50%;
        flex-shrink: 0;
    }

    .region-heading-row h2 {
        font-size: 1.35rem;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--off-white);
        margin: 0;
    }

    .region-heading-row .region-tag {
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.7rem;
        color: var(--accent);
        background: rgba(0,217,255,0.08);
        border: 1px solid rgba(0,217,255,0.18);
        border-radius: 999px;
        padding: 0.22rem 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-left: auto;
    }

    .rep-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.25rem;
    }

    .rep-card {
        background: linear-gradient(180deg, rgba(26,31,46,0.92), rgba(26,31,46,0.72));
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 16px;
        padding: 1.4rem;
        display: flex;
        flex-direction: column;
        transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        min-height: 100%;
    }
    .rep-card:hover {
        transform: translateY(-3px);
        border-color: rgba(0,217,255,0.22);
        box-shadow: 0 14px 34px rgba(0,0,0,0.18);
    }

    .rep-card.hq {
        border-color: rgba(37,99,235,0.28);
        background: linear-gradient(180deg, rgba(37,99,235,0.10) 0%, rgba(26,31,46,0.92) 70%);
    }

    .hq-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: rgba(37,99,235,0.16);
        color: var(--off-white);
        border: 1px solid rgba(37,99,235,0.28);
        padding: 0.26rem 0.7rem;
        border-radius: 999px;
        font-size: 0.7rem;
        font-weight: 700;
        font-family: 'JetBrains Mono', monospace;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 0.8rem;
        width: fit-content;
    }

    .rep-name {
        font-size: 1.02rem;
        font-weight: 800;
        color: var(--off-white);
        margin-bottom: 0.9rem;
        line-height: 1.35;
    }

    .rep-meta {
        font-size: 0.9rem;
        color: var(--light-grey);
        line-height: 1.65;
        border-left: 2px solid rgba(0,217,255,0.18);
        padding-left: 0.85rem;
        margin-bottom: 1rem;
        flex: 1;
    }

    .rep-meta a {
        color: var(--accent);
        text-decoration: none;
        font-weight: 600;
    }
    .rep-meta a:hover { color: white; }
    .rep-meta strong {
        color: var(--off-white);
        display: block;
        margin-top: 0.55rem;
    }

    .rep-desc {
        font-size: 0.88rem;
        color: var(--steel-gray);
        line-height: 1.65;
        margin: 0;
    }

    .cta-section.clean-cta {
        padding: 6rem 2rem;
    }

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

    @media (max-width: 768px) {
        .page-hero.clean-hero { padding-top: 8rem; }
        #map { height: 360px; }
        .rep-grid { grid-template-columns: 1fr; }
        .region-nav {
            position: static;
            margin-top: 1rem;
            border-radius: 14px;
        }
    }

/* --- Options page specific styles --- */
.options-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(0,217,255,0.22);
    background: rgba(10,14,26,0.42);
    color: var(--off-white);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.options-nav {
    position: sticky;
    top: 131px; /* 42px bar + ~89px nav */
    z-index: 80;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding: 1rem 5%;
    background: linear-gradient(180deg, rgba(10,14,26,0.96), rgba(10,14,26,0.82));
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(0,217,255,0.08);
    backdrop-filter: blur(12px);
}

.options-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--light-grey);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.options-nav-btn:hover,
.options-nav-btn:focus-visible {
    color: var(--off-white);
    border-color: rgba(0,217,255,0.4);
    background: rgba(0,217,255,0.08);
}

.options-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-divider {
    margin: 0 auto 2rem;
    max-width: 1280px;
    padding: 0 5%;
}

.section-divider-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-divider-inner span {
    flex-shrink: 0;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-divider-inner hr {
    width: 100%;
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.option-block {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 1.4rem;
    background: linear-gradient(180deg, rgba(26,31,46,0.92), rgba(26,31,46,0.72));
    border: 1px solid rgba(0,217,255,0.12);
    border-radius: 18px;
    padding: 1.6rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
    scroll-margin-top: 215px; /* bar + nav + sticky options-nav */
}

.option-block:hover {
    border-color: rgba(0,217,255,0.28);
    box-shadow: 0 18px 48px rgba(0,217,255,0.08);
}

.option-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.option-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(0,217,255,0.12));
    border: 1px solid rgba(0,217,255,0.18);
}

.option-anchor-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: rgba(10,14,26,0.45);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--steel-gray);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
}

.option-content p {
    color: var(--light-grey);
    margin-bottom: 1rem;
}

.option-content p:last-of-type {
    margin-bottom: 0;
}

.option-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.option-header h2 {
    font-size: 1.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.field-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.28);
    color: #9ff2cf;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.option-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.2rem;
}

.option-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(0,217,255,0.14);
    background: rgba(10,14,26,0.38);
    color: var(--light-grey);
    font-size: 0.84rem;
}

@media (max-width: 900px) {
    .option-block {
        grid-template-columns: 1fr;
    }

    .option-icon-col {
        flex-direction: row;
        justify-content: flex-start;
    }

    .option-header {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .options-nav {
        position: static;
        justify-content: flex-start;
        padding: 1rem 1.25rem;
    }

    .options-wrap,
    .section-divider {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .option-block {
        padding: 1.25rem;
        scroll-margin-top: 150px;
    }

    .option-header h2 {
        font-size: 1.4rem;
    }
}

/* ============================================================
   SERIES 6000 LAUNCH — Announcement Bar
   ============================================================ */
.launch-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(90deg, #0A1628 0%, #003559 40%, #004E89 60%, #0A1628 100%);
    border-bottom: 1px solid rgba(0, 217, 255, 0.35);
    padding: 0;
    overflow: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.launch-bar.is-dismissed {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* push nav down when bar is visible — nav top:42px is already set in base nav rule */
nav.bar-dismissed {
    top: 0;
}

/* When the announcement bar is present, shift the nav and hero content down */
.launch-bar:not(.is-dismissed) ~ nav {
    top: 42px;
}
.launch-bar:not(.is-dismissed) ~ nav + main .page-hero,
.launch-bar:not(.is-dismissed) ~ main .page-hero {
    padding-top: calc(42px + 89px + 2rem);
}
@media (max-width: 768px) {
    .launch-bar:not(.is-dismissed) ~ nav + main .page-hero,
    .launch-bar:not(.is-dismissed) ~ main .page-hero {
        padding-top: calc(42px + 89px + 1rem);
    }
}


.launch-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 42px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.launch-bar-badge {
    flex-shrink: 0;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-family: 'JetBrains Mono', monospace;
}

.launch-bar-inner p {
    font-size: 0.88rem;
    color: var(--light-grey);
    font-weight: 400;
    margin: 0;
    flex: 1;
}

.launch-bar-inner p strong {
    color: var(--off-white);
    font-weight: 700;
}

.launch-bar-cta {
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: color 0.2s;
}
.launch-bar-cta:hover { color: white; }

.launch-bar-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--steel-gray);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    line-height: 1;
    transition: color 0.2s;
}
.launch-bar-close:hover { color: white; }

/* ============================================================
   SERIES 6000 LAUNCH — Hero badge
   ============================================================ */
.hero-launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 217, 255, 0.07);
    border: 1px solid rgba(0, 217, 255, 0.28);
    border-radius: 999px;
    padding: 0.45rem 1rem 0.45rem 0.6rem;
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    width: fit-content;
    transition: background 0.25s, border-color 0.25s;
    animation: fadeInUp 0.8s ease-out 0.05s backwards;
}
.hero-launch-badge:hover {
    background: rgba(0, 217, 255, 0.14);
    border-color: var(--accent);
}

.hero-launch-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.5);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(0,217,255,0.5); }
    70%  { box-shadow: 0 0 0 7px rgba(0,217,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,217,255,0); }
}

.hero-launch-label {
    background: var(--accent);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    font-family: 'JetBrains Mono', monospace;
}

.hero-launch-arrow {
    margin-left: 0.2rem;
    color: var(--accent);
    font-size: 0.9rem;
    transition: transform 0.2s;
}
.hero-launch-badge:hover .hero-launch-arrow {
    transform: translateX(3px);
}

/* ============================================================
   SERIES 6000 LAUNCH — Full Spotlight Section
   ============================================================ */
.series6k-spotlight {
    position: relative;
    padding: 8rem 5%;
    background: linear-gradient(180deg, #060B18 0%, #0A1628 50%, #060D1F 100%);
    overflow: hidden;
}

.series6k-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,217,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,217,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.series6k-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.series6k-inner {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

/* Header */
.series6k-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.series6k-new-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.45);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #93C5FD;
    font-family: 'JetBrains Mono', monospace;
}

.series6k-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #60A5FA;
    animation: pulse-dot 2s infinite;
}

.series6k-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, rgba(37,99,235,0.5), transparent);
}

.series6k-year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--steel-gray);
}

.series6k-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 4rem;
}

.series6k-eyebrow {
    justify-content: center;
}

.series6k-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--off-white);
    margin-bottom: 1.5rem;
}

.series6k-name {
    background: linear-gradient(90deg, var(--accent), #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.series6k-sub {
    font-size: 1.2rem;
    color: var(--light-grey);
    font-weight: 300;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* Specs ribbon */
.series6k-specs-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(10,14,26,0.7);
    border: 1px solid rgba(0,217,255,0.15);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
}

.series6k-spec {
    flex: 1;
    min-width: 130px;
    text-align: center;
    padding: 0.5rem 1rem;
}

.series6k-spec-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.series6k-spec-val span {
    font-size: 1rem;
    color: var(--steel-gray);
    font-weight: 400;
}

.series6k-spec-lbl {
    font-size: 0.78rem;
    color: var(--steel-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.series6k-spec-divider {
    width: 1px;
    height: 50px;
    background: rgba(0,217,255,0.12);
    flex-shrink: 0;
}

/* Feature cards */
.series6k-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.series6k-feature-card {
    background: linear-gradient(135deg, rgba(26,31,46,0.9) 0%, rgba(10,14,26,0.8) 100%);
    border: 1px solid rgba(0,217,255,0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.series6k-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,217,255,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.series6k-feature-card--accent {
    background: linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(10,14,26,0.9) 100%);
    border-color: rgba(37,99,235,0.25);
}
.series6k-feature-card--accent:hover {
    border-color: rgba(37,99,235,0.5);
    box-shadow: 0 20px 50px rgba(37,99,235,0.15);
}

.series6k-feature-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.series6k-feature-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--off-white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.series6k-feature-card p {
    font-size: 0.97rem;
    color: var(--light-grey);
    line-height: 1.7;
}

/* CTA row */
.series6k-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(90deg, rgba(37,99,235,0.12), rgba(0,217,255,0.06));
    border: 1px solid rgba(37,99,235,0.25);
    border-radius: 16px;
    padding: 2rem 3rem;
}

.series6k-cta-text p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--off-white);
    margin: 0;
}

.series6k-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.series6k-btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    border: 2px solid var(--primary);
    transition: all 0.25s;
    white-space: nowrap;
}
.series6k-btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}

.series6k-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    border: 2px solid rgba(0,217,255,0.35);
    transition: all 0.25s;
    white-space: nowrap;
}
.series6k-btn-secondary:hover {
    background: rgba(0,217,255,0.08);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .series6k-features { grid-template-columns: 1fr; }
    .series6k-spec-divider { display: none; }
    .series6k-specs-ribbon { gap: 1rem; }
    .series6k-spec { min-width: 100px; }
}

@media (max-width: 768px) {
    .launch-bar-inner p { display: none; }
    .series6k-cta-row {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .series6k-cta-buttons { flex-direction: column; width: 100%; }
    .series6k-btn-primary,
    .series6k-btn-secondary { text-align: center; }
    .launch-bar-inner { gap: 0.75rem; }
}
