/* 1. Page Layout & The "Kinetic Grid" Background */
body {
    background-color: #020101;
    /* Default Desktop Opacity (Subtle) */
    --grid-opacity: 0.04;

    background-image:
        linear-gradient(rgba(230, 179, 74, var(--grid-opacity)) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 179, 74, var(--grid-opacity)) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(230, 179, 74, 0.1) 0%, transparent 60%);
    background-size: 60px 60px, 60px 60px, 100% 100%;
    animation: gridFlow 120s linear infinite;
}

/* MOBILE FIX: Make grid stronger on small screens */
@media (max-width: 768px) {
    body {
        --grid-opacity: 0.12;
        /* 3x stronger visibility for mobile screens */
        background-size: 40px 40px, 40px 40px, 100% 100%;
        /* Tighter grid for mobile */
    }
}

@keyframes gridFlow {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 60px 60px, 60px 60px, 0 0;
    }
}

.lab-container {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

/* 2. Lab Header */
.lab-header {
    text-align: center;
    margin-bottom: 60px;
}

.lab-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    background: linear-gradient(135deg, #e6b34a 0%, #fff 50%, #c48a26 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(230, 179, 74, 0.2);
}

.lab-subtitle {
    color: #666;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* 3. The Clinical Protocol Grid */
.protocol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.protocol-card {
    background: rgba(10, 10, 10, 0.7);
    /* Dark Glass */
    border: 1px solid #1f1f1f;
    border-top: 1px solid #333;
    /* Subtle top highlight */
    border-radius: 8px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Hover State: Clinical Activation */
.protocol-card:hover {
    border-color: #e6b34a;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(230, 179, 74, 0.15);
}

.protocol-card:hover .scan-line {
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out;
}

/* --- LOCKED CARD STYLES (The Velvet Rope) --- */
.protocol-card.locked {
    background: repeating-linear-gradient(45deg,
            rgba(10, 10, 10, 0.7),
            rgba(10, 10, 10, 0.7) 10px,
            rgba(20, 20, 20, 0.7) 10px,
            rgba(20, 20, 20, 0.7) 20px);
    border-color: #333;
    opacity: 0.8;
    cursor: pointer;
    /* Still clickable, leads to sales page */
}

.protocol-card.locked:hover {
    opacity: 1;
    border-color: #e6b34a;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(230, 179, 74, 0.1);
}

/* The Lock Icon - Centered and Glowing */
.lock-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.3;
    transition: 0.3s ease;
}

.protocol-card.locked:hover .lock-overlay {
    opacity: 1;
    transform: scale(1.1);
}

.lock-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px #e6b34a);
}

/* Grayed out text for locked cards */
.protocol-card.locked .card-desc {
    color: #555;
}

/* Red status light for locked items */
.status-light.locked-light {
    background-color: #ff3333;
    color: #ff3333;
    box-shadow: 0 0 8px #ff3333;
    animation: none;
    /* Locked items don't pulse, they are static */
}

/* Card Header: Tech Readout */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.status-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
    animation: pulseLight 3s infinite;
}

.status-light.operational {
    background-color: #00ff88;
    color: #00ff88;
}

.status-light.warning {
    background-color: #e6b34a;
    color: #e6b34a;
}

.tech-mono {
    font-family: 'Courier New', Courier, monospace;
    /* Tech Font */
    font-size: 0.65rem;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.protocol-card:hover .tech-mono {
    color: #e6b34a;
    transition: color 0.3s;
}

/* Card Body */
.card-title {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Card Footer: Scan Line Effect */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    padding-top: 15px;
}

.scan-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e6b34a, transparent);
    transform: translateX(-100%);
    opacity: 0.5;
}

@keyframes pulseLight {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 0px currentColor;
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 10px currentColor;
    }

    100% {
        opacity: 0.5;
        box-shadow: 0 0 0px currentColor;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .protocol-grid {
        grid-template-columns: 1fr;
    }

    .lab-title {
        font-size: 2.2rem;
    }

    .protocol-card {
        padding: 20px;
    }
}

