/* =========================================================
   Energy Revolution System™ — Custom Stylesheet
   - Bootstrap 5.3 + Custom CSS (ZERO Mobirise dependencies)
   - BLUE title bands (per user spec)
   - Mobile-first, iOS / Safari / Edge optimized
   - Roboto font matching genius-song reference
   ========================================================= */

:root {
    --bs-primary:    #0d4f8b;
    --bs-primary-d:  #093a68;
    --bs-primary-l:  #1a6bb0;
    --bs-accent:     #ff8a00;
    --bs-accent-d:   #e07700;
    --bs-cta:        #e85a4f;
    --bs-cta-d:      #c44339;
    --bs-text:       #232323;
    --bs-text-soft:  #4f5460;
    --bs-muted:      #6f7689;
    --bs-bg-soft:    #f4f7fb;
    --bs-bg-card:    #ffffff;
    --bs-border:     #e2e6ee;
    --bs-blue-band:  linear-gradient(90deg, #0d4f8b 0%, #1a6bb0 50%, #0d4f8b 100%);
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: var(--bs-text);
    line-height: 1.65;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    padding-bottom: 70px;
    overflow-x: hidden;
}
@media (min-width: 992px) { body { padding-bottom: 0; } }

@supports (padding: env(safe-area-inset-bottom)) {
    .sticky-cta {
        padding-bottom: calc(0.6rem + env(safe-area-inset-bottom)) !important;
    }
}

img { max-width: 100%; height: auto; }
a { transition: color 0.2s ease; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-cta {
    background: linear-gradient(135deg, var(--bs-cta) 0%, #d44a3f 100%);
    color: #fff !important;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.75rem 1.7rem;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(232, 90, 79, 0.3);
    -webkit-tap-highlight-color: transparent;
}
.btn-cta:hover, .btn-cta:focus {
    background: linear-gradient(135deg, var(--bs-cta-d) 0%, #b03a30 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(232, 90, 79, 0.45);
}
.btn-outline-primary {
    color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    background: transparent;
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
}
.btn-outline-primary:hover {
    background: var(--bs-primary) !important;
    color: #fff !important;
}

/* =========================================================
   NAVBAR
   ========================================================= */
#topNav {
    background: #fff !important;
    border-bottom: 1px solid var(--bs-border);
    transition: box-shadow 0.25s ease;
}
#topNav.scrolled { box-shadow: 0 4px 14px rgba(13, 79, 139, 0.12); }
.navbar-brand .brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--bs-primary);
    letter-spacing: -0.5px;
}
.navbar-brand .brand-text sup {
    font-size: 0.55em;
    color: var(--bs-accent);
}
.nav-link {
    color: var(--bs-text) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem !important;
    transition: color 0.2s ease;
    border-radius: 6px;
}
.nav-link:hover, .nav-link.active {
    color: var(--bs-primary) !important;
    background: rgba(13, 79, 139, 0.06);
}
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991px) {
    #mainNav { padding-top: 0.5rem; }
    .nav-link { padding: 0.85rem 0.5rem !important; border-bottom: 1px solid var(--bs-border); border-radius: 0; }
    .nav-item:last-child .nav-link { border-bottom: none; }
    .ms-lg-2 { margin-top: 0.75rem; }
    .btn-cta { width: 100%; text-align: center; }
}

/* =========================================================
   OFFER BANNER
   ========================================================= */
