/* ==========================================================
   MLPipeLab â€” custom.css
   Accent: #6366f1 | Dark theme | Template: 2085_neuron
   ========================================================== */

/* --- CSS Variables --- */
:root {
    --accent: #6366f1;
    --accent-dark: #4f52d4;
    --accent-light: #8b8ef7;
    --bg: #0d0f18;
    --surface: #151825;
    --surface2: #1c2033;
    --text: #e8eaf0;
    --text-muted: #8892a4;
    --border: rgba(255,255,255,0.08);
    --radius: 12px;
    --gap: 40px;
    --nav-height: 72px;
    --bg-rgb: 13, 15, 24;
}

/* --- Body & Base --- */
body {
    background-color: var(--bg);
    color: var(--text);
    font-size: 18px;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.9;
}

h1 { font-size: 58px; font-weight: 700; line-height: 1.15; color: var(--text); }
h2 { font-size: 40px; font-weight: 700; line-height: 1.2; color: var(--text); text-transform: none; letter-spacing: 0; }
h3 { font-size: 20px; font-weight: 600; line-height: 1.4; color: var(--text); text-transform: none; letter-spacing: 0; }
h4 { font-size: 18px; font-weight: 600; color: var(--text); }
p { font-size: 18px; line-height: 1.9; color: var(--text); }