/* --- CLINICAL MODALS --- */
.lab-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lab-modal.active {
    display: flex;
    opacity: 1;
}

.lab-modal-content {
    background: #0a0a0a;
    border: 1px solid rgba(230, 179, 74, 0.3);
    width: 90%;
    max-width: 500px;
    padding: 30px;
    /* Reduced from 40px */
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 50px rgba(230, 179, 74, 0.15);
    /* --- THE FIX --- */
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e6b34a #111;
}

/* Custom Scrollbar for Webkit (Chrome/Safari) */
.lab-modal-content::-webkit-scrollbar {
    width: 6px;
}

.lab-modal-content::-webkit-scrollbar-track {
    background: #111;
    border-radius: 4px;
}

.lab-modal-content::-webkit-scrollbar-thumb {
    background: #e6b34a;
    border-radius: 4px;
}


.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #666;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #e6b34a;
}

.modal-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.modal-title {
    font-family: 'Marcellus', serif;
    color: #fff;
    font-size: 1.8rem;
    margin-top: 5px;
}

/* Form Elements */
.lab-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.full-width {
    grid-column: span 2;
}

.tech-label {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #e6b34a;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.lab-input,
.lab-select {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
    border-radius: 2px;
}

.lab-input:focus,
.lab-select:focus {
    border-color: #e6b34a;
    outline: none;
    background: #161616;
}

/* Buttons */
.lab-btn-action {
    width: 100%;
    background: linear-gradient(135deg, #e6b34a 0%, #c48a26 100%);
    border: none;
    padding: 15px;
    color: #000;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.lab-btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(230, 179, 74, 0.4);
}

.lab-btn-secondary {
    width: 100%;
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 15px;
    margin-top: 20px;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 2px;
    transition: 0.3s;
}

.lab-btn-secondary:hover {
    border-color: #e6b34a;
    color: #e6b34a;
}

/* Views (Input vs Result) */
.modal-view {
    display: none;
    animation: fadeIn 0.4s ease;
}

.modal-view.active {
    display: block;
}

/* Results */
.result-readout {
    text-align: center;
    margin-bottom: 20px;
}

.big-data {
    display: block;
    font-size: 3.5rem;
    color: #fff;
    font-family: 'Marcellus', serif;
    line-height: 1;
    margin: 10px 0;
}

.data-status {
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.readout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.data-val {
    display: block;
    font-size: 1.2rem;
    color: #fff;
    margin-top: 5px;
}

.readout-list {
    text-align: left;
    margin-top: 20px;
}

.readout-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #222;
    color: #aaa;
    font-size: 0.9rem;
}

.gold-text {
    color: #e6b34a;
}

@media (max-width: 600px) {
    .lab-form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }
}

/* --- SURGICAL REMOVAL OF INPUT ARROWS --- */

/* 1. Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* 2. Firefox */
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* --- ATELIER GLASS DROPDOWN OVERRIDE (INDESTRUCTIBLE) --- */
nav #langDropdown {
    position: relative !important;
    margin-right: 15px !important;
    z-index: 9999 !important;
}

nav #langDropdown .lang-btn {
    background: transparent !important;
    border: none !important;
    color: #e6b34a !important;
    font-family: 'Cinzel', serif !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
    padding: 5px !important;
    cursor: pointer !important;
}

nav #langDropdown #langMenu {
    position: absolute !important;
    top: 150% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;

    /* The Frosted Glass Effect */
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;

    /* Elegant Border */
    border: 1px solid rgba(230, 179, 74, 0.3) !important;
    border-radius: 8px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8) !important;

    min-width: 70px !important;
    padding: 5px 0 !important;
    z-index: 10000 !important;
    /* Forces it entirely above the nav borders */

    /* Smooth Animation */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

nav #langDropdown #langMenu.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

nav #langDropdown #langMenu .lang-item {
    color: #cccccc !important;
    font-family: 'Cinzel', serif !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    padding: 12px 15px !important;
    text-align: center !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
}

