/* ==========================================================================
   Onyx Theme - Main Stylesheet
   A clean, standalone CSS file with no framework dependencies
   ========================================================================== */

/* ----- @font-face Declarations ----- */

@font-face {
    font-family: 'Lato';
    src: url('../fonts/lato/lato-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/lato/lato-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/lato/lato-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/lato/lato-black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--onyx-font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--onyx-text-body);
    background: var(--onyx-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--onyx-navy);
    color: var(--onyx-text-white);
    padding: 8px 16px;
    z-index: 100000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ==========================================================================
   Header
   ========================================================================== */

.onyx-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--onyx-navy);
    transition: box-shadow var(--onyx-transition);
}

.onyx-header.is-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.onyx-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--onyx-max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
}

/* Logo (HP-01: white SVG with scroll sizing) */
.onyx-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.onyx-logo svg,
.onyx-logo__img {
    max-width: 70px;
    max-height: 70px;
    height: auto;
    aspect-ratio: 1 / 1;
    transition: max-width var(--onyx-transition), max-height var(--onyx-transition);
}

.onyx-logo svg {
    fill: #ffffff;
}

/* Scrolled state (header gets .is-scrolled via navigation.js) */
.onyx-header.is-scrolled .onyx-logo svg,
.onyx-header.is-scrolled .onyx-logo__img {
    max-width: 52px;
    max-height: 52px;
}

.onyx-header.is-scrolled .onyx-header__inner {
    height: 60px;
}

.onyx-logo__text {
    font-size: 1.5rem;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-text-white);
}

/* ==========================================================================
   Desktop Navigation
   ========================================================================== */

.onyx-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.onyx-nav__menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.onyx-nav__menu > li {
    position: relative;
}

.onyx-nav__menu > li > a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--onyx-text-white);
    text-decoration: none;
    font-weight: var(--onyx-font-regular);
    font-size: 0.95rem;
    transition: color var(--onyx-transition);
}

.onyx-nav__menu > li > a:hover,
.onyx-nav__menu > li > a:focus {
    color: var(--onyx-gold);
}

/* Dropdown Arrow */
.onyx-dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--onyx-transition);
}

.onyx-has-dropdown:hover .onyx-dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.onyx-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--onyx-bg-white);
    box-shadow: var(--onyx-shadow-dropdown);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.onyx-has-dropdown:hover > .onyx-dropdown,
.onyx-has-dropdown:focus-within > .onyx-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Show dropdown when aria-expanded is true (keyboard/touch support) */
.onyx-has-dropdown > a[aria-expanded="true"] ~ .onyx-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.onyx-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--onyx-navy);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background var(--onyx-transition), color var(--onyx-transition);
}

.onyx-dropdown li a:hover,
.onyx-dropdown li a:focus {
    background: var(--onyx-gold);
    color: var(--onyx-navy);
}

/* Header CTA Button */
.onyx-btn-cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-weight: var(--onyx-font-bold);
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: var(--onyx-nav-btn-radius);
    white-space: nowrap;
    transition: background var(--onyx-transition), transform var(--onyx-transition);
}

.onyx-btn-cta:hover,
.onyx-btn-cta:focus {
    background: var(--onyx-light-gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */

.onyx-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.onyx-mobile-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--onyx-text-white);
    transition: transform var(--onyx-transition), opacity var(--onyx-transition);
}

/* Hamburger to X animation */
.onyx-mobile-toggle[aria-expanded="true"] .onyx-mobile-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.onyx-mobile-toggle[aria-expanded="true"] .onyx-mobile-toggle__bar:nth-child(2) {
    opacity: 0;
}

.onyx-mobile-toggle[aria-expanded="true"] .onyx-mobile-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Panel */
.onyx-mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--onyx-navy);
    padding: 24px;
    overflow-y: auto;
    z-index: 999;
}

.onyx-mobile-nav.is-open {
    display: block;
}

.onyx-mobile-nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.onyx-mobile-nav__menu li {
    border-bottom: 1px solid var(--onyx-border-dark);
}

.onyx-mobile-nav__menu a {
    display: block;
    padding: 16px 0;
    color: var(--onyx-text-white);
    text-decoration: none;
    font-size: 1.1rem;
}

.onyx-mobile-nav__menu a:hover {
    color: var(--onyx-gold);
}

/* Mobile Dropdown */
.onyx-mobile-nav__menu .onyx-dropdown {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.onyx-mobile-nav__menu .onyx-dropdown a {
    padding: 12px 0;
    font-size: 1rem;
    color: var(--onyx-text-white-80);
}

.onyx-mobile-cta {
    display: block;
    margin-top: 24px;
    padding: 16px;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    text-align: center;
    font-weight: var(--onyx-font-bold);
    text-decoration: none;
    border-radius: var(--onyx-btn-radius);
}

/* Mobile Breakpoint */
@media (max-width: 1024px) {
    .onyx-nav {
        display: none;
    }

    .onyx-mobile-toggle {
        display: flex;
    }
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.onyx-main {
    min-height: calc(100vh - 80px - 300px);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.onyx-footer {
    background: var(--onyx-navy);
    color: var(--onyx-text-white-80);
    padding-top: 64px;
}

.onyx-footer__inner {
    max-width: var(--onyx-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.onyx-footer__columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--onyx-border-dark);
}

.onyx-footer__heading {
    color: var(--onyx-text-white);
    font-size: 1rem;
    font-weight: var(--onyx-font-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 16px;
}

.onyx-footer__text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 16px;
}

.onyx-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.onyx-footer__links li {
    margin-bottom: 8px;
}

.onyx-footer__links a {
    color: var(--onyx-text-white-80);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--onyx-transition);
}

.onyx-footer__links a:hover {
    color: var(--onyx-gold);
}

.onyx-footer__address {
    font-style: normal;
    color: var(--onyx-text-white-80);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.5;
}

/* Social Links */
.onyx-social-links {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.onyx-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--onyx-text-white-60);
    font-size: 1.25rem;
    transition: color var(--onyx-transition);
}

.onyx-social-links a:hover {
    color: var(--onyx-gold);
}

/* Partner Badges */
.onyx-footer__badges {
    margin-top: 24px;
}

.onyx-footer__badges img {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
}

/* Footer Bottom */
.onyx-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.onyx-footer__copyright {
    font-size: 0.85rem;
    color: var(--onyx-text-white-60);
}

.onyx-footer__legal-menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.onyx-footer__legal-menu a {
    color: var(--onyx-text-white-60);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--onyx-transition);
}

.onyx-footer__legal-menu a:hover {
    color: var(--onyx-gold);
}

/* Footer Responsive */
@media (max-width: 900px) {
    .onyx-footer__columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .onyx-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   Container & Layout Utilities
   ========================================================================== */

.onyx-container {
    max-width: var(--onyx-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.onyx-section {
    padding: var(--onyx-section-pad-sm) 0;
}

@media (min-width: 1024px) {
    .onyx-section {
        padding: var(--onyx-section-pad-lg) 0;
    }
}

/* ==========================================================================
   Page Sub-Navigation (Child Page Links)
   ========================================================================== */

.onyx-page-nav {
    background: var(--onyx-bg-off-white, #f8f9fa);
    padding: 48px 0;
    border-bottom: 1px solid rgba(31, 39, 59, 0.08);
}

.onyx-page-nav__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.onyx-page-nav__card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: var(--onyx-bg-white);
    border-radius: 12px;
    border: 1px solid rgba(31, 39, 59, 0.08);
    text-decoration: none;
    transition: transform 0.3s var(--onyx-ease), box-shadow 0.3s var(--onyx-ease), border-color 0.3s var(--onyx-ease);
}

.onyx-page-nav__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(31, 39, 59, 0.12);
    border-color: var(--onyx-gold);
}

.onyx-page-nav__icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.onyx-page-nav__title {
    font-size: 18px;
    font-weight: var(--onyx-font-semibold);
    color: var(--onyx-navy);
}

.onyx-page-nav__desc {
    font-size: 14px;
    color: var(--onyx-text-body);
    line-height: 1.5;
}

.onyx-page-nav__arrow {
    color: var(--onyx-gold);
    font-weight: var(--onyx-font-semibold);
    margin-top: auto;
    padding-top: 8px;
    transition: transform 0.3s var(--onyx-ease);
}

.onyx-page-nav__card:hover .onyx-page-nav__arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .onyx-page-nav {
        padding: 32px 0;
    }

    .onyx-page-nav__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .onyx-page-nav__card {
        padding: 20px;
    }
}

/* ==========================================================================
   Button Components
   ========================================================================== */

.onyx-btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-weight: var(--onyx-font-bold);
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--onyx-btn-radius);
    border: none;
    cursor: pointer;
    transition: background var(--onyx-transition), transform var(--onyx-transition);
}

.onyx-btn-primary:hover,
.onyx-btn-primary:focus {
    background: var(--onyx-light-gold);
    transform: translateY(-2px);
}

.onyx-btn-ghost {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--onyx-text-white);
    font-weight: var(--onyx-font-bold);
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--onyx-btn-radius);
    border: 2px solid var(--onyx-text-white);
    cursor: pointer;
    transition: background var(--onyx-transition), color var(--onyx-transition);
}

.onyx-btn-ghost:hover,
.onyx-btn-ghost:focus {
    background: var(--onyx-text-white);
    color: var(--onyx-navy);
}

.onyx-btn-ghost--dark {
    color: var(--onyx-navy);
    border-color: var(--onyx-navy);
}

.onyx-btn-ghost--dark:hover,
.onyx-btn-ghost--dark:focus {
    background: var(--onyx-navy);
    color: var(--onyx-text-white);
}

/* ==========================================================================
   Scroll Reveal Animation
   ========================================================================== */

.onyx-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.onyx-reveal.onyx-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .onyx-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==========================================================================
   Focus States (Accessibility)
   ========================================================================== */

:focus-visible {
    outline: 3px solid var(--onyx-gold);
    outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* ==========================================================================
   Section Headings
   ========================================================================== */

.onyx-section-heading {
    text-align: center;
    color: var(--onyx-text-heading);
    font-weight: var(--onyx-font-black);
    font-size: clamp(24px, 4vw, 40px);
    margin-bottom: 48px;
}

.onyx-section-heading--light {
    color: var(--onyx-text-white);
}

/* ==========================================================================
   Hero Section (HOME-01) - Holographic/Iridescent Design
   Premium prismatic effects with glassmorphism
   ========================================================================== */

/* ----- Hero Container ----- */
.onyx-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--onyx-bg-charcoal);
}

@media (min-width: 768px) {
    .onyx-hero {
        padding: 140px 0 100px;
    }
}

/* ----- Holographic Background Container ----- */
.onyx-hero__holo {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

/* Base layer - deep navy */
.onyx-hero__holo-base {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--onyx-navy) 0%, var(--onyx-bg-charcoal) 100%);
}

/* Animated prismatic gradient */
.onyx-hero__holo-gradient {
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        var(--onyx-hero-holo-cyan) 0deg,
        var(--onyx-hero-holo-blue) 60deg,
        var(--onyx-hero-holo-violet) 120deg,
        var(--onyx-hero-holo-magenta) 180deg,
        var(--onyx-gold) 240deg,
        var(--onyx-hero-holo-cyan) 300deg,
        var(--onyx-hero-holo-cyan) 360deg
    );
    opacity: 0.15;
    animation: holo-rotate 20s linear infinite;
    filter: blur(80px);
}

@keyframes holo-rotate {
    0% {
        transform: rotate(0deg) scale(1.5);
    }
    100% {
        transform: rotate(360deg) scale(1.5);
    }
}

/* Shimmer sweep effect */
.onyx-hero__holo-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 35%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 65%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer-sweep 6s ease-in-out infinite;
}

@keyframes shimmer-sweep {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Diagonal light streaks */
.onyx-hero__holo-streaks {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -60deg,
            transparent 0px,
            transparent 80px,
            rgba(255, 187, 9, 0.02) 80px,
            rgba(255, 187, 9, 0.02) 82px,
            transparent 82px,
            transparent 160px
        ),
        repeating-linear-gradient(
            60deg,
            transparent 0px,
            transparent 120px,
            rgba(0, 212, 255, 0.015) 120px,
            rgba(0, 212, 255, 0.015) 122px,
            transparent 122px,
            transparent 240px
        );
    animation: streaks-shift 15s linear infinite;
}

@keyframes streaks-shift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(160px);
    }
}

/* Subtle noise texture */
.onyx-hero__holo-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ----- Floating Iridescent Orbs ----- */
.onyx-hero__orbs {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.onyx-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
}

.onyx-hero__orb--cyan {
    width: clamp(250px, 35vw, 450px);
    height: clamp(250px, 35vw, 450px);
    background: var(--onyx-hero-holo-cyan);
    opacity: 0.2;
    top: -10%;
    left: -5%;
    animation: orb-drift-1 25s ease-in-out infinite;
}

.onyx-hero__orb--magenta {
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    background: var(--onyx-hero-holo-magenta);
    opacity: 0.15;
    top: 50%;
    right: -10%;
    animation: orb-drift-2 20s ease-in-out infinite;
}

.onyx-hero__orb--gold {
    width: clamp(180px, 25vw, 350px);
    height: clamp(180px, 25vw, 350px);
    background: var(--onyx-gold);
    opacity: 0.12;
    bottom: 10%;
    left: 20%;
    animation: orb-drift-3 22s ease-in-out infinite;
}

.onyx-hero__orb--violet {
    width: clamp(220px, 28vw, 380px);
    height: clamp(220px, 28vw, 380px);
    background: var(--onyx-hero-holo-violet);
    opacity: 0.18;
    top: 20%;
    right: 25%;
    animation: orb-drift-4 18s ease-in-out infinite;
}

@keyframes orb-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10%, 15%) scale(1.1); }
    66% { transform: translate(-5%, 8%) scale(0.95); }
}

@keyframes orb-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15%, -10%) scale(1.15); }
}

@keyframes orb-drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20%, -10%) scale(1.05); }
    66% { transform: translate(-10%, 5%) scale(1.1); }
}

@keyframes orb-drift-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, 20%) scale(0.9); }
}

/* ----- HP-02: Hero split layout (replaces glassmorphism card) ----- */
.onyx-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .onyx-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

/* Browser chrome frame for product visual */
.onyx-hero__visual {
    position: relative;
}

.onyx-hero__browser-frame {
    background: #0D1117;
    border-radius: 12px;
    overflow: hidden;
    animation: hero-visual-enter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 187, 9, 0.08);
}

.onyx-hero__browser-dots {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: #161B22;
}

.onyx-hero__browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #30363D;
}

.onyx-hero__product-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Hero visual entrance animation */
@keyframes hero-visual-enter {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .onyx-hero__browser-frame {
        animation: none;
    }
}

@media (max-width: 1023px) {
    .onyx-hero__visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

@keyframes glass-appear {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ----- Hero Content ----- */
.onyx-hero__content {
    text-align: left;
    animation: content-stagger 0.8s ease-out 0.5s both;
}

@media (max-width: 1023px) {
    .onyx-hero__content {
        text-align: center;
    }
}

@keyframes content-stagger {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- Badge / Overline ----- */
.onyx-hero__badge {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 10px 24px 10px 20px;
    font-size: 11px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-text-white-80);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 28px;
    overflow: hidden;
}

.onyx-hero__badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 187, 9, 0.15),
        rgba(0, 212, 255, 0.1),
        rgba(131, 56, 236, 0.1),
        rgba(255, 187, 9, 0.15)
    );
    background-size: 300% 100%;
    animation: badge-gradient 4s ease infinite;
    border-radius: 100px;
}

.onyx-hero__badge::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}

@keyframes badge-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.onyx-hero__badge-glow {
    width: 6px;
    height: 6px;
    background: var(--onyx-gold);
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    z-index: 1;
    animation: glow-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--onyx-gold), 0 0 20px rgba(255, 187, 9, 0.5);
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 10px var(--onyx-gold), 0 0 20px rgba(255, 187, 9, 0.5);
    }
    50% {
        box-shadow: 0 0 15px var(--onyx-gold), 0 0 30px rgba(255, 187, 9, 0.7), 0 0 45px rgba(255, 187, 9, 0.3);
    }
}

.onyx-hero__badge-text {
    position: relative;
    z-index: 1;
}

/* ----- Headline ----- */
.onyx-hero__headline {
    color: var(--onyx-text-white);
    font-size: clamp(32px, 6vw, 64px);
    font-weight: var(--onyx-font-black);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    text-wrap: balance;
}

/* ----- Subheadline ----- */
.onyx-hero__subheadline {
    color: var(--onyx-text-white-80);
    font-size: clamp(17px, 2.2vw, 21px);
    font-weight: var(--onyx-font-regular);
    line-height: 1.65;
    max-width: 600px;
    margin: 0 0 40px;
}

@media (max-width: 1023px) {
    .onyx-hero__subheadline {
        margin: 0 auto 40px;
    }
}

/* ----- CTA Buttons ----- */
.onyx-hero__ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 540px) {
    .onyx-hero__ctas {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .onyx-hero__ctas {
        justify-content: flex-start;
    }
}

.onyx-hero__cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-weight: var(--onyx-font-bold);
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s var(--onyx-ease);
    box-shadow: 0 0 30px rgba(255, 187, 9, 0.3), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.onyx-hero__cta-primary:hover {
    background: var(--onyx-light-gold);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 187, 9, 0.5), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.onyx-hero__cta-primary:hover .onyx-btn-icon {
    transform: translateX(4px);
}

.onyx-btn-icon {
    transition: transform 0.3s var(--onyx-ease);
}

.onyx-hero__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--onyx-text-white);
    font-weight: var(--onyx-font-bold);
    font-size: 16px;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s var(--onyx-ease);
}

.onyx-hero__cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 187, 9, 0.3);
    color: var(--onyx-gold);
    transform: translateY(-2px);
}

/* ----- Trust Indicators ----- */
.onyx-hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
}

@media (min-width: 1024px) {
    .onyx-hero__trust {
        justify-content: flex-start;
    }
}

.onyx-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--onyx-text-white-60);
    white-space: nowrap;
}

.onyx-hero__trust-item svg {
    color: var(--onyx-gold);
    opacity: 0.8;
}

.onyx-hero__trust-divider {
    width: 4px;
    height: 4px;
    background: var(--onyx-text-white-60);
    border-radius: 50%;
    opacity: 0.3;
}

@media (max-width: 640px) {
    .onyx-hero__trust {
        flex-direction: column;
        gap: 8px;
    }

    .onyx-hero__trust-divider {
        display: none;
    }
}

/* ----- Scroll Indicator ----- */
.onyx-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.onyx-hero__scroll-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--onyx-text-white-60);
}

.onyx-hero__scroll-line {
    width: 1px;
    height: 40px;
    position: relative;
    overflow: hidden;
}

.onyx-hero__scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--onyx-gold), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* ----- Reduced Motion Support ----- */
@media (prefers-reduced-motion: reduce) {
    .onyx-hero__holo-gradient,
    .onyx-hero__holo-shimmer,
    .onyx-hero__holo-streaks,
    .onyx-hero__orb,
    .onyx-hero__badge::before,
    .onyx-hero__scroll-line::before,
    .onyx-hero__content {
        animation: none;
    }

    .onyx-hero__content {
        opacity: 1;
        transform: none;
    }

    .onyx-hero__holo-gradient {
        transform: rotate(0deg) scale(1.5);
    }
}

/* HP-05: Brand-correct hero gradient (replaces holographic layers) */
.onyx-hero {
    background: linear-gradient(180deg, #1F273B 0%, #141B2B 100%);
}

/* Legacy support - keep browser frame styles for other pages */
.onyx-browser-frame {
    box-shadow: var(--onyx-shadow-product);
    border-radius: 8px;
    overflow: hidden;
}

.onyx-browser-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Trust Bar (HOME-02)
   ========================================================================== */

.onyx-trust-bar {
    background: var(--onyx-bg-white);
    padding: 20px 0;
    border-top: 1px solid rgba(31, 39, 59, 0.08);
    position: relative;
}

/* Subtle gradient accent line */
.onyx-trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 600px);
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--onyx-gold) 20%,
        var(--onyx-hero-holo-cyan) 50%,
        var(--onyx-gold) 80%,
        transparent
    );
    opacity: 0.6;
}

/* Text-based trust indicators */
.onyx-trust-bar__text {
    text-align: center;
}

.onyx-trust-bar__label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--onyx-text-caption);
    margin-bottom: 12px;
}

.onyx-trust-bar__items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.onyx-trust-bar__item {
    font-size: 13px;
    font-weight: var(--onyx-font-regular);
    color: var(--onyx-text-body);
    padding: 0 16px;
    white-space: nowrap;
}

.onyx-trust-bar__divider {
    width: 4px;
    height: 4px;
    background: var(--onyx-gold);
    border-radius: 50%;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .onyx-trust-bar__item {
        font-size: 12px;
        padding: 4px 12px;
    }

    .onyx-trust-bar__divider {
        display: none;
    }

    .onyx-trust-bar__items {
        flex-direction: column;
        gap: 4px;
    }
}

/* Logo badges */
.onyx-trust-bar__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(31, 39, 59, 0.06);
}

@media (min-width: 1024px) {
    .onyx-trust-bar__logos {
        justify-content: space-between;
        gap: 24px;
    }
}

.onyx-trust-bar__logo img {
    height: 36px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: filter var(--onyx-transition), opacity var(--onyx-transition);
}

.onyx-trust-bar__logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   Credentials Ticker (HOME-02 Alt)
   Infinite scrolling marquee of trust badges and certifications.
   ========================================================================== */

.onyx-credentials-ticker {
    background: var(--onyx-bg-white);
    padding: 24px 0 32px;
    overflow: hidden;
    border-top: 1px solid rgba(31, 39, 59, 0.08);
    position: relative;
}

/* Subtle gradient accent line */
.onyx-credentials-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 600px);
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--onyx-gold) 20%,
        var(--onyx-hero-holo-cyan) 50%,
        var(--onyx-gold) 80%,
        transparent
    );
    opacity: 0.6;
}

.onyx-credentials-ticker__label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--onyx-text-caption);
    text-align: center;
    margin-bottom: 20px;
    font-weight: var(--onyx-font-semibold);
}

.onyx-credentials-ticker__track {
    display: flex;
    width: max-content;
    animation: credentials-ticker-scroll 45s linear infinite;
}

.onyx-credentials-ticker__track:hover {
    animation-play-state: paused;
}

.onyx-credentials-ticker__logos {
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 0 28px;
}

.onyx-credentials-ticker__logos img {
    height: 52px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter 0.3s var(--onyx-ease), opacity 0.3s var(--onyx-ease), transform 0.3s var(--onyx-ease);
}

.onyx-credentials-ticker__logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

@keyframes credentials-ticker-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Reduced motion: disable animation, show static grid */
@media (prefers-reduced-motion: reduce) {
    .onyx-credentials-ticker__track {
        animation: none;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 40px;
        padding: 0 16px;
    }

    .onyx-credentials-ticker__logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 40px;
    }

    .onyx-credentials-ticker__logos:last-child {
        display: none;
    }
}

/* Mobile: smaller logos, faster scroll */
@media (max-width: 768px) {
    .onyx-credentials-ticker {
        padding: 20px 0 24px;
    }

    .onyx-credentials-ticker__logos {
        gap: 40px;
        padding: 0 20px;
    }

    .onyx-credentials-ticker__logos img {
        height: 40px;
        max-width: 100px;
    }

    .onyx-credentials-ticker__track {
        animation-duration: 35s;
    }
}

/* ==========================================================================
   Pain Cards (HOME-03) — "Sound Familiar?"
   ========================================================================== */

.onyx-pain {
    background: linear-gradient(180deg, var(--onyx-navy) 0%, var(--onyx-bg-charcoal) 100%);
    padding: var(--onyx-section-pad-sm) 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .onyx-pain {
        padding: var(--onyx-section-pad-lg) 0;
    }
}

/* Subtle background glow */
.onyx-pain::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 0, 110, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.onyx-pain__heading {
    text-align: center;
    color: var(--onyx-text-white);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: var(--onyx-font-black);
    margin: 0 0 48px;
    letter-spacing: -0.02em;
    position: relative;
}

.onyx-pain__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
}

@media (min-width: 768px) {
    .onyx-pain__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* Card base with glassmorphism */
.onyx-pain__card {
    position: relative;
    background: rgba(31, 39, 59, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2px;
    transition: transform 0.4s var(--onyx-ease), box-shadow 0.4s var(--onyx-ease);
    animation: pain-card-reveal 0.8s var(--onyx-ease) backwards;
    animation-delay: var(--card-delay, 0s);
}

@keyframes pain-card-reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.onyx-pain__card:hover {
    transform: translateY(-8px);
}

/* Animated gradient border */
.onyx-pain__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--card-accent), transparent 50%, var(--card-accent));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    transition: opacity 0.4s var(--onyx-ease), background-position 0.4s var(--onyx-ease);
}

.onyx-pain__card:hover::before {
    opacity: 1;
    background-position: 100% 100%;
}