/* Override template uppercase/letter-spacing on headings */
.navbar-brand, h1, h2, h3, h4, h5, h6,
.section-title, .page-title {
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* --- Navbar --- */
.navbar.navbar-default {
    background-color: rgba(var(--bg-rgb), 0.97);
    border-bottom: 1px solid var(--border);
    min-height: var(--nav-height);
}
.navbar.navbar-default .navbar-nav > li > a {
    font-size: 15px;
    font-weight: 500;
    color: #c8d6e5;
    line-height: var(--nav-height);
    padding-top: 0;
    padding-bottom: 0;
}
.navbar.navbar-default .navbar-nav > li > a:hover,
.navbar.navbar-default .navbar-nav > li.active > a {
    color: var(--accent);
    background-color: transparent;
}
.navbar.navbar-default .navbar-brand {
    line-height: var(--nav-height);
    padding-top: 0;
    padding-bottom: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
}
.navbar.navbar-default.active {
    background-color: rgba(var(--bg-rgb), 0.98) !important;
}
.navbar.navbar-default.active .navbar-nav > li > a {
    color: #e2e8f0 !important;
}
/* R77 */
.nav-item { margin-bottom: 0 !important; background-image: none !important; }
.site-logo { max-width: none !important; }
.btn-accent, .cta-primary, .cta-secondary { white-space: nowrap; }

/* --- Container Narrow --- */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

/* --- Sections --- */
.section {
    padding: 80px 0;
}
.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-intro {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
}

/* --- Hero Section --- */
#home.hero-section,
.page-hero-section {
    min-height: 620px;
    background-color: var(--bg);
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
}
.page-hero-sm {
    min-height: 380px;
    padding: 100px 0 60px;
}
.section-label-hero {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-sub {
    font-size: 20px;
    color: #c8d6e5;
    max-width: 680px;
    margin: 20px 0 36px;
    line-height: 1.75;
}
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}
/* R79 */
.header-thumb {
    background: transparent !important;
    border: none !important;
}
/* R89 */
.tm-bg-overlay,
[class*="overlay"] { pointer-events: none !important; }

/* --- Buttons --- */
.btn-accent {
    background-color: var(--accent);
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-accent:hover { background-color: var(--accent-dark); color: #ffffff !important; }

.btn-accent-outline {
    background-color: transparent;
    color: var(--text) !important;
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-accent-outline:hover {
    background-color: var(--accent);
    color: #ffffff !important;
}

.btn-outline-hero {
    background-color: rgba(255,255,255,0.07);
    color: #e2e8f0 !important;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
}
.btn-outline-hero:hover {
    background-color: rgba(255,255,255,0.12);
    color: #ffffff !important;
}

/* --- Stats Bar --- */
.stats-bar {
    background-color: var(--surface);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat-item {
    text-align: center;
    padding: 16px;
}
.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
}
.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.5;
}

/* --- Feature Cards --- */
.features-grid { margin-top: 40px; }
.feature-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 28px;
    height: 100%;
}
.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--accent);
    line-height: 1;
}
.feature-icon img { width: 48px; height: 48px; object-fit: contain; }
/* R87 */
.feature-card h3 { font-size: 20px; margin-bottom: 12px; }
.feature-card p { font-size: 16px; color: #c8d6e5; }
/* R81 */
.feature-icon .fa, .card-icon .fa, .step-icon .fa { color: var(--accent) !important; }

/* --- Steps Grid --- */
.steps-grid { margin-top: 40px; }
.step-item {
    text-align: center;
    padding: 24px 20px;
    margin-bottom: 28px;
}
.step-num {
    display: inline-block;
    width: 56px;
    height: 56px;
    background-color: var(--accent);
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    line-height: 56px;
    text-align: center;
    margin-bottom: 16px;
}
.step-item h3 { font-size: 20px; color: var(--text); margin-bottom: 12px; }
.step-item p { font-size: 16px; color: #c8d6e5; }

/* --- Problem Section --- */
.problem-section { background-color: var(--surface); }
.problem-image-wrap {
    background-color: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}
.problem-image-wrap img { width: 100%; border-radius: 8px; }

/* --- How It Works Dark section --- */
.howit-section { background-color: var(--surface); }

/* --- Use Cases --- */
.usecase-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 28px;
    height: 100%;
}
.usecase-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}
.usecase-icon img { width: 48px; height: 48px; object-fit: contain; }
.usecase-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--text); }
.usecase-card p { font-size: 16px; color: #c8d6e5; }

/* --- CTA Section --- */
.cta-section-home {
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    text-align: center;
}
.cta-section-home h2 { color: var(--text); margin-bottom: 16px; }
.cta-section-home p { color: var(--text-muted); margin-bottom: 28px; }
.cta-section-home .btn { margin: 8px; }

/* --- Footer --- */
footer {
    background-color: #080a12;
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
}
footer h3 { font-size: 18px; color: #e2e8f0; margin-bottom: 16px; }
footer p { font-size: 16px; color: #8fabc4; line-height: 1.7; }
.footer-links { list-style: none; padding: 0; margin: 0 0 16px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 15px; color: #8fabc4; text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-address { font-size: 14px; color: #8fabc4; }
.footer-address .fa, .footer-contact .fa { color: var(--accent); margin-right: 6px; }
.footer-contact { font-size: 14px; color: #8fabc4; margin-bottom: 8px; }
.footer-contact a { color: #8fabc4; }
.footer-contact a:hover { color: var(--accent); }
.footer-hr { border-color: var(--border); margin: 32px 0 20px; }
.footer-copyright { font-size: 14px; color: #6b7a8d; padding-bottom: 28px; text-align: center; }
.footer-grid .col-md-4 { margin-bottom: 32px; }

/* --- Product Page --- */
.features-dark-section { background-color: var(--surface); }
.feature-card-deep {
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 28px;
}
.feature-card-deep h3 { font-size: 20px; color: var(--text); margin-bottom: 12px; }
.feature-card-deep p { font-size: 16px; color: #c8d6e5; }
.feature-icon-sm { width: 40px; height: 40px; margin-bottom: 16px; }
.feature-icon-sm img { width: 40px; height: 40px; object-fit: contain; }
.feature-list { padding-left: 20px; margin: 12px 0; }
.feature-list li { font-size: 15px; color: #c8d6e5; margin-bottom: 6px; }

.techspecs-section { background-color: var(--bg); }
.spec-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 28px;
}
.spec-card h3 { font-size: 18px; color: var(--text); margin-bottom: 16px; }
.spec-list { padding-left: 0; list-style: none; }
.spec-list li { font-size: 15px; color: #c8d6e5; padding: 8px 0; border-bottom: 1px solid var(--border); }
.spec-list li:last-child { border-bottom: none; }

.product-visual-section { background-color: var(--surface); }
.product-screenshot-wrap {
    background-color: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 24px;
}
.product-screenshot-wrap img { width: 100%; border-radius: 8px; }

/* --- Pricing Page --- */
.pricing-toggle-note { font-size: 16px; color: var(--text-muted); }
.pricing-grid { margin-top: 32px; }
.pricing-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    margin-bottom: 28px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card h3 { font-size: 22px; color: var(--text); margin-bottom: 8px; }
.pricing-price {
    font-size: 46px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
    margin: 12px 0;
}
.pricing-price span { font-size: 18px; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.pricing-features li { font-size: 15px; color: #c8d6e5; padding: 7px 0; border-bottom: 1px solid var(--border); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .fa-check { color: var(--accent); margin-right: 8px; }
.pricing-featured {
    border-color: var(--accent);
    background-color: #191b2e;
}
.pricing-badge {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* Pricing FAQ */
.faq-section { background-color: var(--surface); }
.faq-section h2 { color: var(--text); margin-bottom: 32px; }
.faq-panel { background-color: var(--surface2); border: 1px solid var(--border); border-radius: 8px; margin-bottom: 8px; }
.faq-panel .panel-heading { background-color: transparent; border: none; padding: 0; }
.faq-panel .panel-title a {
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}
.faq-panel .panel-title a:hover { color: var(--accent); }
.faq-panel .panel-body { padding: 0 20px 16px; font-size: 16px; color: #c8d6e5; }

/* --- About Page --- */
.about-image-wrap {
    background-color: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}
.about-image-wrap img { width: 100%; border-radius: 8px; }

.stats-about-section { background-color: var(--surface); }
.stats-grid { margin-top: 40px; }

/* Case Cards */
.case-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 28px;
    height: 100%;
}
.case-industry {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.case-problem, .case-solution { font-size: 15px; color: #c8d6e5; }
.case-metric {
    font-size: 15px;
    color: var(--text);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.case-metric-num { font-size: 22px; font-weight: 700; color: var(--accent); margin-right: 6px; }

/* Values */
.values-section { background-color: var(--surface); }
.value-card {
    text-align: center;
    padding: 24px 16px;
    margin-bottom: 28px;
}
.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}
.value-icon img { width: 48px; height: 48px; object-fit: contain; }
.value-card h3 { font-size: 18px; color: var(--text); margin-bottom: 12px; }
.value-card p { font-size: 16px; color: #c8d6e5; }

/* --- Team Page --- */
.team-grid { margin-top: 20px; }
.team-card {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 28px;
}
.team-avatar-wrap {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
}
.team-avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
.team-card h3 { font-size: 20px; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 15px; color: #c8d6e5; line-height: 1.7; }
/* R86: avatar object-position center */
img.team-avatar { object-position: center !important; }

/* Culture */
.culture-section { background-color: var(--surface); }
.culture-block {
    padding: 24px;
    background-color: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 20px;
}
.culture-block h3 { font-size: 18px; color: var(--text); margin-bottom: 12px; }
.culture-block p { font-size: 16px; color: #c8d6e5; }

/* --- Contact Page --- */
.contact-channels-section { background-color: var(--surface); }
.channel-card {
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 28px;
    height: 100%;
}
.channel-icon { width: 48px; height: 48px; margin-bottom: 16px; }
.channel-icon img { width: 48px; height: 48px; object-fit: contain; }
.channel-card h3 { font-size: 20px; color: var(--text); margin-bottom: 12px; }
.channel-card p { font-size: 15px; color: #c8d6e5; }

.contact-list { list-style: none; padding: 0; margin: 0 0 28px; }
.contact-list li {
    font-size: 16px;
    color: #c8d6e5;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .fa { color: var(--accent); margin-right: 10px; width: 16px; }

.response-notice {
    background-color: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin-top: 24px;
}
.response-notice h4 { font-size: 16px; color: var(--text); margin-bottom: 10px; }
.response-notice p { font-size: 15px; color: #c8d6e5; }

/* Contact Form */
.contact-form .form-control {
    background-color: var(--surface2);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 16px;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    height: auto;
}
.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(99,102,241,0.2);
    background-color: var(--surface2);
    color: var(--text);
}
.contact-form .form-control::placeholder { color: var(--text-muted); }

.support-faq-section { background-color: var(--bg); }
.support-qa { margin-top: 24px; }
.support-q {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 16px;
}
.support-q h4 { font-size: 16px; color: var(--text); margin-bottom: 10px; }
.support-q p { font-size: 15px; color: #c8d6e5; margin: 0; }

/* --- Blog Listing --- */
/* R78: Fixed 3-column grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 32px;
}
@media (max-width: 991px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-card a { text-decoration: none; display: flex; flex-direction: column; height: 100%; }
.blog-card-img {
    background-color: var(--surface2);
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    padding: 12px;
    text-align: center;
}
.blog-card-img img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body {
    padding: 20px;
    flex: 1;
}
.blog-card time { font-size: 13px; color: var(--text-muted); display: block; margin-bottom: 8px; }
.blog-card h3 { font-size: 17px; color: var(--text); line-height: 1.4; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: #8892a4; line-height: 1.6; margin: 0; }

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--surface2);
    border-top: 1px solid var(--border);
    z-index: 9999;
    padding: 16px;
}
.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-text { font-size: 14px; color: #c8d6e5; flex: 1; }
.cookie-text strong { display: block; color: var(--text); margin-bottom: 4px; }
.cookie-text a { color: var(--accent); }
.cookie-buttons { display: flex; gap: 10px; }
#cookie-accept {
    background-color: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
#cookie-decline {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
}

/* --- Go Top --- */
.go-top {
    background-color: var(--accent);
    color: #ffffff !important;
}
.go-top:hover { background-color: var(--accent-dark); }

/* --- Responsive --- */
@media (max-width: 991px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    .section { padding: 60px 0; }
    .hero-section { min-height: 500px; padding: 100px 0 60px; }
}
@media (max-width: 767px) {
    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    .hero-cta-group { flex-direction: column; gap: 12px; }
    .hero-sub { font-size: 17px; }
    .stat-number { font-size: 32px; }
    .pricing-card { margin-bottom: 20px; }
    .cookie-content { flex-direction: column; align-items: flex-start; }
    .team-grid .col-md-4 { margin-bottom: 20px; }
}

/* --- Preloader (template override) --- */
.preloader { background-color: var(--bg); }
.sk-inner-circle { background-color: var(--accent); }

/* === Card Grid Alignment Fix (web0411 patch) === */
.row.features-grid {
    display: flex !important;
    flex-wrap: wrap !important;
}
.row.features-grid > [class*="col-"] {
    display: flex !important;
    flex-direction: column !important;
}
.feature-card-deep {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}
.feature-card-deep .feature-icon-sm {
    width: 52px;
    height: 52px;
    background-color: var(--accent-light, rgba(99,102,241,0.12));
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    color: var(--accent);
}
.feature-card-deep .feature-icon-sm .fa,
.feature-card-deep .feature-icon-sm .fas,
.feature-card-deep .feature-icon-sm span {
    color: var(--accent) !important;
    font-size: 22px;
}

/* === Steps Grid Fix — R80 (4-col horizontal grid) === */
.steps-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.steps-grid-4 .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 20px;
    height: 100%;
}
.steps-grid-4 .step-item .step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.steps-grid-4 .step-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}
.steps-grid-4 .step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    flex: 1;
}
@media (max-width: 991px) {
    .steps-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .steps-grid-4 { grid-template-columns: 1fr; }
}

/* === Hero Button Fix — R75 === */
.btn-accent {
    background-color: var(--accent) !important;
    color: #ffffff !important;
    border: 2px solid var(--accent) !important;
    border-radius: 8px !important;
    padding: 12px 28px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    white-space: nowrap !important;
}
.btn-accent:hover {
    background-color: var(--accent-dark) !important;
    color: #ffffff !important;
    border-color: var(--accent-dark) !important;
}
.btn-outline-hero {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.6) !important;
    border-radius: 8px !important;
    padding: 12px 28px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    white-space: nowrap !important;
}
.btn-outline-hero:hover {
    background-color: rgba(255,255,255,0.1) !important;
    color: #ffffff !important;
}
.btn-gap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* === Article / Blog image sizing (R-IMG) === */
.img-fluid,
.blog-hero-img,
.article-thumbnail img,
.article-thumbnail,
article img,
.post-content img,
.container-narrow img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 8px;
    margin: 24px 0;
}