nav #langDropdown #langMenu .lang-item:hover {
    color: #e6b34a !important;
    background: rgba(230, 179, 74, 0.15) !important;
    text-shadow: 0 0 10px rgba(230, 179, 74, 0.5) !important;
}

/* --- LAB PAGES ONLY: Shrink buttons early to preserve symmetry (< 420px) --- */
@media (max-width: 420px) {

    nav .nav-center-group #labBtn,
    nav .nav-center-group .app-btn-bespoke {
        font-size: 10px !important;
        padding: 6px 10px !important;
        letter-spacing: 1px !important;
    }

    nav .cta-btn {
        font-size: 9px !important;
        padding: 8px 12px !important;
        letter-spacing: 1px !important;
    }

    nav .nav-center-group {
        gap: 4px !important;
    }

    nav .lang-dropdown {
        margin-right: 2px !important;
    }

    nav .lang-dropdown .lang-btn {
        font-size: 10px !important;
        letter-spacing: 1px !important;
        padding: 4px !important;
    }
}

/* --- EXECUTIVE TIER STYLES --- */
.executive-card {
    border-color: #1a2235;
    background: rgba(10, 15, 25, 0.7);
    /* Blago hladniji tamni ton */
}

.executive-card:hover {
    border-color: #b0c4de;
    box-shadow: 0 0 30px rgba(176, 196, 222, 0.15);
}

.status-light.executive-light {
    background-color: #b0c4de;
    color: #b0c4de;
}

.scan-line.executive-scan {
    background: linear-gradient(90deg, transparent, #b0c4de, transparent);
}

.executive-card:hover .tech-mono {
    color: #b0c4de;
    transition: color 0.3s;
}

.executive-text {
    color: #b0c4de;
}

.lab-btn-executive {
    width: 100%;
    background: linear-gradient(135deg, #b0c4de 0%, #778899 100%);
    border: none;
    padding: 15px;
    color: #000;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.lab-btn-executive:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(176, 196, 222, 0.4);
}

/* ============================================================
           SURGICAL OVERRIDE: CARBON GLASS HUD (DARK LAB UNIFORM)
           ============================================================ */

/* 1. The Carbon Glass Pane */
body nav {
    background: rgba(2, 1, 1, 0.85) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(230, 179, 74, 0.15) !important;
    /* Micron Gold Laser Line */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
}

/* 2. Standardize Nav Links (Philosophy, Who We Are, Results) */
body nav .nav-links a {
    color: #E2E8F0 !important;
    /* Luminous Silver */
    transition: 0.3s ease !important;
}

body nav .nav-links a:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
}

/* 3. The "ATELIER / LAB" Button (Active Location State) */
/* Strips the green, makes it a hollow, glowing wireframe */
body nav .nav-center-group #labBtn {
    background: transparent !important;
    color: #e6b34a !important;
    border: 1px solid rgba(230, 179, 74, 0.3) !important;
    box-shadow: 0 0 15px rgba(230, 179, 74, 0.1) !important;
    text-shadow: 0 0 10px rgba(230, 179, 74, 0.5) !important;
}