/* Card accent colors */
.onyx-pain__card--cyan {
    --card-accent: var(--onyx-hero-holo-cyan);
    --card-glow: rgba(0, 212, 255, 0.3);
}

.onyx-pain__card--gold {
    --card-accent: var(--onyx-gold);
    --card-glow: rgba(255, 187, 9, 0.3);
}

.onyx-pain__card--magenta {
    --card-accent: var(--onyx-hero-holo-magenta);
    --card-glow: rgba(255, 0, 110, 0.3);
}

/* Hover glow effect */
.onyx-pain__card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, var(--card-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s var(--onyx-ease);
    pointer-events: none;
    z-index: -1;
}

.onyx-pain__card:hover .onyx-pain__card-glow {
    opacity: 1;
}

/* Card content */
.onyx-pain__card-content {
    background: rgba(20, 27, 43, 0.9);
    border-radius: 18px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

@media (min-width: 768px) {
    .onyx-pain__card-content {
        padding: 40px 32px;
    }
}

/* HP-06: Pain card persona icons */
.onyx-pain__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--onyx-gold);
}
.onyx-pain__card--cyan .onyx-pain__icon { color: var(--onyx-hero-holo-cyan, #00d4ff); }
.onyx-pain__card--gold .onyx-pain__icon { color: var(--onyx-gold); }
.onyx-pain__card--magenta .onyx-pain__icon { color: var(--onyx-hero-holo-magenta, #ff6b9d); }

.onyx-pain__card-headline {
    color: var(--onyx-text-white);
    font-size: 20px;
    font-weight: var(--onyx-font-bold);
    line-height: 1.4;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .onyx-pain__card-headline {
        font-size: 22px;
    }
}

.onyx-pain__card-body {
    color: var(--onyx-text-white-80);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 24px;
    flex-grow: 1;
}

/* CTA link */
.onyx-pain__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--card-accent);
    font-weight: var(--onyx-font-bold);
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s var(--onyx-ease), color 0.3s var(--onyx-ease);
}

.onyx-pain__cta svg {
    transition: transform 0.3s var(--onyx-ease);
}

.onyx-pain__cta:hover,
.onyx-pain__cta:focus {
    gap: 12px;
}

.onyx-pain__cta:hover svg,
.onyx-pain__cta:focus svg {
    transform: translateX(4px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .onyx-pain__card {
        animation: none;
    }
    .onyx-pain__card,
    .onyx-pain__card::before,
    .onyx-pain__card-glow,
    .onyx-pain__cta,
    .onyx-pain__cta svg {
        transition: none;
    }
}

/* ==========================================================================
   Value Ladder (HOME-04) — "Three Steps to Production"
   ========================================================================== */

.onyx-ladder {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-sm) 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .onyx-ladder {
        padding: var(--onyx-section-pad-lg) 0;
    }
}

/* Header */
.onyx-ladder__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.onyx-ladder__heading {
    color: var(--onyx-text-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: var(--onyx-font-black);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.onyx-ladder__subheading {
    color: var(--onyx-text-body);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    margin: 0;
}

/* Timeline container */
.onyx-ladder__timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* Horizontal progress line */
.onyx-ladder__line {
    display: none;
}

@media (min-width: 768px) {
    .onyx-ladder__line {
        display: block;
        position: absolute;
        top: 40px;
        left: calc(16.666% + 20px);
        right: calc(16.666% + 20px);
        height: 4px;
        background: var(--onyx-border-light);
        border-radius: 2px;
        z-index: 1;
    }

    .onyx-ladder__line-fill {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,
            var(--onyx-hero-holo-cyan) 0%,
            var(--onyx-gold) 50%,
            var(--onyx-hero-holo-magenta) 100%
        );
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: left;
        animation: ladder-line-fill 1.5s var(--onyx-ease) 0.5s forwards;
    }
}

@keyframes ladder-line-fill {
    to { transform: scaleX(1); }
}

/* Steps grid */
.onyx-ladder__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .onyx-ladder__steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Individual step */
.onyx-ladder__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: ladder-step-reveal 0.8s var(--onyx-ease) backwards;
    animation-delay: var(--step-delay, 0s);
}

@keyframes ladder-step-reveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step indicator (numbered circle) */
.onyx-ladder__indicator {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    background: var(--onyx-bg-white);
    box-shadow: 0 4px 20px rgba(31, 39, 59, 0.1);
    transition: transform 0.3s var(--onyx-ease), box-shadow 0.3s var(--onyx-ease);
}

/* Gradient border on indicator */
.onyx-ladder__indicator::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--step-accent), var(--step-accent-light));
    z-index: -1;
    opacity: 0.8;
    transition: opacity 0.3s var(--onyx-ease);
}

.onyx-ladder__step:hover .onyx-ladder__indicator {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(31, 39, 59, 0.15);
}

.onyx-ladder__step:hover .onyx-ladder__indicator::before {
    opacity: 1;
}

.onyx-ladder__number {
    font-size: 28px;
    font-weight: var(--onyx-font-black);
    color: var(--step-accent);
    line-height: 1;
}

/* Step accent colors */
.onyx-ladder__step--cyan {
    --step-accent: var(--onyx-hero-holo-cyan);
    --step-accent-light: #66E5FF;
}

.onyx-ladder__step--gold {
    --step-accent: var(--onyx-gold);
    --step-accent-light: var(--onyx-light-gold);
}

.onyx-ladder__step--magenta {
    --step-accent: var(--onyx-hero-holo-magenta);
    --step-accent-light: #FF66A3;
}

/* Step card */
.onyx-ladder__card {
    background: var(--onyx-bg-white);
    border-radius: var(--onyx-card-radius);
    padding: 32px 24px;
    box-shadow: var(--onyx-shadow-card);
    flex-grow: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--onyx-ease), box-shadow 0.3s var(--onyx-ease);
}

.onyx-ladder__step:hover .onyx-ladder__card {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(31, 39, 59, 0.12);
}

.onyx-ladder__title {
    color: var(--onyx-text-heading);
    font-size: 20px;
    font-weight: var(--onyx-font-bold);
    margin: 0 0 12px;
    line-height: 1.3;
}

.onyx-ladder__desc {
    color: var(--onyx-text-body);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 16px;
    flex-grow: 1;
}

/* Pricing badge */
.onyx-ladder__pricing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 187, 9, 0.1), rgba(255, 187, 9, 0.05));
    border: 1px solid rgba(255, 187, 9, 0.3);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--onyx-navy);
    font-weight: var(--onyx-font-bold);
}

.onyx-ladder__pricing svg {
    color: var(--onyx-gold);
    flex-shrink: 0;
}

/* CTA button */
.onyx-ladder__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--onyx-navy);
    color: var(--onyx-text-white);
    border-radius: var(--onyx-btn-radius);
    font-weight: var(--onyx-font-bold);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s var(--onyx-ease), gap 0.3s var(--onyx-ease);
}

.onyx-ladder__cta:hover,
.onyx-ladder__cta:focus {
    background: var(--onyx-mid-navy);
    gap: 12px;
}

.onyx-ladder__cta svg {
    transition: transform 0.3s var(--onyx-ease);
}

.onyx-ladder__cta:hover svg,
.onyx-ladder__cta:focus svg {
    transform: translateX(4px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .onyx-ladder__step,
    .onyx-ladder__line-fill {
        animation: none;
    }
    .onyx-ladder__line-fill {
        transform: scaleX(1);
    }
    .onyx-ladder__indicator,
    .onyx-ladder__indicator::before,
    .onyx-ladder__card,
    .onyx-ladder__cta,
    .onyx-ladder__cta svg {
        transition: none;
    }
}

/* ==========================================================================
   Impact Metrics (HOME-05) — £93M Documented Impact
   Dark theme with giant hero stat and glassmorphism proof cards
   ========================================================================== */

.onyx-impact {
    background: linear-gradient(180deg, var(--onyx-bg-charcoal) 0%, var(--onyx-navy) 100%);
    padding: var(--onyx-section-pad-sm) 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .onyx-impact {
        padding: var(--onyx-section-pad-lg) 0;
    }
}

.onyx-impact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 20%, rgba(255, 187, 9, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.onyx-impact__hero {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

.onyx-impact__value {
    display: block;
    font-size: clamp(64px, 12vw, 120px);
    font-weight: var(--onyx-font-black);
    color: var(--onyx-gold);
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 0 60px rgba(255, 187, 9, 0.4);
    animation: impact-glow 3s ease-in-out infinite alternate;
}

@keyframes impact-glow {
    from { text-shadow: 0 0 40px rgba(255, 187, 9, 0.3); }
    to { text-shadow: 0 0 80px rgba(255, 187, 9, 0.5); }
}

.onyx-impact__heading {
    color: var(--onyx-text-white);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: var(--onyx-font-bold);
    margin: 16px auto 12px;
    max-width: 700px;
}

.onyx-impact__subheading {
    color: var(--onyx-text-white-60);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.onyx-impact__proofs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .onyx-impact__proofs {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.onyx-impact__card {
    background: rgba(31, 39, 59, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: impact-card 0.8s var(--onyx-ease) backwards;
    animation-delay: var(--card-delay, 0s);
    transition: transform 0.3s var(--onyx-ease), border-color 0.3s var(--onyx-ease);
}

@keyframes impact-card {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.onyx-impact__card:hover {
    transform: translateY(-4px);
    border-color: var(--card-accent);
}

.onyx-impact__card--cyan { --card-accent: var(--onyx-hero-holo-cyan); }
.onyx-impact__card--gold { --card-accent: var(--onyx-gold); }
.onyx-impact__card--magenta { --card-accent: var(--onyx-hero-holo-magenta); }

.onyx-impact__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 187, 9, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-hero-holo-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.onyx-impact__badge svg {
    color: var(--onyx-gold);
}

.onyx-impact__metric {
    margin-bottom: 16px;
}

.onyx-impact__metric-value {
    display: block;
    font-size: 36px;
    font-weight: var(--onyx-font-black);
    color: var(--card-accent);
    line-height: 1.1;
}

.onyx-impact__metric-label {
    display: block;
    font-size: 14px;
    color: var(--onyx-text-white-60);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.onyx-impact__desc {
    color: var(--onyx-text-white-80);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.onyx-impact__cta-wrap {
    text-align: center;
}

.onyx-impact__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    border-radius: var(--onyx-btn-radius);
    font-weight: var(--onyx-font-bold);
    text-decoration: none;
    transition: gap 0.3s var(--onyx-ease), transform 0.3s var(--onyx-ease);
}

.onyx-impact__cta:hover {
    gap: 12px;
    transform: translateY(-2px);
}

/* ==========================================================================
   Testimonials (HOME-06) — Dark Theme
   Glassmorphism cards with Microsoft badge support
   ========================================================================== */

.onyx-testimonials--dark {
    background: var(--onyx-navy);
    padding: var(--onyx-section-pad-sm) 0;
}

@media (min-width: 1024px) {
    .onyx-testimonials--dark {
        padding: var(--onyx-section-pad-lg) 0;
    }
}

.onyx-testimonials__heading {
    text-align: center;
    color: var(--onyx-text-white);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: var(--onyx-font-black);
    margin: 0 0 48px;
}

.onyx-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .onyx-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.onyx-testimonial {
    background: rgba(31, 39, 59, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    animation: testimonial-card 0.8s var(--onyx-ease) backwards;
    animation-delay: var(--card-delay, 0s);
    transition: border-color 0.3s var(--onyx-ease);
}

@keyframes testimonial-card {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.onyx-testimonial:hover {
    border-color: rgba(255, 187, 9, 0.3);
}

.onyx-testimonial--featured {
    border-color: rgba(0, 212, 255, 0.3);
}

.onyx-testimonial__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 187, 9, 0.15));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-hero-holo-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    width: fit-content;
}

.onyx-testimonial__badge svg {
    color: var(--onyx-gold);
}

.onyx-testimonial__quote {
    margin: 0;
    padding: 0;
    color: var(--onyx-text-white-80);
    line-height: 1.7;
    font-size: 15px;
    flex: 1;
    position: relative;
    padding-left: 24px;
}

.onyx-testimonial__quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    color: var(--onyx-gold);
    font-size: 48px;
    font-weight: var(--onyx-font-black);
    opacity: 0.3;
    line-height: 1;
}

.onyx-testimonial__quote p {
    margin: 0;
}

.onyx-testimonial__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.onyx-testimonial__logo {
    max-width: 120px;
    max-height: 48px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.onyx-testimonial__author {
    display: flex;
    flex-direction: column;
}

.onyx-testimonial__name {
    display: block;
    color: var(--onyx-text-white);
    font-weight: var(--onyx-font-bold);
    font-style: normal;
}

.onyx-testimonial__role {
    display: block;
    color: var(--onyx-text-white-60);
    font-size: 14px;
}

/* ==========================================================================
   Trust Logos (HOME-08) — Partner Logos Bar
   Clean, minimal design with gold accent dividers
   ========================================================================== */

.onyx-trust-logos {
    background: var(--onyx-bg-white);
    padding: 48px 0;
    text-align: center;
}

.onyx-trust-logos__label {
    display: block;
    font-size: 12px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-text-caption);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.onyx-trust-logos__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 32px;
}

.onyx-trust-logos__item {
    color: var(--onyx-text-body);
    font-size: 14px;
    font-weight: var(--onyx-font-bold);
}

.onyx-trust-logos__divider {
    width: 4px;
    height: 4px;
    background: var(--onyx-gold);
    border-radius: 50%;
}

.onyx-trust-logos__logo {
    max-width: 120px;
    max-height: 40px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s var(--onyx-ease), opacity 0.3s var(--onyx-ease);
}

.onyx-trust-logos__logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 767px) {
    .onyx-trust-logos__divider {
        display: none;
    }

    .onyx-trust-logos__grid {
        flex-direction: column;
        gap: 12px;
    }
}

/* Reduced motion for Impact and Testimonials */
@media (prefers-reduced-motion: reduce) {
    .onyx-impact__value,
    .onyx-impact__card,
    .onyx-testimonial {
        animation: none;
    }
}

/* ==========================================================================
   Gold CTA (HOME-07)
   ========================================================================== */

.onyx-gold-cta {
    background: var(--onyx-gold);
    padding: 80px 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .onyx-gold-cta {
        padding: 120px 0;
    }
}

.onyx-gold-cta__headline {
    color: var(--onyx-navy);
    font-weight: var(--onyx-font-black);
    font-size: clamp(24px, 4vw, 40px);
    margin: 0 0 16px;
}

.onyx-gold-cta__subheadline {
    color: rgba(31, 39, 59, 0.8);
    font-weight: var(--onyx-font-regular);
    font-size: clamp(16px, 2vw, 20px);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.onyx-btn-primary--inverse {
    display: inline-block;
    background: var(--onyx-navy);
    color: var(--onyx-text-white);
    font-weight: var(--onyx-font-bold);
    padding: 16px 40px;
    border-radius: var(--onyx-btn-radius);
    text-decoration: none;
    transition: background var(--onyx-transition), transform var(--onyx-transition);
}

.onyx-btn-primary--inverse:hover,
.onyx-btn-primary--inverse:focus {
    background: var(--onyx-mid-navy);
    transform: translateY(-2px);
    color: var(--onyx-text-white);
    text-decoration: none;
}

/* ==========================================================================
   Booking Page
   ========================================================================== */

.onyx-booking-hero {
    background: linear-gradient(135deg, var(--onyx-gradient-start), var(--onyx-gradient-end));
    padding: 80px 0 48px;
    text-align: center;
}

.onyx-booking__headline {
    color: var(--onyx-text-white);
    font-weight: var(--onyx-font-black);
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 16px;
}

.onyx-booking__trust-copy {
    color: var(--onyx-text-white-80);
    font-weight: var(--onyx-font-regular);
    font-size: clamp(16px, 2vw, 18px);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.onyx-booking__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: var(--onyx-section-pad-sm) 0;
}

@media (min-width: 1024px) {
    .onyx-booking__grid {
        grid-template-columns: 35% 65%;
        padding: var(--onyx-section-pad-lg) 0;
    }
}

.onyx-booking__sidebar {
    order: 2;
}

.onyx-booking__embed {
    order: 1;
}

@media (min-width: 1024px) {
    .onyx-booking__sidebar {
        order: 1;
    }

    .onyx-booking__embed {
        order: 2;
    }
}

.onyx-booking-trust {
    margin-bottom: 32px;
}

.onyx-booking-trust__copy {
    line-height: 1.7;
    color: var(--onyx-text-body);
    border-left: 3px solid var(--onyx-gold);
    padding-left: 16px;
    margin: 0 0 32px;
}

.onyx-booking-trust__heading {
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-navy);
    font-size: 20px;
    margin: 0 0 24px;
}

.onyx-expect-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.onyx-expect-step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.onyx-expect-step__badge {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-weight: var(--onyx-font-bold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.onyx-expect-step__content {
    flex: 1;
}

.onyx-expect-step__title {
    display: block;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-navy);
    margin-bottom: 4px;
}

.onyx-expect-step__description {
    color: var(--onyx-text-body);
    line-height: 1.5;
    margin: 0;
}

.onyx-booking-social {
    text-align: center;
    padding: 24px;
    background: var(--onyx-bg-off-white);
    border-radius: var(--onyx-card-radius);
}

.onyx-booking-social__stat {
    display: block;
    color: var(--onyx-navy);
    font-weight: var(--onyx-font-black);
    font-size: 48px;
    line-height: 1.1;
}

.onyx-booking-social__label {
    display: block;
    color: var(--onyx-text-body);
    font-size: 16px;
    margin-top: 4px;
}

.onyx-booking-social__proof {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 16px;
    text-align: left;
}

.onyx-booking-social__proof li {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

.onyx-booking-social__proof li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    color: var(--onyx-gold);
}

.onyx-booking-social__proof a {
    color: var(--onyx-navy);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--onyx-transition);
}

.onyx-booking-social__proof a:hover {
    border-bottom-color: var(--onyx-gold);
}

#calendly-embed,
#calendly-widget,
.calendly-inline-widget {
    min-height: 950px;
    border-radius: 8px;
}

#calendly-widget iframe,
.calendly-inline-widget iframe {
    min-height: 950px !important;
}

.onyx-booking-calendar__fallback {
    color: var(--onyx-text-body);
    text-align: center;
    padding: 48px;
}

/* Calendar loading skeleton */
.onyx-booking-calendar__skeleton {
    min-height: 950px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.onyx-booking-calendar__skeleton-header {
    width: 200px;
    height: 24px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 4px;
    margin-bottom: 24px;
}

.onyx-booking-calendar__skeleton-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 400px;
}

.onyx-booking-calendar__skeleton-day {
    aspect-ratio: 1;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.onyx-booking-calendar__skeleton-text {
    margin-top: 24px;
    color: #666;
    font-size: 14px;
}

@keyframes skeleton-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================================================
   FabOps Product Page (fo- BEM prefix)
   ========================================================================== */

/* --- Shared: IconBox pattern --- */
.fo-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 187, 9, 0.12);
    flex-shrink: 0;
}

.fo-icon-box svg {
    width: 20px;
    height: 20px;
    color: var(--onyx-gold);
}

/* --- Section 1: Hero (DARK) --- */
.fo-hero {
    background: linear-gradient(170deg, #141B2B 0%, var(--onyx-navy) 60%, #1a2540 100%);
    color: var(--onyx-text-white);
    padding: 80px 20px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .fo-hero {
        min-height: auto;
        padding: 60px 20px;
    }
}

/* Subtle grid background */
.fo-hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 187, 9, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 187, 9, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Hero layout */
.fo-hero__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .fo-hero__layout {
        grid-template-columns: 1fr 1fr;
    }
}

/* Product Wordmark */
.fo-hero__wordmark {
    margin-bottom: 16px;
}

.fo-hero__wordmark-name {
    font-size: 14px;
    font-weight: 900;
    color: var(--onyx-gold);
    letter-spacing: 0.12em;
}

.fo-hero__wordmark-tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    margin-left: 8px;
}

/* Trust Badges */
.fo-hero__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fo-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #22C55E;
    background: rgba(34, 197, 94, 0.12);
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.04em;
}

.fo-hero__badge svg {
    width: 12px;
    height: 12px;
    color: #22C55E;
}

/* Headline */
.fo-hero__headline {
    font-size: 36px;
    font-weight: 900;
    color: white;
    line-height: 1.08;
    margin: 0 0 16px;
    max-width: 520px;
}

@media (min-width: 768px) {
    .fo-hero__headline {
        font-size: 50px;
    }
}

.fo-hero__subheadline {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 460px;
    line-height: 1.6;
    margin: 0 0 24px;
}

/* CTAs */
.fo-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.fo-hero__ctas .onyx-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fo-hero__ctas .onyx-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
}

.fo-hero__ctas .onyx-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Secondary links (below CTAs) */
.fo-hero__links {
    margin-top: 12px;
}

.fo-hero__links a {
    color: var(--onyx-gold);
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.fo-hero__links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Trust Micro-line */
.fo-hero__trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.fo-hero__trust svg {
    color: #22C55E;
}

/* Visual Side */
.fo-hero__visual {
    position: relative;
}

.fo-hero__image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Dashboard Mockup */
.fo-hero__mockup {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(255, 187, 9, 0.06);
    transform: perspective(1200px) rotateY(-2deg);
}

@media (max-width: 899px) {
    .fo-hero__mockup {
        transform: none;
    }
}

/* Browser Chrome */
.fo-hero__browser-chrome {
    background: rgba(255, 255, 255, 0.06);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fo-hero__browser-dots {
    display: flex;
    gap: 6px;
}

.fo-hero__browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.6;
}

.fo-hero__browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

/* Dashboard Content */
.fo-hero__dashboard {
    padding: 20px 16px;
}

/* Score Section */
.fo-hero__score-section {
    text-align: center;
    margin-bottom: 16px;
}

.fo-hero__score-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.06em;
}

.fo-hero__score-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid var(--onyx-gold);
    margin: 8px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fo-hero__score-value {
    font-size: 22px;
    font-weight: 900;
    color: var(--onyx-gold);
}

.fo-hero__score-sublabel {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* Category Grid */
.fo-hero__category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 12px;
}

.fo-hero__category-tile {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 8px 6px;
    text-align: center;
}

.fo-hero__category-score {
    display: block;
    font-size: 14px;
    font-weight: 900;
}

.fo-hero__category-name {
    display: block;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}

.fo-hero__category-status {
    display: block;
    font-size: 7px;
    font-weight: 700;
    margin-top: 2px;
}

/* Quick Stats Row */
.fo-hero__stats-row {
    display: flex;
    gap: 4px;
}

.fo-hero__stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 8px 4px;
    text-align: center;
}

.fo-hero__stat-icon {
    display: block;
    margin-bottom: 2px;
}

.fo-hero__stat-icon svg {
    width: 12px;
    height: 12px;
}

.fo-hero__stat-value {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: white;
}

.fo-hero__stat-label {
    display: block;
    font-size: 7px;
    color: rgba(255, 255, 255, 0.3);
}

/* Floating Callout Pills */
.fo-hero__pill {
    position: absolute;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    transform: scale(0.8);
    animation: foHeroPillIn 0.3s ease forwards;
}

.fo-hero__pill--gold {
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    box-shadow: 0 4px 12px rgba(255, 187, 9, 0.4);
    animation-delay: 1.2s;
}

.fo-hero__pill--amber {
    background: #F59E0B;
    color: var(--onyx-navy);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    animation-delay: 1.5s;
}

.fo-hero__pill--green {
    background: #22C55E;
    color: var(--onyx-navy);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    animation-delay: 1.8s;
}

@keyframes foHeroPillIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fo-hero__pill {
        opacity: 1;
        transform: scale(1);
        animation: none;
    }
}

@media (max-width: 899px) {
    .fo-hero__pill {
        display: none;
    }
}

/* --- Section 2: Pitch (LIGHT) --- */
.fo-pitch {
    background: var(--onyx-bg-white);
}

.fo-pitch__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.fo-pitch__headline {
    font-size: 32px;
    font-weight: var(--onyx-font-black);
    color: var(--onyx-navy);
    margin: 0 0 12px;
}

.fo-pitch__subheadline {
    font-size: 18px;
    color: var(--onyx-text-body);
    line-height: 1.6;
    margin: 0;
}

.fo-pitch__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .fo-pitch__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fo-pitch__card {
    text-align: center;
    padding: 32px 24px;
}

.fo-pitch__card .fo-icon-box {
    margin: 0 auto 16px;
}

.fo-pitch__title {
    font-size: 20px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-navy);
    margin: 0 0 8px;
}

.fo-pitch__description {
    font-size: 15px;
    color: var(--onyx-text-body);
    line-height: 1.6;
    margin: 0;
}

/* --- Section 3: Features / Tabs (DARK) --- */
.fo-features {
    background: var(--onyx-navy);
    color: var(--onyx-text-white);
}

.fo-features__header {
    text-align: center;
    margin-bottom: 48px;
}

