.tech-guidance {
    --navy-900: #071A33;
    --navy-800: #0A2540;
    --navy-700: #123256;
    --corridor-blue: #2E7DB0;
    --corridor-blue-light: #6FB1DC;
    --signal-amber: #F2A93B;
    --signal-amber-dark: #C9821B;
    --status-current: #2F8F5B;
    --status-draft: #F2A93B;
    --status-superseded: #8A97A8;
    --slate-600: #52657A;
    --slate-500: #6B7A8D;
    --mist-100: #EEF2F6;
    --mist-050: #F6F8FA;
    --line: #E1E7ED;
    --white: #FFFFFF;

    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;

    /* Layered elevation system — soft ambient + tight contact shadow */
    --shadow-xs: 0 1px 2px rgba(7, 26, 51, 0.06);
    --shadow-sm: 0 2px 6px rgba(7, 26, 51, 0.06), 0 1px 2px rgba(7, 26, 51, 0.05);
    --shadow-md: 0 10px 24px rgba(7, 26, 51, 0.08), 0 2px 8px rgba(7, 26, 51, 0.05);
    --shadow-lg: 0 20px 45px rgba(7, 26, 51, 0.14), 0 6px 16px rgba(7, 26, 51, 0.07);
    --shadow-glow-amber: 0 0 0 4px rgba(242, 169, 59, 0.16);
    --shadow-glow-blue: 0 0 0 4px rgba(46, 125, 176, 0.14);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);

    font-family: var(--font-body);
    background: var(--mist-050);
    color: var(--navy-900);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.tech-guidance h1, .tech-guidance h2, .tech-guidance h3, .tech-guidance h4 {
    font-family: var(--font-display);
    letter-spacing: -0.015em;
}

.tech-guidance .mono {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
}

.tech-guidance a {
    color: var(--corridor-blue);
    transition: color 0.15s var(--ease);
}
.tech-guidance a:hover { color: var(--navy-800); }

.tech-guidance :focus-visible {
    outline: 2px solid var(--signal-amber);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Slim, quiet scrollbars on horizontal rails (webkit) */
.tech-guidance .pill-nav::-webkit-scrollbar,
.tech-guidance .updates-strip::-webkit-scrollbar {
    height: 6px;
}
.tech-guidance .pill-nav::-webkit-scrollbar-thumb,
.tech-guidance .updates-strip::-webkit-scrollbar-thumb {
    background: rgba(10, 37, 64, 0.15);
    border-radius: 999px;
}
.tech-guidance .pill-nav::-webkit-scrollbar-track,
.tech-guidance .updates-strip::-webkit-scrollbar-track {
    background: transparent;
}

/* ==========================================================================
   Hero — instrument readout, not stock imagery
   ========================================================================== */

.tech-guidance .hero-section {
    background:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.035) 0px,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 34px
        ),
        radial-gradient(ellipse 60% 90% at 88% 8%, rgba(111, 177, 220, 0.16) 0%, transparent 60%),
        linear-gradient(150deg, var(--navy-800) 0%, var(--navy-900) 65%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}

.tech-guidance .hero-section::after {
    content: '';
    position: absolute;
    top: -22%;
    right: -9%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 125, 176, 0.3) 0%, rgba(46, 125, 176, 0) 70%);
    pointer-events: none;
}

.tech-guidance .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 20% 0%, #000 0%, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 60% at 20% 0%, #000 0%, transparent 75%);
    pointer-events: none;
}

.tech-guidance .hero-content { position: relative; z-index: 2; }

.tech-guidance .hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--corridor-blue-light);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.1rem;
}

.tech-guidance .hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--signal-amber);
    box-shadow: 0 0 0 4px rgba(242, 169, 59, 0.2);
    animation: tech-pulse 2.4s ease-in-out infinite;
}

@keyframes tech-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(242, 169, 59, 0.2); }
    50% { box-shadow: 0 0 0 7px rgba(242, 169, 59, 0.08); }
}

