/* ═══════════════════════════════════════════
   INFOBRIDGE  —  Main Stylesheet
   Linked from: infobridge_website/index.html
═══════════════════════════════════════════ */

/* ── Variables ──────────────────────────── */
:root {
    --green: #27a744;
    --green-dark: #1a7a32;
    --green-light: #e8f5ec;
    --navy: #0f172a;
    --navy-light: #1e293b;
    --text: #334155;
    --muted: #64748b;
    --radius: 24px;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* ── Base ───────────────────────────────── */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: #fff;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
}

a {
    color: var(--green);
}

a:hover {
    color: var(--green-dark);
}

/* ── Navbar ─────────────────────────────── */
#ib-nav {
    background: rgba(26, 35, 50, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s;
}

#ib-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
}

#ib-nav .navbar-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

#ib-nav .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 6px 14px !important;
    transition: color 0.2s;
}

#ib-nav .nav-link:hover {
    color: #fff !important;
}

#ib-nav .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

#ib-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Language toggle ─────────────────────── */
#lang-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    padding: 2px;
    gap: 0;
    margin-left: 8px;
    flex-shrink: 0;
}

#lang-toggle button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 18px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

#lang-toggle button.active {
    background: var(--green);
    color: #fff;
}

#lang-toggle button:hover:not(.active) {
    color: #fff;
}

/* ── Hero ───────────────────────────────── */
#hero {
    background: url('../images/bg_2.png') center center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

#hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(55, 58, 68, 0.52);
}

#hero .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

#hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.3em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

#hero .hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

#hero .hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.40);
}

/* ── Glassmorphism Utilities ──────────────── */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.glass-panel-dark {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: #fff;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--navy) !important;
    border-radius: 12px;
    padding: 13px 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: var(--navy) !important;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.40);
    border-radius: 12px;
    padding: 13px 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.24);
    color: #fff !important;
}

/* ── Section scaffold ────────────────────── */
.ib-section {
    padding: 80px 0;
}

.ib-section.green-bg {
    background: var(--green-light);
}

.ib-section.dark-bg {
    background: var(--navy);
}

.ib-section.grey-bg {
    background: #f8fafc;
}

.section-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.85);
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

.section-lead {
    font-size: 1.02rem;
    color: var(--muted);
    max-width: 600px;
}

.dark-bg .section-lead {
    color: rgba(255, 255, 255, 0.6);
}

/* ── Flow / How it Works ─────────────────── */
.flow-container {
    padding: 20px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 20px;
}

.flow-card {
    background: #fff;
    border: 1.5px solid #e8edf2;
    border-radius: var(--radius);
    padding: 32px;
    height: 100%;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.flow-card:hover {
    border-color: var(--green);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(39, 167, 68, 0.1);
}

.flow-num {
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.flow-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.flow-card p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

.btn-flow-more {
    background: none;
    border: none;
    padding: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.btn-flow-more:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

/* ── Alien Signal Section ─────────────────── */
.alien-box {
    background: #0f172a;
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin: 40px 0;
}

.alien-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(39, 167, 68, 0.15) 0%, rgba(39, 167, 68, 0) 70%);
    pointer-events: none;
}

.gibberish-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    color: #f43f5e;
    opacity: 0.6;
    letter-spacing: 0.2em;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    border: 1px dashed rgba(244, 63, 94, 0.3);
}

.restored-text {
    font-size: 1.2rem;
    color: #fff;
    background: rgba(39, 167, 68, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(39, 167, 68, 0.3);
}

/* ── Multimedia & Plus Alpha Group ───────── */
.multimedia-box {
    margin-top: 60px;
    background: #fff;
    border: 1.5px solid #e8edf2;
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.multimedia-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.multi-text {
    flex: 1;
}

.multi-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.multi-text p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.multi-text strong {
    color: var(--green);
    font-weight: 800;
}

.multi-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.multi-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .multimedia-box {
        flex-direction: column;
        padding: 32px;
        text-align: center;
        gap: 32px;
    }

    .multi-text h3 {
        font-size: 1.35rem;
    }
}

/* ── Multimedia & Governance ────────────────── */
.light-bg {
    background-color: #f8fafc;
}

.mul-gov-section {
    position: relative;
    margin-top: 40px;
}

.mul-gov-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}