.fo-features__overline {
    font-size: 12px;
    font-weight: 700;
    color: var(--onyx-gold);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.fo-features__headline {
    font-size: 36px;
    font-weight: var(--onyx-font-black);
    margin: 0;
}

.fo-features__layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 900px) {
    .fo-features__layout {
        flex-direction: row;
        gap: 0;
    }
}

.fo-features__sidebar {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

@media (min-width: 900px) {
    .fo-features__sidebar {
        width: 240px;
    }
}

.fo-features__tab {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    text-align: left;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fo-features__tab:hover {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
}

.fo-features__tab--active,
.fo-features__tab[aria-selected="true"] {
    border-left-color: var(--onyx-gold);
    background: rgba(255, 187, 9, 0.1);
    color: white;
    font-weight: 700;
}

.fo-features__tab--active .fo-icon-box svg,
.fo-features__tab[aria-selected="true"] .fo-icon-box svg {
    color: var(--onyx-gold);
}

.fo-features__tab .fo-icon-box svg {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.fo-features__tab-label {
    white-space: nowrap;
}

.fo-features__panels {
    flex: 1;
    min-width: 0;
}

.fo-features__panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 32px;
    min-height: 340px;
}

@media (min-width: 768px) {
    .fo-features__panel {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Panel Content Side */
.fo-features__panel-content {
    display: flex;
    flex-direction: column;
}

.fo-features__panel-icon {
    color: var(--onyx-gold);
    margin-bottom: 16px;
}

.fo-features__panel-icon svg {
    width: 28px;
    height: 28px;
}

.fo-features__panel-heading {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
    color: white;
}

.fo-features__panel-body {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 24px;
    flex: 1;
}

.fo-features__panel-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fo-features__stat-badge {
    display: inline-block;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
}

.fo-features__tier-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Panel Visual Side (Screenshot Area) */
.fo-features__panel-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fo-features__screenshot-frame {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.fo-features__browser-bar {
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fo-features__browser-dots {
    display: flex;
    gap: 4px;
}

.fo-features__browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.fo-features__screenshot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    min-height: 180px;
}

.fo-features__placeholder-icon {
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 16px;
}

.fo-features__placeholder-icon svg {
    width: 48px;
    height: 48px;
}

.fo-features__placeholder-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* Hide inactive panels (display:grid overrides native [hidden]) */
.fo-features__panel[hidden] {
    display: none;
}

/* --- Section 4: Dashboard (LIGHT) --- */
.fo-dashboard {
    background: var(--onyx-bg-off-white);
}

.fo-dashboard__headline {
    font-size: 32px;
    font-weight: var(--onyx-font-black);
    color: var(--onyx-navy);
    text-align: center;
    margin: 0 0 48px;
}

.fo-dashboard__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 900px) {
    .fo-dashboard__layout {
        grid-template-columns: 45% 55%;
    }
}

.fo-dashboard__ring-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.fo-score-ring {
    display: block;
    max-width: 200px;
}

.fo-dashboard__pill {
    position: absolute;
    background: var(--onyx-bg-white);
    box-shadow: var(--onyx-shadow-card);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-navy);
    white-space: nowrap;
    display: none;
}

@media (min-width: 1024px) {
    .fo-dashboard__pill {
        display: block;
    }

    .fo-dashboard__pill--top-right {
        top: 10px;
        right: -20px;
    }

    .fo-dashboard__pill--bottom-left {
        bottom: 10px;
        left: -20px;
    }
}

.fo-dashboard__categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fo-dashboard__bar-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fo-dashboard__bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fo-dashboard__bar-name {
    font-size: 14px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-navy);
}

.fo-dashboard__bar-score {
    font-size: 14px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-navy);
}

.fo-dashboard__bar-track {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.fo-dashboard__bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-out;
}

.fo-dashboard__status {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
    width: fit-content;
}

.fo-dashboard__status--healthy {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.fo-dashboard__status--warning {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.fo-dashboard__status--critical {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

/* --- Section 5: Proof (DARK) --- */
.fo-proof {
    background: var(--onyx-navy);
    color: var(--onyx-text-white);
}

.fo-proof__testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.fo-proof__quote {
    position: relative;
    margin: 0;
    padding: 0;
}

.fo-proof__quotemark {
    display: block;
    font-size: 80px;
    line-height: 1;
    color: var(--onyx-gold);
    font-family: Georgia, serif;
    margin-bottom: 8px;
}

.fo-proof__quote p {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .fo-proof__quotemark {
        font-size: 60px;
    }

    .fo-proof__quote p {
        font-size: 20px;
    }
}

.fo-proof__attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.fo-proof__image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.fo-proof__author {
    text-align: left;
}

.fo-proof__name {
    display: block;
    font-style: normal;
    font-weight: var(--onyx-font-bold);
    font-size: 16px;
}

.fo-proof__role {
    display: block;
    color: var(--onyx-text-white-80);
    font-size: 14px;
    margin-top: 2px;
}

.fo-proof__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 48px auto 0;
    text-align: center;
}

@media (min-width: 768px) {
    .fo-proof__stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fo-proof__stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fo-proof__stat-value {
    font-size: 48px;
    font-weight: var(--onyx-font-black);
    color: var(--onyx-gold);
    line-height: 1.1;
}

.fo-proof__stat-label {
    font-size: 14px;
    color: var(--onyx-text-white-80);
    margin-top: 8px;
}

/* --- Section 6: Pricing (LIGHT) --- */
.fo-pricing {
    background: var(--onyx-bg-white);
    overflow: hidden;
}

.fo-pricing__headline {
    font-size: 34px;
    font-weight: var(--onyx-font-black);
    color: var(--onyx-navy);
    text-align: center;
    margin: 0 0 8px;
}

.fo-pricing__subtitle {
    font-size: 15px;
    color: var(--onyx-text-secondary);
    text-align: center;
    margin: 0 0 48px;
}

.fo-pricing__grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.fo-pricing__card {
    flex: 1 1 260px;
    max-width: 320px;
    background: var(--onyx-bg-white);
    border: 1px solid var(--onyx-border-light);
    border-radius: var(--onyx-card-radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.fo-pricing__card--featured {
    background: rgba(255, 187, 9, 0.04);
    color: var(--onyx-navy);
    border: 2px solid var(--onyx-gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

@media (min-width: 768px) {
    .fo-pricing__card--featured {
        transform: scale(1.03);
    }
}

.fo-pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-size: 10px;
    font-weight: var(--onyx-font-bold);
    padding: 4px 12px;
    border-radius: 8px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.fo-pricing__name {
    font-size: 20px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-navy);
    margin: 0 0 4px;
}

.fo-pricing__description {
    font-size: 13px;
    color: var(--onyx-text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.fo-pricing__workspaces {
    font-size: 15px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-navy);
    padding: 8px 0;
    margin-bottom: 16px;
    border-top: 1px solid var(--onyx-border-light);
    border-bottom: 1px solid var(--onyx-border-light);
}

.fo-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fo-pricing__features li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--onyx-text-primary);
}

.fo-pricing__feature--excluded {
    color: var(--onyx-text-muted);
}

.fo-pricing__icon {
    flex-shrink: 0;
    margin-right: 8px;
}

.fo-pricing__icon--included {
    color: #22C55E;
}

.fo-pricing__icon--excluded {
    color: #ddd;
}

.fo-pricing__cta {
    margin-top: auto;
}

.fo-pricing__cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.fo-pricing__marketplace {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(31, 39, 59, 0.06);
    padding: 12px 20px;
    border-radius: 10px;
    margin-top: 32px;
    font-size: 13px;
    color: var(--onyx-text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fo-pricing__marketplace svg {
    color: var(--onyx-navy);
    flex-shrink: 0;
}

/* --- Section 7: Comparison (DARK) - Industry-Leading --- */
.fo-comparison {
    background: var(--onyx-navy);
    color: var(--onyx-text-white);
}

/* Header */
.fo-comparison__header {
    text-align: center;
    margin-bottom: 40px;
}

.fo-comparison__overline {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--onyx-gold);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.fo-comparison__headline {
    font-size: 36px;
    font-weight: var(--onyx-font-black);
    text-align: center;
    margin: 0 0 12px;
}

.fo-comparison__subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Desktop Wrapper */
.fo-comparison__wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.fo-comparison__wrapper--desktop {
    display: block;
}

/* Table */
.fo-comparison__table {
    width: 100%;
    border-collapse: collapse;
    color: var(--onyx-text-white);
    min-width: 700px;
}

/* Header Row */
.fo-comparison__table thead th {
    padding: 20px 16px;
    text-align: center;
    font-weight: var(--onyx-font-bold);
    font-size: 12px;
    background: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fo-comparison__feature-header {
    width: 20%;
}

/* FabOps Header - Winner Treatment */
.fo-comparison__fabops-header {
    background: linear-gradient(180deg, rgba(255, 187, 9, 0.15) 0%, rgba(255, 187, 9, 0.08) 100%) !important;
    color: var(--onyx-gold) !important;
    border-left: 2px solid var(--onyx-gold);
    border-right: 2px solid var(--onyx-gold);
    text-align: center;
    vertical-align: middle;
}

.fo-comparison__trophy {
    display: block;
    width: 20px;
    height: 20px;
    color: var(--onyx-gold);
    margin: 0 auto 6px;
}

.fo-comparison__fabops-name {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--onyx-gold);
    margin-bottom: 4px;
}

.fo-comparison__score-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--onyx-gold);
    background: rgba(255, 187, 9, 0.2);
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.02em;
}

.fo-comparison__competitor-header {
    text-align: center;
    color: rgba(255, 255, 255, 0.3) !important;
}

/* Body Rows */
.fo-comparison__row {
    transition: background 0.2s ease;
}

.fo-comparison__table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

.fo-comparison__table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04);
}

.fo-comparison__row:hover {
    background: rgba(255, 187, 9, 0.06) !important;
}

.fo-comparison__row:hover .fo-comparison__feature {
    color: var(--onyx-gold);
}

/* Stagger animation */
.fo-comparison__row {
    opacity: 0;
    transform: translateY(8px);
    animation: foComparisonRowIn 0.4s ease forwards;
    animation-delay: calc(var(--row-index) * 0.08s + 0.2s);
}

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

/* Feature Column (first col) */
.fo-comparison__feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    font-weight: var(--onyx-font-semibold);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.fo-comparison__feature-icon {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

/* FabOps Cells - Gold column background */
.fo-comparison__fabops {
    background: linear-gradient(180deg, rgba(255, 187, 9, 0.06) 0%, rgba(255, 187, 9, 0.03) 100%);
    border-left: 2px solid rgba(255, 187, 9, 0.25);
    border-right: 2px solid rgba(255, 187, 9, 0.25);
    padding: 12px 16px;
    text-align: center;
}

/* Win Pill */
.fo-comparison__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.fo-comparison__pill--win {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22C55E;
}

.fo-comparison__check {
    width: 14px;
    height: 14px;
    color: #22C55E;
    flex-shrink: 0;
}

/* Competitor Cells */
.fo-comparison__competitor {
    color: rgba(255, 255, 255, 0.45);
    padding: 16px;
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
}

.fo-comparison__competitor span {
    display: inline;
}

.fo-comparison__x {
    width: 12px;
    height: 12px;
    color: rgba(239, 68, 68, 0.5);
    vertical-align: middle;
    margin-right: 6px;
}

/* Summary Row (tfoot) */
.fo-comparison__summary td {
    padding: 16px;
    text-align: center;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fo-comparison__summary-winner {
    background: var(--onyx-gold) !important;
    color: var(--onyx-navy);
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fo-comparison__summary-winner .fo-comparison__trophy {
    display: inline-block;
    width: 16px;
    height: 16px;
    color: var(--onyx-navy);
    margin: 0;
}

.fo-comparison__summary-loser {
    color: rgba(255, 255, 255, 0.2);
}

/* Mobile Cards */
.fo-comparison__cards--mobile {
    display: none;
}

/* CTA */
.fo-comparison__cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fo-comparison__cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px;
}

.fo-comparison__cta .onyx-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive: Mobile Cards */
@media (max-width: 767px) {
    .fo-comparison__wrapper--desktop {
        display: none;
    }

    .fo-comparison__cards--mobile {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .fo-comparison__card {
        border-radius: 12px;
        padding: 20px;
    }

    .fo-comparison__card--winner {
        background: rgba(255, 187, 9, 0.08);
        border: 2px solid var(--onyx-gold);
    }

    .fo-comparison__card--loser {
        background: rgba(255, 255, 255, 0.02);
        border: 1px dashed rgba(255, 255, 255, 0.12);
        opacity: 0.7;
    }

    .fo-comparison__card-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .fo-comparison__card--winner .fo-comparison__card-header {
        border-bottom-color: rgba(255, 187, 9, 0.2);
    }

    .fo-comparison__card-header .fo-comparison__trophy {
        width: 20px;
        height: 20px;
        color: var(--onyx-gold);
        margin: 0;
    }

    .fo-comparison__card-title {
        font-size: 16px;
        font-weight: 700;
        color: white;
        flex: 1;
    }

    .fo-comparison__card--winner .fo-comparison__card-title {
        color: var(--onyx-gold);
    }

    .fo-comparison__card-score {
        font-size: 12px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 10px;
    }

    .fo-comparison__card--winner .fo-comparison__card-score {
        background: var(--onyx-gold);
        color: var(--onyx-navy);
    }

    .fo-comparison__card--loser .fo-comparison__card-score {
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.3);
    }

    .fo-comparison__card-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .fo-comparison__card-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 0;
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .fo-comparison__card-list li:last-child {
        border-bottom: none;
    }

    .fo-comparison__card--winner .fo-comparison__card-list li {
        color: rgba(255, 255, 255, 0.85);
    }

    .fo-comparison__card--loser .fo-comparison__card-list li {
        color: rgba(255, 255, 255, 0.35);
    }

    .fo-comparison__card-list .fo-comparison__check,
    .fo-comparison__card-list .fo-comparison__x {
        margin-top: 2px;
    }

    .fo-comparison__card-list strong {
        font-weight: 600;
    }

    .fo-comparison__headline {
        font-size: 28px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fo-comparison__row {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* --- Section 8: How It Works (LIGHT) --- */
.fo-how-it-works {
    background: var(--onyx-bg-off-white);
}

.fo-how-it-works__headline {
    font-size: 32px;
    font-weight: var(--onyx-font-black);
    color: var(--onyx-navy);
    text-align: center;
    margin: 0 0 48px;
}

.fo-how-it-works__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .fo-how-it-works__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fo-how-it-works__step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fo-how-it-works__circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--onyx-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fo-how-it-works__number {
    font-size: 24px;
    font-weight: var(--onyx-font-black);
    color: var(--onyx-gold);
}

.fo-how-it-works__title {
    font-size: 20px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-navy);
    margin: 20px 0 8px;
}

.fo-how-it-works__description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--onyx-text-body);
    margin: 0;
}

/* Connecting line between step circles (desktop only) */
@media (min-width: 768px) {
    .fo-how-it-works__step--has-line::after {
        content: '';
        position: absolute;
        top: 30px;
        left: calc(50% + 38px);
        width: calc(100% - 16px);
        height: 2px;
        border-top: 2px dashed var(--onyx-gold);
    }
}

/* --- Section 9: FAQ (DARK) --- */
.fo-faq {
    background: var(--onyx-navy);
    color: var(--onyx-text-white);
}

.fo-faq__headline {
    font-size: 32px;
    font-weight: var(--onyx-font-black);
    text-align: center;
    margin: 0 0 40px;
}

.fo-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.fo-faq__item {
    border-bottom: 1px solid var(--onyx-border-dark);
}

.fo-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-weight: var(--onyx-font-bold);
    font-size: 18px;
    color: var(--onyx-text-white);
    cursor: pointer;
    list-style: none;
}

.fo-faq__question::-webkit-details-marker {
    display: none;
}

.fo-faq__question::after {
    content: '+';
    font-size: 24px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-gold);
    transition: transform var(--onyx-transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.fo-faq__item[open] .fo-faq__question::after {
    content: '\2212';
}

.fo-faq__answer {
    padding: 0 0 20px;
    color: var(--onyx-text-white-80);
    line-height: 1.7;
}

.fo-faq__question:focus-visible {
    outline: 2px solid var(--onyx-gold);
    outline-offset: 2px;
}

/* --- Section 10: Triple CTA (GOLD) --- */
.fo-cta {
    background: var(--onyx-gold);
    text-align: center;
    padding: var(--onyx-section-pad-lg) 0;
}

.fo-cta__headline {
    color: var(--onyx-navy);
    font-size: 36px;
    margin: 0 0 16px;
}

.fo-cta__subheadline {
    color: var(--onyx-navy);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.fo-cta__buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.fo-cta__secondary-links {
    margin-top: 24px;
    font-size: 14px;
    color: var(--onyx-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fo-cta__secondary-links a {
    color: var(--onyx-navy);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.fo-cta__secondary-links a:hover {
    opacity: 0.7;
}

@media (max-width: 767px) {
    .fo-cta {
        padding: var(--onyx-section-pad-sm) 0;
    }

    .fo-cta__headline {
        font-size: 28px;
    }

    .fo-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* --- FabOps Animations --- */
@media (prefers-reduced-motion: no-preference) {
    .fo-score-ring__circle {
        transition: stroke-dashoffset 1.5s ease-out;
    }
}

/* ==========================================================================
   Solutions Overview Page
   ========================================================================== */

.onyx-solutions-hero {
    background: linear-gradient(135deg, var(--onyx-navy) 0%, #16304A 100%);
    color: var(--onyx-text-white);
    padding: var(--onyx-section-pad-lg) 0;
    text-align: center;
}

.onyx-solutions-hero__overline {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--onyx-gold);
    font-size: 14px;
    margin-bottom: 12px;
}

.onyx-solutions-hero__headline {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.onyx-solutions-hero__subheadline {
    font-size: 20px;
    opacity: 0.85;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Solutions Ladder */
.onyx-solutions-ladder {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-lg) 0;
}

.onyx-solutions-ladder__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    counter-reset: step-counter;
}

@media (min-width: 900px) {
    .onyx-solutions-ladder__steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.onyx-solutions-ladder__step {
    background: #fff;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.onyx-solutions-ladder__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-weight: 900;
    font-size: 20px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.onyx-solutions-ladder__step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--onyx-navy);
}

.onyx-solutions-ladder__step-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.onyx-solutions-ladder__step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin-bottom: 12px;
}

.onyx-solutions-ladder__step-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--onyx-text-body);
    margin-bottom: 16px;
}

@media (min-width: 900px) {
    .onyx-solutions-ladder__step:not(:last-child)::after {
        content: '\2192';
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: var(--onyx-gold);
        font-weight: 700;
        z-index: 1;
    }
}

/* Solution Cards */
.onyx-solution-cards {
    padding: var(--onyx-section-pad-lg) 0;
}

.onyx-solution-cards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.onyx-solution-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--onyx-gold);
    transition: transform var(--onyx-transition), box-shadow var(--onyx-transition);
}

.onyx-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.onyx-solution-card__icon {
    width: 48px;
    height: 48px;
    color: var(--onyx-gold);
    margin-bottom: 16px;
}

.onyx-solution-card__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.onyx-solution-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin-bottom: 8px;
}

.onyx-solution-card__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--onyx-text-body);
    margin-bottom: 16px;
}

/* Solutions CTA */
.onyx-solutions-cta {
    background: var(--onyx-gold);
    text-align: center;
    padding: var(--onyx-section-pad-lg) 0;
}

.onyx-solutions-cta__headline {
    color: var(--onyx-navy);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
}

.onyx-solutions-cta__subheadline {
    color: var(--onyx-navy);
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .onyx-solutions-hero {
        padding: var(--onyx-section-pad-sm) 0;
    }

    .onyx-solutions-hero__headline {
        font-size: 32px;
    }

    .onyx-solutions-hero__subheadline {
        font-size: 18px;
    }

    .onyx-solutions-ladder {
        padding: var(--onyx-section-pad-sm) 0;
    }

    .onyx-solution-cards {
        padding: var(--onyx-section-pad-sm) 0;
    }

    .onyx-solutions-cta {
        padding: var(--onyx-section-pad-sm) 0;
    }

    .onyx-solutions-cta__headline {
        font-size: 28px;
    }
}

/* ==========================================================================
   Solution Detail Pages
   ========================================================================== */

.onyx-solution-hero {
    background: linear-gradient(135deg, var(--onyx-navy) 0%, #2a3347 100%);
    color: #fff;
    padding: var(--onyx-section-pad-lg) 0;
}

.onyx-solution-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 900px) {
    .onyx-solution-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.onyx-solution-hero__overline {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--onyx-gold);
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 700;
}

.onyx-solution-hero__headline {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.onyx-solution-hero__subheadline {
    font-size: 18px;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 24px;
}

.onyx-solution-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.onyx-solution-overview {
    background: #fff;
    padding: var(--onyx-section-pad-lg) 0;
}

.onyx-solution-overview__content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--onyx-text-body);
}

.onyx-solution-overview__content p {
    margin-bottom: 1.2em;
}

.onyx-solution-overview__content p:last-child {
    margin-bottom: 0;
}

.onyx-solution-benefits {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-lg) 0;
}

.onyx-solution-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.onyx-solution-benefit-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.onyx-solution-benefit-card__icon {
    width: 48px;
    height: 48px;
    color: var(--onyx-gold);
    margin-bottom: 16px;
}

.onyx-solution-benefit-card__icon svg {
    fill: currentColor;
    width: 100%;
    height: 100%;
}

.onyx-solution-benefit-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin-bottom: 8px;
}

.onyx-solution-benefit-card__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--onyx-text-body);
}

.onyx-solution-process {
    background: #fff;
    padding: var(--onyx-section-pad-lg) 0;
}

.onyx-solution-process__steps {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
    counter-reset: sol-step;
}

.onyx-solution-process__step {
    counter-increment: sol-step;
    position: relative;
    padding-left: 72px;
    margin-bottom: 32px;
    min-height: 56px;
}

.onyx-solution-process__step:last-child {
    margin-bottom: 0;
}

.onyx-solution-process__step::before {
    content: counter(sol-step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-weight: 900;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.onyx-solution-process__step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin-bottom: 4px;
}

.onyx-solution-process__step-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--onyx-text-body);
}

.onyx-solution-outcomes {
    background: var(--onyx-navy);
    color: #fff;
    padding: var(--onyx-section-pad-lg) 0;
}

.onyx-solution-outcomes .onyx-section-heading {
    color: #fff;
}

.onyx-solution-outcomes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.onyx-solution-outcome-card__metric {
    font-size: 48px;
    font-weight: 900;
    color: var(--onyx-gold);
    margin-bottom: 8px;
}

.onyx-solution-outcome-card__label {
    font-size: 16px;
    opacity: 0.85;
}

@media (max-width: 899px) {
    .onyx-solution-hero__grid {
        grid-template-columns: 1fr;
    }

    .onyx-solution-hero__image {
        order: -1;
    }

    .onyx-solution-hero {
        padding: var(--onyx-section-pad-sm) 0;
    }

    .onyx-solution-hero__headline {
        font-size: 32px;
    }

    .onyx-solution-benefits {
        padding: var(--onyx-section-pad-sm) 0;
    }

    .onyx-solution-process {
        padding: var(--onyx-section-pad-sm) 0;
    }

    .onyx-solution-outcomes {
        padding: var(--onyx-section-pad-sm) 0;
    }

    .onyx-solution-outcome-card__metric {
        font-size: 36px;
    }

    .onyx-solution-overview {
        padding: var(--onyx-section-pad-sm) 0;
    }
}

/* ==========================================================================
   Why Onyx Pages
   ========================================================================== */

.onyx-why-hero {
    background: linear-gradient(135deg, var(--onyx-navy) 0%, #162d50 100%);
    color: #fff;
    padding: var(--onyx-section-pad-lg) 0;
    text-align: center;
}

.onyx-why-hero__overline {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--onyx-gold);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.onyx-why-hero__headline {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.onyx-why-hero__subheadline {
    font-size: 20px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.onyx-why-story {
    background: #fff;
    padding: var(--onyx-section-pad-lg) 0;
}

.onyx-why-story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 900px) {
    .onyx-why-story__grid {
        grid-template-columns: 3fr 2fr;
    }
}

.onyx-why-story__content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--onyx-text-body);
}

.onyx-why-story__content h2,
.onyx-why-story__content h3,
.onyx-why-story__content h4 {
    color: var(--onyx-navy);
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

.onyx-why-story__content p {
    margin-bottom: 16px;
}

.onyx-why-story__image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.onyx-why-credentials {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-lg) 0;
}

.onyx-why-credentials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.onyx-why-credential-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
    border-left: 4px solid var(--onyx-gold);
}

.onyx-why-credential-card__icon {
    width: 40px;
    height: 40px;
    color: var(--onyx-gold);
    margin: 0 auto 12px;
}

.onyx-why-credential-card__icon svg {
    width: 100%;
    height: 100%;
}

.onyx-why-credential-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin-bottom: 8px;
}