.tech-guidance .hero-title {
    font-size: clamp(2.1rem, 1.6rem + 2vw, 3.15rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.06;
    margin-bottom: 1.15rem;
}

.tech-guidance .hero-lead {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 42rem;
    margin-bottom: 2.1rem;
}

/* Readout panel — replaces the stock hero photo */
.tech-guidance .readout-panel {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    padding: 1.6rem 1.6rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tech-guidance .readout-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-guidance .readout-row:last-child { border-bottom: none; }

.tech-guidance .readout-label {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tech-guidance .readout-value {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.tech-guidance .readout-value.amber { color: var(--signal-amber); }

/* ==========================================================================
   Search + directorate pill nav
   ========================================================================== */

.tech-guidance .search-section {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 1.85rem;
    margin-top: -3rem;
    position: relative;
    z-index: 3;
    border: 1px solid var(--line);
}

.tech-guidance .search-section .form-control {
    border: 1px solid var(--line);
    border-radius: 10px 0 0 10px;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.tech-guidance .search-section .form-control:focus {
    box-shadow: var(--shadow-glow-blue);
    border-color: var(--corridor-blue);
}

.tech-guidance .btn-search {
    background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%);
    color: var(--white);
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 0 1.6rem;
    font-weight: 600;
    transition: background 0.18s var(--ease), transform 0.12s var(--ease);
}

.tech-guidance .btn-search:hover { background: var(--corridor-blue); color: var(--white); }
.tech-guidance .btn-search:active { transform: scale(0.98); }

.tech-guidance .pill-nav {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    margin-top: 1.4rem;
    scrollbar-width: thin;
}

.tech-guidance .pill-nav .pill {
    flex: 0 0 auto;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.52rem 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--mist-050);
    color: var(--navy-800);
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.16s var(--ease), color 0.16s var(--ease), background 0.16s var(--ease), transform 0.16s var(--ease);
}

.tech-guidance .pill-nav .pill:hover {
    border-color: var(--corridor-blue);
    color: var(--corridor-blue);
    background: var(--white);
    transform: translateY(-1px);
}

.tech-guidance .pill-nav .pill.active {
    background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%);
    border-color: var(--navy-800);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Latest Updates — amendment log strip
   ========================================================================== */

.tech-guidance .updates-strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0.25rem 1.1rem;
    scrollbar-width: thin;
}

.tech-guidance .update-card {
    flex: 0 0 300px;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--signal-amber);
    border-radius: 12px;
    padding: 1.2rem 1.3rem;
    box-shadow: var(--shadow-xs);
    transition: box-shadow 0.18s var(--ease), transform 0.18s var(--ease);
}

.tech-guidance .update-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.tech-guidance .update-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--signal-amber-dark);
    font-weight: 600;
}

.tech-guidance .update-headline {
    font-weight: 700;
    color: var(--navy-900);
    margin: 0.35rem 0 0.35rem;
    font-size: 0.98rem;
    line-height: 1.35;
}

.tech-guidance .update-detail {
    color: var(--slate-600);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

.tech-guidance .update-meta {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--slate-500);
    display: flex;
    justify-content: space-between;
}

/* ==========================================================================
   Directorate category cards
   ========================================================================== */

.tech-guidance .directorate-grid {
    align-items: stretch;
}

.tech-guidance .library-heading {
    max-width: 820px;
}

.tech-guidance .directorate-section {
    margin-bottom: 0;
    scroll-margin-top: 1.5rem;
}

.tech-guidance .directorate-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.tech-guidance .directorate-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--corridor-blue) 0%, var(--corridor-blue-light) 50%, var(--signal-amber) 100%);
    opacity: 0;
    transition: opacity 0.2s var(--ease);
}

.tech-guidance .directorate-card:hover {
    transform: translateY(-4px);
    border-color: rgba(46, 125, 176, 0.4);
    box-shadow: var(--shadow-lg);
}

.tech-guidance .directorate-card:hover::before { opacity: 1; }