.mul-tag,
.gov-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.05em;
    width: fit-content;
}

.mul-tag {
    background: #e0f2f1;
    color: #00796b;
}

.gov-tag {
    background: #f1f5f9;
    color: var(--navy);
}

.mul-gov-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.mul-gov-card p {
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 30px;
}

.mul-gov-card .illustration {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;
}

.mul-gov-card .illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .mul-gov-card {
        padding: 30px;
        margin-bottom: 20px;
    }
}

/* ── Modals & Glassmorphism ──────────────── */
.ib-modal .modal-content {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ib-modal .modal-header h4 {
    color: var(--navy);
    letter-spacing: -0.01em;
}

.ib-modal .modal-body {
    color: var(--text);
    line-height: 1.75;
    font-size: 0.95rem;
}

.ib-modal .modal-body h5 {
    font-size: 1rem;
    color: var(--green-dark);
    margin: 20px 0 10px;
}

.ib-modal .modal-body ul {
    padding-left: 1.2rem;
}

.ib-modal .modal-body li {
    margin-bottom: 8px;
}

.ib-modal .modal-body strong {
    color: var(--navy);
}

/* ── Receiver section ────────────────────── */
.receiver-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 36px 32px;
    height: 100%;
    transition: border-color 0.3s, background 0.3s;
}

.receiver-card.balanced:hover {
    border-color: #1a73e8;
    background: rgba(26, 115, 232, 0.08);
}

.receiver-card.secure:hover {
    border-color: var(--green);
    background: rgba(39, 167, 68, 0.08);
}

.receiver-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.badge-blue {
    background: rgba(26, 115, 232, 0.2);
    color: #6ea8fe;
}

.badge-green {
    background: rgba(39, 167, 68, 0.2);
    color: #75d89b;
}

.badge-blue-green {
    background: rgba(39, 167, 68, 0.28);
    color: #4ade80;
}

.receiver-card h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.receiver-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.btn-rec-open {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    background: #fff;
    color: var(--navy) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
    transition: opacity 0.2s;
}

.btn-rec-open:hover {
    opacity: 0.9;
}

.btn-rec-dl {
    display: block;
    width: 100%;
    padding: 11px;
    border-radius: 10px;
    border: 1.5px solid;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.balanced .btn-rec-dl {
    color: #6ea8fe;
    border-color: #6ea8fe;
}

.balanced .btn-rec-dl:hover {
    background: #1a73e8;
    color: #fff;
}

.secure .btn-rec-dl {
    color: #75d89b;
    border-color: #75d89b;
}

.secure .btn-rec-dl:hover {
    background: var(--green);
    color: #fff;
}

/* ── How-to steps ────────────────────────── */
.step-circle {
    width: 42px;
    height: 42px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Use-case table ──────────────────────── */
.uc-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.uc-table td {
    padding: 16px 22px;
    background: #fff;
    border: 1.5px solid #e8edf2;
}

.uc-table tr td:first-child {
    border-radius: var(--radius) 0 0 var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--green-dark);
    min-width: 170px;
    border-right: none;
    white-space: nowrap;
}

.uc-table tr td:last-child {
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--muted);
    font-size: 0.92rem;
    border-left: none;
}

/* ── Disclaimer ──────────────────────────── */
.disclaimer-banner {
    background: #fff8e1;
    border-left: 4px solid #f5a623;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
}

.disclaimer-banner strong {
    color: #b5720a;
}

.disclaimer-banner p {
    font-size: 0.9rem;
    color: #7c6020;
    margin: 0;
    line-height: 1.65;
}