.onyx-why-credential-card__description {
    font-size: 14px;
    color: var(--onyx-text-body);
    line-height: 1.5;
}

/* ==========================================================================
   Team Page (9 sections, team- prefix)
   ========================================================================== */

/* --- Section 1: Hero --- */
.team-hero {
    background: linear-gradient(180deg, var(--onyx-bg-charcoal) 0%, var(--onyx-navy) 100%);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.team-hero .onyx-container {
    width: 100%;
}

.team-hero__overline {
    font-size: 12px;
    font-weight: 700;
    color: var(--onyx-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.team-hero__headline {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .team-hero__headline {
        font-size: 44px;
    }
}

.team-hero__subheadline {
    font-size: 17px;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.team-hero__scroll {
    color: var(--onyx-gold);
    opacity: 0.6;
    animation: team-scroll-bounce 2s ease-in-out infinite;
}

@keyframes team-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* --- Section 2: Founder --- */
.team-founder {
    background: #fff;
    padding: var(--onyx-section-pad-lg) 0;
}

.team-founder__grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

@media (min-width: 900px) {
    .team-founder__grid {
        flex-direction: row;
        align-items: flex-start;
    }
}

.team-founder__photo-col {
    flex: 0 0 auto;
    position: relative;
    max-width: 420px;
    width: 100%;
}

.team-founder__photo-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.team-founder__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.team-founder__photo-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--onyx-navy) 0%, var(--onyx-mid-navy) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.team-founder__initials {
    font-size: 72px;
    font-weight: 900;
    opacity: 0.3;
}

.team-founder__credentials {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 14px 20px;
}

@media (max-width: 899px) {
    .team-founder__credentials {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }
}

.team-founder__badges {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.team-founder__badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 187, 9, 0.15);
    border: 1px solid rgba(255, 187, 9, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--onyx-gold);
}

.team-founder__badge-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.team-founder__credentials-text {
    font-size: 11px;
    color: var(--onyx-text-caption);
    margin: 0;
}

.team-founder__story-col {
    flex: 1;
    max-width: 520px;
}

.team-founder__overline {
    font-size: 12px;
    font-weight: 700;
    color: var(--onyx-navy);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.team-founder__name {
    font-size: 40px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin: 0 0 24px;
}

.team-founder__narrative p {
    font-size: 15px;
    color: var(--onyx-text-body);
    line-height: 1.7;
    margin: 0 0 16px;
}

.team-founder__links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.team-founder__social {
    color: var(--onyx-navy);
    transition: color 0.2s;
}

.team-founder__social:hover {
    color: var(--onyx-gold);
}

.team-founder__cta {
    display: inline-block;
    margin-top: 16px;
    color: var(--onyx-gold);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.team-founder__cta:hover {
    text-decoration: underline;
}

/* --- Section 3: Model --- */
.team-model {
    background: var(--onyx-navy);
    padding: var(--onyx-section-pad-lg) 0;
    color: #fff;
}

.team-model__overline {
    font-size: 12px;
    font-weight: 700;
    color: var(--onyx-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}

.team-model__headline {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 12px;
}

.team-model__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.team-model__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .team-model__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-model__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px 24px;
    transition: transform 0.3s, border-color 0.3s;
}

.team-model__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 187, 9, 0.2);
}

.team-model__icon {
    color: var(--onyx-gold);
    margin-bottom: 16px;
}

.team-model__card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
}

.team-model__card-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0 0 20px;
}

.team-model__stat-pill {
    display: inline-block;
    background: rgba(255, 187, 9, 0.15);
    color: var(--onyx-gold);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

/* --- Section 4: Certifications --- */
.team-certs {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-lg) 0;
}

.team-certs__overline {
    font-size: 12px;
    font-weight: 700;
    color: var(--onyx-navy);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}

.team-certs__headline {
    font-size: 36px;
    font-weight: 900;
    color: var(--onyx-navy);
    text-align: center;
    margin: 0 0 12px;
}

.team-certs__subtitle {
    font-size: 16px;
    color: var(--onyx-text-caption);
    text-align: center;
    margin: 0 auto 48px;
    max-width: 600px;
}

.team-certs__leadership {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.team-certs__leadership-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 32px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    min-width: 220px;
}

.team-certs__leadership-card--gold {
    border: 2px solid rgba(255, 187, 9, 0.2);
}

.team-certs__leadership-card--cyan {
    border: 2px solid rgba(0, 180, 216, 0.2);
}

.team-certs__leadership-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
    font-weight: 900;
}

.team-certs__leadership-card--gold .team-certs__leadership-badge {
    background: rgba(255, 187, 9, 0.15);
    color: var(--onyx-gold);
}

.team-certs__leadership-card--cyan .team-certs__leadership-badge {
    background: rgba(0, 180, 216, 0.15);
    color: #00B4D8;
}

.team-certs__leadership-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--onyx-navy);
}

.team-certs__leadership-sub {
    font-size: 12px;
    color: var(--onyx-text-caption);
    margin-top: 4px;
}

.team-certs__leadership-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.team-certs__badges {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.team-certs__badge-row {
    max-width: 631px;  /* Native image width - prevents upscaling */
    width: 100%;       /* Still shrinks on mobile */
    height: auto;
}

/* Ticker variant for cert badges */
.team-certs__ticker {
    overflow: hidden;
    margin: 24px 0 32px;
    position: relative;
}

.team-certs__ticker .onyx-credentials-ticker__logos img {
    filter: none;
    opacity: 1;
}

.team-certs__badge {
    background: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    text-align: center;
    min-width: 140px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-certs__badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-certs__badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(31, 39, 59, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: var(--onyx-navy);
}

.team-certs__badge-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--onyx-navy);
    line-height: 1.3;
}

.team-certs__total {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--onyx-gold);
    margin: 0;
}

.team-certs__training {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    max-width: 900px;
    margin: 60px auto 0;
}

.team-certs__training-stats {
    flex: 1 1 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.team-certs__stat {
    text-align: center;
    padding: 16px;
}

.team-certs__stat-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--onyx-navy);
    display: block;
}

.team-certs__stat-label {
    font-size: 12px;
    color: var(--onyx-text-caption);
    margin-top: 4px;
    display: block;
}

.team-certs__training-quote {
    flex: 1 1 300px;
    border-left: 3px solid var(--onyx-gold);
    padding-left: 20px;
    margin: 0;
}

.team-certs__training-quote p {
    font-size: 16px;
    color: var(--onyx-navy);
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 8px;
}

.team-certs__training-quote cite {
    font-size: 13px;
    color: var(--onyx-text-muted);
    font-style: normal;
}

.team-certs__in-a-day {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: var(--onyx-text-muted);
}

.team-certs__in-a-day-list {
    display: block;
    margin-top: 8px;
    color: var(--onyx-text-caption);
}

/* --- Section 5: Disciplines --- */
.team-disciplines {
    background: var(--onyx-bg-charcoal);
    padding: var(--onyx-section-pad-lg) 0;
    color: #fff;
}

.team-disciplines__overline {
    font-size: 12px;
    font-weight: 700;
    color: var(--onyx-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}

.team-disciplines__headline {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 12px;
}

.team-disciplines__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.team-disciplines__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .team-disciplines__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-disciplines__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-disciplines__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 28px 24px;
    border-top: 3px solid;
    transition: transform 0.3s, background-color 0.3s;
}

.team-disciplines__card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
}

.team-disciplines__card--cyan { border-top-color: #00B4D8; }
.team-disciplines__card--gold { border-top-color: var(--onyx-gold); }
.team-disciplines__card--pink { border-top-color: #E91E8C; }
.team-disciplines__card--purple { border-top-color: #8B5CF6; }
.team-disciplines__card--green { border-top-color: #22C55E; }
.team-disciplines__card--amber { border-top-color: #F59E0B; }

.team-disciplines__icon {
    margin-bottom: 12px;
}

.team-disciplines__card--cyan .team-disciplines__icon { color: #00B4D8; }
.team-disciplines__card--gold .team-disciplines__icon { color: var(--onyx-gold); }
.team-disciplines__card--pink .team-disciplines__icon { color: #E91E8C; }
.team-disciplines__card--purple .team-disciplines__icon { color: #8B5CF6; }
.team-disciplines__card--green .team-disciplines__icon { color: #22C55E; }
.team-disciplines__card--amber .team-disciplines__icon { color: #F59E0B; }

.team-disciplines__card-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
}

.team-disciplines__card-body {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 16px;
}

.team-disciplines__certs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.team-disciplines__cert-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3px 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.team-disciplines__size {
    font-size: 12px;
    margin: 0;
}

.team-disciplines__card--cyan .team-disciplines__size { color: #00B4D8; }
.team-disciplines__card--gold .team-disciplines__size { color: var(--onyx-gold); }
.team-disciplines__card--pink .team-disciplines__size { color: #E91E8C; }
.team-disciplines__card--purple .team-disciplines__size { color: #8B5CF6; }
.team-disciplines__card--green .team-disciplines__size { color: #22C55E; }
.team-disciplines__card--amber .team-disciplines__size { color: #F59E0B; }

/* --- Section 6: Community --- */
.team-community {
    background: #fff;
    padding: var(--onyx-section-pad-lg) 0;
}

.team-community__grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

@media (min-width: 900px) {
    .team-community__grid {
        flex-direction: row;
    }
}

.team-community__content {
    flex: 1 1 420px;
}

.team-community__overline {
    font-size: 12px;
    font-weight: 700;
    color: var(--onyx-navy);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.team-community__headline {
    font-size: 32px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin: 0 0 16px;
}

.team-community__narrative p {
    font-size: 15px;
    color: var(--onyx-text-body);
    line-height: 1.7;
    margin: 0 0 12px;
}

.team-community__stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin: 28px 0 24px;
}

.team-community__stat-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--onyx-navy);
    display: block;
}

.team-community__stat-label {
    font-size: 12px;
    color: var(--onyx-text-caption);
}

.team-community__cta {
    color: var(--onyx-gold);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.team-community__cta:hover {
    text-decoration: underline;
}

.team-community__visual {
    flex: 1 1 300px;
    min-height: 340px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--onyx-navy) 0%, var(--onyx-mid-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-community__network {
    position: relative;
    width: 280px;
    height: 280px;
}

.team-community__node {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: team-node-pulse 3s ease-in-out infinite;
}

.team-community__node--center {
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--onyx-gold);
    z-index: 2;
}

.team-community__node--1 { width: 12px; height: 12px; top: 20%; left: 30%; animation-delay: 0s; }
.team-community__node--2 { width: 8px; height: 8px; top: 15%; left: 60%; animation-delay: 0.3s; }
.team-community__node--3 { width: 10px; height: 10px; top: 35%; left: 75%; animation-delay: 0.6s; }
.team-community__node--4 { width: 14px; height: 14px; top: 55%; left: 80%; animation-delay: 0.9s; }
.team-community__node--5 { width: 8px; height: 8px; top: 75%; left: 70%; animation-delay: 1.2s; }
.team-community__node--6 { width: 12px; height: 12px; top: 80%; left: 45%; animation-delay: 1.5s; }
.team-community__node--7 { width: 10px; height: 10px; top: 70%; left: 25%; animation-delay: 1.8s; }
.team-community__node--8 { width: 8px; height: 8px; top: 50%; left: 15%; animation-delay: 2.1s; }
.team-community__node--9 { width: 14px; height: 14px; top: 30%; left: 20%; animation-delay: 2.4s; }
.team-community__node--10 { width: 6px; height: 6px; top: 25%; left: 45%; animation-delay: 0.2s; }
.team-community__node--11 { width: 10px; height: 10px; top: 60%; left: 55%; animation-delay: 0.8s; }
.team-community__node--12 { width: 8px; height: 8px; top: 45%; left: 35%; animation-delay: 1.4s; }

@keyframes team-node-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* --- Section 7: Testimonials --- */
.team-testimonials {
    background: var(--onyx-navy);
    padding: var(--onyx-section-pad-lg) 0;
    color: #fff;
}

.team-testimonials__headline {
    font-size: 34px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 8px;
}

.team-testimonials__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0 0 48px;
}

.team-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .team-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-testimonials__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px;
    margin: 0;
    position: relative;
}

.team-testimonials__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--onyx-gold);
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
}

.team-testimonials__badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.team-testimonials__quote {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 20px;
}

.team-testimonials__footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.team-testimonials__name {
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
}

.team-testimonials__title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Section 8: Recruitment --- */
.team-recruitment {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-lg) 0;
    text-align: center;
}

.team-recruitment__headline {
    font-size: 32px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin: 0 0 16px;
}

.team-recruitment__body {
    font-size: 16px;
    color: var(--onyx-text-body);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.team-recruitment__requirements {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.team-recruitment__requirement {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-recruitment__requirement-icon {
    color: var(--onyx-gold);
}

.team-recruitment__requirement-text {
    font-size: 14px;
    color: var(--onyx-navy);
}

.team-recruitment__cta {
    display: inline-block;
    border: 2px solid var(--onyx-navy);
    color: var(--onyx-navy);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.team-recruitment__cta:hover {
    background: var(--onyx-navy);
    color: #fff;
}

/* --- Section 9: Gold CTA --- */
.team-cta {
    background: var(--onyx-gold);
    padding: 80px 0;
    text-align: center;
}

.team-cta__headline {
    font-size: 34px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin: 0 0 12px;
}

.team-cta__subtitle {
    font-size: 16px;
    color: rgba(31, 39, 59, 0.8);
    margin: 0 0 24px;
}

.team-cta__btn {
    display: inline-block;
    background: var(--onyx-navy);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.team-cta__btn:hover {
    background: var(--onyx-mid-navy);
}

.team-cta__note {
    font-size: 13px;
    color: rgba(31, 39, 59, 0.6);
    margin: 16px 0 0;
}

/* ==========================================================================
   Methodology Page (9 sections, meth- prefix)
   ========================================================================== */

/* --- Grid drift keyframe for hero background --- */
@keyframes meth-grid-drift {
    0% { transform: translate(0, 0); }
    50% { transform: translate(10px, 10px); }
    100% { transform: translate(0, 0); }
}

/* --- Section 1: Hero --- */
.meth-hero {
    background: linear-gradient(160deg, var(--onyx-bg-charcoal) 0%, var(--onyx-gradient-end) 100%);
    color: #fff;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.meth-hero::before {
    content: '';
    position: absolute;
    inset: -20px;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 60px);
    animation: meth-grid-drift 20s infinite linear;
    pointer-events: none;
    z-index: 0;
}

.meth-hero .onyx-container {
    position: relative;
    z-index: 1;
}

.meth-hero__overline {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--onyx-gold);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.meth-hero__headline {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.meth-hero__subheadline {
    font-size: 18px;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.meth-hero__tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.meth-hero__tag {
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid;
}

.meth-hero__tag--cyan {
    border-color: rgba(0, 180, 216, 0.4);
    color: #00B4D8;
}

.meth-hero__tag--gold {
    border-color: rgba(255, 187, 9, 0.4);
    color: var(--onyx-gold);
}

.meth-hero__tag--pink {
    border-color: rgba(233, 30, 140, 0.4);
    color: #E91E8C;
}

.meth-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.meth-hero__scroll {
    color: var(--onyx-gold);
    opacity: 0.6;
    animation: meth-scroll-bounce 2s ease-in-out infinite;
}

.meth-hero__scroll svg {
    display: block;
    margin: 0 auto;
}

@keyframes meth-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Staggered fade-in animation for hero elements */
@media (prefers-reduced-motion: no-preference) {
    .meth-stagger {
        opacity: 0;
        transform: translateY(20px);
        animation: meth-stagger-fade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: var(--entry-delay, 0s);
    }
}

@keyframes meth-stagger-fade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered card animation for principles */
@media (prefers-reduced-motion: no-preference) {
    .meth-principles.onyx-revealed .meth-card-stagger {
        animation: meth-card-fade 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: var(--card-delay, 0s);
        opacity: 0;
        transform: translateY(30px);
    }

    .meth-card-stagger {
        opacity: 0;
    }
}

@keyframes meth-card-fade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .meth-hero__headline {
        font-size: 48px;
    }
}

/* --- Section 2: Anti-Pattern --- */
.meth-antipattern {
    background: #fff;
    padding: var(--onyx-section-pad-lg) 0;
}

.meth-antipattern__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--onyx-gold);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.meth-antipattern__headline {
    font-size: 32px;
    font-weight: 900;
    color: var(--onyx-navy);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.2;
}

.meth-antipattern__columns {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .meth-antipattern__columns {
        flex-direction: row;
        gap: 40px;
    }
}

.meth-antipattern__card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--onyx-shadow-card);
}

.meth-antipattern__card--wrong {
    border-left: 4px solid #E74C3C;
}

.meth-antipattern__card--right {
    border-left: 4px solid #2ECC71;
}

.meth-antipattern__card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin-bottom: 20px;
}

.meth-antipattern__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: antipattern-step;
}

.meth-antipattern__step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.meth-antipattern__step:last-child {
    margin-bottom: 0;
}

.meth-antipattern__step-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.meth-antipattern__card--wrong .meth-antipattern__step-badge {
    background: #E74C3C;
}

.meth-antipattern__card--right .meth-antipattern__step-badge {
    background: #2ECC71;
}

.meth-antipattern__step-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--onyx-text-body);
    padding-top: 3px;
}

.meth-antipattern__callout {
    text-align: center;
    font-size: 18px;
    color: var(--onyx-navy);
    margin-top: 40px;
    line-height: 1.5;
}

/* X Stamp overlay for wrong way card */
.meth-antipattern__card--wrong {
    position: relative;
}

.meth-antipattern__stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

@media (prefers-reduced-motion: no-preference) {
    .meth-antipattern--visible .meth-antipattern__stamp {
        animation: meth-stamp-shake 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 1s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .meth-antipattern--visible .meth-antipattern__stamp {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes meth-stamp-shake {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.6) rotate(-15deg);
    }
    30% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    }
    50% {
        transform: translate(-50%, -50%) scale(1) rotate(-3deg);
    }
    70% {
        transform: translate(-50%, -50%) scale(1.02) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

/* --- Section 3: Operating Principles --- */
.meth-principles {
    background: var(--onyx-navy);
    padding: var(--onyx-section-pad-lg) 0;
    color: #fff;
}

.meth-principles__headline {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
    color: #fff;
}

.meth-principles__subtitle {
    text-align: center;
    color: var(--onyx-text-white-60);
    font-size: 18px;
    margin-bottom: 48px;
}

.meth-principles__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .meth-principles__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.meth-principles__card {
    background: var(--onyx-mid-navy);
    border-radius: 12px;
    padding: 32px;
}

.meth-principles__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-weight: 900;
    font-size: 14px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.meth-principles__card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.meth-principles__card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--onyx-text-white-60);
}

/* --- Section 4: Timeline --- */
.meth-timeline {
    background: #fff;
    padding: var(--onyx-section-pad-lg) 0;
}

.meth-timeline__headline {
    font-size: 36px;
    font-weight: 900;
    color: var(--onyx-navy);
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
}

.meth-timeline__subtitle {
    text-align: center;
    color: var(--onyx-text-caption);
    font-size: 18px;
    margin-bottom: 48px;
}

.meth-timeline__track {
    position: relative;
    padding-left: 32px;
    border-left: 3px solid var(--onyx-gold);
    max-width: 700px;
    margin: 0 auto;
}

.meth-timeline__panel {
    position: relative;
    padding-bottom: 48px;
}

.meth-timeline__panel:last-child {
    padding-bottom: 0;
}

.meth-timeline__dot {
    position: absolute;
    left: -41px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: var(--onyx-gold);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--onyx-gold);
}

.meth-timeline__content {
    padding-left: 16px;
}

.meth-timeline__badge {
    display: inline-block;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.meth-timeline__duration {
    display: inline-block;
    background: var(--onyx-bg-off-white);
    color: var(--onyx-text-caption);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 8px;
    margin-bottom: 8px;
}

.meth-timeline__phase-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin-bottom: 12px;
}

.meth-timeline__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.meth-timeline__bullets li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--onyx-text-body);
    margin-bottom: 6px;
}

.meth-timeline__bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--onyx-gold);
    border-radius: 50%;
}

/* Timeline panel slide animations - desktop only */
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
    .meth-timeline__track {
        padding-left: 0;
        border-left: none;
        position: relative;
    }

    /* Center gold line */
    .meth-timeline__track::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--onyx-gold);
        transform: translateX(-50%);
    }

    .meth-timeline__panel {
        width: 45%;
        opacity: 0;
    }

    .meth-timeline__panel--left {
        margin-right: auto;
        text-align: right;
        transform: translateX(-40px);
    }

    .meth-timeline__panel--right {
        margin-left: auto;
        text-align: left;
        transform: translateX(40px);
    }

    .meth-timeline__panel--left .meth-timeline__content {
        padding-left: 0;
        padding-right: 32px;
    }

    .meth-timeline__panel--right .meth-timeline__content {
        padding-left: 32px;
        padding-right: 0;
    }

    .meth-timeline__panel--left .meth-timeline__dot {
        left: auto;
        right: -41px;
    }

    .meth-timeline__panel--right .meth-timeline__dot {
        left: -41px;
        right: auto;
    }

    .meth-timeline__panel--left .meth-timeline__bullets {
        text-align: right;
    }

    .meth-timeline__panel--left .meth-timeline__bullets li {
        padding-left: 0;
        padding-right: 20px;
    }

    .meth-timeline__panel--left .meth-timeline__bullets li::before {
        left: auto;
        right: 0;
    }

    /* Slide-in animations when section revealed */
    .meth-timeline.onyx-revealed .meth-timeline__panel--left {
        animation: meth-slide-from-left 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: var(--panel-delay, 0s);
    }

    .meth-timeline.onyx-revealed .meth-timeline__panel--right {
        animation: meth-slide-from-right 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: var(--panel-delay, 0s);
    }
}

@keyframes meth-slide-from-left {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes meth-slide-from-right {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile fallback - all panels slide from left */
@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
    .meth-timeline__panel {
        opacity: 0;
        transform: translateX(-20px);
    }

    .meth-timeline.onyx-revealed .meth-timeline__panel {
        animation: meth-slide-from-left 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: var(--panel-delay, 0s);
    }
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
    .meth-timeline__panel {
        opacity: 1;
        transform: none;
    }
}

/* --- Section 5: Cadence (Concentric Rings) --- */
.meth-cadence {
    background: var(--onyx-bg-charcoal);
    padding: var(--onyx-section-pad-lg) 0;
    color: #fff;
}

.meth-cadence__headline {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
    color: #fff;
}

.meth-cadence__subtitle {
    text-align: center;
    color: var(--onyx-text-white-60);
    font-size: 18px;
    margin-bottom: 48px;
}

.meth-cadence__rings-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 48px;
}

@media (min-width: 768px) {
    .meth-cadence__rings-container {
        width: 380px;
        height: 380px;
    }
}

.meth-cadence__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s var(--onyx-ease), transform 0.6s var(--onyx-ease);
}

.meth-cadence__ring--visible {
    opacity: 1;
}

/* Ring sizes -- mobile */
.meth-cadence__ring--quarterly {
    width: 270px;
    height: 270px;
    transform: translate(-50%, -50%) scale(0.8);
    border: 2px dashed rgba(255, 255, 255, 0.2);
}
.meth-cadence__ring--quarterly.meth-cadence__ring--visible {
    transform: translate(-50%, -50%) scale(1);
}

.meth-cadence__ring--monthly {
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%) scale(0.8);
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.meth-cadence__ring--monthly.meth-cadence__ring--visible {
    transform: translate(-50%, -50%) scale(1);
}

.meth-cadence__ring--weekly {
    width: 130px;
    height: 130px;
    transform: translate(-50%, -50%) scale(0.8);
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.meth-cadence__ring--weekly.meth-cadence__ring--visible {
    transform: translate(-50%, -50%) scale(1);
}

.meth-cadence__ring--daily {
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%) scale(0.8);
    border: 2px solid var(--onyx-gold);
}
.meth-cadence__ring--daily.meth-cadence__ring--visible {
    transform: translate(-50%, -50%) scale(1);
}

/* Ring sizes -- desktop */
@media (min-width: 768px) {
    .meth-cadence__ring--quarterly { width: 360px; height: 360px; }
    .meth-cadence__ring--monthly  { width: 270px; height: 270px; }
    .meth-cadence__ring--weekly   { width: 180px; height: 180px; }
    .meth-cadence__ring--daily    { width: 100px; height: 100px; }
}

.meth-cadence__ring-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--onyx-bg-charcoal);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 12px;
    white-space: nowrap;
}

.meth-cadence__ring--daily .meth-cadence__ring-label {
    color: var(--onyx-gold);
}

.meth-cadence__info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .meth-cadence__info-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 800px;
    }
}

.meth-cadence__info-item {
    text-align: center;
}

.meth-cadence__info-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--onyx-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.meth-cadence__info-desc {
    font-size: 14px;
    color: var(--onyx-text-white-60);
    line-height: 1.4;
}