.tech-guidance .directorate-card .card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.tech-guidance .directorate-heading {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    padding: 1.3rem 1.3rem 1.15rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.tech-guidance .directorate-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(155deg, var(--navy-700) 0%, var(--navy-900) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.tech-guidance .directorate-title-block {
    min-width: 0;
    flex: 1 1 auto;
}

.tech-guidance .category-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--corridor-blue);
    margin-bottom: 0.25rem;
}

.tech-guidance .directorate-heading h2 {
    font-size: 1.18rem;
    line-height: 1.25;
    margin: 0;
    color: var(--navy-900);
}

.tech-guidance .directorate-heading .directorate-desc {
    font-size: 0.88rem;
    color: var(--slate-600);
    margin: 0.35rem 0 0;
}

.tech-guidance .doc-count-badge {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--navy-800);
    background: rgba(46, 125, 176, 0.1);
    border: 1px solid rgba(46, 125, 176, 0.18);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.tech-guidance .department-list {
    padding: 1.05rem 1.3rem 1.3rem;
    display: grid;
    gap: 0.9rem;
}

.tech-guidance .department-group {
    margin-bottom: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--mist-050);
    transition: border-color 0.16s var(--ease);
}

.tech-guidance .department-group:hover {
    border-color: rgba(46, 125, 176, 0.28);
}

.tech-guidance .department-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.tech-guidance .department-name {
    font-family: var(--font-body);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--navy-900);
    margin: 0;
}

.tech-guidance .department-count {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--slate-600);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.22rem 0.55rem;
}

.tech-guidance .document-list {
    display: grid;
    gap: 0.6rem;
}

.tech-guidance .tgm-pager {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.18rem;
}

.tech-guidance .tgm-pager[hidden] {
    display: none;
}

.tech-guidance .tgm-pagination-list {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tech-guidance .tgm-pagination-item {
    display: inline-flex;
}

.tech-guidance .tgm-pager-btn,
.tech-guidance .tgm-pager-count {
    min-width: 2rem;
    height: 2rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--navy-800);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xs);
}

.tech-guidance .tgm-pager-btn {
    width: 2rem;
    padding: 0;
    font-size: 0.68rem;
    transition: border-color 0.16s var(--ease), color 0.16s var(--ease), background 0.16s var(--ease), opacity 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

.tech-guidance .tgm-pager-btn:hover:not(:disabled) {
    border-color: var(--corridor-blue);
    color: var(--corridor-blue);
    background: var(--mist-050);
    box-shadow: var(--shadow-sm);
}

.tech-guidance .tgm-pager-btn:disabled {
    cursor: default;
    opacity: 0.38;
    box-shadow: none;
}

.tech-guidance .tgm-pager-count {
    min-width: 5rem;
    padding: 0 0.72rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--corridor-blue);
    background: rgba(46, 125, 176, 0.08);
    border-color: rgba(46, 125, 176, 0.2);
    text-align: center;
}


/* Document item rows */
.tech-guidance .flight-strip {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--status-current);
    border-radius: 10px;
    padding: 0.85rem 0.95rem;
    margin-bottom: 0;
    transition: box-shadow 0.18s var(--ease), transform 0.18s var(--ease), border-color 0.18s var(--ease);
}

.tech-guidance .flight-strip:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px) translateX(1px);
    border-color: rgba(46, 125, 176, 0.35);
}

.tech-guidance .flight-strip[data-status="draft"] { border-left-color: var(--status-draft); }
.tech-guidance .flight-strip[data-status="superseded"] { border-left-color: var(--status-superseded); }

.tech-guidance .strip-code {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy-800);
    background: var(--mist-100);
    border-radius: 7px;
    padding: 0.35rem 0.55rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.tech-guidance .strip-body { flex: 1 1 auto; min-width: 0; }

.tech-guidance .strip-title {
    font-weight: 700;
    color: var(--navy-900);
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    line-height: 1.35;
}

.tech-guidance .strip-meta {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--slate-500);
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem 0.65rem;
}