.offer-banner {
    background: linear-gradient(90deg, var(--bs-accent) 0%, #e07700 100%);
    padding: 0.7rem 1rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
.offer-banner a { color: #1a1a1a; text-decoration: underline; }
@media (max-width: 576px) {
    .offer-banner { font-size: 0.82rem; padding: 0.55rem 0.75rem; }
}

/* =========================================================
   TITLE BAND — BLUE for every title (user spec)
   ========================================================= */
.title-band {
    background: var(--bs-blue-band);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}
.title-band::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 138, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.title-band-text {
    color: #fff !important;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    letter-spacing: -0.3px;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 2;
}
.title-band-text::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 2px;
    margin: 0.85rem auto 0;
}
@media (max-width: 768px) {
    .title-band { padding: 1.75rem 0; }
    .title-band-text { font-size: 1.4rem; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #f4f7fb 0%, #e8eef6 100%);
    position: relative;
}
.hero-cover {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(13, 79, 139, 0.22);
}
.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bs-primary-d);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hero-text {
    font-size: 1.05rem;
    color: var(--bs-text-soft);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.hero-text a { color: var(--bs-primary); text-decoration: underline; }
.hero-text strong { color: var(--bs-text); }
.hero-bullets { margin: 1.25rem 0; }
.hero-bullets > div { padding: 0.4rem 0; font-size: 1rem; color: var(--bs-text-soft); }
.hero-bullets i { color: var(--bs-primary); margin-right: 0.5rem; }
.rating-line {
    margin: 1.25rem 0 0;
    font-size: 0.95rem;
    color: var(--bs-text-soft);
}
.rating-line .stars {
    color: var(--bs-accent);
    letter-spacing: 0.15em;
    margin-right: 0.4rem;
}
.rating-line strong { color: var(--bs-primary-d); }

.hero-pricing-block {
    background: #fff;
    border: 1px solid var(--bs-border);
    border-left: 4px solid var(--bs-cta);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
    display: inline-block;
}
.hero-pricing-block .strike {
    color: var(--bs-muted);
    text-decoration: line-through;
    margin-right: 0.5rem;
}
.hero-pricing-block .price-now {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bs-cta);
}

@media (max-width: 991px) {
    .hero-section { padding: 2rem 0; }
    .hero-title { font-size: 1.6rem; text-align: center; }
    .hero-text { text-align: center; }
    .hero-cover { max-width: 340px; margin: 0 auto 1.5rem; display: block; }
    .hero-buttons, .rating-line, .hero-bullets { text-align: center; }
    .hero-bullets > div { display: inline-block; text-align: left; max-width: 340px; }
}

/* =========================================================
   TRUST SECTION
   ========================================================= */
.trust-section {
    padding: 3rem 0;
    background: var(--bs-bg-soft);
}
.trust-card {
    background: #fff;
    border: 1px solid var(--bs-border);
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 12px rgba(13, 79, 139, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(13, 79, 139, 0.10);
}
.trust-icon {
    font-size: 2.5rem;
    color: var(--bs-primary);
    margin-bottom: 0.85rem;
    line-height: 1;
}
.trust-card h3 {
    color: var(--bs-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.trust-card p { font-size: 0.95rem; color: var(--bs-text-soft); margin: 0; }
.trust-card a { color: var(--bs-primary); text-decoration: underline; }

/* =========================================================
   CONTENT SECTION
   ========================================================= */
.content-section { padding: 3rem 0; background: #fff; }
.content-section p {
    color: var(--bs-text-soft);
    line-height: 1.8;
    font-size: 1.05rem;
}
.content-section p strong { color: var(--bs-primary-d); }
.content-section a {
    color: var(--bs-primary);
    text-decoration: underline;
}
.content-section a:hover { color: var(--bs-primary-d); }
.content-section h3 {
    color: var(--bs-primary-d);
    font-weight: 700;
    margin: 1.5rem 0 0.85rem;
    font-size: 1.3rem;
}
.lead-text {
    font-size: 1.15rem !important;
    color: var(--bs-text) !important;
    font-weight: 500 !important;
    line-height: 1.7 !important;
    margin-bottom: 1.5rem !important;
    padding: 1rem 1.25rem;
    background: var(--bs-bg-soft);
    border-left: 4px solid var(--bs-primary);
    border-radius: 0 8px 8px 0;
}
.callout-soft {
    background: #fff8e6;
    border-left: 4px solid var(--bs-accent);
    padding: 0.85rem 1.1rem;
    border-radius: 0 8px 8px 0;
    color: var(--bs-text-soft);
    font-size: 0.95rem;
    margin: 1.5rem 0;
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing-section { background: var(--bs-bg-soft); }
.pricing-sub {
    color: var(--bs-text-soft);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}
.pricing-img {
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(13, 79, 139, 0.18);
    transition: transform 0.3s ease;
}
.pricing-img:hover { transform: translateY(-4px); }
.warning-text { color: var(--bs-cta-d); font-size: 0.95rem; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-section { background: var(--bs-bg-soft); }
.review-card {
    background: #fff;
    border: 1px solid var(--bs-border);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 12px rgba(13, 79, 139, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(13, 79, 139, 0.10);
}
.review-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bs-primary);
    padding: 3px;
    background: #fff;
    margin: 0 auto 0.85rem;
    display: block;
}
.review-card h4 {
    color: var(--bs-primary-d);
    font-weight: 700;
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
}
.review-location {
    color: var(--bs-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.review-location i { color: var(--bs-primary); margin-right: 0.25rem; }
.review-stars {
    color: var(--bs-accent);
    letter-spacing: 0.15em;
    margin-bottom: 0.85rem;
    font-size: 1.05rem;
}
.verified {
    background: var(--bs-primary);
    color: #fff;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    margin-left: 0.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.review-text {
    color: var(--bs-text-soft);
    font-style: italic;
    line-height: 1.7;
    font-size: 0.98rem;
    margin: 0;
}

/* =========================================================
   FEATURE / BENEFIT BLOCKS
   ========================================================= */
.feature-block, .benefit-block {
    padding: 1.5rem 0;
    border-bottom: 1px dashed var(--bs-border);
}
.feature-block:last-child, .benefit-block:last-child { border-bottom: none; }
.feature-block h3, .benefit-block h3 {
    color: var(--bs-primary-d);
    margin-bottom: 0.6rem !important;
    font-size: 1.15rem !important;
}
.feature-block h3 i { color: var(--bs-primary); margin-right: 0.5rem; }

/* =========================================================
   WHAT'S INSIDE BLOCKS (numbered list)
   ========================================================= */
.inside-block {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px dashed var(--bs-border);
}
.inside-block:last-child { border-bottom: none; }
.inside-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-l) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(13, 79, 139, 0.3);
}
.inside-block h4 {
    color: var(--bs-primary-d);
    margin: 0 0 0.4rem !important;
    font-size: 1.1rem !important;
    font-weight: 700;
}
.inside-block p { margin: 0; color: var(--bs-text-soft); font-size: 1rem; line-height: 1.7; }

/* =========================================================
   PROS / CONS
   ========================================================= */
.proscons-section { background: var(--bs-bg-soft); }
.pros-card, .cons-card {
    background: #fff;
    border: 1px solid var(--bs-border);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(13, 79, 139, 0.05);
}
.pros-card { border-top: 5px solid #28a745; }
.cons-card { border-top: 5px solid var(--bs-accent); }
.pros-card h3, .cons-card h3 {
    color: var(--bs-primary-d);
    font-weight: 800;
    margin: 0 0 1rem !important;
    font-size: 1.3rem !important;
    text-align: center;
}
.pros-card h3 i { color: #28a745; margin-right: 0.5rem; }
.cons-card h3 i { color: var(--bs-accent-d); margin-right: 0.5rem; }
.pros-card ul, .cons-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pros-card li, .cons-card li {
    padding: 0.7rem 0 0.7rem 1.8rem;
    border-bottom: 1px dashed var(--bs-border);
    position: relative;
    font-size: 0.98rem;
    color: var(--bs-text-soft);
    line-height: 1.6;
}
.pros-card li:last-child, .cons-card li:last-child { border-bottom: none; }
.pros-card li::before {
    content: "✓";
    color: #28a745;
    font-weight: 800;
    position: absolute;
    left: 0;
    top: 0.6rem;
    font-size: 1.1rem;
}
.cons-card li::before {
    content: "!";
    color: var(--bs-accent-d);
    font-weight: 800;
    position: absolute;
    left: 0.45rem;
    top: 0.6rem;
    font-size: 1.1rem;
}
.pros-card li strong, .cons-card li strong {
    color: var(--bs-primary-d);
    display: block;
    margin-bottom: 0.15rem;
}

/* =========================================================
   GUARANTEE
   ========================================================= */
.guarantee-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fff 0%, #fff8e6 100%);
    border-top: 1px solid var(--bs-border);
    border-bottom: 1px solid var(--bs-border);
}
.guarantee-badge {
    max-width: 240px;
    margin: 0 auto;
    filter: drop-shadow(0 8px 20px rgba(13, 79, 139, 0.18));
}
.guarantee-title {
    color: var(--bs-primary-d);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.85rem;
}

/* =========================================================
   STEP BLOCKS (How to use)
   ========================================================= */
.step-block {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px dashed var(--bs-border);
}
.step-block:last-child { border-bottom: none; }
.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-l) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 6px 14px rgba(13, 79, 139, 0.3);
}
.step-block h3 {
    color: var(--bs-primary-d);
    margin: 0 0 0.5rem !important;
    font-size: 1.15rem !important;
}
.step-block p { margin: 0; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-section { background: var(--bs-bg-soft); }
.accordion-item {
    background: #fff;
    border: 1px solid var(--bs-border) !important;
    border-radius: 12px !important;
    margin-bottom: 0.85rem;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(13, 79, 139, 0.04);
}
.accordion-button {
    background: #fff !important;
    color: var(--bs-text) !important;
    font-weight: 700;
    padding: 1.15rem 1.25rem;
    font-size: 1rem;
    border: none !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: var(--bs-primary) !important;
    color: #fff !important;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.accordion-button:focus { box-shadow: none !important; }
.accordion-body {
    background: var(--bs-bg-soft);
    color: var(--bs-text-soft);
    line-height: 1.75;
    font-size: 1rem;
    padding: 1.15rem 1.25rem;
}
.accordion-body a { color: var(--bs-primary); text-decoration: underline; }

/* =========================================================
   "WHAT HAPPENS AFTER BUY" SECTION
   ========================================================= */
.what-happens-section { background: #fff; }
.checkout-image {
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(13, 79, 139, 0.18);
    margin: 1.5rem auto;
    display: block;
    transition: transform 0.3s ease;
}
.checkout-image:hover { transform: translateY(-4px); }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-d) 100%);
    color: #fff;
    text-align: center;
}
.final-cover {
    max-width: 320px;
    margin: 0 auto 1.5rem;
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}
.final-price {
    color: #fff !important;
    font-size: 1.25rem !important;
}
.final-price .strike {
    text-decoration: line-through;
    opacity: 0.7;
}
.final-price-now {
    color: var(--bs-accent) !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
}
.cta-foot {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: #08233f;
    color: #98a8c0;
    padding: 2.5rem 0 1.5rem;
}
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1.5rem;
}
.footer-nav.legal { margin-bottom: 1.25rem; padding-top: 0.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-nav li a {
    color: #d4dfee;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.footer-nav li a:hover { color: #fff; text-decoration: underline; }
.footer-disclaimer {
    font-size: 0.82rem;
    line-height: 1.7;
    max-width: 950px;
    margin: 1.25rem auto;
    opacity: 0.7;
    text-align: center;
}
.footer-disclaimer strong { color: #d4dfee; }
.footer-copy {
    text-align: center;
    font-size: 0.9rem;
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy small {
    display: block;
    margin-top: 0.5rem;
    opacity: 0.6;
    font-size: 0.78rem;
    line-height: 1.6;
}

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1029;
    padding: 0.6rem 0.85rem;
    background: rgba(15, 17, 21, 0.96);
    border-top: 1px solid rgba(255, 138, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.sticky-cta .btn-cta {
    width: 100%;
    border-radius: 50px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
}

/* =========================================================
   SUBPAGE / LEGAL
   ========================================================= */
.subpage-content, .legal-page {
    padding: 3rem 0 4rem;
    background: var(--bs-bg-soft);
}
.subpage-content h2, .legal-page h2 {
    font-size: 1.4rem;
    color: var(--bs-primary-d);
    font-weight: 800;
    border-bottom: 2px solid var(--bs-primary);
    display: inline-block;
    padding-bottom: 0.3rem;
    margin: 1.75rem 0 0.75rem;
}
.subpage-content h3, .legal-page h3 {
    font-size: 1.15rem;
    color: var(--bs-primary);
    font-weight: 700;
    margin: 1.25rem 0 0.5rem;
}
.subpage-content p, .legal-page p {
    color: var(--bs-text-soft);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.subpage-content ul, .legal-page ul {
    padding-left: 1.4rem;
    margin-bottom: 1.25rem;
}
.subpage-content ul li, .legal-page ul li {
    color: var(--bs-text-soft);
    margin-bottom: 0.5rem;
    line-height: 1.65;
}
.subpage-content a, .legal-page a {
    color: var(--bs-primary);
    text-decoration: underline;
    font-weight: 500;
}
.subpage-content a:hover, .legal-page a:hover { color: var(--bs-primary-d); }
.subpage-callout, .legal-updated {
    background: #fff;
    border-left: 4px solid var(--bs-primary);
    padding: 0.85rem 1.1rem;
    border-radius: 0 8px 8px 0;
    color: var(--bs-text);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 10px rgba(13, 79, 139, 0.05);
}

/* Related reads */
.related-reads {
    background: #fff;
    border: 1px solid var(--bs-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2.5rem 0 0;
    box-shadow: 0 4px 14px rgba(13, 79, 139, 0.06);
}
.related-reads h3 {
    color: var(--bs-primary-d) !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 0 1rem !important;
}
.related-reads ul { list-style: none; padding: 0; margin: 0; }
.related-reads li {
    padding: 0.55rem 0;
    border-bottom: 1px dashed var(--bs-border);
}
.related-reads li:last-child { border-bottom: none; }
.related-reads li a {
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}
.related-reads li a:hover {
    color: var(--bs-primary-d);
    padding-left: 4px;
    text-decoration: underline;
}
.related-reads li a::before {
    content: "→ ";
    color: var(--bs-accent);
    margin-right: 0.25rem;
}

/* Blog index */
.blog-index { padding: 3rem 0 4rem; background: var(--bs-bg-soft); }
.blog-card {
    background: #fff;
    border: 1px solid var(--bs-border);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(13, 79, 139, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(13, 79, 139, 0.12);
}
.blog-card h3 { color: var(--bs-primary-d); font-weight: 700; font-size: 1.3rem; margin: 0 0 0.5rem; }
.blog-card .blog-meta {
    color: var(--bs-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-card p { color: var(--bs-text-soft); margin: 0 0 1rem; line-height: 1.65; }
.blog-card a.blog-cta {
    color: var(--bs-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--bs-primary);
    padding-bottom: 1px;
}
.blog-card a.blog-cta:hover { color: var(--bs-primary-d); border-color: var(--bs-primary-d); }

/* Fade-in */
.fade-init {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-init.is-visible { opacity: 1; transform: translateY(0); }

button, a, input { -webkit-tap-highlight-color: transparent; }

/* Scroll-to-top */
.scrollToTop {
    position: fixed;
    bottom: 80px;
    right: 18px;
    width: 44px;
    height: 44px;
    background: var(--bs-primary);
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(13, 79, 139, 0.35);
    z-index: 1028;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scrollToTop.is-visible { opacity: 1; visibility: visible; }
.scrollToTop:hover { background: var(--bs-primary-d); transform: translateY(-2px); }
.scrollToTop::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2.5px solid #fff;
    border-right: 2.5px solid #fff;
    transform: rotate(-45deg);
    margin-top: 4px;
}
@media (min-width: 992px) {
    .scrollToTop { bottom: 24px; }
}