/* --- Section 6: Stats --- */
.meth-stats {
    background: #fff;
    padding: var(--onyx-section-pad-lg) 0;
}

.meth-stats__headline {
    font-size: 36px;
    font-weight: 900;
    color: var(--onyx-navy);
    text-align: center;
    margin-bottom: 48px;
}

.meth-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .meth-stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.meth-stats__card {
    text-align: center;
    padding: 24px 16px;
}

.meth-stats__value {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--onyx-navy);
    line-height: 1;
    margin-bottom: 8px;
}

.meth-stats__label {
    display: block;
    font-size: 14px;
    color: var(--onyx-text-caption);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* --- Section 7: Lifecycle --- */
.meth-lifecycle {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-lg) 0;
}

.meth-lifecycle__headline {
    font-size: 36px;
    font-weight: 900;
    color: var(--onyx-navy);
    text-align: center;
    margin-bottom: 48px;
}

.meth-lifecycle__strip {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.meth-lifecycle__card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--onyx-shadow-card);
    position: relative;
    margin-right: 32px;
}

.meth-lifecycle__card:last-child {
    margin-right: 0;
}

/* Arrow connector between lifecycle cards */
.meth-lifecycle__card::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--onyx-gold);
}

.meth-lifecycle__card:last-child::after {
    display: none;
}

@media (min-width: 1024px) {
    .meth-lifecycle__strip {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 32px;
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .meth-lifecycle__card {
        flex: none;
        margin-right: 0;
    }

    .meth-lifecycle__card::after {
        right: -22px;
    }
}

.meth-lifecycle__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--onyx-bg-off-white);
    color: var(--onyx-navy);
    font-weight: 900;
    font-size: 18px;
    border-radius: 50%;
    margin: 0 auto 12px;
}

.meth-lifecycle__card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin-bottom: 8px;
}

.meth-lifecycle__card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--onyx-text-body);
}

/* --- Section 8: Persona CTAs --- */
.meth-personas {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-lg) 0;
}

.meth-personas__headline {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
    color: var(--onyx-navy);
}

.meth-personas__subtitle {
    text-align: center;
    color: var(--onyx-text-body);
    font-size: 18px;
    margin-bottom: 48px;
}

.meth-personas__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .meth-personas__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.meth-personas__card {
    background: #fff;
    border-radius: 12px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border-top: 4px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-width 0.3s ease;
}

.meth-personas__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-top-width: 6px;
}

.meth-personas__card--cyan {
    border-top-color: #00B4D8;
}

.meth-personas__card--gold {
    border-top-color: var(--onyx-gold);
}

.meth-personas__card--pink {
    border-top-color: #E91E8C;
}

.meth-personas__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.meth-personas__body {
    font-size: 15px;
    color: var(--onyx-text-body);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.meth-personas__btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.meth-personas__card--cyan .meth-personas__btn {
    background: var(--onyx-navy);
    color: #fff;
}

.meth-personas__card--cyan .meth-personas__btn:hover {
    background: var(--onyx-mid-navy);
}

.meth-personas__card--gold .meth-personas__btn {
    background: var(--onyx-gold);
    color: var(--onyx-navy);
}

.meth-personas__card--gold .meth-personas__btn:hover {
    background: #e6a808;
}

.meth-personas__card--pink .meth-personas__btn {
    background: transparent;
    border: 2px solid var(--onyx-navy);
    color: var(--onyx-navy);
}

.meth-personas__card--pink .meth-personas__btn:hover {
    background: var(--onyx-navy);
    color: #fff;
}

/* --- Section 9: Gold CTA Banner --- */
.meth-cta {
    background: var(--onyx-gold);
    padding: 64px 0;
    text-align: center;
}

.meth-cta__headline {
    font-size: 36px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.meth-cta__subtitle {
    font-size: 18px;
    color: var(--onyx-navy);
    opacity: 0.8;
    margin-bottom: 32px;
}

.meth-cta__btn {
    display: inline-block;
    background: var(--onyx-navy);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: background var(--onyx-transition);
}

.meth-cta__btn:hover,
.meth-cta__btn:focus {
    background: var(--onyx-mid-navy);
    color: #fff;
}

/* --- Methodology: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    .meth-hero::before {
        animation: none;
    }

    .meth-cadence__ring {
        opacity: 1;
        transition: none;
    }

    .meth-cadence__ring--quarterly,
    .meth-cadence__ring--monthly,
    .meth-cadence__ring--weekly,
    .meth-cadence__ring--daily {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Partner Page */
.onyx-partner-hero {
    background: linear-gradient(135deg, var(--onyx-navy) 0%, #162d50 100%);
    color: #fff;
    padding: var(--onyx-section-pad-lg) 0;
    text-align: center;
}

.onyx-partner-hero__overline {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--onyx-gold);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.onyx-partner-hero__headline {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.onyx-partner-hero__subheadline {
    font-size: 20px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.onyx-partner-benefits {
    background: #fff;
    padding: var(--onyx-section-pad-lg) 0;
}

.onyx-partner-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.onyx-partner-benefit-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--onyx-gold);
}

.onyx-partner-benefit-card__icon {
    width: 48px;
    height: 48px;
    color: var(--onyx-gold);
    margin-bottom: 16px;
}

.onyx-partner-benefit-card__icon svg {
    width: 100%;
    height: 100%;
}

.onyx-partner-benefit-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin-bottom: 8px;
}

.onyx-partner-benefit-card__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--onyx-text-body);
}

@media (max-width: 899px) {
    .onyx-why-hero,
    .onyx-team-hero,
    .onyx-methodology-hero,
    .onyx-partner-hero {
        padding: var(--onyx-section-pad-sm) 0;
    }

    .onyx-why-hero__headline,
    .onyx-team-hero__headline,
    .onyx-methodology-hero__headline,
    .onyx-partner-hero__headline {
        font-size: 32px;
    }

    .onyx-why-story,
    .onyx-why-credentials,
    .onyx-team-grid-section,
    .onyx-methodology,
    .onyx-methodology-steps,
    .onyx-partner-benefits {
        padding: var(--onyx-section-pad-sm) 0;
    }

    .onyx-why-story__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Results Hub Page
   ========================================================================== */

.onyx-results-hero {
    background: linear-gradient(135deg, var(--onyx-navy) 0%, #162d50 100%);
    color: #fff;
    padding: var(--onyx-section-pad-lg) 0;
    text-align: center;
}

.onyx-results-hero__headline {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.onyx-results-hero__subheadline {
    font-size: 20px;
    opacity: 0.85;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.5;
}

.onyx-results-filters {
    background: #fff;
    padding: 32px 0;
    border-bottom: 1px solid var(--onyx-border-light);
}

.onyx-filters-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}

.onyx-filter-group {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.onyx-filter-group--actions {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.onyx-filter-select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230B1D3A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1px solid var(--onyx-navy);
    border-radius: 6px;
    padding: 10px 36px 10px 14px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: var(--onyx-navy);
    cursor: pointer;
    min-width: 180px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.onyx-filter-select:focus {
    outline: none;
    border-color: var(--onyx-gold);
    box-shadow: 0 0 0 3px rgba(255, 187, 9, 0.25);
}

.onyx-filter-btn {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    border: 2px solid var(--onyx-navy);
    border-radius: 6px;
    background: transparent;
    color: var(--onyx-navy);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.onyx-filter-btn:hover,
.onyx-filter-btn:focus {
    background: var(--onyx-navy);
    color: #fff;
}

.onyx-filter-clear {
    font-size: 14px;
    color: var(--onyx-text-body);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.onyx-filter-clear:hover,
.onyx-filter-clear:focus {
    color: var(--onyx-navy);
}

.onyx-results-grid-section {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-lg) 0;
}

.onyx-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.onyx-case-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.onyx-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.onyx-case-card__image-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.onyx-case-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.onyx-case-card__body {
    padding: 24px;
}

.onyx-case-card__badge {
    display: inline-block;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.onyx-case-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.onyx-case-card__title a {
    color: inherit;
    text-decoration: none;
}

.onyx-case-card__title a:hover,
.onyx-case-card__title a:focus {
    color: var(--onyx-gold);
}

.onyx-case-card__excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--onyx-text-body);
    margin-bottom: 16px;
}

.onyx-case-card__metrics {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--onyx-border-light);
}

.onyx-case-card__metric {
    display: flex;
    flex-direction: column;
}

.onyx-case-card__metric-value {
    font-size: 22px;
    font-weight: 900;
    color: var(--onyx-navy);
    line-height: 1.2;
}

.onyx-case-card__metric-label {
    font-size: 13px;
    color: var(--onyx-text-body);
    line-height: 1.3;
}

.onyx-no-results {
    text-align: center;
    padding: 60px 0;
}

.onyx-no-results p {
    font-size: 18px;
    color: var(--onyx-text-body);
    margin-bottom: 20px;
}

@media (max-width: 1023px) {
    .onyx-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 599px) {
    .onyx-results-hero {
        padding: var(--onyx-section-pad-sm) 0;
    }

    .onyx-results-hero__headline {
        font-size: 28px;
    }

    .onyx-case-grid {
        grid-template-columns: 1fr;
    }

    .onyx-filters-form {
        flex-direction: column;
    }

    .onyx-filter-select {
        min-width: 100%;
    }

    .onyx-case-card__metrics {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   Case Study Single Page
   ========================================================================== */

.onyx-cs-hero {
    padding: 4rem 0;
}

.onyx-cs-hero__inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.onyx-cs-hero__content {
    flex: 1 1 50%;
}

.onyx-cs-hero__badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.onyx-cs-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

.onyx-cs-hero__title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: #fff;
}

.onyx-cs-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.onyx-cs-hero__image-wrap {
    flex: 1 1 45%;
    max-width: 45%;
}

.onyx-cs-hero__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.onyx-cs-section {
    padding: 4rem 0;
}

.onyx-cs-section__heading {
    font-size: 2rem;
    font-weight: 900;
    margin: 0 0 1.5rem;
}

.onyx-cs-challenge__content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.onyx-cs-pain-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.onyx-cs-pain-points li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.onyx-cs-pain-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: var(--onyx-gold);
    border-radius: 50%;
}

.onyx-cs-solution__content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.onyx-cs-deliverables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.onyx-cs-deliverable-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 1.5rem;
}

.onyx-cs-deliverable-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--onyx-gold);
}

.onyx-cs-deliverable-card__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.onyx-cs-results {
    border-top: 4px solid var(--onyx-gold);
}

.onyx-cs-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.onyx-cs-metric-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.onyx-cs-metric-card__value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--onyx-gold);
    line-height: 1.1;
}

.onyx-cs-metric-card__label {
    font-size: 1rem;
    font-weight: 400;
    color: var(--onyx-navy);
    line-height: 1.4;
}

.onyx-cs-results__narrative {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 48rem;
}

.onyx-cs-testimonial {
    text-align: center;
}

.onyx-cs-testimonial__quote {
    margin: 0 auto;
    max-width: 48rem;
    border: none;
    padding: 0;
}

.onyx-cs-testimonial__quote p {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--onyx-navy);
    margin: 0 0 1.5rem;
}

.onyx-cs-testimonial__cite {
    display: block;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    color: var(--onyx-navy);
}

.onyx-cs-cta {
    text-align: center;
    padding: 4rem 0 3rem;
}

.onyx-cs-cta__headline {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 1.5rem;
}

.onyx-cs-related {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.onyx-cs-related__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1.5rem;
    text-align: center;
}

.onyx-cs-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.onyx-cs-related__card {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.onyx-cs-related__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.onyx-cs-related__image-wrap {
    overflow: hidden;
}

.onyx-cs-related__image {
    width: 100%;
    height: auto;
    display: block;
}

.onyx-cs-related__title {
    display: block;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .onyx-cs-hero__inner {
        flex-direction: column;
    }

    .onyx-cs-hero__image-wrap {
        max-width: 100%;
    }

    .onyx-cs-hero__title {
        font-size: 1.75rem;
    }

    .onyx-cs-deliverables {
        grid-template-columns: 1fr;
    }

    .onyx-cs-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .onyx-cs-metric-card__value {
        font-size: 2.25rem;
    }

    .onyx-cs-testimonial__quote p {
        font-size: 1.2rem;
    }

    .onyx-cs-related__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ROI Evidence Page
   ========================================================================== */

.onyx-roi-hero {
    padding: 4rem 0;
    text-align: center;
}

.onyx-roi-hero__headline {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.15;
}

.onyx-roi-hero__subheadline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    max-width: 36rem;
    line-height: 1.5;
}

.onyx-roi-stats {
    padding: 4rem 0;
}

.onyx-roi-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.onyx-roi-stats__card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
}

.onyx-roi-stats__value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--onyx-gold);
    line-height: 1.1;
}

.onyx-roi-stats__label {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.onyx-roi-evidence-grid {
    padding: 4rem 0;
}

.onyx-roi-evidence-grid__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.onyx-roi-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.onyx-roi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.onyx-roi-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--onyx-navy);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.onyx-roi-card__metric {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--onyx-gold);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.onyx-roi-card__description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--onyx-text-body);
    margin: 0 0 0.75rem;
}

.onyx-roi-card__client {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(10, 22, 40, 0.5);
}

.onyx-roi-cta {
    padding: 4rem 0;
    text-align: center;
}

.onyx-roi-cta__headline {
    font-size: 2rem;
    font-weight: 900;
    color: var(--onyx-navy);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.onyx-roi-cta__text {
    font-size: 1.1rem;
    color: var(--onyx-navy);
    margin: 0 auto 2rem;
    max-width: 36rem;
    line-height: 1.6;
}

.onyx-roi-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .onyx-roi-hero__headline {
        font-size: 1.75rem;
    }

    .onyx-roi-stats__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .onyx-roi-stats__value {
        font-size: 2.25rem;
    }

    .onyx-roi-evidence-grid__cards {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Learn Section Pages
   ========================================================================== */

.onyx-learn-hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.onyx-learn-hero__headline {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.onyx-learn-hero__subheadline {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.onyx-learn-grid-section {
    padding: 3rem 0 4rem;
    background: #f8f9fa;
}

.onyx-learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .onyx-learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.onyx-learn-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.onyx-learn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.onyx-learn-card__image-wrap {
    position: relative;
    overflow: hidden;
}

.onyx-learn-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.onyx-learn-card__image--placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--onyx-navy) 0%, #2c3e6b 100%);
}

.onyx-learn-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.onyx-learn-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.onyx-learn-card__badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 3px;
    background: var(--onyx-navy);
    color: #ffffff;
    line-height: 1.4;
}

.onyx-learn-card__badge--gated {
    background: var(--onyx-gold);
    color: var(--onyx-navy);
}

.onyx-learn-card__title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--onyx-navy);
    margin: 0 0 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.onyx-learn-card__title a {
    color: inherit;
    text-decoration: none;
}

.onyx-learn-card__title a:hover {
    color: var(--onyx-gold);
}

.onyx-learn-card__meta {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.onyx-learn-card__meta-sep {
    margin: 0 0.35rem;
}

.onyx-learn-card__excerpt {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--onyx-text-body);
    line-height: 1.6;
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.onyx-learn-card--gated {
    border: 2px solid var(--onyx-gold);
}

.onyx-learn-card--gated .onyx-learn-card__badge--gated::before {
    content: '\1F512 ';
    font-size: 0.7rem;
}

.onyx-learn-card--external .onyx-learn-card__title a::after {
    content: ' \2197';
    font-size: 0.85em;
    opacity: 0.6;
}

.onyx-btn-secondary--sm {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--onyx-navy);
    background: transparent;
    border: 2px solid var(--onyx-navy);
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
    margin-top: auto;
    align-self: flex-start;
}

.onyx-btn-secondary--sm:hover {
    background: var(--onyx-navy);
    color: #ffffff;
}

.onyx-btn-text {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--onyx-navy);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
    cursor: pointer;
    margin-top: auto;
    align-self: flex-start;
}

.onyx-btn-text:hover {
    border-bottom-color: var(--onyx-gold);
}

.onyx-pagination {
    margin-top: 2.5rem;
    text-align: center;
}

.onyx-pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.onyx-pagination li {
    display: inline-block;
}

.onyx-pagination a,
.onyx-pagination span {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--onyx-navy);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.onyx-pagination a:hover {
    background: var(--onyx-navy);
    color: #ffffff;
}

.onyx-pagination .current {
    background: var(--onyx-navy);
    color: #ffffff;
}

.onyx-learn-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.onyx-learn-empty p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

.onyx-external-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
    background: #e8f4fd;
    color: var(--onyx-navy);
    margin-bottom: 0.5rem;
}

.onyx-community-content {
    padding: 3rem 0 2rem;
}

.onyx-community-content__wysiwyg {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
}

.onyx-community-content__wysiwyg h2,
.onyx-community-content__wysiwyg h3 {
    color: var(--onyx-navy);
}

.onyx-community-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 600px) {
    .onyx-community-links {
        grid-template-columns: 1fr;
    }
}

.onyx-community-link-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.onyx-community-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.onyx-community-link-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--onyx-navy);
}

.onyx-community-link-card__icon svg {
    width: 32px;
    height: 32px;
}

.onyx-community-link-card__body {
    flex: 1;
}

.onyx-community-link-card__title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--onyx-navy);
    margin: 0 0 0.35rem;
}

.onyx-community-link-card__desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.onyx-community-cta {
    text-align: center;
    padding: 3rem 0;
    background: var(--onyx-gold);
}

.onyx-community-cta__headline {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--onyx-navy);
    margin: 0 0 1.5rem;
}

/* White Papers -- Featured & Catalogue Enhancements */

.onyx-wp-featured {
    padding: 3rem 0;
    background: #ffffff;
}

.onyx-wp-featured__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.onyx-wp-featured__image-col {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.onyx-wp-featured__image {
    width: 100%;
    height: auto;
    display: block;
}

.onyx-wp-featured__placeholder {
    background: linear-gradient(135deg, var(--onyx-navy) 0%, #141B2B 100%);
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
}

.onyx-wp-featured__badge {
    display: inline-block;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.onyx-wp-featured__title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--onyx-navy);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.onyx-wp-featured__description {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    color: var(--onyx-text-body);
    line-height: 1.7;
    margin: 0 0 1.25rem;
}

.onyx-wp-featured__meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.25rem;
}

.onyx-wp-featured__meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.onyx-wp-featured__meta-item svg {
    flex-shrink: 0;
}

.onyx-wp-featured__takeaways {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.onyx-wp-featured__takeaways li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--onyx-text-body);
    line-height: 1.5;
}

.onyx-wp-featured__takeaways li::before {
    content: '\2713';
    color: var(--onyx-gold);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.onyx-wp-catalogue__heading {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--onyx-navy);
    margin: 0 0 1.5rem;
}

.onyx-learn-card__pages {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    display: block;
}

@media (max-width: 768px) {
    .onyx-wp-featured__grid {
        grid-template-columns: 1fr;
    }

    .onyx-wp-featured__image-col {
        max-width: 400px;
        margin: 0 auto 1.5rem;
    }
}

/* ==========================================================================
   Lead Capture & Gated Content
   ========================================================================== */

.onyx-profiling-hidden {
    display: none !important;
}

.onyx-gated-notice {
    background: #f0f2f5;
    border: 1px solid #dde0e6;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.onyx-gated-notice::before {
    content: '\1F512';
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.onyx-gated-notice p {
    color: var(--onyx-navy);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.onyx-gated-wrapper {
    margin: 1.5rem 0;
}

.onyx-gated-content--revealed {
    border-left: 4px solid var(--onyx-gold);
    padding-left: 1rem;
    margin: 1rem 0;
}

.onyx-gated-download {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--onyx-navy);
    background: var(--onyx-gold);
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.onyx-gated-download:hover,
.onyx-gated-download:focus {
    background: #e5a800;
    transform: translateY(-1px);
    color: var(--onyx-navy);
    text-decoration: none;
}

.onyx-form-wrapper {
    max-width: 540px;
    margin: 0 auto;
    padding: 1rem 0;
}

.onyx-gated-fallback {
    color: var(--onyx-navy);
    font-style: italic;
}

.onyx-gated-error {
    color: #d32f2f;
    font-style: italic;
}

/* ==========================================================================
   Dark Section Background
   ========================================================================== */

.onyx-section-dark {
    background: var(--onyx-navy);
    color: var(--onyx-text-white);
}

/* ==========================================================================
   Partner Badges (shared)
   ========================================================================== */

.onyx-partner-badges {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--onyx-border-dark);
}

.onyx-partner-badges img {
    max-height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity var(--onyx-transition);
}

.onyx-partner-badges img:hover {
    opacity: 1;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .onyx-header,
    .onyx-footer,
    .onyx-mobile-nav,
    .onyx-mobile-toggle,
    .onyx-gated-notice,
    .onyx-form-wrapper {
        display: none !important;
    }

    .onyx-reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .onyx-cs-hero,
    .onyx-roi-hero {
        background: none !important;
        color: #000 !important;
        padding: 2rem 0;
    }

    .onyx-cs-hero__title,
    .onyx-cs-hero__subtitle,
    .onyx-roi-hero__headline,
    .onyx-roi-hero__subheadline {
        color: #000 !important;
    }
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.onyx-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: var(--onyx-section-pad-lg) 0;
}

.onyx-404__content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.onyx-404__headline {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: var(--onyx-navy);
    margin-bottom: 24px;
    line-height: 1.2;
}

.onyx-404__text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--onyx-text-body);
    margin-bottom: 32px;
}

.onyx-404__ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.onyx-404__nav {
    border-top: 1px solid var(--onyx-border);
    padding-top: 32px;
}

.onyx-404__nav-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.onyx-404__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.onyx-404__nav-list a {
    color: var(--onyx-gold);
    font-weight: 600;
    text-decoration: none;
}

.onyx-404__nav-list a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   FABOPS PRICING PAGE
   ========================================================================== */

.onyx-pricing-hero {
    background: linear-gradient(135deg, var(--onyx-navy) 0%, var(--onyx-mid-navy) 100%);
    padding: var(--onyx-section-pad-lg) 0;
    text-align: center;
}

.onyx-pricing-hero__headline {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--onyx-text-white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.onyx-pricing-hero__subheadline {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--onyx-text-white-80);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.onyx-pricing-tiers {
    padding: var(--onyx-section-pad-lg) 0;
    background: var(--onyx-bg-off-white);
}

.onyx-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .onyx-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

.onyx-pricing-card {
    background: var(--onyx-bg-white);
    border-radius: var(--onyx-card-radius);
    padding: 40px 32px;
    box-shadow: var(--onyx-shadow-card);
    display: flex;
    flex-direction: column;
    position: relative;
}

.onyx-pricing-card--featured {
    border: 2px solid var(--onyx-gold);
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .onyx-pricing-card--featured {
        transform: none;
    }
}

.onyx-pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 20px;
}

.onyx-pricing-card__tier {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--onyx-gold);
    margin-bottom: 8px;
}

.onyx-pricing-card__name {
    font-size: 24px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin-bottom: 8px;
}

.onyx-pricing-card__workspaces {
    font-size: 14px;
    color: var(--onyx-text-body);
    margin-bottom: 24px;
}

.onyx-pricing-card__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--onyx-text-body);
    margin-bottom: 24px;
    flex-grow: 1;
}

.onyx-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.onyx-pricing-card__features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--onyx-text-body);
}

.onyx-pricing-card__features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--onyx-gold);
    font-weight: bold;
}

.onyx-pricing-card__cta {
    margin-top: auto;
}

.onyx-pricing-card__cta .onyx-btn-primary {
    width: 100%;
    text-align: center;
}

.onyx-pricing-footer {
    text-align: center;
    margin-top: 48px;
}

.onyx-pricing-footer__text {
    font-size: 16px;
    color: var(--onyx-text-body);
    margin-bottom: 0;
}

.onyx-pricing-cta {
    padding: var(--onyx-section-pad-lg) 0;
    text-align: center;
}

.onyx-pricing-cta__headline {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    color: var(--onyx-navy);
    margin-bottom: 16px;
}

.onyx-pricing-cta__text {
    font-size: 18px;
    color: var(--onyx-text-body);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.onyx-pricing-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.onyx-pricing-cta__back-link {
    margin-top: 20px;
    font-size: 14px;
}

.onyx-pricing-cta__back-link a {
    color: var(--onyx-text-body);
    text-decoration: none;
    transition: color 0.2s ease;
}

.onyx-pricing-cta__back-link a:hover {
    color: var(--onyx-navy);
    text-decoration: underline;
}

/* ==========================================================================
   Pain Cards (HOME-03) — "Sound Familiar?"
   ========================================================================== */

.onyx-pain {
    background: linear-gradient(180deg, var(--onyx-navy) 0%, var(--onyx-bg-charcoal) 100%);
    padding: var(--onyx-section-pad-sm) 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .onyx-pain {
        padding: var(--onyx-section-pad-lg) 0;
    }
}

.onyx-pain::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 0, 110, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.onyx-pain__heading {
    text-align: center;
    color: var(--onyx-text-white);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: var(--onyx-font-black);
    margin: 0 0 48px;
    letter-spacing: -0.02em;
    position: relative;
}

.onyx-pain__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
}