/* 4. The "LuKUL" Button (Quiet State) */
/* Strips the green, turns it into clean silver text */
body nav .nav-center-group .app-btn-bespoke:not(#labBtn) {
    background: transparent !important;
    color: #E2E8F0 !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

body nav .nav-center-group .app-btn-bespoke:not(#labBtn):hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
}

/* 5. The "APPLY" CTA (The Premium Exit) */
/* Forces the solid gold gradient to remain intact against the dark glass */
body nav .cta-btn {
    background: linear-gradient(135deg, #B89643 0%, #d4b76a 50%, #9e7f32 100%) !important;
    color: #111111 !important;
    border: 1px solid rgba(184, 150, 67, 0.8) !important;
    box-shadow: 4px 4px 0px rgba(184, 150, 67, 0.25) !important;
    text-shadow: none !important;
}

body nav .cta-btn:hover {
    background: linear-gradient(135deg, #d4b76a 0%, #F59E0B 50%, #d4b76a 100%) !important;
    transform: translate(-2px, -2px) !important;
    box-shadow: 6px 6px 0px rgba(184, 150, 67, 0.4) !important;
}

/* 6. Language Switcher Base Text Visibility */
body nav .lang-dropdown .lang-btn,
body nav .lang-dropdown .lang-btn span {
    color: #E2E8F0 !important;
    text-shadow: none !important;
    opacity: 0.8 !important;
}

body nav .lang-dropdown .lang-btn:hover,
body nav .lang-dropdown .lang-btn:hover span {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* 7. Mobile Centering & Anti-Wrap Constraints */
@media (max-width: 768px) {
    body nav {
        justify-content: center !important;
        gap: 12px !important;
        padding-left: 2% !important;
        padding-right: 2% !important;
    }

    body nav .lang-dropdown,
    body nav .nav-center-group,
    body nav .cta-btn {
        margin: 0 !important;
        position: static !important;
        transform: none !important;
    }

    body nav .nav-center-group {
        gap: 8px !important;
    }

    body nav .app-btn-bespoke,
    body nav .cta-btn,
    body nav #labBtn {
        white-space: nowrap !important;
        /* Prevents text wrapping */
        font-size: 9px !important;
        letter-spacing: 0.5px !important;
        padding: 8px 10px !important;
        line-height: 1 !important;
        height: auto !important;
    }

    body nav .nav-links {
        display: none !important;
        /* Hide text links on mobile to save space */
    }
}

/* ============================================================
           8. STEALTH LANGUAGE DROPDOWN (NUCLEAR OVERRIDE)
           ============================================================ */

/* Kills the solid gold box: 
           (Scores 203 points: html + body + nav + #langDropdown + #langMenu) */
html body nav #langDropdown #langMenu {
    background: rgba(2, 1, 1, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(230, 179, 74, 0.2) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9) !important;
}

/* Forces the active language text and arrow to Luminous Silver */
html body nav #langDropdown .lang-btn,
html body nav #langDropdown .lang-btn span {
    color: #E2E8F0 !important;
    font-family: 'Space Mono', monospace !important;
    font-weight: 400 !important;
    text-shadow: none !important;
    background: transparent !important;
}

/* Brightens to pure white on hover */
html body nav #langDropdown .lang-btn:hover,
html body nav #langDropdown .lang-btn:hover span {
    color: #ffffff !important;
}

/* Formats the dropdown items (EN, RU, SR) */
html body nav #langDropdown #langMenu .lang-item,
html body nav #langDropdown #langMenu a.lang-item {
    color: #E2E8F0 !important;
    background: transparent !important;
    font-family: 'Space Mono', monospace !important;
    font-size: 11px !important;
    text-shadow: none !important;
    transition: 0.3s ease !important;
    padding: 12px 15px !important;
}

/* Subtle gold tactical highlight when hovering */
html body nav #langDropdown #langMenu .lang-item:hover,
html body nav #langDropdown #langMenu a.lang-item:hover {
    color: #e6b34a !important;
    background: rgba(230, 179, 74, 0.1) !important;
    text-shadow: 0 0 10px rgba(230, 179, 74, 0.4) !important;
}

/* ============================================================
           9. THE CANVAS OVERRIDE (KINETIC GOLD GRID & DARK VOID)
           ============================================================ */

/* 1. The Kinetic Animation Engine */
@keyframes gridFlowLab {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 60px 60px, 60px 60px, 0 0;
    }
}

/* 2. The Dark Void & Grid Architecture */
html body {
    background-color: #020101 !important;
    /* Pitch black void */
    color: #E6E6E6 !important;
    /* Luminous silver text default */

    /* SURGICAL TWEAK: Opacity boosted from 0.04 to 0.15 for high visibility */
    background-image:
        linear-gradient(rgba(230, 179, 74, 0.25) 2px, transparent 2px),
        linear-gradient(90deg, rgba(230, 179, 74, 0.25) 2px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(230, 179, 74, 0.25) 0%, transparent 75%) !important;
    background-size: 60px 60px, 60px 60px, 100% 100% !important;
    background-attachment: fixed !important;

    /* Attach the breathing movement */
    animation: gridFlowLab 120s linear infinite !important;
}