.tech-guidance .strip-status {
    font-family: var(--font-body);
    font-weight: 700;
    padding: 0.12rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.tech-guidance .strip-status.current { background: rgba(47, 143, 91, 0.12); color: var(--status-current); }
.tech-guidance .strip-status.draft { background: rgba(242, 169, 59, 0.16); color: var(--signal-amber-dark); }
.tech-guidance .strip-status.superseded { background: rgba(138, 151, 168, 0.16); color: var(--status-superseded); }

.tech-guidance .strip-actions {
    display: flex;
    gap: 0.45rem;
    flex-shrink: 0;
}

.tech-guidance .btn-strip {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.44rem 0.82rem;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--navy-800);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: border-color 0.16s var(--ease), color 0.16s var(--ease), background 0.16s var(--ease), transform 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

.tech-guidance .btn-strip:hover i { transform: translateX(1px); }
.tech-guidance .btn-strip i { transition: transform 0.16s var(--ease); }

.tech-guidance .btn-strip.primary {
    background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%);
    border-color: var(--navy-800);
    color: var(--white);
}

.tech-guidance .btn-strip.primary:hover {
    background: var(--corridor-blue);
    border-color: var(--corridor-blue);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.tech-guidance .btn-strip:not(.primary):hover {
    border-color: var(--corridor-blue);
    color: var(--corridor-blue);
    box-shadow: var(--shadow-xs);
}
.tech-guidance .btn-strip:active { transform: scale(0.97); }

.tech-guidance .empty-department {
    font-size: 0.85rem;
    color: var(--slate-500);
    font-style: italic;
    padding: 0.35rem 0;
    margin: 0;
}

/* Quick access cards */
.tech-guidance .quick-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-xs);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.tech-guidance .quick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 125, 176, 0.3);
}

.tech-guidance .quick-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(155deg, rgba(46, 125, 176, 0.14), rgba(46, 125, 176, 0.06));
    color: var(--corridor-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.2s var(--ease-snap);
}

.tech-guidance .quick-card:hover .quick-icon { transform: scale(1.08) rotate(-4deg); }

/* Support + newsletter */
.tech-guidance .support-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.tech-guidance .newsletter-section {
    background:
        radial-gradient(ellipse 55% 80% at 12% 15%, rgba(111, 177, 220, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 45% 65% at 90% 100%, rgba(242, 169, 59, 0.14) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: var(--white);
    border-radius: 18px;
    padding: 3.2rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tech-guidance .newsletter-section .form-control {
    border-radius: 10px 0 0 10px;
    border: none;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}
.tech-guidance .newsletter-section .form-control:focus {
    box-shadow: var(--shadow-glow-amber);
}
.tech-guidance .newsletter-section .btn-light {
    border-radius: 0 10px 10px 0;
    font-weight: 600;
    transition: filter 0.16s var(--ease), transform 0.12s var(--ease);
}
.tech-guidance .newsletter-section .btn-light:hover { filter: brightness(0.96); }
.tech-guidance .newsletter-section .btn-light:active { transform: scale(0.98); }

/* Section labels */
.tech-guidance .section-label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--corridor-blue);
    margin-bottom: 0.4rem;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .tech-guidance .hero-title { font-size: 2.3rem; }
    .tech-guidance .readout-panel { margin-top: 2rem; }
}

@media (max-width: 768px) {
    .tech-guidance .hero-section { padding: 3.25rem 0 2.75rem; }
    .tech-guidance .hero-title { font-size: 1.9rem; }
    .tech-guidance .search-section { margin-top: -1.9rem; padding: 1.3rem; }
    .tech-guidance .flight-strip { flex-wrap: wrap; }
    .tech-guidance .strip-actions { width: 100%; justify-content: flex-end; margin-top: 0.5rem; }
    .tech-guidance .doc-count-badge { margin-left: 0; margin-top: 0.4rem; }
    .tech-guidance .directorate-heading { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    .tech-guidance * { transition: none !important; animation: none !important; }
}