@media (min-width: 768px) {
    .onyx-pain__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.onyx-pain__card {
    position: relative;
    background: rgba(31, 39, 59, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2px;
    transition: transform 0.4s var(--onyx-ease), box-shadow 0.4s var(--onyx-ease);
    animation: pain-card-reveal 0.8s var(--onyx-ease) backwards;
    animation-delay: var(--card-delay, 0s);
}

@keyframes pain-card-reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.onyx-pain__card:hover {
    transform: translateY(-8px);
}

.onyx-pain__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--card-accent), transparent 50%, var(--card-accent));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    transition: opacity 0.4s var(--onyx-ease), background-position 0.4s var(--onyx-ease);
}

.onyx-pain__card:hover::before {
    opacity: 1;
    background-position: 100% 100%;
}

.onyx-pain__card--cyan {
    --card-accent: var(--onyx-hero-holo-cyan);
    --card-glow: rgba(0, 212, 255, 0.3);
}

.onyx-pain__card--gold {
    --card-accent: var(--onyx-gold);
    --card-glow: rgba(255, 187, 9, 0.3);
}

.onyx-pain__card--magenta {
    --card-accent: var(--onyx-hero-holo-magenta);
    --card-glow: rgba(255, 0, 110, 0.3);
}

.onyx-pain__card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, var(--card-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s var(--onyx-ease);
    pointer-events: none;
    z-index: -1;
}

.onyx-pain__card:hover .onyx-pain__card-glow {
    opacity: 1;
}

.onyx-pain__card-content {
    background: rgba(20, 27, 43, 0.9);
    border-radius: 18px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

@media (min-width: 768px) {
    .onyx-pain__card-content {
        padding: 40px 32px;
    }
}

.onyx-pain__quote {
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 80px;
    font-weight: var(--onyx-font-black);
    line-height: 1;
    color: var(--card-accent);
    opacity: 0.15;
    font-family: Georgia, serif;
    pointer-events: none;
}

.onyx-pain__card-headline {
    color: var(--onyx-text-white);
    font-size: 20px;
    font-weight: var(--onyx-font-bold);
    line-height: 1.4;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .onyx-pain__card-headline {
        font-size: 22px;
    }
}

.onyx-pain__card-body {
    color: var(--onyx-text-white-80);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 24px;
    flex-grow: 1;
}

.onyx-pain__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--card-accent);
    font-weight: var(--onyx-font-bold);
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s var(--onyx-ease), color 0.3s var(--onyx-ease);
}

.onyx-pain__cta svg {
    transition: transform 0.3s var(--onyx-ease);
}

.onyx-pain__cta:hover,
.onyx-pain__cta:focus {
    gap: 12px;
}

.onyx-pain__cta:hover svg,
.onyx-pain__cta:focus svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Value Ladder (HOME-04) — "Three Steps to Production"
   ========================================================================== */

.onyx-ladder {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-sm) 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .onyx-ladder {
        padding: var(--onyx-section-pad-lg) 0;
    }
}

.onyx-ladder__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.onyx-ladder__heading {
    color: var(--onyx-text-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: var(--onyx-font-black);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.onyx-ladder__subheading {
    color: var(--onyx-text-body);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    margin: 0;
}

.onyx-ladder__timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.onyx-ladder__line {
    display: none;
}

@media (min-width: 768px) {
    .onyx-ladder__line {
        display: block;
        position: absolute;
        top: 40px;
        left: calc(16.666% + 20px);
        right: calc(16.666% + 20px);
        height: 4px;
        background: var(--onyx-border-light);
        border-radius: 2px;
        z-index: 1;
    }

    .onyx-ladder__line-fill {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,
            var(--onyx-hero-holo-cyan) 0%,
            var(--onyx-gold) 50%,
            var(--onyx-hero-holo-magenta) 100%
        );
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: left;
        animation: ladder-line-fill 1.5s var(--onyx-ease) 0.5s forwards;
    }
}

@keyframes ladder-line-fill {
    to { transform: scaleX(1); }
}

.onyx-ladder__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .onyx-ladder__steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.onyx-ladder__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: ladder-step-reveal 0.8s var(--onyx-ease) backwards;
    animation-delay: var(--step-delay, 0s);
}

@keyframes ladder-step-reveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.onyx-ladder__indicator {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    background: var(--onyx-bg-white);
    box-shadow: 0 4px 20px rgba(31, 39, 59, 0.1);
    transition: transform 0.3s var(--onyx-ease), box-shadow 0.3s var(--onyx-ease);
}

.onyx-ladder__indicator::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--step-accent), var(--step-accent-light));
    z-index: -1;
    opacity: 0.8;
    transition: opacity 0.3s var(--onyx-ease);
}

.onyx-ladder__step:hover .onyx-ladder__indicator {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(31, 39, 59, 0.15);
}

.onyx-ladder__step:hover .onyx-ladder__indicator::before {
    opacity: 1;
}

.onyx-ladder__number {
    font-size: 28px;
    font-weight: var(--onyx-font-black);
    color: var(--step-accent);
    line-height: 1;
}

.onyx-ladder__step--cyan {
    --step-accent: var(--onyx-hero-holo-cyan);
    --step-accent-light: #66E5FF;
}

.onyx-ladder__step--gold {
    --step-accent: var(--onyx-gold);
    --step-accent-light: var(--onyx-light-gold);
}

.onyx-ladder__step--magenta {
    --step-accent: var(--onyx-hero-holo-magenta);
    --step-accent-light: #FF66A3;
}

.onyx-ladder__card {
    background: var(--onyx-bg-white);
    border-radius: var(--onyx-card-radius);
    padding: 32px 24px;
    box-shadow: var(--onyx-shadow-card);
    flex-grow: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--onyx-ease), box-shadow 0.3s var(--onyx-ease);
}

.onyx-ladder__step:hover .onyx-ladder__card {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(31, 39, 59, 0.12);
}

.onyx-ladder__title {
    color: var(--onyx-text-heading);
    font-size: 20px;
    font-weight: var(--onyx-font-bold);
    margin: 0 0 12px;
    line-height: 1.3;
}

.onyx-ladder__desc {
    color: var(--onyx-text-body);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 16px;
    flex-grow: 1;
}

.onyx-ladder__pricing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 187, 9, 0.1), rgba(255, 187, 9, 0.05));
    border: 1px solid rgba(255, 187, 9, 0.3);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--onyx-navy);
    font-weight: var(--onyx-font-bold);
}

.onyx-ladder__pricing svg {
    color: var(--onyx-gold);
    flex-shrink: 0;
}

.onyx-ladder__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--onyx-navy);
    color: var(--onyx-text-white);
    border-radius: var(--onyx-btn-radius);
    font-weight: var(--onyx-font-bold);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s var(--onyx-ease), gap 0.3s var(--onyx-ease);
}

.onyx-ladder__cta:hover,
.onyx-ladder__cta:focus {
    background: var(--onyx-mid-navy);
    gap: 12px;
}

.onyx-ladder__cta svg {
    transition: transform 0.3s var(--onyx-ease);
}

.onyx-ladder__cta:hover svg,
.onyx-ladder__cta:focus svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Impact Metrics (HOME-05) — £93M Documented Impact
   ========================================================================== */

.onyx-impact {
    background: linear-gradient(180deg, var(--onyx-bg-charcoal) 0%, var(--onyx-navy) 100%);
    padding: var(--onyx-section-pad-sm) 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .onyx-impact {
        padding: var(--onyx-section-pad-lg) 0;
    }
}

.onyx-impact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 20%, rgba(255, 187, 9, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.onyx-impact__hero {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

.onyx-impact__value {
    display: block;
    font-size: clamp(64px, 12vw, 120px);
    font-weight: var(--onyx-font-black);
    color: var(--onyx-gold);
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 0 60px rgba(255, 187, 9, 0.4);
    animation: impact-glow 3s ease-in-out infinite alternate;
}

@keyframes impact-glow {
    from { text-shadow: 0 0 40px rgba(255, 187, 9, 0.3); }
    to { text-shadow: 0 0 80px rgba(255, 187, 9, 0.5); }
}

.onyx-impact__heading {
    color: var(--onyx-text-white);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: var(--onyx-font-bold);
    margin: 16px auto 12px;
    max-width: 700px;
}

.onyx-impact__subheading {
    color: var(--onyx-text-white-60);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.onyx-impact__proofs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .onyx-impact__proofs {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.onyx-impact__card {
    background: rgba(31, 39, 59, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: impact-card 0.8s var(--onyx-ease) backwards;
    animation-delay: var(--card-delay, 0s);
    transition: transform 0.3s var(--onyx-ease), border-color 0.3s var(--onyx-ease);
}

@keyframes impact-card {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.onyx-impact__card:hover {
    transform: translateY(-4px);
    border-color: var(--card-accent);
}

.onyx-impact__card--cyan { --card-accent: var(--onyx-hero-holo-cyan); }
.onyx-impact__card--gold { --card-accent: var(--onyx-gold); }
.onyx-impact__card--magenta { --card-accent: var(--onyx-hero-holo-magenta); }

.onyx-impact__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 187, 9, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-hero-holo-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.onyx-impact__badge svg {
    color: var(--onyx-gold);
}

.onyx-impact__metric {
    margin-bottom: 16px;
}

.onyx-impact__metric-value {
    display: block;
    font-size: 36px;
    font-weight: var(--onyx-font-black);
    color: var(--card-accent);
    line-height: 1.1;
}

.onyx-impact__metric-label {
    display: block;
    font-size: 14px;
    color: var(--onyx-text-white-60);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.onyx-impact__desc {
    color: var(--onyx-text-white-80);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.onyx-impact__cta-wrap {
    text-align: center;
}

.onyx-impact__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    border-radius: var(--onyx-btn-radius);
    font-weight: var(--onyx-font-bold);
    text-decoration: none;
    transition: gap 0.3s var(--onyx-ease), transform 0.3s var(--onyx-ease);
}

.onyx-impact__cta:hover {
    gap: 12px;
    transform: translateY(-2px);
}

/* ==========================================================================
   Testimonials (HOME-06) — Dark Theme
   ========================================================================== */

.onyx-testimonials--dark {
    background: var(--onyx-navy);
    padding: var(--onyx-section-pad-sm) 0;
}

@media (min-width: 1024px) {
    .onyx-testimonials--dark {
        padding: var(--onyx-section-pad-lg) 0;
    }
}

.onyx-testimonials__heading {
    text-align: center;
    color: var(--onyx-text-white);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: var(--onyx-font-black);
    margin: 0 0 48px;
}

.onyx-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .onyx-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.onyx-testimonial {
    background: rgba(31, 39, 59, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    animation: testimonial-card 0.8s var(--onyx-ease) backwards;
    animation-delay: var(--card-delay, 0s);
    transition: border-color 0.3s var(--onyx-ease);
}

@keyframes testimonial-card {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.onyx-testimonial:hover {
    border-color: rgba(255, 187, 9, 0.3);
}

.onyx-testimonial--featured {
    border-color: rgba(0, 212, 255, 0.3);
}

.onyx-testimonial__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 187, 9, 0.15));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-hero-holo-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    width: fit-content;
}

.onyx-testimonial__badge svg {
    color: var(--onyx-gold);
}

.onyx-testimonial__quote {
    margin: 0;
    padding: 0;
    color: var(--onyx-text-white-80);
    line-height: 1.7;
    font-size: 15px;
    flex: 1;
    position: relative;
    padding-left: 24px;
}

.onyx-testimonial__quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    color: var(--onyx-gold);
    font-size: 48px;
    font-weight: var(--onyx-font-black);
    opacity: 0.3;
    line-height: 1;
}

.onyx-testimonial__quote p {
    margin: 0;
}

.onyx-testimonial__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.onyx-testimonial__logo {
    max-width: 120px;
    max-height: 48px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.onyx-testimonial__author {
    display: flex;
    flex-direction: column;
}

.onyx-testimonial__name {
    display: block;
    color: var(--onyx-text-white);
    font-weight: var(--onyx-font-bold);
    font-style: normal;
}

.onyx-testimonial__role {
    display: block;
    color: var(--onyx-text-white-60);
    font-size: 14px;
}

/* ==========================================================================
   Trust Logos (HOME-08)
   ========================================================================== */

.onyx-trust-logos {
    background: var(--onyx-bg-white);
    padding: 48px 0;
    text-align: center;
}

.onyx-trust-logos__label {
    display: block;
    font-size: 12px;
    font-weight: var(--onyx-font-bold);
    color: var(--onyx-text-caption);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.onyx-trust-logos__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 32px;
}

.onyx-trust-logos__item {
    color: var(--onyx-text-body);
    font-size: 14px;
    font-weight: var(--onyx-font-bold);
}

.onyx-trust-logos__divider {
    width: 4px;
    height: 4px;
    background: var(--onyx-gold);
    border-radius: 50%;
}

.onyx-trust-logos__logo {
    max-width: 120px;
    max-height: 40px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s var(--onyx-ease), opacity 0.3s var(--onyx-ease);
}

.onyx-trust-logos__logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 767px) {
    .onyx-trust-logos__divider {
        display: none;
    }

    .onyx-trust-logos__grid {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   Founder Section (HP-03)
   ========================================================================== */

.onyx-founder {
    padding: 80px 0;
    background: var(--onyx-bg-white);
}

.onyx-founder__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .onyx-founder__grid {
        grid-template-columns: 280px 1fr;
        gap: 60px;
    }
}

.onyx-founder__headshot {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
}

.onyx-founder__headshot-placeholder {
    width: 280px;
    height: 280px;
    max-width: 100%;
    border-radius: 16px;
    background: var(--onyx-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.onyx-founder__headshot-placeholder span {
    font-size: 4rem;
    font-weight: 700;
    color: var(--onyx-gold);
}

.onyx-founder__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--onyx-gold);
    margin-bottom: 8px;
}

.onyx-founder__name {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 900;
    color: var(--onyx-navy);
    margin: 0 0 4px;
    line-height: 1.2;
}

.onyx-founder__title {
    display: block;
    font-size: 1rem;
    color: var(--onyx-text-muted);
    margin-bottom: 16px;
}

.onyx-founder__bio {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--onyx-text-body);
    margin: 0 0 20px;
}

.onyx-founder__credentials {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.onyx-founder__credentials li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9375rem;
    color: var(--onyx-text-body);
}

.onyx-founder__credentials svg {
    flex-shrink: 0;
    color: var(--onyx-gold);
}

.onyx-founder__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--onyx-gold);
    font-weight: 700;
    text-decoration: none;
    transition: gap var(--onyx-transition);
}

.onyx-founder__cta:hover {
    gap: 12px;
}

@media (max-width: 767px) {
    .onyx-founder__photo {
        text-align: center;
    }

    .onyx-founder__content {
        text-align: center;
    }

    .onyx-founder__credentials {
        display: inline-block;
        text-align: left;
    }
}

/* ==========================================================================
   Testimonial Avatars (HP-04)
   ========================================================================== */

.onyx-testimonial__avatar {
    flex-shrink: 0;
}

.onyx-testimonial__avatar-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.onyx-testimonial__avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 187, 9, 0.15);
    color: var(--onyx-gold);
    font-size: 1.25rem;
    font-weight: 700;
}

/* ==========================================================================
   Impact Client Labels (HP-07)
   ========================================================================== */

.onyx-impact__client {
    display: block;
    margin-top: 12px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Homepage Sections — Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .onyx-pain__card,
    .onyx-ladder__step,
    .onyx-ladder__line-fill,
    .onyx-impact__value,
    .onyx-impact__card,
    .onyx-testimonial {
        animation: none;
    }

    .onyx-ladder__line-fill {
        transform: scaleX(1);
    }

    .onyx-pain__card,
    .onyx-pain__card::before,
    .onyx-pain__card-glow,
    .onyx-pain__cta,
    .onyx-pain__cta svg,
    .onyx-ladder__indicator,
    .onyx-ladder__indicator::before,
    .onyx-ladder__card,
    .onyx-ladder__cta,
    .onyx-ladder__cta svg,
    .onyx-impact__card,
    .onyx-impact__cta,
    .onyx-testimonial,
    .onyx-trust-logos__logo {
        transition: none;
    }
}

/* ==========================================================================
   Strategy & Enablement Page (se-)
   ========================================================================== */

/* ----- SE Hero ----- */

.se-hero {
    background: linear-gradient(160deg, var(--onyx-navy) 0%, var(--onyx-bg-charcoal) 100%);
    padding: 80px 0 60px;
}

.se-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.se-hero__badge {
    display: inline-block;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.se-hero__headline {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 20px;
}

.se-hero__subheadline {
    color: var(--onyx-text-white-80);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 540px;
}

.se-hero__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.se-hero__spec {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--onyx-text-white-60);
    font-size: 14px;
}

.se-hero__spec:not(:first-child) {
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.se-hero__spec svg {
    flex-shrink: 0;
}

.se-hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.se-hero__transform-card {
    max-width: 400px;
    width: 100%;
    padding: 20px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.se-hero__transform-card--before {
    border-left: 4px solid #E74C3C;
}

.se-hero__transform-card--after {
    border-left: 4px solid #2ECC71;
}

.se-hero__transform-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.se-hero__transform-label--before {
    color: #E74C3C;
}

.se-hero__transform-label--after {
    color: #2ECC71;
}

.se-hero__transform-text {
    color: var(--onyx-text-white-80);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.se-hero__arrow {
    color: var(--onyx-gold);
    text-align: center;
    margin: 12px 0;
}

.se-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.se-hero__transform {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.se-hero__transform-panel {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    width: 100%;
    max-width: 400px;
}

.se-hero__transform-panel--before {
    border-left: 3px solid #EF4444;
}

.se-hero__transform-panel--after {
    border-left: 3px solid #22C55E;
}

.se-hero__transform-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.se-hero__transform-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.se-hero__transform-list li:last-child {
    margin-bottom: 0;
}

.se-hero__transform-arrow {
    color: var(--onyx-gold);
    font-size: 24px;
    padding: 8px 0;
}

.se-hero__icon-x,
.se-hero__icon-check {
    flex-shrink: 0;
    display: flex;
    margin-top: 2px;
}

/* ----- SE Problem ----- */

.se-problem {
    background: #fff;
    padding: var(--onyx-section-pad-sm) 0;
}

.se-problem__eyebrow {
    color: var(--onyx-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 12px;
    text-align: center;
}

.se-problem__headline {
    color: var(--onyx-text-heading);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 12px;
}

.se-problem__subtitle {
    color: var(--onyx-text-caption);
    font-size: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.se-problem__columns {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.se-problem__panel {
    flex: 1;
    padding: 32px;
    border-radius: var(--onyx-card-radius);
    box-shadow: var(--onyx-shadow-card);
}

.se-problem__panel--without {
    background: #FFF5F5;
    border-left: 4px solid #E74C3C;
}

.se-problem__panel--with {
    background: #F0FFF4;
    border-left: 4px solid #2ECC71;
}

.se-problem__panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
}

.se-problem__panel--without .se-problem__panel-header {
    color: #E74C3C;
}

.se-problem__panel--with .se-problem__panel-header {
    color: #2ECC71;
}

.se-problem__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.se-problem__item {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--onyx-text-body);
    line-height: 1.5;
}

.se-problem__item:last-child {
    margin-bottom: 0;
}

.se-problem__icon {
    flex-shrink: 0;
    width: 20px;
    display: flex;
    align-items: center;
    padding-top: 2px;
}

.se-problem__bottom {
    font-size: 14px;
    font-weight: 700;
    margin: 20px 0 0;
    padding-top: 16px;
    border-top: 1px dashed currentColor;
}

.se-problem__bottom--red {
    color: #EF4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.se-problem__bottom--green {
    color: #22C55E;
    border-color: rgba(34, 197, 94, 0.3);
}

/* ----- SE Deliverables ----- */

.se-deliverables {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-sm) 0;
}

.se-deliverables__headline {
    color: var(--onyx-text-heading);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 12px;
}

.se-deliverables__subtitle {
    color: var(--onyx-text-caption);
    font-size: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.se-deliverables__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.se-deliverables__card {
    background: #fff;
    border-radius: var(--onyx-card-radius);
    box-shadow: var(--onyx-shadow-card);
    padding: 32px;
    position: relative;
}

.se-deliverables__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}

.se-deliverables__card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--onyx-text-heading);
    margin: 0 0 8px;
}

.se-deliverables__card-desc {
    font-size: 15px;
    color: var(--onyx-text-body);
    line-height: 1.6;
    margin: 0;
}

.se-deliverables__quote {
    font-style: italic;
    color: #00BCD4;
    font-size: 14px;
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--onyx-border-light);
    line-height: 1.5;
}

.se-deliverables__quote-prefix {
    font-variant: small-caps;
    font-weight: 700;
    font-style: normal;
}

.se-deliverables__eyebrow {
    color: var(--onyx-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin: 0 0 12px;
}

.se-deliverables__duration {
    display: inline-block;
    background: var(--onyx-bg-off-white);
    color: var(--onyx-text-caption);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    margin-top: 16px;
}

/* ----- SE Personas ----- */

.se-personas {
    background: var(--onyx-navy);
    padding: var(--onyx-section-pad-sm) 0;
}

.se-personas__headline {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 12px;
}

.se-personas__subtitle {
    color: var(--onyx-text-white-60);
    font-size: 16px;
    text-align: center;
    margin: 0 0 48px;
}

.se-personas__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.se-personas__card {
    background: var(--onyx-mid-navy);
    border-radius: var(--onyx-card-radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.se-personas__name {
    color: var(--onyx-gold);
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 12px;
}

.se-personas__scenario {
    color: var(--onyx-text-white-80);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.se-personas__price {
    color: var(--onyx-text-white-60);
    font-size: 13px;
    margin: 0 0 24px;
}

.se-personas__cta {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.se-personas__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.se-personas__tag--cyan {
    background: rgba(0, 180, 216, 0.15);
    color: #00B4D8;
}

.se-personas__tag--gold {
    background: rgba(255, 187, 9, 0.15);
    color: var(--onyx-gold);
}

.se-personas__tag--pink {
    background: rgba(233, 30, 140, 0.15);
    color: #E91E8C;
}

.se-personas__card--cyan {
    border-top: 4px solid #00B4D8;
}

.se-personas__card--gold {
    border-top: 4px solid var(--onyx-gold);
}

.se-personas__card--pink {
    border-top: 4px solid #E91E8C;
}

.se-personas__title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
}

.se-personas__body {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.se-personas__best-if {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.se-personas__best-if-icon {
    color: var(--onyx-gold);
    flex-shrink: 0;
}

.se-personas__best-if div {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

.se-personas__best-if strong {
    color: #fff;
}

.se-personas__details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.se-personas__scope {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.se-personas__investment {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.se-personas__azure-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin: 0;
}

/* ----- SE Process ----- */

.se-process {
    background: #fff;
    padding: var(--onyx-section-pad-sm) 0;
}

.se-process__headline {
    color: var(--onyx-text-heading);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 48px;
}

.se-process__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-left: 40px;
}

.se-process__line {
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--onyx-gold);
}

.se-process__step {
    position: relative;
    z-index: 1;
}

.se-process__circle {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    border: 3px solid var(--onyx-gold);
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--onyx-navy);
    font-size: 16px;
}

.se-process__step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--onyx-text-heading);
    margin: 0 0 8px;
}

.se-process__step-desc {
    font-size: 14px;
    color: var(--onyx-text-caption);
    margin: 0;
    line-height: 1.5;
}

.se-process__eyebrow {
    color: var(--onyx-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin: 0 0 12px;
}

.se-process__icon {
    position: absolute;
    left: -40px;
    top: -28px;
    width: 40px;
    display: flex;
    justify-content: center;
    color: var(--onyx-gold);
}

/* ----- SE Pricing ----- */

.se-pricing {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-sm) 0;
}

.se-pricing__headline {
    color: var(--onyx-text-heading);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 12px;
}

.se-pricing__subtitle {
    color: var(--onyx-text-caption);
    font-size: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.se-pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.se-pricing__card {
    background: #fff;
    border-radius: var(--onyx-card-radius);
    box-shadow: var(--onyx-shadow-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.se-pricing__card--featured {
    border-top: 4px solid var(--onyx-gold);
}

.se-pricing__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    border-radius: 12px;
    white-space: nowrap;
}

.se-pricing__tier-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--onyx-text-heading);
    margin: 0 0 8px;
}

.se-pricing__price {
    font-size: 28px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin-bottom: 8px;
}

.se-pricing__duration {
    display: inline-block;
    font-size: 13px;
    color: var(--onyx-text-caption);
    margin-bottom: 24px;
}

.se-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.se-pricing__features li {
    display: flex;
    align-items: start;
    gap: 8px;
    font-size: 15px;
    color: var(--onyx-text-body);
    padding: 6px 0;
    line-height: 1.4;
}

.se-pricing__features .onyx-check {
    color: var(--onyx-gold);
    font-weight: 700;
    flex-shrink: 0;
}

.se-pricing__cta {
    margin-top: auto;
}

.se-pricing__cta a {
    display: block;
    text-align: center;
    width: 100%;
}

.se-pricing__marketplace {
    text-align: center;
    margin-top: 48px;
    font-size: 14px;
    color: var(--onyx-text-caption);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.se-pricing__azure-icon {
    flex-shrink: 0;
}

.se-pricing__check {
    flex-shrink: 0;
    margin-right: 8px;
    color: #22C55E;
}

.se-pricing__best-for {
    font-size: 13px;
    color: var(--onyx-text-caption);
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--onyx-border-light);
}

.se-pricing__best-for strong {
    color: var(--onyx-text-heading);
}

/* ----- SE Value Ladder ----- */

.se-value-ladder {
    background: var(--onyx-navy);
    padding: var(--onyx-section-pad-sm) 0;
}

.se-value-ladder__headline {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 12px;
}

.se-value-ladder__subtitle {
    color: var(--onyx-text-white-60);
    font-size: 16px;
    text-align: center;
    margin: 0 0 48px;
}

.se-value-ladder__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.se-value-ladder__card {
    background: var(--onyx-mid-navy);
    padding: 32px 24px;
    border-radius: var(--onyx-card-radius);
    width: 100%;
    max-width: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    opacity: 0.6;
    transition: opacity var(--onyx-transition);
}

.se-value-ladder__card:hover {
    opacity: 0.8;
}

.se-value-ladder__card--active {
    border: 2px solid var(--onyx-gold);
    opacity: 1;
}

.se-value-ladder__card--active:hover {
    opacity: 1;
}

.se-value-ladder__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    border-radius: 12px;
    white-space: nowrap;
}

.se-value-ladder__circle {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--onyx-text-white-60);
    margin-bottom: 16px;
}

.se-value-ladder__circle--active {
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    border-color: var(--onyx-gold);
}

.se-value-ladder__step-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.se-value-ladder__card--active .se-value-ladder__step-title {
    color: var(--onyx-gold);
}

.se-value-ladder__link {
    text-decoration: none;
    color: inherit;
}

.se-value-ladder__link:hover {
    text-decoration: underline;
    text-decoration-color: var(--onyx-gold);
}

.se-value-ladder__step-desc {
    font-size: 14px;
    color: var(--onyx-text-white-60);
    margin: 0 0 auto;
    line-height: 1.5;
}

.se-value-ladder__price {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-top: 16px;
}

.se-value-ladder__eyebrow {
    color: var(--onyx-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin: 0 0 12px;
}

.se-value-ladder__card--next {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.se-value-ladder__card--future {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.se-value-ladder__badge--next {
    background: transparent;
    border: 1px solid #00B4D8;
    color: #00B4D8;
}

.se-value-ladder__title-link {
    text-decoration: none;
}

.se-value-ladder__title-link:hover .se-value-ladder__step-title {
    color: var(--onyx-gold);
}

.se-value-ladder__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.se-value-ladder__arrow--primary {
    color: var(--onyx-gold);
}

.se-value-ladder__arrow--secondary {
    color: rgba(255, 255, 255, 0.3);
}

.se-value-ladder__arrow-label {
    font-size: 11px;
    color: var(--onyx-gold);
    font-weight: 600;
}

/* ----- SE FAQ ----- */

.se-faq {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-sm) 0;
}

.se-faq__headline {
    color: var(--onyx-text-heading);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 40px;
}

.se-faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.se-faq__item {
    border-bottom: 1px solid var(--onyx-border-light);
}

.se-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--onyx-text-heading);
    cursor: pointer;
    list-style: none;
}

.se-faq__question::-webkit-details-marker {
    display: none;
}

.se-faq__chevron {
    color: var(--onyx-gold);
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}

.se-faq__item[open] .se-faq__chevron {
    transform: rotate(180deg);
}

.se-faq__answer {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--onyx-text-body);
    line-height: 1.6;
}

/* ----- SE Social Proof ----- */

.se-social-proof {
    background: var(--onyx-bg-charcoal);
    padding: var(--onyx-section-pad-sm) 0;
}

.se-social-proof__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.se-social-proof__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.se-social-proof__stat {
    text-align: center;
}

.se-social-proof__value {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--onyx-gold);
}

.se-social-proof__label {
    display: block;
    color: var(--onyx-text-white-60);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
}

.se-social-proof__testimonial {
    display: flex;
    align-items: center;
}

.se-social-proof__quote {
    margin: 0;
    padding: 0;
    position: relative;
}

.se-social-proof__quote::before {
    content: none; /* Quote mark handled by .se-social-proof__quote-mark span */
}

.se-social-proof__quote p {
    color: #fff;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

.se-social-proof__cite {
    display: block;
    margin-top: 24px;
    font-style: normal;
    color: var(--onyx-text-white-60);
    font-size: 14px;
}

.se-social-proof__author {
    display: block;
    color: var(--onyx-gold);
    font-weight: 700;
}

.se-social-proof__role {
    display: block;
    color: var(--onyx-text-white-60);
    font-size: 14px;
    margin-top: 4px;
}

.se-social-proof__quote-mark {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 80px;
    color: var(--onyx-gold);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.se-social-proof__partner {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.se-social-proof__partner-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0 0 8px;
}

.se-social-proof__partner-list {
    color: var(--onyx-gold);
    font-size: 13px;
    margin: 0;
}

/* ----- SE Gold CTA ----- */

.se-cta {
    background: var(--onyx-gold);
    padding: 80px 0;
    text-align: center;
}

.se-cta__headline {
    color: var(--onyx-navy);
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 16px;
}

.se-cta__subtitle {
    color: var(--onyx-navy);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 1.6;
}

.se-cta__btn {
    display: inline-block;
}

.se-cta__secondary {
    display: block;
    margin-top: 16px;
    color: var(--onyx-navy);
    text-decoration: underline;
    font-size: 14px;
}

.se-cta__secondary:hover {
    opacity: 0.7;
}

.se-cta__reassurance {
    color: rgba(31, 39, 59, 0.6);
    font-size: 13px;
    margin: 16px 0 0;
}

/* ----- SE Button Variants ----- */

.onyx-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.onyx-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.onyx-btn-primary--inverse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--onyx-navy);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.onyx-btn-primary--inverse:hover {
    background: var(--onyx-mid-navy);
}

/* ----- SE Responsive: Tablet (768px) ----- */

@media (min-width: 768px) {
    .se-problem__columns {
        flex-direction: row;
    }

    .se-deliverables__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .se-problem__headline,
    .se-deliverables__headline,
    .se-process__headline,
    .se-pricing__headline {
        font-size: 36px;
    }
}

/* ----- SE Responsive: Desktop (1024px) ----- */

@media (min-width: 1024px) {
    .se-hero {
        padding: 120px 0 100px;
    }

    .se-hero__grid {
        grid-template-columns: 1fr 1fr;
    }

    .se-hero__headline {
        font-size: 44px;
    }

    .se-hero__transform {
        flex-direction: row;
        gap: 12px;
    }

    .se-hero__transform-panel {
        max-width: none;
    }

    .se-hero__transform-arrow {
        padding: 0 12px;
    }

    .se-problem,
    .se-deliverables,
    .se-personas,
    .se-process,
    .se-pricing,
    .se-value-ladder,
    .se-faq,
    .se-social-proof {
        padding: var(--onyx-section-pad-lg) 0;
    }

    .se-deliverables__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .se-deliverables__card:nth-last-child(2) {
        grid-column: 1 / 2;
        justify-self: end;
    }

    .se-deliverables__card:last-child {
        grid-column: 2 / 3;
        justify-self: start;
    }

    .se-personas__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .se-process__timeline {
        flex-direction: row;
        justify-content: space-between;
        padding-left: 0;
        gap: 0;
    }

    .se-process__line {
        left: 20px;
        right: 20px;
        top: 20px;
        bottom: auto;
        width: auto;
        height: 3px;
    }

    .se-process__step {
        flex: 1;
        text-align: center;
    }

    .se-process__circle {
        position: static;
        margin: 0 auto 16px;
    }

    .se-process__icon {
        position: static;
        width: auto;
        margin-bottom: 8px;
    }

    .se-pricing__grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }

    .se-pricing__card--featured {
        transform: scale(1.03);
        box-shadow: 0 8px 32px rgba(31, 39, 59, 0.15);
    }

    .se-value-ladder__steps {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        align-items: stretch;
    }

    .se-value-ladder__card {
        margin: 0 12px;
    }

    .se-value-ladder__card:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -24px;
        top: 50%;
        width: 24px;
        height: 2px;
        border-top: 2px dashed var(--onyx-gold);
    }

    .se-value-ladder__arrow {
        flex-direction: row;
        gap: 8px;
        padding: 0 8px;
    }

    .se-value-ladder__arrow svg {
        transform: rotate(0deg);
    }

    .se-social-proof__grid {
        grid-template-columns: 1fr 1fr;
    }

    .se-cta__headline {
        font-size: 36px;
    }

    .se-cta {
        padding: 80px 0;
    }

    .se-problem__headline,
    .se-deliverables__headline,
    .se-personas__headline,
    .se-process__headline,
    .se-pricing__headline,
    .se-value-ladder__headline {
        font-size: 40px;
    }
}