/* 3. Mobile Grid Enhancer (Boosted to 0.25 for small screens) */
@media (max-width: 768px) {
    html body {
        background-image:
            linear-gradient(rgba(230, 179, 74, 0.25) 1px, transparent 1px),
            linear-gradient(90deg, rgba(230, 179, 74, 0.25) 1px, transparent 1px),
            radial-gradient(circle at 50% 0%, rgba(230, 179, 74, 0.22) 0%, transparent 75%) !important;
    }
}

/* 4. The Stealth Preloader Fix */
html body #preloader {
    background-color: #020101 !important;
    background-image: radial-gradient(circle at 50% 50%, rgba(230, 179, 74, 0.15) 0%, transparent 70%) !important;
}

/* 5. Force Dark Text to Light (For standard inherited paragraphs) */
html body .lab-container p {
    color: #a1a1aa !important;
}

html body .lab-container h1,
html body .lab-container h2 {
    color: #F9F9F9 !important;
}

/* ============================================================
           11. SEO CONTENT & TECHNICAL MANIFESTO
           ============================================================ */
.seo-content {
    font-family: 'Manrope', sans-serif;
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 1000px;
    margin: 80px auto 0 auto;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-content h2 {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(230, 179, 74, 0.2);
    padding-bottom: 10px;
}

.seo-content h3 {
    font-family: 'Marcellus', serif;
    color: #e6b34a;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.seo-content p {
    margin-bottom: 20px;
    font-weight: 300;
}

.seo-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.seo-content li {
    margin-bottom: 10px;
    font-weight: 300;
}

.seo-content strong {
    color: #fff;
    font-weight: 600;
}

.seo-cta {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(230, 179, 74, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid rgba(230, 179, 74, 0.4);
    border-radius: 8px;
    text-align: center;
}

.seo-cta h3 {
    font-family: 'Cinzel', serif;
    color: #e6b34a;
    font-size: 1.8rem;
    margin-bottom: 15px;
    margin-top: 0;
    border: none;
}

.seo-cta p {
    color: #aaa;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .seo-content h2 {
        font-size: 1.6rem;
    }

    .seo-cta {
        padding: 25px;
    }
}

/* ============================================================
           Surgical Override: Bottom CTA Pronouncement Gate - TONED DOWN
           ============================================================ */
/* Normal State: Signature gold (No white), tames the chaos. Pronounced by definition. */
html body .lab-container .seo-cta .lab-btn-action {
    display: inline-block !important;
    width: auto !important;
    padding: 16px 45px !important;
    text-decoration: none !important;
    margin-top: 25px !important;

    /* Signature Gold/Bronze Palette (Crucial: NO WHITE) */
    background: linear-gradient(135deg, #e6b34a 0%, #c48a26 100%) !important;
    color: #111 !important;
    /* Standard dark text */
    border: 1px solid rgba(184, 150, 67, 0.5) !important;
    /* Defined micron border */

    /* Subtler Shadows: Focused projection, no offset block shadow */
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.8) !important;
    /* Deep Void projection */

    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* Hover State: Refined Signature Glow */
html body .lab-container .seo-cta .lab-btn-action:hover {
    transform: translateY(-2px) !important;
    /* Standard elegant lift */

    /* Richer Gold (Still NO WHITE) */
    background: linear-gradient(135deg, #fcd34d 0%, #e6b34a 100%) !important;

    /* Refined Signature Glow (Rich, not screaming) */
    box-shadow:
        0 0 30px rgba(230, 179, 74, 0.5),
        /* Focused gold halo */
        0 0 10px rgba(255, 140, 0, 0.1) !important;
    /* Warm inner core */
}