/* ── Accordion (Terms & Privacy) ─────────── */
#legal .accordion-item {
    background: #fff;
    border: 1.5px solid #e8edf2 !important;
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

#legal .accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    background: #fff;
    color: var(--text);
    padding: 20px 24px;
    box-shadow: none !important;
    outline: none !important;
}

#legal .accordion-button::after {
    /* Replace Bootstrap's default chevron with a clean +/− */
    background-image: none !important;
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--green);
    width: auto;
    height: auto;
    transform: none !important;
    transition: content 0.2s;
    line-height: 1;
}

#legal .accordion-button:not(.collapsed) {
    background: var(--green-light);
    color: var(--green-dark);
    box-shadow: none !important;
    border-bottom: 1.5px solid #c8e6d0;
}

#legal .accordion-button:not(.collapsed)::after {
    content: '\2212';
    /* − minus sign */
    color: var(--green-dark);
}

#legal .accordion-body {
    padding: 24px 28px;
    font-size: 0.91rem;
    line-height: 1.8;
    color: var(--muted);
    background: #fff;
}

#legal .accordion-body p {
    margin-bottom: 0.75em;
}

#legal .accordion-body h1,
#legal .accordion-body h2,
#legal .accordion-body h3 {
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
}

#legal .accordion-body h1 {
    font-size: 1.35rem;
    margin-bottom: 0.8em;
}

#legal .accordion-body h2 {
    font-size: 1.05rem;
    margin-top: 1.6em;
    margin-bottom: 0.5em;
}

#legal .accordion-body h3 {
    font-size: 0.95rem;
    margin-top: 1.25em;
    margin-bottom: 0.4em;
}

#legal .accordion-body h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 1.4em;
    margin-bottom: 0.35em;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

#legal .accordion-body ul,
#legal .accordion-body ol {
    margin-bottom: 1em;
    padding-left: 1.3rem;
}

#legal .accordion-body li {
    margin-bottom: 0.45em;
}

/* ── Footer ──────────────────────────────── */
#footer {
    background: var(--navy);
    padding: 56px 0 32px;
    color: rgba(255, 255, 255, 0.6);
}

#footer .footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

#footer img.footer-logo-img {
    height: 44px;
    border-radius: 10px;
}

#footer h6 {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

#footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

#footer a:hover {
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 32px 0 20px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.32);
}

/* ── Scroll offset for anchors ─────────────── */
[id] {
    scroll-margin-top: 70px;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 768px) {
    .ib-section {
        padding: 60px 0;
    }

    .receiver-card {
        padding: 28px 20px;
        margin-bottom: 16px;
    }

    .uc-table tr td:first-child {
        white-space: normal;
    }

    #lang-toggle {
        margin-left: 0;
        margin-top: 8px;
    }
}

/* ── Storytelling Flow Adjustments ─────────── */
.flow-step-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fdfdfd;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #e8edf2;
    transition: transform 0.2s, box-shadow 0.2s;
}


.flow-step-box .step-num {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}

.slide-img {
    transition: transform 0.4s ease;
}


/* ── Lang Selector Toggle ───────────────── */
.lang-selector-group {
    background: #f1f5f9;
    padding: 8px;
    border-radius: 30px;
    display: inline-flex;
}

.btn-lang-select {
    background: transparent;
    border: none;
    border-radius: 24px;
    padding: 12px 28px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--muted);
}

.btn-lang-select:hover:not(.active) {
    background: #e2e8f0;
    color: var(--navy);
}

.btn-lang-select.active {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-lang-select .lang-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.btn-lang-select .lang-desc {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ── Path Animation ───────────────────── */
.flow-path {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.flow-path.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Scanner Note (Secondary Info) ────── */
.scanner-note {
    font-size: 0.9em;
    opacity: 0.65;
    display: block;
    margin-top: 12px;
}

/* ── Path Section Spacing ──────────────── */
.path-section {
    margin-bottom: 140px;
}

.path-section:last-child {
    margin-bottom: 0;
}