/* ----- SE Reduced Motion ----- */

@media (prefers-reduced-motion: reduce) {
    .se-hero__badge,
    .se-value-ladder__badge {
        animation: none;
    }

    .se-process__line,
    .se-value-ladder__steps,
    .se-value-ladder__card {
        transition: none;
    }
}

/* ==========================================================================
   4-Week Fabric Accelerator Page (fa-)
   ========================================================================== */

/* ----- FA Hero ----- */

.fa-hero {
    background: linear-gradient(160deg, var(--onyx-navy) 0%, var(--onyx-bg-charcoal) 100%);
    padding: 80px 0 60px;
}

.fa-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.fa-hero__badge {
    display: inline-block;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.fa-hero__headline {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 20px;
}

.fa-hero__subheadline {
    color: var(--onyx-text-white-80);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 540px;
}

.fa-hero__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.fa-hero__spec {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--onyx-text-white-60);
    font-size: 14px;
}

.fa-hero__spec:not(:first-child) {
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.fa-hero__spec svg {
    flex-shrink: 0;
}

.fa-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fa-hero__visual {
    display: flex;
    justify-content: center;
}

.fa-hero__weeks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    width: 100%;
}

.fa-hero__week {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fa-hero__week-label {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.fa-hero__bar-track {
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.fa-hero__bar-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #FFBB09, #FFC93C);
    border-radius: 8px;
    width: 0%;
    animation: faBarGrow 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fa-hero__week[data-week="1"] .fa-hero__bar-fill { animation-delay: 0.8s; }
.fa-hero__week[data-week="2"] .fa-hero__bar-fill { animation-delay: 1.1s; }
.fa-hero__week[data-week="3"] .fa-hero__bar-fill { animation-delay: 1.4s; }
.fa-hero__week[data-week="4"] .fa-hero__bar-fill { animation-delay: 1.7s; }

@keyframes faBarGrow {
    from { width: 0%; }
    to   { width: 100%; }
}

.fa-hero__bar-label {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    z-index: 1;
    opacity: 0;
    animation: faLabelFade 0.3s ease forwards;
}

.fa-hero__week[data-week="1"] .fa-hero__bar-label { animation-delay: 1.4s; }
.fa-hero__week[data-week="2"] .fa-hero__bar-label { animation-delay: 1.7s; }
.fa-hero__week[data-week="3"] .fa-hero__bar-label { animation-delay: 2.0s; }
.fa-hero__week[data-week="4"] .fa-hero__bar-label { animation-delay: 2.3s; }

@keyframes faLabelFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.fa-hero__bar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--onyx-navy);
}

.fa-hero__bar-title svg {
    stroke: var(--onyx-navy);
}

.fa-hero__bar-week {
    font-size: 14px;
    font-weight: 900;
    color: var(--onyx-navy);
}

/* Microsoft Customer Story badge */
.fa-hero__ms-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    padding: 6px 14px;
    margin-bottom: 24px;
    font-size: 12px;
    color: #22C55E;
}

.fa-hero__ms-badge svg {
    fill: #22C55E;
}

/* Production completion badge */
.fa-hero__production-badge {
    text-align: center;
    margin-top: 16px;
    opacity: 0;
    animation: faProdBadge 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 2.4s;
}

@keyframes faProdBadge {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fa-hero__production-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--onyx-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 187, 9, 0.4);
}

.fa-hero__production-circle svg {
    stroke: var(--onyx-navy);
}

.fa-hero__production-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--onyx-gold);
    margin-top: 8px;
}

/* Ghost button */
.onyx-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--onyx-transition), border-color var(--onyx-transition);
}

.onyx-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ----- FA Pilot Purgatory ----- */

.fa-pilot-purgatory {
    background: #fff;
    padding: var(--onyx-section-pad-sm) 0;
}

.fa-pilot-purgatory__eyebrow {
    color: var(--onyx-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin: 0 0 12px;
}

.fa-pilot-purgatory__headline {
    color: var(--onyx-text-heading);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 12px;
}

.fa-pilot-purgatory__subtitle {
    color: var(--onyx-text-caption);
    font-size: 16px;
    text-align: center;
    margin: 0 0 48px;
}

/* Horizontal progress bar visual */
.fa-pilot__visual-wrapper {
    max-width: 560px;
    margin: 0 auto;
    padding: 24px 20px;
    background: var(--onyx-bg-off-white);
    border-radius: 12px;
}

.fa-pilot__progress-bar {
    display: flex;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.fa-pilot__segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    gap: 4px;
    transition: all 0.8s ease;
}

.fa-pilot__segment--pilot {
    flex: 2;
    background: #EF4444;
    color: #fff;
}

.fa-pilot__segment--purgatory {
    flex: 3;
    background: rgba(245, 158, 11, 0.25);
    color: #F59E0B;
}

.fa-pilot-purgatory.onyx-revealed .fa-pilot__segment--purgatory {
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    transition-delay: 0.5s;
}

.fa-pilot-purgatory.onyx-revealed .fa-pilot__segment--purgatory svg {
    transform: rotate(0deg);
    animation: faPurgArrow 0.5s ease forwards 0.5s;
}

@keyframes faPurgArrow {
    0% { transform: translateX(-10px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.fa-pilot__segment--production {
    flex: 2;
    background: #E5E7EB;
    color: var(--onyx-text-muted);
}

.fa-pilot-purgatory.onyx-revealed .fa-pilot__segment--production {
    background: #22C55E;
    color: #fff;
    transition-delay: 1.2s;
}

.fa-pilot__comparison {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--onyx-text-caption);
}

.fa-pilot__time--slow {
    color: #EF4444;
}

.fa-pilot__time--fast {
    color: #22C55E;
}

/* ----- FA Week-by-Week Tabs ----- */

.fa-weeks {
    background: var(--onyx-navy);
    padding: var(--onyx-section-pad-sm) 0;
}

.fa-weeks__eyebrow {
    color: var(--onyx-gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    margin: 0 0 8px;
}

.fa-weeks__headline {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 12px;
}

.fa-weeks__subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    text-align: center;
    margin: 0 0 40px;
}

.fa-weeks__tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px;
    border-bottom: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fa-weeks__tab {
    flex: 1;
    padding: 12px 8px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-family: var(--onyx-font-family);
    min-width: fit-content;
}

.fa-weeks__tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.fa-weeks__tab[aria-selected="true"] {
    background: var(--onyx-gold);
    color: var(--onyx-navy);
}

.fa-weeks__tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa-weeks__tab-icon svg {
    stroke: currentColor;
}

.fa-weeks__tab-number {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.fa-weeks__tab-name {
    font-size: 10px;
    opacity: 0.8;
}

.fa-weeks__panels {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 36px;
    min-height: 420px;
    max-width: 800px;
    margin: 0 auto;
}

.fa-weeks__panel[hidden] {
    display: none;
}

.fa-weeks__panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.fa-weeks__icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 187, 9, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fa-weeks__icon-box svg {
    stroke: var(--onyx-gold);
    width: 24px;
    height: 24px;
}

.fa-weeks__panel-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.fa-weeks__objective {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    margin: 0 0 24px;
    line-height: 1.5;
}

.fa-weeks__activities {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fa-weeks__activities li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.fa-weeks__activities li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Milestone callout with gold border */
.fa-weeks__milestone {
    border: 1px solid rgba(255, 187, 9, 0.4);
    background: rgba(255, 187, 9, 0.08);
    border-radius: 8px;
    padding: 16px;
    margin: 24px 0 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.fa-weeks__milestone svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--onyx-gold);
}

.fa-weeks__milestone-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--onyx-gold);
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.fa-weeks__milestone-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Persona quote colors */
.fa-weeks__persona {
    font-size: 13px;
    font-style: italic;
    padding-left: 12px;
    margin: 0;
    line-height: 1.5;
}

.fa-weeks__persona--cyan {
    border-left: 2px solid var(--onyx-cyan);
    color: var(--onyx-cyan);
}

.fa-weeks__persona--gold {
    border-left: 2px solid var(--onyx-gold);
    color: var(--onyx-gold);
}

/* ----- FA Deliverables ----- */

.fa-deliverables {
    background: #fff;
    padding: var(--onyx-section-pad-sm) 0;
}

.fa-deliverables__headline {
    color: var(--onyx-text-heading);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 12px;
}

.fa-deliverables__subtitle {
    color: var(--onyx-text-caption);
    font-size: 16px;
    text-align: center;
    margin: 0 0 48px;
}

.fa-deliverables__list {
    max-width: 720px;
    margin: 0 auto;
}

.fa-deliverables__card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 32px;
    background: #fff;
    border-left: 4px solid var(--onyx-gold);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(31, 39, 59, 0.07);
    margin-bottom: 16px;
}

.fa-deliverables__icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--onyx-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--onyx-gold);
}

.fa-deliverables__body {
    flex: 1;
}

.fa-deliverables__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--onyx-text-heading);
    margin: 0 0 8px;
}

.fa-deliverables__desc {
    font-size: 15px;
    color: var(--onyx-text-body);
    line-height: 1.6;
    margin: 0;
}

/* ----- FA CFO Callout ----- */

.fa-cfo {
    background: var(--onyx-bg-charcoal);
    padding: var(--onyx-section-pad-sm) 0;
}

.fa-cfo__eyebrow {
    display: inline-block;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 14px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.fa-cfo__headline {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    margin: 0 0 16px;
}

.fa-cfo__body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 24px;
    max-width: 480px;
    line-height: 1.6;
}

.fa-cfo__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

/* CFO Items */
.fa-cfo__items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fa-cfo__item {
    display: flex;
    gap: 14px;
}

.fa-cfo__icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 187, 9, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fa-cfo__icon-box svg {
    stroke: var(--onyx-gold);
}

.fa-cfo__item-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.fa-cfo__item-desc {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Dashboard mockup */
.fa-cfo__dashboard {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.fa-cfo__dashboard::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 187, 9, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.fa-cfo__dashboard-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.fa-cfo__score {
    text-align: center;
}

.fa-cfo__score-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.fa-cfo__score-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid var(--onyx-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa-cfo__score-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--onyx-gold);
}

.fa-cfo__cost-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.fa-cfo__cost-badge span {
    font-size: 18px;
    font-weight: 900;
}

.fa-cfo__cost-badge small {
    font-size: 10px;
    opacity: 0.8;
}

/* Mini bar chart grid */
.fa-cfo__bars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 20px;
    position: relative;
}

.fa-cfo__bar {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    height: 60px;
    display: flex;
    align-items: flex-end;
    padding: 4px;
}

.fa-cfo__bar-fill {
    width: 100%;
    background: linear-gradient(180deg, var(--onyx-gold), rgba(255, 187, 9, 0.4));
    border-radius: 2px;
}

/* Roadmap dots */
.fa-cfo__roadmap {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-top: 8px;
}

.fa-cfo__roadmap-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--onyx-gold);
}

.fa-cfo__roadmap-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 187, 9, 0.3);
}

.fa-cfo__roadmap-label {
    position: absolute;
    top: -8px;
    right: 0;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

/* ----- FA Elcome Proof ----- */

.fa-proof {
    background: #fff;
    padding: var(--onyx-section-pad-sm) 0;
}

/* Two-column card layout */
.fa-proof__card {
    display: flex;
    flex-wrap: wrap;
    background: var(--onyx-navy);
    border-radius: 16px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.fa-proof__content {
    flex: 1 1 480px;
    padding: 40px 36px;
}

.fa-proof__visual {
    flex: 1 1 300px;
    min-height: 300px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0d1b33 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Microsoft badge green */
.fa-proof__ms-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.fa-proof__ms-badge svg {
    stroke: #22C55E;
}

.fa-proof__headline {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.3;
}

.fa-proof__narrative {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 20px;
}

.fa-proof__narrative p {
    margin: 0;
}

/* Metrics strip */
.fa-proof__metrics-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

.fa-proof__metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fa-proof__metric-icon {
    margin-bottom: 2px;
}

.fa-proof__metric-value {
    color: var(--onyx-gold);
    font-size: 20px;
    font-weight: 900;
}

.fa-proof__metric-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Quote gold border */
.fa-proof__quote {
    border-left: 2px solid rgba(255, 187, 9, 0.3);
    padding-left: 12px;
    margin: 0 0 24px;
}

.fa-proof__quote p {
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 8px;
}

.fa-proof__cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fa-proof__cite strong {
    color: var(--onyx-gold);
    font-size: 14px;
}

.fa-proof__cite span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.fa-proof__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--onyx-gold);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.fa-proof__link:hover {
    text-decoration: underline;
}

/* Space visual */
.fa-proof__space-bg {
    position: absolute;
    inset: 0;
}

.fa-proof__star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.6;
    animation: faTwinkle 3s ease-in-out infinite;
}

@keyframes faTwinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.9; }
}

/* ELCOME badge */
.fa-proof__elcome-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 187, 9, 0.3);
    border: 2px solid var(--onyx-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.fa-proof__elcome-badge svg {
    stroke: var(--onyx-gold);
}

/* ----- FA Pricing ----- */

.fa-pricing {
    background: #fff;
    padding: var(--onyx-section-pad-sm) 0;
}

.fa-pricing__headline {
    color: var(--onyx-text-heading);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 12px;
}

.fa-pricing__subtitle {
    color: var(--onyx-text-caption);
    font-size: 16px;
    text-align: center;
    margin: 0 auto 40px;
    max-width: 600px;
}

.fa-pricing__card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid var(--onyx-gold);
    border-radius: 16px;
    padding: 48px 40px;
}

.fa-pricing__price {
    color: var(--onyx-gold);
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 8px;
}

.fa-pricing__duration {
    display: block;
    color: var(--onyx-text-caption);
    font-size: 16px;
    margin-bottom: 24px;
}

.fa-pricing__cta {
    margin-top: 8px;
}

.fa-pricing__cta .onyx-btn-primary {
    width: 100%;
    max-width: 320px;
}

.fa-pricing__comparison {
    max-width: 800px;
    margin: 48px auto 0;
    width: 100%;
    overflow-x: auto;
}

.fa-pricing__comparison table {
    width: 100%;
    border-collapse: collapse;
}

.fa-pricing__comparison thead {
    background: var(--onyx-navy);
}

.fa-pricing__comparison th {
    padding: 12px 16px;
    text-align: left;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.fa-pricing__comparison td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--onyx-border-light);
    font-size: 15px;
}

.fa-pricing__category {
    font-weight: 700;
    color: var(--onyx-text-heading);
}

.fa-pricing__typical {
    color: var(--onyx-text-caption);
}

.fa-pricing__onyx {
    color: #22C55E;
    font-weight: 600;
}

.fa-pricing__marketplace {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--onyx-bg-off-white);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fa-pricing__marketplace p {
    margin: 0;
    font-size: 14px;
    color: var(--onyx-text-body);
    line-height: 1.5;
}

.fa-pricing__azure-icon {
    flex-shrink: 0;
}

/* ----- FA FAQ ----- */

.fa-faq {
    background: var(--onyx-bg-off-white);
    padding: var(--onyx-section-pad-sm) 0;
}

.fa-faq__headline {
    color: var(--onyx-text-heading);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 40px;
}

.fa-faq__list {
    max-width: 720px;
    margin: 0 auto;
}

/* ----- FA Value Ladder ----- */

.fa-value-ladder {
    background: var(--onyx-navy);
    padding: var(--onyx-section-pad-sm) 0;
}

.fa-value-ladder__eyebrow {
    color: var(--onyx-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin: 0 0 12px;
}

.fa-value-ladder__headline {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 12px;
}

.fa-value-ladder__subtitle {
    color: var(--onyx-text-white-60);
    font-size: 16px;
    text-align: center;
    margin: 0 0 48px;
}

.fa-value-ladder__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.fa-value-ladder__card {
    background: var(--onyx-mid-navy);
    padding: 32px 24px;
    border-radius: var(--onyx-card-radius);
    width: 100%;
    max-width: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    opacity: 0.6;
    transition: opacity var(--onyx-transition);
}

.fa-value-ladder__card:hover {
    opacity: 0.8;
}

.fa-value-ladder__card--active {
    border: 2px solid var(--onyx-gold);
    opacity: 1;
}

.fa-value-ladder__card--active:hover {
    opacity: 1;
}

.fa-value-ladder__card--completed {
    border: 1px solid rgba(46, 204, 113, 0.4);
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.04);
}

.fa-value-ladder__card--completed:hover {
    opacity: 0.9;
}

.fa-value-ladder__card--future {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.fa-value-ladder__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    border-radius: 12px;
    white-space: nowrap;
}

.fa-value-ladder__badge--active {
    background: var(--onyx-gold);
    color: var(--onyx-navy);
}

.fa-value-ladder__badge--future {
    background: transparent;
    border: 1px solid #00B4D8;
    color: #00B4D8;
}

.fa-value-ladder__circle {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--onyx-text-white-60);
    margin-bottom: 16px;
}

.fa-value-ladder__circle--active {
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    border-color: var(--onyx-gold);
}

.fa-value-ladder__circle--completed {
    border-color: #2ECC71;
}

.fa-value-ladder__step-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.fa-value-ladder__card--active .fa-value-ladder__step-title {
    color: var(--onyx-gold);
}

.fa-value-ladder__title-link {
    text-decoration: none;
}

.fa-value-ladder__title-link:hover .fa-value-ladder__step-title {
    color: var(--onyx-gold);
}

.fa-value-ladder__step-desc {
    font-size: 14px;
    color: var(--onyx-text-white-60);
    margin: 0;
    line-height: 1.5;
}

.fa-value-ladder__step-price {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin: 16px 0 0;
}

.fa-value-ladder__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.fa-value-ladder__arrow--primary {
    color: var(--onyx-gold);
}

.fa-value-ladder__arrow--secondary {
    color: rgba(255, 255, 255, 0.3);
}

.fa-value-ladder__arrow-label {
    font-size: 11px;
    color: var(--onyx-gold);
    font-weight: 600;
}

/* ----- FA Gold CTA ----- */

.fa-cta {
    background: var(--onyx-gold);
    padding: 80px 0;
    text-align: center;
}

.fa-cta__headline {
    color: var(--onyx-navy);
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 16px;
}

.fa-cta__subtitle {
    color: var(--onyx-navy);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 1.6;
}

.fa-cta__btn {
    display: inline-block;
}

.fa-cta__secondary {
    display: block;
    margin-top: 16px;
    color: var(--onyx-navy);
    font-size: 14px;
}

.fa-cta__secondary a {
    color: var(--onyx-navy);
    text-decoration: underline;
    font-weight: 600;
}

.fa-cta__secondary a:hover {
    opacity: 0.7;
}

/* ----- FA Responsive (768px) ----- */

@media (min-width: 768px) {
    .fa-hero__headline {
        font-size: 40px;
    }

    .fa-cfo__grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .fa-cfo__dashboard {
        margin: 0;
    }

    .fa-pricing__price {
        font-size: 56px;
    }
}

/* ----- FA Responsive (1024px) ----- */

@media (min-width: 1024px) {
    .fa-hero__grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .fa-hero__headline {
        font-size: 44px;
    }

    .fa-cta__headline {
        font-size: 36px;
    }

    .fa-cta {
        padding: 80px 0;
    }

    .fa-value-ladder__steps {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        align-items: stretch;
    }

    .fa-value-ladder__card {
        margin: 0 12px;
    }

    .fa-value-ladder__card:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -24px;
        top: 50%;
        width: 24px;
        height: 2px;
        border-top: 2px dashed var(--onyx-gold);
    }

    .fa-value-ladder__arrow {
        flex-direction: row;
        gap: 8px;
        padding: 0 8px;
    }

    .fa-value-ladder__arrow svg {
        transform: rotate(0deg);
    }

    .fa-pilot-purgatory__headline,
    .fa-weeks__headline,
    .fa-deliverables__headline,
    .fa-cfo__headline,
    .fa-proof__headline,
    .fa-pricing__headline,
    .fa-value-ladder__headline {
        font-size: 40px;
    }
}

/* ----- FA Reduced Motion ----- */

@media (prefers-reduced-motion: reduce) {
    .fa-hero__bar-fill {
        animation: none;
        width: var(--fa-bar-target);
    }

    .fa-hero__badge,
    .fa-value-ladder__badge {
        animation: none;
    }

    .fa-pilot__breakthrough,
    .fa-weeks__tab,
    .fa-value-ladder__steps,
    .fa-value-ladder__card {
        transition: none;
    }
}

/* ==========================================================================
   Training Academy Page (tr- prefix)
   ========================================================================== */

/* ----- Shared Training Components ----- */

.tr-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 187, 9, 0.12);
    flex-shrink: 0;
}

.tr-icon-box svg {
    width: 20px;
    height: 20px;
    color: var(--onyx-gold);
}

/* ----- Section 1: Hero (DARK) ----- */

.tr-hero {
    background: linear-gradient(135deg, var(--onyx-navy) 0%, #2a3347 100%);
    color: #ffffff;
    padding: 80px 0 60px;
}

.tr-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.tr-hero--with-reviews .tr-hero__grid {
    grid-template-columns: 1fr 400px;
}

.tr-hero__content {
    /* Left column content */
}

.tr-hero__overline {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--onyx-gold);
    margin-bottom: 16px;
}

.tr-hero__headline {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 16px;
    max-width: 700px;
}

.tr-hero__subheadline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 0 32px;
}

.tr-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.tr-hero__scheduling {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-style: italic;
    color: var(--onyx-gold);
    margin: 0 0 12px;
}

.tr-hero__scheduling svg {
    flex-shrink: 0;
    color: var(--onyx-gold);
}

.tr-hero__individual-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tr-hero__individual-link:hover {
    color: var(--onyx-gold);
}

/* Hero Reviews Image - Right Column */
.tr-hero__reviews {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tr-hero__reviews-img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .tr-hero--with-reviews .tr-hero__grid {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 768px) {
    .tr-hero--with-reviews .tr-hero__grid {
        grid-template-columns: 1fr;
    }

    .tr-hero__reviews {
        order: -1;
        margin-bottom: 24px;
    }

    .tr-hero__reviews-img {
        max-height: 200px;
    }
}

/* ----- Section 2: Why Onyx (LIGHT) ----- */

.tr-why {
    background: var(--onyx-bg-white, #ffffff);
    padding: 80px 0;
}

.tr-why__headline {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin: 0 0 12px;
}

.tr-why__subheadline {
    text-align: center;
    font-size: 16px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 48px;
}

.tr-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.tr-why__card {
    text-align: center;
    padding: 32px 24px;
}

.tr-why__card .tr-icon-box {
    margin: 0 auto 16px;
}

.tr-why__card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin: 0 0 8px;
}

.tr-why__card-desc {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Credentials & Partner Badges */
.tr-why__badges {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid #e8ebf0;
}

.tr-why__badges-label {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--onyx-gold);
    margin-bottom: 32px;
}

.tr-why__badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.tr-why__badge-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tr-why__badge-group--certs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.tr-why__badge-group--partners {
    gap: 24px;
}

.tr-why__badge-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.tr-why__badge-img--large {
    height: 80px;
}

.tr-why__badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
}

.tr-why__badge-pill--gold {
    background: rgba(255, 187, 9, 0.12);
    color: var(--onyx-gold);
    border: 1px solid rgba(255, 187, 9, 0.25);
}

.tr-why__badge-pill svg {
    flex-shrink: 0;
}

.tr-why__cert-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.tr-why__cert-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.tr-why__cert-row-img {
    max-width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

.tr-why__cert-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    background: var(--onyx-navy);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.tr-why__partner-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.tr-why__partner-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
}

.tr-why__partner-placeholder svg {
    flex-shrink: 0;
}

/* Badge responsive */
@media (max-width: 768px) {
    .tr-why__badges-row {
        flex-direction: column;
        gap: 24px;
    }

    .tr-why__badge-group {
        justify-content: center;
    }

    .tr-why__badge-group--partners {
        flex-wrap: wrap;
    }
}

/* ----- Section 3: Instructor (DARK) ----- */

.tr-instructor {
    background: var(--onyx-navy);
    color: #ffffff;
    padding: 80px 0;
}

/* Section Header */
.tr-instructor__header {
    text-align: center;
    margin-bottom: 48px;
}

.tr-instructor__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--onyx-gold);
    margin-bottom: 12px;
}

.tr-instructor__headline {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Two-Column Grid */
.tr-instructor__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tr-instructor__grid {
        grid-template-columns: 300px 1fr;
        gap: 60px;
        align-items: start;
    }
}

/* Left Column: Photo + Badges */
.tr-instructor__photo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tr-instructor__photo-wrapper {
    margin-bottom: 24px;
}

.tr-instructor__photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--onyx-gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tr-instructor__initials {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--onyx-gold);
}

.tr-instructor__initials span {
    font-size: 80px;
    font-weight: 900;
    color: var(--onyx-gold);
}

/* Credential Badges */
.tr-instructor__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
    max-width: 280px;
}

.tr-instructor__badge-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
}

/* LinkedIn Links */
.tr-instructor__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.tr-instructor__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tr-instructor__link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.tr-instructor__link--learning {
    background: rgba(0, 119, 181, 0.2);
    border-color: rgba(0, 119, 181, 0.4);
    color: #66b3ff;
}

.tr-instructor__link--learning:hover {
    background: rgba(0, 119, 181, 0.3);
}

/* Right Column: Content */
.tr-instructor__content {
    text-align: center;
}

@media (min-width: 768px) {
    .tr-instructor__content {
        text-align: left;
    }
}

.tr-instructor__name {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 4px;
}

.tr-instructor__title {
    display: block;
    font-size: 15px;
    color: var(--onyx-gold);
    font-weight: 600;
    margin-bottom: 24px;
}

.tr-instructor__bio {
    margin-bottom: 28px;
}

.tr-instructor__bio p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px;
}

.tr-instructor__bio p:last-child {
    margin-bottom: 0;
}

/* Credential Chips */
.tr-instructor__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    justify-content: center;
}

@media (min-width: 768px) {
    .tr-instructor__chips {
        justify-content: flex-start;
    }
}

.tr-instructor__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.tr-instructor__chip--gold {
    background: rgba(255, 187, 9, 0.15);
    color: var(--onyx-gold);
    border: 1px solid rgba(255, 187, 9, 0.3);
}

.tr-instructor__chip--cyan {
    background: rgba(0, 200, 255, 0.1);
    color: #66d9ff;
    border: 1px solid rgba(0, 200, 255, 0.25);
}

.tr-instructor__chip--white {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Quote */
.tr-instructor__quote {
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding-left: 20px;
    border-left: 3px solid var(--onyx-gold);
}

@media (max-width: 767px) {
    .tr-instructor__quote {
        text-align: left;
    }
}

/* ----- Section 4: Proof Stats (LIGHT) ----- */

.tr-proof {
    background: var(--onyx-bg-off-white, #f8f9fa);
    padding: 80px 0;
}

.tr-proof__headline {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin: 0 0 48px;
}

.tr-proof__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tr-proof__stat {
    text-align: center;
}

.tr-proof__number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--onyx-gold);
    line-height: 1.2;
}

.tr-proof__label {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-top: 8px;
}

/* ----- Section 5: Learning Path (DARK) ----- */

.tr-path {
    background: var(--onyx-navy);
    color: #ffffff;
    padding: 80px 0;
}

.tr-path__headline {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 48px;
}

.tr-path__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.tr-path__stage {
    position: relative;
    padding: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.tr-path__stage--active {
    background: rgba(255, 187, 9, 0.08);
    border-left: 4px solid var(--onyx-gold);
}

.tr-path__number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--onyx-gold);
    line-height: 1;
    margin-bottom: 12px;
}

.tr-path__title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.tr-path__description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 12px;
}

.tr-path__courses {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 12px;
}

.tr-path__courses strong {
    color: rgba(255, 255, 255, 0.8);
}

.tr-path__duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--onyx-gold);
}

.tr-path__duration svg {
    color: var(--onyx-gold);
}

/* ----- Section 6: Catalogue (LIGHT) ----- */

.tr-catalogue {
    background: var(--onyx-bg-white, #ffffff);
    padding: 80px 0;
}

.tr-catalogue__headline {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin: 0 0 12px;
}

.tr-catalogue__subheadline {
    text-align: center;
    font-size: 16px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 40px;
}

.tr-catalogue__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 2px solid var(--onyx-border-light, #e9ecef);
    margin-bottom: 32px;
}

.tr-catalogue__tab {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #6c757d;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -2px;
}

.tr-catalogue__tab:hover {
    color: var(--onyx-navy);
}

.tr-catalogue__tab--active {
    color: var(--onyx-navy);
    border-bottom-color: var(--onyx-gold);
}

.tr-catalogue__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.tr-catalogue__card {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--onyx-border-light, #e9ecef);
}

.tr-catalogue__card[hidden] {
    display: none;
}

.tr-catalogue__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.tr-catalogue__badge--governance {
    background: rgba(31, 39, 59, 0.1);
    color: var(--onyx-navy);
}

.tr-catalogue__badge--analytics {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.tr-catalogue__badge--ai-ml {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.tr-catalogue__badge--microsoft-day {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.tr-catalogue__card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin: 0 0 12px;
}

.tr-catalogue__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tr-catalogue__meta-badge {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    background: #f1f3f5;
    color: #6c757d;
}

.tr-catalogue__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--onyx-gold);
    margin: 0 0 4px;
}

.tr-catalogue__price-note {
    font-size: 13px;
    color: #6c757d;
    margin: 0 0 12px;
}

.tr-catalogue__description {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0 0 16px;
}

.tr-catalogue__drawer-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--onyx-gold);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-bottom: 8px;
}

.tr-catalogue__drawer-toggle svg {
    transition: transform 0.2s;
}

.tr-catalogue__drawer-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.tr-catalogue__drawer-content {
    max-height: 0;
    overflow: hidden;
}

.tr-catalogue__drawer-content.tr-catalogue__drawer--open {
    max-height: 500px;
}

.tr-catalogue__outcomes {
    padding-left: 20px;
    margin: 8px 0 16px;
}

.tr-catalogue__outcomes li {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.8;
}

.tr-catalogue__cta {
    display: inline-block;
    margin-top: 8px;
}

/* ----- Section 7: Microsoft In-a-Day (DARK) ----- */

.tr-msday {
    background: var(--onyx-navy);
    color: #ffffff;
    padding: 80px 0;
}

.tr-msday__headline {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 12px;
}

.tr-msday__subheadline {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
}

.tr-msday__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.tr-msday__card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 32px;
}

.tr-msday__badge {
    display: inline-block;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 16px;
}

.tr-msday__card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.tr-msday__card-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 20px;
}

.tr-msday__cta {
    display: inline-block;
}

/* ----- Section 8: Delivery (LIGHT) ----- */

.tr-delivery {
    background: var(--onyx-bg-white, #ffffff);
    padding: 80px 0;
}

.tr-delivery__headline {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin: 0 0 48px;
}

.tr-delivery__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.tr-delivery__card {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--onyx-border-light, #e9ecef);
}

.tr-delivery__card .tr-icon-box {
    margin-bottom: 16px;
}

.tr-delivery__card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin: 0 0 8px;
}

.tr-delivery__card-desc {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 16px;
}

.tr-delivery__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tr-delivery__features li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: #4a5568;
    line-height: 2;
}

.tr-delivery__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3 4L6 11.3 2.7 8' stroke='%23FFBB09' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* ----- Section 9: Outcomes (DARK) ----- */

.tr-outcomes {
    background: var(--onyx-navy);
    color: #ffffff;
    padding: 80px 0;
}

.tr-outcomes__headline {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 48px;
}

.tr-outcomes__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.tr-outcomes__card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 24px;
}

.tr-outcomes__card .tr-icon-box {
    margin-bottom: 16px;
}

.tr-outcomes__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.tr-outcomes__card-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* ----- Section 10: Procurement (LIGHT) ----- */

.tr-procurement {
    background: var(--onyx-bg-off-white, #f8f9fa);
    padding: 80px 0;
}

.tr-procurement__headline {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin: 0 0 12px;
}

.tr-procurement__subheadline {
    text-align: center;
    font-size: 16px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 48px;
}

.tr-procurement__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.tr-procurement__card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

.tr-procurement__card .tr-icon-box {
    margin-bottom: 16px;
}

.tr-procurement__card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin: 0 0 8px;
}

.tr-procurement__card-desc {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 16px;
}

.tr-procurement__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--onyx-gold);
    font-weight: 700;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tr-procurement__cta:hover {
    color: #e0a800;
}

/* ----- Section 11: Community (DARK) ----- */

.tr-community {
    background: var(--onyx-navy);
    color: #ffffff;
    padding: 80px 0;
}

.tr-community__headline {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 12px;
}

.tr-community__description {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.tr-community__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.tr-community__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 24px;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s;
}

.tr-community__card:hover {
    transform: translateY(-3px);
}

.tr-community__card .tr-icon-box {
    margin-bottom: 16px;
}

.tr-community__card-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.tr-community__arrow {
    color: var(--onyx-gold);
}

/* ----- Section 12: Value Ladder (LIGHT) ----- */

.tr-ladder {
    background: var(--onyx-bg-white, #ffffff);
    padding: 80px 0;
}

.tr-ladder__headline {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin: 0 0 48px;
}

.tr-ladder__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.tr-ladder__step {
    position: relative;
    padding: 32px;
    border-radius: 8px;
    background: #f8f9fa;
}

.tr-ladder__step--current {
    border-left: 4px solid var(--onyx-gold);
    background: rgba(255, 187, 9, 0.04);
}

.tr-ladder__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--onyx-gold);
    margin-bottom: 8px;
}

.tr-ladder__here-badge {
    display: inline-block;
    background: var(--onyx-gold);
    color: var(--onyx-navy);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.tr-ladder__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin: 0 0 8px;
}

.tr-ladder__description {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 16px;
}

.tr-ladder__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--onyx-gold);
    font-weight: 700;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tr-ladder__cta:hover {
    color: #e0a800;
}

/* ----- Section 13: FAQ (DARK) ----- */

.tr-faq {
    background: var(--onyx-navy);
    color: #ffffff;
    padding: 80px 0;
}

.tr-faq__headline {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 48px;
}

.tr-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.tr-faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tr-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    list-style: none;
}

.tr-faq__question::-webkit-details-marker {
    display: none;
}

.tr-faq__question::after {
    content: '+';
    font-size: 24px;
    color: var(--onyx-gold);
    flex-shrink: 0;
    margin-left: 16px;
    line-height: 1;
}

.tr-faq__item[open] .tr-faq__question::after {
    content: '\2212';
}

.tr-faq__answer {
    padding: 0 0 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
}

.tr-faq__question:focus-visible {
    outline: 2px solid var(--onyx-gold);
    outline-offset: 2px;
}

/* ----- Section 14: Gold CTA (GOLD) ----- */

.tr-cta {
    background: var(--onyx-gold);
    padding: 80px 0;
    text-align: center;
}

.tr-cta__headline {
    font-size: 32px;
    font-weight: 900;
    color: var(--onyx-navy);
    margin: 0 0 12px;
}

.tr-cta__subheadline {
    font-size: 16px;
    color: rgba(31, 39, 59, 0.8);
    margin: 0 0 32px;
}

.tr-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.tr-cta__btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.tr-cta__btn--primary {
    background: var(--onyx-navy);
    color: #ffffff;
}

.tr-cta__btn--primary:hover {
    background: #2a3347;
}

.tr-cta__btn--secondary {
    background: transparent;
    color: var(--onyx-navy);
    border: 2px solid var(--onyx-navy);
}

.tr-cta__btn--secondary:hover {
    background: var(--onyx-navy);
    color: #ffffff;
}

/* ----- Training Responsive ----- */

@media (min-width: 600px) {
    .tr-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tr-delivery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tr-outcomes__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tr-community__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .tr-catalogue__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tr-procurement__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tr-msday__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .tr-hero__headline {
        font-size: 48px;
    }

    .tr-why__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tr-proof__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tr-path__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .tr-path__stage:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -22px;
        top: 50%;
        width: 24px;
        height: 2px;
        border-top: 2px dashed var(--onyx-gold);
    }

    .tr-ladder__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .tr-ladder__step:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -22px;
        top: 50%;
        width: 24px;
        height: 2px;
        border-top: 2px dashed var(--onyx-gold);
    }

    .tr-hero__headline,
    .tr-why__headline,
    .tr-instructor__name,
    .tr-proof__headline,
    .tr-path__headline,
    .tr-catalogue__headline,
    .tr-msday__headline,
    .tr-delivery__headline,
    .tr-outcomes__headline,
    .tr-procurement__headline,
    .tr-community__headline,
    .tr-ladder__headline,
    .tr-faq__headline,
    .tr-cta__headline {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .tr-delivery__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tr-outcomes__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ----- Training Reduced Motion ----- */

@media (prefers-reduced-motion: no-preference) {
    .tr-catalogue__drawer-content {
        transition: max-height 0.3s ease;
    }

    .tr-community__card {
        transition: transform 0.2s ease;
    }

    .tr-catalogue__drawer-toggle svg {
        transition: transform 0.2s ease;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tr-catalogue__drawer-content {
        transition: none;
    }

    .tr-community__card {
        transition: none;
    }

    .tr-catalogue__drawer-toggle svg {
        transition: none;
    }
}

/* ==========================================================================
   AIEO: Answer-First Block
   40-60 word answer capsule after hero sections for AI extractability
   ========================================================================== */
.onyx-answer-block {
    padding: 2.5rem 0 1.5rem;
}
.onyx-answer-block .onyx-container {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.onyx-answer-block__text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #3a4553;
    margin: 0;
    text-align: center;
}

/* ==========================================================================
   AIEO: Definition Block
   Single-sentence entity definitions for AI extraction
   ========================================================================== */
.onyx-definition-block {
    background: #f8f9fa;
    border-left: 3px solid #FFBB09;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}
.onyx-definition-block p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #3a4553;
}

/* ==========================================================================
   AIEO: Expert Attribution
   E-E-A-T signals for AI extractability
   ========================================================================== */
.onyx-expert-attr {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    max-width: 28rem;
    margin: 1.5rem auto;
}
.onyx-expert-attr__photo {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.onyx-expert-attr__initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1F273B;
    color: #FFBB09;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}
.onyx-expert-attr__info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.onyx-expert-attr__context {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.onyx-expert-attr__name {
    font-weight: 700;
    font-size: 0.9375rem;
    color: #1F273B;
}
.onyx-expert-attr__title {
    font-size: 0.8125rem;
    color: #6b7280;
}

/* ==========================================================================
   Training Interest Form
   ========================================================================== */

.tr-interest-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.tr-interest-hero__headline {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--onyx-text-white);
}

.tr-interest-hero__subheadline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.tr-interest-form {
    padding: 60px 0 80px;
    background: var(--onyx-bg-light);
}

.tr-interest-form__wrapper {
    max-width: 540px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.tr-interest-form__group {
    margin-bottom: 24px;
}

.tr-interest-form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--onyx-navy);
    margin-bottom: 8px;
}

.tr-interest-form__label .required {
    color: #dc2626;
}

.tr-interest-form__label .optional {
    color: #6b7280;
    font-weight: 400;
}

.tr-interest-form__input,
.tr-interest-form__select,
.tr-interest-form__textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: var(--onyx-navy);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.tr-interest-form__input:focus,
.tr-interest-form__select:focus,
.tr-interest-form__textarea:focus {
    outline: none;
    border-color: var(--onyx-gold);
    box-shadow: 0 0 0 3px rgba(255, 187, 9, 0.15);
}

.tr-interest-form__input::placeholder,
.tr-interest-form__textarea::placeholder {
    color: #9ca3af;
}

.tr-interest-form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 44px;
}

.tr-interest-form__textarea {
    resize: vertical;
    min-height: 100px;
}

.tr-interest-form__submit-wrapper {
    margin-top: 32px;
}

.tr-interest-form__submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tr-interest-form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.tr-interest-form__submit-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tr-interest-form__submit-loading .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tr-interest-form__privacy {
    margin-top: 16px;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

/* Success State */
.tr-interest-form__success {
    text-align: center;
    padding: 40px 20px;
}

.tr-interest-form__success-icon {
    margin-bottom: 24px;
}

.tr-interest-form__success-headline {
    font-size: 28px;
    font-weight: 700;
    color: var(--onyx-navy);
    margin-bottom: 16px;
}

.tr-interest-form__success-message {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Error State */
.tr-interest-form__error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.tr-interest-form__error-message {
    color: #991b1b;
    font-size: 14px;
    margin: 0;
}

.tr-interest-form__error-message a {
    color: #991b1b;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 640px) {
    .tr-interest-form__wrapper {
        padding: 24px;
        margin: 0 16px;
    }

    .tr-interest-hero {
        padding: 60px 0 30px;
    }
}
